HadronicFinalState.hh

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #ifndef RIVET_HadronicFinalState_HH
00003 #define RIVET_HadronicFinalState_HH
00004 
00005 #include "Rivet/Tools/Logging.hh"
00006 #include "Rivet/Rivet.hh"
00007 #include "Rivet/Particle.hh"
00008 #include "Rivet/Event.hh"
00009 #include "Rivet/Projection.hh"
00010 #include "Rivet/Projections/FinalState.hh"
00011 
00012 
00013 namespace Rivet {
00014 
00015   /// Project only charged final state particles.
00016   class HadronicFinalState : public FinalState {
00017 
00018   public:
00019  
00020     /// Constructor: the supplied FinalState projection is assumed to live through the run.
00021     HadronicFinalState(FinalState& fsp)
00022       : FinalState(fsp)
00023     {
00024       setName("HadronicFinalState");
00025       addProjection(fsp, "FS");
00026     }
00027  
00028     HadronicFinalState(double mineta = -MAXRAPIDITY,
00029                        double maxeta = MAXRAPIDITY,
00030                        double minpt = 0.0*GeV)
00031       : FinalState(mineta, maxeta, minpt)
00032     {
00033       setName("HadronicFinalState");
00034       addProjection(FinalState(mineta, maxeta, minpt), "FS");
00035     }
00036 
00037     /// Clone on the heap.
00038     virtual const Projection* clone() const {
00039       return new HadronicFinalState(*this);
00040     }
00041 
00042   protected:
00043  
00044     /// Apply the projection on the supplied event.
00045     void project(const Event& e);
00046  
00047     /// Compare projections.
00048     int compare(const Projection& p) const;
00049  
00050   };
00051 
00052 
00053 }
00054 
00055 
00056 #endif