]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - STEER/AliESDtrack.h
Using AliPID (Yu.Belikov)
[u/mrichter/AliRoot.git] / STEER / AliESDtrack.h
... / ...
CommitLineData
1#ifndef ALIESDTRACK_H
2#define ALIESDTRACK_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8//-------------------------------------------------------------------------
9// Class AliESDtrack
10// This is the class to deal with during the physics analysis of data
11//
12// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
13//-------------------------------------------------------------------------
14/*****************************************************************************
15 * Use GetExternalParameters() and GetExternalCovariance() to access the *
16 * track information regardless of its internal representation. *
17 * This formation is now fixed in the following way: *
18 * external param0: local Y-coordinate of a track (cm) *
19 * external param1: local Z-coordinate of a track (cm) *
20 * external param2: local sine of the track momentum azimuthal angle *
21 * external param3: tangent of the track momentum dip angle *
22 * external param4: 1/pt (1/(GeV/c)) *
23 *****************************************************************************/
24
25#include <TBits.h>
26#include "AliExternalTrackParam.h"
27#include "AliPID.h"
28#include <TVector3.h>
29
30class AliESDVertex;
31class AliKalmanTrack;
32class AliTrackPointArray;
33
34const Int_t kNPlane = 6;
35
36class AliESDtrack : public AliExternalTrackParam {
37public:
38 AliESDtrack();
39 AliESDtrack(const AliESDtrack& track);
40 virtual ~AliESDtrack();
41 void MakeMiniESDtrack();
42 void SetID(Int_t id) { fID =id;}
43 Int_t GetID(){ return fID;}
44 void SetStatus(ULong_t flags) {fFlags|=flags;}
45 void ResetStatus(ULong_t flags) {fFlags&=~flags;}
46 Bool_t UpdateTrackParams(const AliKalmanTrack *t, ULong_t flags);
47 void SetIntegratedLength(Double_t l) {fTrackLength=l;}
48 void SetIntegratedTimes(const Double_t *times);
49 void SetESDpid(const Double_t *p);
50 void GetESDpid(Double_t *p) const;
51
52 ULong_t GetStatus() const {return fFlags;}
53 Int_t GetLabel() const {return fLabel;}
54 void SetLabel(Int_t label) {fLabel = label;}
55
56 void GetExternalParameters(Double_t &x, Double_t p[5]) const;
57 void GetExternalCovariance(Double_t cov[15]) const;
58
59 Double_t GetIntegratedLength() const {return fTrackLength;}
60 void GetIntegratedTimes(Double_t *times) const;
61 Double_t GetMass() const;
62 TVector3 P3() const {Double_t p[3]; GetPxPyPz(p); return TVector3(p[0],p[1],p[2]);} //running track momentum
63 TVector3 X3() const {Double_t x[3]; GetXYZ(x); return TVector3(x[0],x[1],x[2]);} //running track position
64
65
66 Bool_t GetConstrainedPxPyPz(Double_t *p) const {
67 if (!fCp) return kFALSE;
68 return fCp->GetPxPyPz(p);
69 }
70 Bool_t GetConstrainedXYZ(Double_t *r) const {
71 if (!fCp) return kFALSE;
72 return fCp->GetXYZ(r);
73 }
74 Bool_t GetConstrainedExternalParameters
75 (Double_t &alpha, Double_t &x, Double_t p[5]) const;
76 Bool_t GetConstrainedExternalCovariance(Double_t cov[15]) const;
77 Double_t GetConstrainedChi2() const {return fCchi2;}
78
79
80 Bool_t GetInnerPxPyPz(Double_t *p) const {
81 if (!fIp) return kFALSE;
82 return fIp->GetPxPyPz(p);
83 }
84 const AliExternalTrackParam * GetInnerParam() const { return fIp;}
85 Bool_t GetInnerXYZ(Double_t *r) const {
86 if (!fIp) return kFALSE;
87 return fIp->GetXYZ(r);
88 }
89 Bool_t GetInnerExternalParameters
90 (Double_t &alpha, Double_t &x, Double_t p[5]) const;
91 Bool_t GetInnerExternalCovariance(Double_t cov[15]) const;
92
93 const AliExternalTrackParam * GetOuterParam() const { return fOp;}
94 Bool_t GetOuterPxPyPz(Double_t *p) const {
95 if (!fOp) return kFALSE;
96 return fOp->GetPxPyPz(p);
97 }
98 Bool_t GetOuterXYZ(Double_t *r) const {
99 if (!fOp) return kFALSE;
100 return fOp->GetXYZ(r);
101 }
102 Bool_t GetOuterExternalParameters
103 (Double_t &alpha, Double_t &x, Double_t p[5]) const;
104 Bool_t GetOuterExternalCovariance(Double_t cov[15]) const;
105
106
107 Int_t GetNcls(Int_t idet) const;
108 Int_t GetClusters(Int_t idet, UInt_t *idx) const;
109
110 void SetITSpid(const Double_t *p);
111 void SetITSChi2MIP(const Float_t *chi2mip);
112 void SetITStrack(AliKalmanTrack * track){fITStrack=track;}
113 void GetITSpid(Double_t *p) const;
114 Float_t GetITSsignal() const {return fITSsignal;}
115 Float_t GetITSchi2() const {return fITSchi2;}
116 Int_t GetITSclusters(UInt_t *idx) const;
117 Int_t GetITSLabel() const {return fITSLabel;}
118 Float_t GetITSFakeRatio() const {return fITSFakeRatio;}
119 AliKalmanTrack * GetITStrack(){return fITStrack;}
120
121 void SetTPCpid(const Double_t *p);
122 void GetTPCpid(Double_t *p) const;
123 void SetTPCPoints(Float_t points[4]){for (Int_t i=0;i<4;i++) fTPCPoints[i]=points[i];}
124 void SetTPCPointsF(UChar_t findable){fTPCnclsF = findable;}
125 Float_t GetTPCPoints(Int_t i){return fTPCPoints[i];}
126 void SetKinkIndexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fKinkIndexes[i] = points[i];}
127 void SetV0Indexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fV0Indexes[i] = points[i];}
128 void SetTPCsignal(Float_t signal, Float_t sigma, UChar_t npoints){ fTPCsignal = signal; fTPCsignalS = sigma; fTPCsignalN = npoints;}
129 Float_t GetTPCsignal() const {return fTPCsignal;}
130 Float_t GetTPCchi2() const {return fTPCchi2;}
131 Int_t GetTPCclusters(Int_t *idx) const;
132 Float_t GetTPCdensity(Int_t row0, Int_t row1) const;
133 Int_t GetTPCLabel() const {return fTPCLabel;}
134 Int_t GetKinkIndex(Int_t i) const { return fKinkIndexes[i];}
135 Int_t GetV0Index(Int_t i) const { return fV0Indexes[i];}
136 const TBits& GetTPCClusterMap() const {return fTPCClusterMap;}
137
138 void SetTRDpid(const Double_t *p);
139 void SetTRDQuality(Float_t quality){fTRDQuality=quality;}
140 Float_t GetTRDQuality()const {return fTRDQuality;}
141 void SetTRDBudget(Float_t budget){fTRDBudget=budget;}
142 Float_t GetTRDBudget()const {return fTRDBudget;}
143 void SetTRDtrack(AliKalmanTrack * track){fTRDtrack=track;}
144 void SetTRDsignals(Float_t dedx, Int_t i) {fTRDsignals[i]=dedx;}
145 void SetTRDTimBin(Int_t timbin, Int_t i) {fTRDTimBin[i]=timbin;}
146 void GetTRDpid(Double_t *p) const;
147 Float_t GetTRDsignal() const {return fTRDsignal;}
148 Float_t GetTRDsignals(Int_t i) const {return fTRDsignals[i];}
149 Int_t GetTRDTimBin(Int_t i) const {return fTRDTimBin[i];}
150 Float_t GetTRDchi2() const {return fTRDchi2;}
151 Int_t GetTRDclusters(UInt_t *idx) const;
152 Int_t GetTRDncls() const {return fTRDncls;}
153 void SetTRDpid(Int_t iSpecies, Float_t p);
154 Float_t GetTRDpid(Int_t iSpecies) const;
155 Int_t GetTRDLabel() const {return fTRDLabel;}
156
157
158 AliKalmanTrack * GetTRDtrack(){return fTRDtrack;}
159
160 void SetTOFsignal(Double_t tof) {fTOFsignal=tof;}
161 Float_t GetTOFsignal() const {return fTOFsignal;}
162 void SetTOFsignalToT(Double_t ToT) {fTOFsignalToT=ToT;}
163 Float_t GetTOFsignalToT() const {return fTOFsignalToT;}
164 Float_t GetTOFchi2() const {return fTOFchi2;}
165 void SetTOFpid(const Double_t *p);
166 void SetTOFLabel(const Int_t *p);
167 void GetTOFpid(Double_t *p) const;
168 void GetTOFLabel(Int_t *p) const;
169 void GetTOFInfo(Float_t *info) const;
170 void SetTOFInfo(Float_t *info);
171 Int_t GetTOFCalChannel() const {return fTOFCalChannel;}
172 UInt_t GetTOFcluster() const {return fTOFindex;}
173 void SetTOFcluster(UInt_t index) {fTOFindex=index;}
174 void SetTOFCalChannel(Int_t index) {fTOFCalChannel=index;}
175
176 void SetRICHsignal(Double_t beta) {fRICHsignal=beta;}
177 Float_t GetRICHsignal() const {return fRICHsignal;}
178 void SetRICHpid(const Double_t *p);
179 void GetRICHpid(Double_t *p) const;
180 void SetRICHchi2(Double_t chi2) {fRICHchi2=chi2;}
181 Float_t GetRICHchi2() const {return fRICHchi2;}
182 void SetRICHcluster(UInt_t index) {fRICHindex=index;}
183 UInt_t GetRICHcluster() const {return fRICHindex;}
184 void SetRICHnclusters(Int_t n) {fRICHncls=n;}
185 Int_t GetRICHnclusters() const {return fRICHncls;}
186 void SetRICHthetaPhi(Double_t theta, Double_t phi) {
187 fRICHtheta=theta; fRICHphi=phi;
188 }
189 void GetRICHthetaPhi(Double_t &theta, Double_t &phi) const {
190 theta=fRICHtheta; phi=fRICHphi;
191 }
192 void SetRICHdxdy(Double_t dx, Double_t dy) {
193 fRICHdx=dx; fRICHdy=dy;
194 }
195 void GetRICHdxdy(Double_t &dx, Double_t &dy) const {
196 dx=fRICHdx; dy=fRICHdy;
197 }
198
199 /* void SetPHOSposition(const Double_t *pos) { */
200/* fPHOSpos[0] = pos[0]; fPHOSpos[1]=pos[1]; fPHOSpos[2]=pos[2]; */
201/* } */
202/* void SetPHOSsignal(Double_t ene) {fPHOSsignal = ene; } */
203/* void SetPHOSpid(const Double_t *p); */
204/* void GetPHOSposition(Double_t *pos) const { */
205/* pos[0]=fPHOSpos[0]; pos[1]=fPHOSpos[1]; pos[2]=fPHOSpos[2]; */
206/* } */
207/* Float_t GetPHOSsignal() const {return fPHOSsignal;} */
208/* void GetPHOSpid(Double_t *p) const; */
209
210 Bool_t IsOn(Int_t mask) const {return (fFlags&mask)>0;}
211 Bool_t IsRICH() const {return fFlags&kRICHpid;}
212 Bool_t IsPHOS() const {return fFlags&kPHOSpid;}
213
214 void SetTrackPointArray(AliTrackPointArray *points) { fPoints = points; }
215 AliTrackPointArray *GetTrackPointArray() const { return fPoints; }
216
217 Bool_t
218 RelateToVertex(const AliESDVertex *vtx, Double_t b, Double_t maxd);
219 void GetImpactParameters(Float_t &xy,Float_t &z) const {xy=fD; z=fZ;}
220 void GetImpactParameters(Float_t p[2], Float_t cov[3]) const {
221 p[0]=fD; p[1]=fZ; cov[0]=fCdd; cov[1]=fCdz; cov[2]=fCzz;
222 }
223 virtual void Print(Option_t * opt) const ;
224
225 enum {
226 kITSin=0x0001,kITSout=0x0002,kITSrefit=0x0004,kITSpid=0x0008,
227 kTPCin=0x0010,kTPCout=0x0020,kTPCrefit=0x0040,kTPCpid=0x0080,
228 kTRDin=0x0100,kTRDout=0x0200,kTRDrefit=0x0400,kTRDpid=0x0800,
229 kTOFin=0x1000,kTOFout=0x2000,kTOFrefit=0x4000,kTOFpid=0x8000,
230 kPHOSpid=0x10000, kRICHpid=0x20000,
231 kTRDbackup=0x80000,
232 kTRDStop=0x20000000,
233 kESDpid=0x40000000,
234 kTIME=0x80000000
235 };
236protected:
237
238 //AliESDtrack & operator=(const AliESDtrack & );
239
240 ULong_t fFlags; // Reconstruction status flags
241 Int_t fLabel; // Track label
242 Int_t fID; // Unique ID of the track
243 Float_t fTrackLength; // Track length
244 Float_t fD; // Impact parameter in XY plane
245 Float_t fZ; // Impact parameter in Z
246 Float_t fCdd,fCdz,fCzz; // Covariance matrix of the impact parameters
247 Float_t fTrackTime[AliPID::kSPECIES]; // TOFs estimated by the tracking
248 Float_t fR[AliPID::kSPECIES]; // combined "detector response probability"
249
250 Int_t fStopVertex; // Index of the stop vertex
251
252//Track parameters constrained to the primary vertex
253 AliExternalTrackParam *fCp;
254 Double_t fCchi2; //chi2 at the primary vertex
255
256//Track parameters at the inner wall of the TPC
257 AliExternalTrackParam *fIp;
258
259//Track parameters at the inner wall of the TRD
260 AliExternalTrackParam *fOp;
261
262 // ITS related track information
263 Float_t fITSchi2; // chi2 in the ITS
264 Float_t fITSchi2MIP[12]; // chi2s in the ITS
265 Int_t fITSncls; // number of clusters assigned in the ITS
266 UInt_t fITSindex[6]; //! indices of the assigned ITS clusters
267 Float_t fITSsignal; // detector's PID signal
268 Float_t fITSr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
269 Int_t fITSLabel; // label according TPC
270 Float_t fITSFakeRatio; // ration of fake tracks
271 AliKalmanTrack * fITStrack; //! OWNER: pointer to the ITS track -- currently for debug purpose
272
273 // TPC related track information
274 Float_t fTPCchi2; // chi2 in the TPC
275 Int_t fTPCncls; // number of clusters assigned in the TPC
276 UShort_t fTPCnclsF; // number of findable clusters in the TPC
277 Int_t fTPCindex[180]; //! indices of the assigned TPC clusters
278 TBits fTPCClusterMap; // Map of clusters, one bit per padrow; 1 if has a cluster on given padrow
279 Float_t fTPCsignal; // detector's PID signal
280 UShort_t fTPCsignalN; // number of points used for dEdx
281 Float_t fTPCsignalS; // RMS of dEdx measurement
282 Float_t fTPCr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
283 Int_t fTPCLabel; // label according TPC
284 Float_t fTPCPoints[4]; // TPC points -first, max. dens, last and max density
285 Int_t fKinkIndexes[3]; // array of indexes of posible kink candidates
286 Int_t fV0Indexes[3]; // array of indexes of posible kink candidates
287
288 // TRD related track information
289 Float_t fTRDchi2; // chi2 in the TRD
290 Int_t fTRDncls; // number of clusters assigned in the TRD
291 Int_t fTRDncls0; // number of clusters assigned in the TRD before first material cross
292 UInt_t fTRDindex[180]; //! indices of the assigned TRD clusters
293 Float_t fTRDsignal; // detector's PID signal
294 Float_t fTRDsignals[kNPlane]; // TRD signals from all six planes
295 Int_t fTRDTimBin[kNPlane]; // Time bin of Max cluster from all six planes
296 Float_t fTRDr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
297 Int_t fTRDLabel; // label according TRD
298 Float_t fTRDQuality; //trd quality factor for TOF
299 Float_t fTRDBudget; //trd material budget
300 AliKalmanTrack * fTRDtrack; //! OWNER: pointer to the TRD track -- currently for debug purpose
301
302 // TOF related track information
303 Float_t fTOFchi2; // chi2 in the TOF
304 UInt_t fTOFindex; // index of the assigned TOF cluster
305 Int_t fTOFCalChannel; // Channel Index of the TOF Signal
306 Float_t fTOFsignal; // detector's PID signal
307 Float_t fTOFsignalToT; // detector's ToT signal
308 Float_t fTOFr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
309 Int_t fTOFLabel[3]; // TOF label
310 Float_t fTOFInfo[10]; //! TOF informations
311
312 // PHOS related track information
313 // Float_t fPHOSpos[3]; // position localised by PHOS in global coordinate system
314 // Float_t fPHOSsignal; // energy measured by PHOS
315 //Float_t fPHOSr[AliPID::kSPECIESN]; // PID information from PHOS
316
317 // HMPID related track information
318 Float_t fRICHchi2; // chi2 in the RICH
319 Int_t fRICHncls; // number of photon clusters
320 UInt_t fRICHindex; // index of the assigned MIP cluster
321 Float_t fRICHsignal; // RICH PID signal
322 Float_t fRICHr[AliPID::kSPECIES];// "detector response probabilities" (for the PID)
323 Float_t fRICHtheta; // theta of the track extrapolated to the RICH
324 Float_t fRICHphi; // phi of the track extrapolated to the RICH
325 Float_t fRICHdx; // x of the track impact minus x of the MIP
326 Float_t fRICHdy; // y of the track impact minus y of the MIP
327
328 AliTrackPointArray *fPoints; // Array which contains the track space points in the global frame
329
330 ClassDef(AliESDtrack,24) //ESDtrack
331};
332
333#endif
334