rivet is hosted by Hepforge, IPPP Durham
Rivet  2.7.0
LossyFinalState.hh
1 // -*- C++ -*-
2 #ifndef RIVET_LossyFinalState_HH
3 #define RIVET_LossyFinalState_HH
4 
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"
11 
12 namespace Rivet {
13 
14 
16  template <typename FILTER>
17  class LossyFinalState : public FinalState {
18  public:
19 
21 
22 
24  LossyFinalState(const FinalState& fsp, FILTER filter)
25  : _filter(filter)
26  {
27  setName("LossyFinalState");
28  addProjection(fsp, "FS");
29  }
30 
32  LossyFinalState(FILTER filter,
33  double mineta = -MAXDOUBLE,
34  double maxeta = MAXDOUBLE,
35  double minpt = 0.0)
36  : _filter(filter)
37  {
38  setName("LossyFinalState");
39  addProjection(FinalState(mineta, maxeta, minpt), "FS");
40  }
41 
43  virtual ~LossyFinalState() { }
44 
47 
49 
50 
52  void project(const Event& e) {
53  const FinalState& fs = applyProjection<FinalState>(e, "FS");
54  getLog() << Log::DEBUG << "Pre-loss number of FS particles = " << fs.particles().size() << endl;
55  _theParticles.clear();
56  std::remove_copy_if(fs.particles().begin(), fs.particles().end(),
57  std::back_inserter(_theParticles), _filter);
58  getLog() << Log::DEBUG << "Filtered number of FS particles = " << _theParticles.size() << endl;
59  }
60 
61 
63  int compare(const Projection& p) const {
64  const LossyFinalState<FILTER>& other = pcast< LossyFinalState<FILTER> >(p);
65  const int fscmp = mkNamedPCmp(other, "FS");
66  if (fscmp) return fscmp;
67  return _filter.compare(other._filter);
68  }
69 
70 
71  protected:
72 
74  FILTER _filter;
75 
76  };
77 
78 
79 }
80 
81 #endif
void setName(const std::string &name)
Used by derived classes to set their name.
Definition: Projection.hh:133
Definition: ALICE_2010_I880049.cc:13
FinalState(const Cut &c=Cuts::open())
Construction using Cuts object.
Definition: FinalState.cc:7
virtual ~LossyFinalState()
Virtual destructor, to allow subclassing.
Definition: LossyFinalState.hh:43
Templated FS projection which can lose some of the supplied particles.
Definition: LossyFinalState.hh:17
LossyFinalState(FILTER filter, double mineta=-MAXDOUBLE, double maxeta=MAXDOUBLE, double minpt=0.0)
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:49
void project(const Event &e)
Apply the projection on the supplied event.
Definition: LossyFinalState.hh:52
Definition: Event.hh:22
LossyFinalState(const FinalState &fsp, FILTER filter)
Constructor from FinalState.
Definition: LossyFinalState.hh:24
int compare(const Projection &p) const
Compare projections.
Definition: LossyFinalState.hh:63
static const double MAXDOUBLE
Definition: MathHeader.hh:12
Cmp< Projection > mkNamedPCmp(const Projection &otherparent, const std::string &pname) const
Definition: Projection.cc:51
Project out all final-state particles in an event. Probably the most important projection in Rivet! ...
Definition: FinalState.hh:12
const PROJ & addProjection(const PROJ &proj, const std::string &name)
Register a contained projection (user-facing version)
Definition: ProjectionApplier.hh:170
Base class for all Rivet projections.
Definition: Projection.hh:29
Log & getLog() const
Get a Log object based on the getName() property of the calling projection object.
Definition: Projection.hh:127
DEFAULT_RIVET_PROJ_CLONE(LossyFinalState)
Clone on the heap.