2#ifndef RIVET_LossyFinalState_HH
3#define RIVET_LossyFinalState_HH
5#include "Rivet/Tools/Logging.hh"
6#include "Rivet/Config/RivetCommon.hh"
7#include "Rivet/Particle.hh"
8#include "Rivet/Event.hh"
9#include "Rivet/Projection.hh"
10#include "Rivet/Projections/FinalState.hh"
16 template <
typename FILTER>
48 using Projection::operator =;
53 const FinalState& fs = apply<FinalState>(e,
"FS");
54 getLog() << Log::DEBUG <<
"Pre-loss number of FS particles = " << fs.
particles().size() <<
'\n';
55 _theParticles.clear();
57 std::back_inserter(_theParticles), _filter);
58 getLog() << Log::DEBUG <<
"Filtered number of FS particles = " << _theParticles.size() <<
'\n';
66 if (fscmp != CmpState::EQ)
return fscmp;
67 return _filter.compare(other._filter);
Representation of a HepMC event, and enabler of Projection caching.
Definition Event.hh:22
Project out all final-state particles in an event. Probably the most important projection in Rivet!
Definition FinalState.hh:12
Templated FS projection which can lose some of the supplied particles.
Definition LossyFinalState.hh:17
CmpState compare(const Projection &p) const
Compare projections.
Definition LossyFinalState.hh:63
RIVET_DEFAULT_PROJ_CLONE(LossyFinalState)
Clone on the heap.
virtual ~LossyFinalState()
Virtual destructor, to allow subclassing.
Definition LossyFinalState.hh:40
LossyFinalState(const FinalState &fsp, FILTER filter)
Constructor from FinalState.
Definition LossyFinalState.hh:24
void project(const Event &e)
Apply the projection on the supplied event.
Definition LossyFinalState.hh:52
LossyFinalState(FILTER filter, const Cut &c=Cuts::open())
Stand-alone constructor. Initialises the base FinalState projection.
Definition LossyFinalState.hh:32
virtual const Particles & particles() const
Get the particles in no particular order, with no cuts.
Definition ParticleFinder.hh:65
const PROJ & declare(const PROJ &proj, const std::string &name) const
Register a contained projection (user-facing version)
Definition ProjectionApplier.hh:175
Base class for all Rivet projections.
Definition Projection.hh:29
void setName(const std::string &name)
Used by derived classes to set their name.
Definition Projection.hh:148
Log & getLog() const
Get a Log object based on the getName() property of the calling projection object.
Definition Projection.hh:142
Cmp< Projection > mkNamedPCmp(const Projection &otherparent, const std::string &pname) const
const Cut & open()
Fully open cut singleton, accepts everything.
Definition MC_CENT_PPB_Projections.hh:10