00001 #ifndef trackCutMonitor_P_hh
00002 #define trackCutMonitor_P_hh
00003
00004 #include "StHbtMaker/Infrastructure/StHbtTypes.hh"
00005 #include "StHbtMaker/Infrastructure/StHbtTrack.hh"
00006 #include "StHbtMaker/Base/StHbtCutMonitor.hh"
00007
00008 class trackCutMonitor_P : public StHbtCutMonitor{
00009
00010 private:
00011 StHbt1DHisto* mHisto;
00012
00013 public:
00014 trackCutMonitor_P();
00015 trackCutMonitor_P(const char* TitCutMoni, const char* title, int nbins ,double min, double max);
00016 virtual ~trackCutMonitor_P();
00017
00018
00019 virtual StHbtString Report();
00020 virtual void Fill(const StHbtTrack* track);
00021 virtual void Finish();
00022 StHbt1DHisto* Histo() {return mHisto;}
00023
00024
00025
00026
00027 void Fill(const StHbtParticleCollection* d) {;}
00028 void Fill(const StHbtEvent *d1, const StHbtParticleCollection* d2) {;}
00029 void Fill(const StHbtPair* d) {;}
00030 void Fill(const StHbtKink* d) {;}
00031 void Fill(const StHbtV0* d) {;}
00032 void Fill(const StHbtEvent* d) {;}
00033
00034 #ifdef __ROOT__
00035 ClassDef(trackCutMonitor_P, 1)
00036 #endif
00037 };
00038
00039 #endif