00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef StBadDcaAnalysis_H
00021 #define StBadDcaAnalysis_H
00022
00023
00024 #include "StHiBaseAnalysis.h"
00025
00026 class StBadDcaAnalysis : public StHiBaseAnalysis{
00027 public:
00028 StBadDcaAnalysis(const char* inputDir="./",
00029 const char* outRootName="hianalysis.hist.root");
00030 virtual ~StBadDcaAnalysis();
00031
00032 protected:
00033
00034 Int_t initMore();
00035 void initHistograms();
00036 void fillEventHistograms();
00037 void finishHistograms();
00038
00039 void trackLoop();
00040
00041
00042
00043 Bool_t acceptEvent(StHiMicroEvent*);
00044
00045
00046
00047
00048
00049
00050 struct PlusMinus{
00051
00052 TH3D* h3DcaXYGlFitPtsPtPr;
00053
00054
00055 TH3D* h3DcaXYGlAllPtsPtPr;
00056
00057
00058 TH3D* h3DcaXYGlRatioPtsPtPr;
00059
00060
00061 TH3D* h3DcaXYGlFirstRowPtPr;
00062
00063
00064 TH3D* h3DcaXYGlLastRowPtPr;
00065
00066
00067 TH3D* h3DcaXYGlLocalPhiPtPr;
00068
00069 };
00070
00071 PlusMinus pm[2];
00072
00073 ClassDef(StBadDcaAnalysis,1)
00074
00075 };
00076 #endif