00001 #ifndef trackCutMonitor_Y_vs_Pt_hh
00002 #define trackCutMonitor_Y_vs_Pt_hh
00003
00004 #include "StHbtMaker/Infrastructure/StHbtTypes.hh"
00005 #include "StHbtMaker/Infrastructure/StHbtTrack.hh"
00006 #include "StHbtMaker/Base/StHbtCutMonitor.hh"
00007
00008 class trackCutMonitor_Y_vs_Pt : public StHbtCutMonitor{
00009
00010 private:
00011 StHbt2DHisto* mHisto;
00012 double mMass;
00013
00014 public:
00015 trackCutMonitor_Y_vs_Pt();
00016 trackCutMonitor_Y_vs_Pt(double aMass,
00017 const char* TitCutMoni, const char* title,
00018 int nbins1 ,double min1, double max1,
00019 int nbins2 ,double min2, double max2);
00020 trackCutMonitor_Y_vs_Pt(const char* TitCutMoni, const char* title,
00021 int nbins1 ,double min1, double max1,
00022 int nbins2 ,double min2, double max2);
00023 virtual ~trackCutMonitor_Y_vs_Pt();
00024
00025 void Fill(const StHbtTrack* track);
00026 StHbt2DHisto* Histo() {return mHisto;}
00027
00028
00029
00030
00031 void Fill(const StHbtParticleCollection* d) {;}
00032 void Fill(const StHbtEvent *d1, const StHbtParticleCollection* d2) {;}
00033 void Fill(const StHbtPair* d) {;}
00034 void Fill(const StHbtKink* d) {;}
00035 void Fill(const StHbtV0* d) {;}
00036 void Fill(const StHbtEvent* d) {;}
00037
00038 #ifdef __ROOT__
00039 ClassDef(trackCutMonitor_Y_vs_Pt, 1)
00040 #endif
00041 };
00042
00043 #endif