00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef NonId3DCorrFctn_hh
00048 #define NonId3DCorrFctn_hh
00049
00050 #include "StHbtMaker/Base/StHbtCorrFctn.hh"
00051
00052 class NonId3DCorrFctn : public StHbtCorrFctn {
00053 public:
00054 NonId3DCorrFctn(char* title, const int& nbins, const float& QinvLo,
00055 const float& QinvHi);
00056 NonId3DCorrFctn(char* title, const int& nbins, const float& QinvLo,
00057 const float& QinvHi, const int mqSideSel);
00058 NonId3DCorrFctn(char* title, const int& nbins, const float& QinvLo,
00059 const float& QinvHi, const float KCompCut);
00060 virtual ~NonId3DCorrFctn();
00061
00062 virtual void makeHistos(char* title, const int& nbins, const float& QinvLo, const float& QinvHi);
00063
00064 virtual StHbtString Report();
00065 virtual void AddRealPair(const StHbtPair*);
00066 virtual void AddMixedPair(const StHbtPair*);
00067
00068 virtual void Finish();
00069 virtual void Write();
00070
00071
00072 private:
00073 StHbt1DHisto* mNumOutP;
00074 StHbt1DHisto* mDenOutP;
00075 StHbt1DHisto* mRatOutP;
00076 StHbt1DHisto* mNumOutN;
00077 StHbt1DHisto* mDenOutN;
00078 StHbt1DHisto* mRatOutN;
00079 StHbt1DHisto* mRatOut;
00080 StHbt1DHisto* mRatOutNOverP;
00081
00082 StHbt1DHisto* mNumSideP;
00083 StHbt1DHisto* mDenSideP;
00084 StHbt1DHisto* mRatSideP;
00085 StHbt1DHisto* mNumSideN;
00086 StHbt1DHisto* mDenSideN;
00087 StHbt1DHisto* mRatSideN;
00088 StHbt1DHisto* mRatSide;
00089 StHbt1DHisto* mRatSideNOverP;
00090
00091 StHbt1DHisto* mNumLongP;
00092 StHbt1DHisto* mDenLongP;
00093 StHbt1DHisto* mRatLongP;
00094 StHbt1DHisto* mNumLongN;
00095 StHbt1DHisto* mDenLongN;
00096 StHbt1DHisto* mRatLongN;
00097 StHbt1DHisto* mRatLong;
00098 StHbt1DHisto* mRatLongNOverP;
00099
00100 StHbt2DHisto* mHOutKSame;
00101 StHbt2DHisto* mHOutKDiff;
00102 StHbt2DHisto* mHSideKSame;
00103 StHbt2DHisto* mHSideKDiff;
00104 StHbt2DHisto* mHLongKSame;
00105 StHbt2DHisto* mHLongKDiff;
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128 int mqSideSel;
00129 float mKCompCut;
00130
00131
00132 #ifdef __ROOT__
00133 ClassDef(NonId3DCorrFctn, 1)
00134 #endif
00135 };
00136
00137
00138 #endif
00139