rivet is hosted by Hepforge, IPPP Durham
Rivet  2.7.0
ChargedFinalState.hh
1 // -*- C++ -*-
2 #ifndef RIVET_ChargedFinalState_HH
3 #define RIVET_ChargedFinalState_HH
4 
5 #include "Rivet/Projections/FinalState.hh"
6 
7 namespace Rivet {
8 
9 
11  class ChargedFinalState : public FinalState {
12  public:
13 
15 
16 
18  ChargedFinalState(const FinalState& fsp);
19 
21  ChargedFinalState(const Cut& c=Cuts::open());
22 
24  ChargedFinalState(double mineta, double maxeta, double minpt=0*GeV);
25 
28 
30 
31 
33  void project(const Event& e);
34 
36  int compare(const Projection& p) const;
37 
38  };
39 
40 
41 }
42 
43 
44 #endif
Definition: ALICE_2010_I880049.cc:13
Definition: Event.hh:22
const Cut & open()
Fully open cut singleton, accepts everything.
Definition: Cuts.cc:81
int compare(const Projection &p) const
Compare projections.
Definition: ChargedFinalState.cc:22
Project out all final-state particles in an event. Probably the most important projection in Rivet! ...
Definition: FinalState.hh:12
void project(const Event &e)
Apply the projection on the supplied event.
Definition: ChargedFinalState.cc:34
ChargedFinalState(const FinalState &fsp)
Construction from another FinalState.
Definition: ChargedFinalState.cc:7
Project only charged final state particles.
Definition: ChargedFinalState.hh:11
Base class for all Rivet projections.
Definition: Projection.hh:29
DEFAULT_RIVET_PROJ_CLONE(ChargedFinalState)
Clone on the heap.