00001
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
00016
00017 class ZFinder : public FinalState {
00018
00019 public:
00020
00021
00022
00023
00024
00025
00026
00027 ZFinder(const FinalState& fs,
00028 PdgId pid,
00029 double m2_min, double m2_max,
00030 double dRmax);
00031
00032
00033
00034
00035
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
00044
00045
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
00054 virtual const Projection* clone() const {
00055 return new ZFinder(*this);
00056 }
00057
00058
00059
00060
00061
00062
00063 const FinalState& remainingFinalState() const;
00064
00065
00066
00067 const FinalState& constituentsFinalState() const;
00068
00069 protected:
00070
00071
00072 void project(const Event& e);
00073
00074
00075 int compare(const Projection& p) const;
00076
00077
00078 private:
00079
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
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