00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef Trk2CorrFctn_hh
00020 #define Trk2CorrFctn_hh
00021
00022 #include "StHbtMaker/Base/StHbtCorrFctn.hh"
00023
00024 class Trk2CorrFctn : public StHbtCorrFctn {
00025 public:
00026 Trk2CorrFctn(char* title);
00027 virtual ~Trk2CorrFctn();
00028
00029 virtual StHbtString Report();
00030 virtual void AddRealPair(const StHbtPair*);
00031 virtual void AddMixedPair(const StHbtPair*);
00032
00033 virtual void Finish();
00034 virtual void Write();
00035
00036 private:
00037 StHbt2DHisto* mNumFracRowClosestRow;
00038 StHbt2DHisto* mDenFracRowClosestRow;
00039 StHbt2DHisto* mRatFracRowClosestRow;
00040
00041 #ifdef __ROOT__
00042 ClassDef(Trk2CorrFctn, 1)
00043 #endif
00044 };
00045
00046
00047 #endif
00048