ZFinder.hh

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 #ifndef RIVET_ZFinder_HH
00003 #define RIVET_ZFinder_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 namespace Rivet {
00013 
00014 
00015   /// Chain together different projections as convenience for finding Z's
00016   /// from two leptons in the final state
00017   class ZFinder : public FinalState {
00018 
00019   public:
00020  
00021     /// @name Constructors
00022     //@{
00023 
00024     /// Constructor taking a FinalState and type of the leptons, mass window,
00025     /// and maximum dR of photons around leptons to take into account for Z
00026     /// reconstruction.
00027     ZFinder(const FinalState& fs,
00028             PdgId pid,
00029             double m2_min, double m2_max,
00030             double dRmax);
00031 
00032 
00033     /// Constructor taking single eta/pT bounds and type of the leptons, mass
00034     /// window, and maximum dR of photons around leptons to take into account
00035     /// for Z reconstruction.
00036     ZFinder(double etaMin, double etaMax,
00037             double pTmin,
00038             PdgId pid,
00039             double m2_min, double m2_max,
00040             double dRmax);
00041 
00042 
00043     /// Constructor taking multiple eta/pT bounds and type of the leptons, mass
00044     /// window, and maximum dR of photons around leptons to take into account
00045     /// for Z reconstruction.
00046     ZFinder(const std::vector<std::pair<double, double> >& etaRanges,
00047             double pTmin,
00048             PdgId pid,
00049             double m2_min, const double m2_max,
00050             double dRmax);
00051 
00052 
00053     /// Clone on the heap.
00054     virtual const Projection* clone() const {
00055       return new ZFinder(*this);
00056     }
00057     //@}
00058 
00059 
00060     /// Access to the remaining particles, after the Z and clustered photons
00061     /// have been removed from the full final state
00062     /// (e.g. for running a jet finder on it)
00063     const FinalState& remainingFinalState() const;
00064 
00065     /// Access to the Z constituent leptons final state
00066     /// (e.g. for more fine-grained cuts on the leptons)
00067     const FinalState& constituentsFinalState() const;
00068 
00069   protected:
00070  
00071     /// Apply the projection on the supplied event.
00072     void project(const Event& e);
00073  
00074     /// Compare projections.
00075     int compare(const Projection& p) const;
00076 
00077 
00078   private:
00079     /// Common implementation of constructor operation, taking FS params.
00080     void _init(const std::vector<std::pair<double, double> >& etaRanges,
00081                double pTmin,  PdgId pid,
00082                double m2_min, double m2_max,
00083                double dRmax);
00084 
00085     /// Common implementation of constructor operation, taking FS.
00086     void _init(const FinalState& fs,
00087                PdgId pid,
00088                double m2_min, double m2_max,
00089                double dRmax);
00090 
00091   };
00092 
00093 
00094 }
00095 
00096 
00097 #endif