]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG0/esdTrackCuts/AliESDtrackCuts.h
updating makefile to include evgen headers to compile systematics selector
[u/mrichter/AliRoot.git] / PWG0 / esdTrackCuts / AliESDtrackCuts.h
1 //
2 //  Class for handling of ESD track cuts.
3 //
4 //  The class manages a number of track quality cuts, a
5 //  track-to-vertex cut and a number of kinematic cuts. Two methods
6 //  can be used to figure out if an ESD track survives the cuts:
7 //  AcceptTrack which takes a single AliESDtrack as argument and
8 //  returns kTRUE/kFALSE or GetAcceptedTracks which takes an AliESD
9 //  object and returns an TObjArray (of AliESDtracks) with the tracks
10 //  in the ESD that survived the cuts.
11 //
12 //
13 //  TODO: 
14 //  - add functionality to save and load cuts
15 //  - add different ways to make track to vertex cut
16 //  - add histograms for kinematic cut variables?
17 //  - upper and lower cuts for all (non-boolean) cuts
18 //  - update print method
19 //  - is there a smarter way to manage the cuts?
20 //  - put comments to each variable
21 //  - implement destructor !!!
22 //
23
24 #ifndef ALIESDTRACKCUTS_H
25 #define ALIESDTRACKCUTS_H
26
27 #include <TObject.h>
28 #include <TH2.h>
29
30 class AliESD;
31 class AliESDtrack;
32 class AliLog;
33 class TTree;
34
35 class AliESDtrackCuts : public TObject 
36 {
37
38 public:
39   AliESDtrackCuts();
40   virtual ~AliESDtrackCuts();
41
42   Bool_t AcceptTrack(AliESDtrack* esdTrack);
43   TObjArray* GetAcceptedTracks(AliESD* esd);
44   Int_t CountAcceptedTracks(AliESD* esd);
45
46   virtual Long64_t Merge(TCollection* list);
47   virtual void Copy(TObject &c) const;
48
49   //######################################################
50   // track quality cut setters  
51   void SetMinNClustersTPC(Int_t min=-1)          {fCutMinNClusterTPC=min;}
52   void SetMinNClustersITS(Int_t min=-1)          {fCutMinNClusterITS=min;}
53   void SetMaxChi2PerClusterTPC(Float_t max=1e99) {fCutMaxChi2PerClusterTPC=max;}
54   void SetMaxChi2PerClusterITS(Float_t max=1e99) {fCutMaxChi2PerClusterITS=max;}
55   void SetRequireTPCRefit(Bool_t b=kFALSE)       {fCutRequireTPCRefit=b;}
56   void SetRequireITSRefit(Bool_t b=kFALSE)       {fCutRequireITSRefit=b;}
57   void SetAcceptKingDaughters(Bool_t b=kFALSE)   {fCutAcceptKinkDaughters=b;}
58   void SetMaxCovDiagonalElements(Float_t c1=1e99, Float_t c2=1e99, Float_t c3=1e99, Float_t c4=1e99, Float_t c5=1e99) 
59     {fCutMaxC11=c1; fCutMaxC22=c2; fCutMaxC33=c3; fCutMaxC44=c4; fCutMaxC55=c5;}
60   
61   // track to vertex cut setters
62   void SetMinNsigmaToVertex(Float_t sigma=1e99)       {fCutNsigmaToVertex = sigma;}
63   void SetRequireSigmaToVertex(Bool_t b=kTRUE )       {fCutSigmaToVertexRequired = b;}
64   
65   // track kinmatic cut setters  
66   void SetPRange(Float_t r1=0, Float_t r2=1e99)       {fPMin=r1;   fPMax=r2;}
67   void SetPtRange(Float_t r1=0, Float_t r2=1e99)      {fPtMin=r1;  fPtMax=r2;}
68   void SetPxRange(Float_t r1=-1e99, Float_t r2=1e99)  {fPxMin=r1;  fPxMax=r2;}
69   void SetPyRange(Float_t r1=-1e99, Float_t r2=1e99)  {fPyMin=r1;  fPyMax=r2;}
70   void SetPzRange(Float_t r1=-1e99, Float_t r2=1e99)  {fPzMin=r1;  fPzMax=r2;}
71   void SetEtaRange(Float_t r1=-1e99, Float_t r2=1e99) {fEtaMin=r1; fEtaMax=r2;}
72   void SetRapRange(Float_t r1=-1e99, Float_t r2=1e99) {fRapMin=r1; fRapMax=r2;}
73
74   Float_t GetMinNsigmaToVertex() { return fCutNsigmaToVertex; } 
75
76   //######################################################
77   void SetHistogramsOn(Bool_t b=kFALSE) {fHistogramsOn = b;}
78   void DefineHistograms(Int_t color=1);
79   void SaveHistograms(Char_t* dir="track_selection");
80
81   Float_t GetSigmaToVertex(AliESDtrack* esdTrack);
82   
83   virtual void Print(const Option_t* = "") const;
84
85   static void EnableNeededBranches(TTree* tree);
86
87   // void SaveQualityCuts(Char_t* file)
88   // void LoadQualityCuts(Char_t* file)
89
90 protected:
91   void Init(); // sets everything to 0
92
93   enum { kNCuts = 21 };
94
95   //######################################################
96   // esd track quality cuts
97   static const Char_t* fgkCutNames[kNCuts]; //! names of cuts (for internal use)
98
99   Int_t   fCutMinNClusterTPC;         // min number of tpc clusters
100   Int_t   fCutMinNClusterITS;         // min number of its clusters  
101
102   Float_t fCutMaxChi2PerClusterTPC;   // max tpc fit chi2 per tpc cluster
103   Float_t fCutMaxChi2PerClusterITS;   // max its fit chi2 per its cluster
104
105   Float_t fCutMaxC11;                 // max cov. matrix diag. elements (res. y^2)
106   Float_t fCutMaxC22;                 // max cov. matrix diag. elements (res. z^2)
107   Float_t fCutMaxC33;                 // max cov. matrix diag. elements (res. sin(phi)^2)
108   Float_t fCutMaxC44;                 // max cov. matrix diag. elements (res. tan(theta_dip)^2)
109   Float_t fCutMaxC55;                 // max cov. matrix diag. elements (res. 1/pt^2)
110
111   Bool_t  fCutAcceptKinkDaughters;    // accepting kink daughters?
112   Bool_t  fCutRequireTPCRefit;        // require TPC refit
113   Bool_t  fCutRequireITSRefit;        // require ITS refit
114   
115   // track to vertex cut
116   Float_t fCutNsigmaToVertex;         // max number of estimated sigma from track-to-vertex
117   Bool_t  fCutSigmaToVertexRequired;  // cut track if sigma from track-to-vertex could not be calculated
118
119   // esd kinematics cuts
120   Float_t fPMin,   fPMax;             // definition of the range of the P
121   Float_t fPtMin,  fPtMax;            // definition of the range of the Pt
122   Float_t fPxMin,  fPxMax;            // definition of the range of the Px
123   Float_t fPyMin,  fPyMax;            // definition of the range of the Py
124   Float_t fPzMin,  fPzMax;            // definition of the range of the Pz
125   Float_t fEtaMin, fEtaMax;           // definition of the range of the eta
126   Float_t fRapMin, fRapMax;           // definition of the range of the y
127
128   //######################################################
129   // diagnostics histograms
130   Bool_t fHistogramsOn;               // histograms on/off
131
132   TH1F* fhNClustersITS[2];            //->
133   TH1F* fhNClustersTPC[2];            //->
134
135   TH1F* fhChi2PerClusterITS[2];       //->
136   TH1F* fhChi2PerClusterTPC[2];       //->
137
138   TH1F* fhC11[2];                     //->
139   TH1F* fhC22[2];                     //->
140   TH1F* fhC33[2];                     //->
141   TH1F* fhC44[2];                     //->
142   TH1F* fhC55[2];                     //->
143
144   TH1F* fhDXY[2];                     //->
145   TH1F* fhDZ[2];                      //->
146   TH2F* fhDXYvsDZ[2];                 //->
147
148   TH1F* fhDXYNormalized[2];           //->
149   TH1F* fhDZNormalized[2];            //->
150   TH2F* fhDXYvsDZNormalized[2];       //->
151
152   TH1F*  fhCutStatistics;             //-> statistics of what cuts the tracks did not survive
153   TH2F*  fhCutCorrelation;            //-> 2d statistics plot
154
155  private:
156
157   AliESDtrackCuts(const AliESDtrackCuts& pd);  // Copy Constructor
158   AliESDtrackCuts &operator=(const AliESDtrackCuts &c);
159   
160   
161   ClassDef(AliESDtrackCuts, 1)
162 };
163
164
165 #endif