2 #ifndef AliComparisonDraw_h
3 #define AliComparisonDraw_h
22 class AliComparisonDraw : public TNamed {
26 AliComparisonDraw(const AliComparisonDraw& recinfo);
27 AliComparisonDraw& operator=(const AliComparisonDraw& info);
30 virtual Bool_t IsFolder() const {return kTRUE;}
32 void Process(AliMCInfo* infoMC, AliESDRecInfo *infoRC);
36 void ProcessEff(AliMCInfo* infoMC, AliESDRecInfo *infoRC);
37 void ProcessResolConstrained(AliMCInfo* infoMC, AliESDRecInfo *infoRC);
38 void ProcessTPCdedx(AliMCInfo* infoMC, AliESDRecInfo *infoRC);
39 void ProcessDCA(AliMCInfo* infoMC, AliESDRecInfo *infoRC);
44 //TH1F GetPtResol(Float_t pt0, Float_t pt1);
45 static TH1F* MakeResol(TH2F * his, Int_t integ, Bool_t type);
46 static TGraph2D * MakeStat2D(TH3 * his, Int_t delta0, Int_t delta1, Int_t type);
47 static TGraph * MakeStat1D(TH3 * his, Int_t delta1, Int_t type);
54 static Bool_t fgBDraw; //option draw temporary results
55 TProfile* fEffTPCPt; //->TPC efficiency as function of Pt (tan+-1)
56 TProfile* fEffTPCPtMC; //->MC -TPC efficiency as function of Pt (tan+-1)
57 TProfile* fEffTPCPtF; //->efficiency for findable tracks
59 TProfile* fEffTPCTan; //->TPC efficiency as function of Tan (pt>0.15
60 TProfile* fEffTPCTanMC; //->MC -TPC efficiency as function of Tan (pt>0.15)
61 TProfile* fEffTPCTanF; //->efficiency for findable tracks Tan (pt>0.15)
63 TProfile2D* fEffTPCPtTan; //->TPC efficiency as function of Pt and tan
64 TProfile2D* fEffTPCPtTanMC; //->MC -TPC efficiency as function of Pt and tan
65 TProfile2D* fEffTPCPtTanF; //-> TPC efficiency as function of Pt and tan
69 TH2F* fTPCSignalNormTan; //-> tpc signal normalized to the mean signal - MC
70 TH2F* fTPCSignalNormSPhi; //-> tpc signal normalized to the mean signal - MC
71 TH2F* fTPCSignalNormTPhi; //-> tpc signal normalized to the mean signal - MC
73 TH3F* fTPCSignalNormTanSPhi; //-> tpc signal normalized to the mean signal - MC
74 TH3F* fTPCSignalNormTanTPhi; //-> tpc signal normalized to the mean signal - MC
75 TH3F* fTPCSignalNormTanSPt; //->tpc signal normalized to the mean signal - MC
80 TH2F* fPtResolLPT; //-> pt resolution - low pt
81 TH2F* fPtResolHPT; //-> pt resolution - high pt
82 TH2F* fPtPullLPT; //-> pt resolution - low pt
83 TH2F* fPtPullHPT; //-> pt resolution - high pt
85 // Resolution constrained param
87 TH2F *fCPhiResolTan; //-> angular resolution - constrained
88 TH2F *fCTanResolTan; //-> angular resolution - constrained
89 TH2F *fCPtResolTan; //-> pt resolution - constrained
90 TH2F *fCPhiPullTan; //-> angular resolution - constrained
91 TH2F *fCTanPullTan; //-> angular resolution - constrained
92 TH2F *fCPtPullTan; //-> pt resolution - constrained
96 TH3F *fD0TanSPtB1; //-> distance to vertex y
97 TH3F *fD1TanSPtB1; //-> distance to vertex z
98 TH3F *fD0TanSPtL1; //-> distance to vertex y
99 TH3F *fD1TanSPtL1; //-> distance to vertex z
102 ClassDef(AliComparisonDraw,2);