00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef StHbtLikeSignAnalysis_hh
00019 #define StHbtLikeSignAnalysis_hh
00020
00021
00022
00023
00024 #include "StHbtMaker/Base/StHbtBaseAnalysis.h"
00025 #include "StHbtMaker/Infrastructure/StHbtTypes.hh"
00026 #include "StHbtMaker/Base/StHbtEventCut.h"
00027 #include "StHbtMaker/Base/StHbtParticleCut.h"
00028 #include "StHbtMaker/Base/StHbtPairCut.h"
00029 #include "StHbtMaker/Base/StHbtLikeSignCorrFctn.hh"
00030 #include "StHbtMaker/Infrastructure/StHbtAnalysis.h"
00031 #include "StHbtMaker/Infrastructure/StHbtCorrFctnCollection.hh"
00032
00033
00034 class StHbtLikeSignAnalysis : public StHbtAnalysis {
00035
00036 public:
00037
00038 StHbtLikeSignAnalysis(unsigned int bins=20, double min=-100., double max=100.);
00039 StHbtLikeSignAnalysis(const StHbtLikeSignAnalysis&);
00040 virtual ~StHbtLikeSignAnalysis();
00041
00042 virtual void ProcessEvent(const StHbtEvent*);
00043 virtual StHbtString Report();
00044 virtual unsigned int Overflow() { return mOverFlow;}
00045 virtual unsigned int Underflow() { return mUnderFlow;}
00046
00047 protected:
00048 double mVertexZ[2];
00049 unsigned int mVertexBins;
00050 unsigned int mOverFlow;
00051 unsigned int mUnderFlow;
00052
00053 #ifdef __ROOT__
00054 ClassDef(StHbtLikeSignAnalysis, 0)
00055 #endif
00056
00057 };
00058
00059
00060 #endif