]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDtrack.h
New class for PID constants and methods. Changes in all related code (T.Kuhr)
[u/mrichter/AliRoot.git] / STEER / AliESDtrack.h
CommitLineData
ae982df3 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
ac3faee4 6/* $Id$ */
7
ae982df3 8//-------------------------------------------------------------------------
9// Class AliESDtrack
15614b8b 10// This is the class to deal with during the physics analysis of data
ae982df3 11//
12// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
13//-------------------------------------------------------------------------
23904d16 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 *****************************************************************************/
ac3faee4 24
a866ac60 25#include <TBits.h>
ac3faee4 26#include <TObject.h>
304864ab 27#include "AliPID.h"
ae982df3 28class AliKalmanTrack;
29
eab5961e 30const Int_t kNPlane = 6;
31
ae982df3 32class AliESDtrack : public TObject {
33public:
34 AliESDtrack();
c4d11b15 35 AliESDtrack(const AliESDtrack& track);
51ad6848 36 virtual ~AliESDtrack();
37 void SetID(Int_t id) { fID =id;}
38 Int_t GetID(){ return fID;}
ae982df3 39 void SetStatus(ULong_t flags) {fFlags|=flags;}
40 void ResetStatus(ULong_t flags) {fFlags&=~flags;}
15614b8b 41 Bool_t UpdateTrackParams(const AliKalmanTrack *t, ULong_t flags);
399fb957 42 void SetImpactParameters(Float_t xy,Float_t z) {fD=xy; fZ=z;}
ae982df3 43 void SetIntegratedLength(Double_t l) {fTrackLength=l;}
44 void SetIntegratedTimes(const Double_t *times);
8c6a71ab 45 void SetESDpid(const Double_t *p);
46 void GetESDpid(Double_t *p) const;
ae982df3 47
48 ULong_t GetStatus() const {return fFlags;}
49 Int_t GetLabel() const {return fLabel;}
50 Double_t GetAlpha() const {return fRalpha;}
51 void GetExternalParameters(Double_t &x, Double_t p[5]) const;
52 void GetExternalCovariance(Double_t cov[15]) const;
23904d16 53
54 Bool_t GetExternalParametersAt(Double_t x, Double_t p[5]) const;
55 Bool_t GetPxPyPzAt(Double_t x, Double_t p[3]) const;
56 Bool_t GetXYZAt(Double_t x, Double_t r[3]) const;
57
399fb957 58 void GetImpactParameters(Float_t &xy,Float_t &z) const {xy=fD; z=fZ;}
ae982df3 59 Double_t GetIntegratedLength() const {return fTrackLength;}
60 void GetIntegratedTimes(Double_t *times) const;
4a78b8c5 61 Double_t GetMass() const;
ae982df3 62 Double_t GetP() const;
09c96efc 63 Bool_t GetPxPyPz(Double_t *p) const;
64 Bool_t GetXYZ(Double_t *r) const;
b322ab2f 65 void GetCovariance(Double_t cov[21]) const;
9f64824b 66 Int_t GetSign() const {return (fRp[4]>0) ? 1 : -1;}
ae982df3 67
5ccd1720 68 void SetConstrainedTrackParams(const AliKalmanTrack *t, Double_t chi2);
67c3dcbe 69
70 Double_t GetConstrainedAlpha() const {return fCalpha;}
71 Double_t GetConstrainedChi2() const {return fCchi2;}
72 void GetConstrainedExternalParameters(Double_t &x, Double_t p[5]) const;
73 void GetConstrainedExternalCovariance(Double_t cov[15]) const;
74
09c96efc 75 Bool_t GetConstrainedPxPyPz(Double_t *p) const;
76 Bool_t GetConstrainedXYZ(Double_t *r) const;
67c3dcbe 77
09c96efc 78 Bool_t GetInnerPxPyPz(Double_t *p) const;
79 Bool_t GetInnerXYZ(Double_t *r) const;
a866ac60 80 void GetInnerExternalParameters(Double_t &x, Double_t p[5]) const;//skowron
81 void GetInnerExternalCovariance(Double_t cov[15]) const;//skowron
82 Double_t GetInnerAlpha() const {return fIalpha;}
83
c630aafd 84 void SetITSpid(const Double_t *p);
babd135a 85 void SetITSChi2MIP(const Float_t *chi2mip);
c4d11b15 86 void SetITStrack(AliKalmanTrack * track){fITStrack=track;}
c630aafd 87 void GetITSpid(Double_t *p) const;
ae982df3 88 Float_t GetITSsignal() const {return fITSsignal;}
13da10da 89 Float_t GetITSchi2() const {return fITSchi2;}
ae982df3 90 Int_t GetITSclusters(UInt_t *idx) const;
6e5b1b04 91 Int_t GetITSLabel() const {return fITSLabel;}
babd135a 92 Float_t GetITSFakeRatio() const {return fITSFakeRatio;}
c4d11b15 93 AliKalmanTrack * GetITStrack(){return fITStrack;}
ae982df3 94
13da10da 95 void SetTPCpid(const Double_t *p);
96 void GetTPCpid(Double_t *p) const;
51ad6848 97 void SetTPCPoints(Float_t points[4]){for (Int_t i=0;i<4;i++) fTPCPoints[i]=points[i];}
98 void SetKinkIndexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fKinkIndexes[i] = points[i];}
99 void SetV0Indexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fV0Indexes[i] = points[i];}
13da10da 100 Float_t GetTPCsignal() const {return fTPCsignal;}
101 Float_t GetTPCchi2() const {return fTPCchi2;}
102 Int_t GetTPCclusters(Int_t *idx) const;
6e5b1b04 103 Int_t GetTPCLabel() const {return fTPCLabel;}
51ad6848 104 Int_t GetKinkIndex(Int_t i) const { return fKinkIndexes[i];}
105 Int_t GetV0Index(Int_t i) const { return fV0Indexes[i];}
3a83c716 106 const TBits& GetTPCClusterMap() const {return fTPCClusterMap;}
a866ac60 107
c630aafd 108 void SetTRDpid(const Double_t *p);
c4d11b15 109 void SetTRDtrack(AliKalmanTrack * track){fTRDtrack=track;}
eab5961e 110 void SetTRDsignals(Float_t dedx, Int_t i) {fTRDsignals[i]=dedx;}
111 void SetTRDTimBin(Int_t timbin, Int_t i) {fTRDTimBin[i]=timbin;}
c630aafd 112 void GetTRDpid(Double_t *p) const;
79e94bf8 113 Float_t GetTRDsignal() const {return fTRDsignal;}
eab5961e 114 Float_t GetTRDsignals(Int_t i) const {return fTRDsignals[i];}
115 Int_t GetTRDTimBin(Int_t i) const {return fTRDTimBin[i];}
13da10da 116 Float_t GetTRDchi2() const {return fTRDchi2;}
bb2ceb1f 117 Int_t GetTRDclusters(UInt_t *idx) const;
51ad6848 118 Int_t GetTRDncls() const {return fTRDncls;}
79e94bf8 119 void SetTRDpid(Int_t iSpecies, Float_t p);
120 Float_t GetTRDpid(Int_t iSpecies) const;
6e5b1b04 121 Int_t GetTRDLabel() const {return fTRDLabel;}
35f4ab61 122 void GetTRDExternalParameters(Double_t &x, Double_t &alpha, Double_t p[5], Double_t cov[15]) const;//MI
c4d11b15 123 AliKalmanTrack * GetTRDtrack(){return fTRDtrack;}
79e94bf8 124
c630aafd 125 void SetTOFsignal(Double_t tof) {fTOFsignal=tof;}
126 Float_t GetTOFsignal() const {return fTOFsignal;}
13da10da 127 Float_t GetTOFchi2() const {return fTOFchi2;}
c630aafd 128 void SetTOFpid(const Double_t *p);
51ad6848 129 void SetTOFLabel(const Int_t *p);
c630aafd 130 void GetTOFpid(Double_t *p) const;
51ad6848 131 void GetTOFLabel(Int_t *p) const;
132 void GetTOFInfo(Float_t *info) const;
133 void SetTOFInfo(Float_t *info);
c630aafd 134 UInt_t GetTOFcluster() const {return fTOFindex;}
135 void SetTOFcluster(UInt_t index) {fTOFindex=index;}
4a78b8c5 136
137 void SetRICHsignal(Double_t beta) {fRICHsignal=beta;}
138 Float_t GetRICHsignal() const {return fRICHsignal;}
139 void SetRICHpid(const Double_t *p);
140 void GetRICHpid(Double_t *p) const;
141
142 void SetPHOSposition(const Double_t *pos) {
143 fPHOSpos[0] = pos[0]; fPHOSpos[1]=pos[1]; fPHOSpos[2]=pos[2];
144 }
145 void SetPHOSsignal(Double_t ene) {fPHOSsignal = ene; }
146 void SetPHOSpid(const Double_t *p);
147 void GetPHOSposition(Double_t *pos) const {
148 pos[0]=fPHOSpos[0]; pos[1]=fPHOSpos[1]; pos[2]=fPHOSpos[2];
149 }
150 Float_t GetPHOSsignal() const {return fPHOSsignal;}
151 void GetPHOSpid(Double_t *p) const;
152
704be597 153 void SetEMCALposition(const Double_t *pos) {
154 fEMCALpos[0] = pos[0]; fEMCALpos[1]=pos[1]; fEMCALpos[2]=pos[2];
155 }
156 void SetEMCALsignal(Double_t ene) {fEMCALsignal = ene; }
157 void SetEMCALpid(const Double_t *p);
158 void GetEMCALposition(Double_t *pos) const {
159 pos[0]=fEMCALpos[0]; pos[1]=fEMCALpos[1]; pos[2]=fEMCALpos[2];
160 }
161 Float_t GetEMCALsignal() const {return fEMCALsignal;}
162 void GetEMCALpid(Double_t *p) const;
163
3a83c716 164 Bool_t IsOn(Int_t mask) const {return (fFlags&mask)>0;}
704be597 165 Bool_t IsRICH() const {return fFlags&kRICHpid;}
166 Bool_t IsPHOS() const {return fFlags&kPHOSpid;}
167 Bool_t IsEMCAL() const {return fFlags&kEMCALpid;}
ac2f7574 168
169 virtual void Print(Option_t * opt) const ;
170
ae982df3 171 enum {
8c6a71ab 172 kITSin=0x0001,kITSout=0x0002,kITSrefit=0x0004,kITSpid=0x0008,
173 kTPCin=0x0010,kTPCout=0x0020,kTPCrefit=0x0040,kTPCpid=0x0080,
174 kTRDin=0x0100,kTRDout=0x0200,kTRDrefit=0x0400,kTRDpid=0x0800,
175 kTOFin=0x1000,kTOFout=0x2000,kTOFrefit=0x4000,kTOFpid=0x8000,
c4d11b15 176 kPHOSpid=0x10000, kRICHpid=0x20000, kEMCALpid=0x40000,
177 kTRDbackup=0x80000,
4a78b8c5 178 kTRDStop=0x20000000,
8c6a71ab 179 kESDpid=0x40000000,
ae982df3 180 kTIME=0x80000000
181 };
ae982df3 182protected:
183 ULong_t fFlags; // Reconstruction status flags
184 Int_t fLabel; // Track label
51ad6848 185 Int_t fID; // Unique ID of the track
399fb957 186 Float_t fTrackLength; // Track length
187 Float_t fD; // Impact parameter in XY-plane
188 Float_t fZ; // Impact parameter in Z
304864ab 189 Float_t fTrackTime[AliPID::kSPECIES]; // TOFs estimated by the tracking
190 Float_t fR[AliPID::kSPECIES]; // combined "detector response probability"
ae982df3 191
192 Int_t fStopVertex; // Index of stop vertex
193
194//Running track parameters
195 Double_t fRalpha; // track rotation angle
196 Double_t fRx; // X-coordinate of the track reference plane
197 Double_t fRp[5]; // external track parameters
198 Double_t fRc[15]; // external cov. matrix of the track parameters
199
67c3dcbe 200//Track parameters constrained to the primary vertex
3a83c716 201 Double_t fCalpha; // Track rotation angle
202 Double_t fCx; // x-coordinate of the track reference plane
203 Double_t fCp[5]; // external track parameters
204 Double_t fCc[15]; // external cov. matrix of the track parameters
67c3dcbe 205 Double_t fCchi2; //chi2 at the primary vertex
206
672b5f43 207//Track parameters at the inner wall of the TPC
3a83c716 208 Double_t fIalpha; // Track rotation angle
209 Double_t fIx; // x-coordinate of the track reference plane
210 Double_t fIp[5]; // external track parameters
211 Double_t fIc[15]; // external cov. matrix of the track parameters
23904d16 212
c4d11b15 213//Track parameters at the inner wall of the TRD
214 Double_t fTalpha; // Track rotation angle
215 Double_t fTx; // x-coordinate of the track reference plane
216 Double_t fTp[5]; // external track parameters
217 Double_t fTc[15]; // external cov. matrix of the track parameters
ae982df3 218
ae982df3 219 // ITS related track information
220 Float_t fITSchi2; // chi2 in the ITS
c4d11b15 221 Float_t fITSchi2MIP[12]; // chi2s in the ITS
ae982df3 222 Int_t fITSncls; // number of clusters assigned in the ITS
223 UInt_t fITSindex[6]; //! indices of the assigned ITS clusters
224 Float_t fITSsignal; // detector's PID signal
304864ab 225 Float_t fITSr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
6e5b1b04 226 Int_t fITSLabel; // label according TPC
babd135a 227 Float_t fITSFakeRatio; // ration of fake tracks
3fd96ae3 228 AliKalmanTrack * fITStrack; //! OWNER: pointer to the ITS track -- currently for debug purpose
c4d11b15 229
ae982df3 230 // TPC related track information
231 Float_t fTPCchi2; // chi2 in the TPC
232 Int_t fTPCncls; // number of clusters assigned in the TPC
51ad6848 233 Int_t fTPCindex[180]; //! indices of the assigned TPC clusters
a866ac60 234 TBits fTPCClusterMap; // Map of clusters, one bit per padrow; 1 if has a cluster on given padrow
ae982df3 235 Float_t fTPCsignal; // detector's PID signal
304864ab 236 Float_t fTPCr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
6e5b1b04 237 Int_t fTPCLabel; // label according TPC
51ad6848 238 Float_t fTPCPoints[4]; // TPC points -first, max. dens, last and max density
239 Int_t fKinkIndexes[3]; // array of indexes of posible kink candidates
240 Int_t fV0Indexes[3]; // array of indexes of posible kink candidates
23904d16 241
ae982df3 242 // TRD related track information
79e94bf8 243 Float_t fTRDchi2; // chi2 in the TRD
244 Int_t fTRDncls; // number of clusters assigned in the TRD
c4d11b15 245 Int_t fTRDncls0; // number of clusters assigned in the TRD before first material cross
246 UInt_t fTRDindex[130]; //! indices of the assigned TRD clusters
79e94bf8 247 Float_t fTRDsignal; // detector's PID signal
eab5961e 248 Float_t fTRDsignals[kNPlane]; // TRD signals from all six planes
249 Int_t fTRDTimBin[kNPlane]; // Time bin of Max cluster from all six planes
304864ab 250 Float_t fTRDr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
6e5b1b04 251 Int_t fTRDLabel; // label according TRD
3fd96ae3 252 AliKalmanTrack * fTRDtrack; //! OWNER: pointer to the TRD track -- currently for debug purpose
23904d16 253
ae982df3 254 // TOF related track information
c630aafd 255 Float_t fTOFchi2; // chi2 in the TOF
bb2ceb1f 256 UInt_t fTOFindex; // index of the assigned TOF cluster
c630aafd 257 Float_t fTOFsignal; // detector's PID signal
304864ab 258 Float_t fTOFr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
51ad6848 259 Int_t fTOFLabel[3]; // TOF label
260 Float_t fTOFInfo[10]; //! TOF informations
23904d16 261
4a78b8c5 262 // PHOS related track information
51ad6848 263 Float_t fPHOSpos[3]; // position localised by PHOS in global coordinate system
4a78b8c5 264 Float_t fPHOSsignal; // energy measured by PHOS
304864ab 265 Float_t fPHOSr[AliPID::kSPECIESN]; // PID information from PHOS
704be597 266
267 // EMCAL related track information
268 Float_t fEMCALpos[3]; //position localised by EMCAL in global coordinate system
269 Float_t fEMCALsignal; // energy measured by EMCAL
304864ab 270 Float_t fEMCALr[AliPID::kSPECIESN]; // PID information from EMCAL
ae982df3 271
4a78b8c5 272 // HMPID related track information
273 Float_t fRICHsignal; // detector's PID signal (beta for RICH)
304864ab 274 Float_t fRICHr[AliPID::kSPECIES];// "detector response probabilities" (for the PID)
4a78b8c5 275
399fb957 276 ClassDef(AliESDtrack,11) //ESDtrack
ae982df3 277};
278
279#endif
280