]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliESDtrack.cxx
Updated version (Yu.Belikov)
[u/mrichter/AliRoot.git] / STEER / AliESDtrack.cxx
CommitLineData
ae982df3 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16//-----------------------------------------------------------------
17// Implementation of the ESD track class
4427806c 18// ESD = Event Summary Data
ae982df3 19// This is the class to deal with during the phisical analysis of data
4427806c 20// Origin: Iouri Belikov, CERN
21// e-mail: Jouri.Belikov@cern.ch
ae982df3 22//-----------------------------------------------------------------
23
24#include "TMath.h"
25
26#include "AliESDtrack.h"
27#include "AliKalmanTrack.h"
4095d1ca 28// #include "../ITS/AliITStrackV2.h"
ae982df3 29
30ClassImp(AliESDtrack)
31
32//_______________________________________________________________________
33AliESDtrack::AliESDtrack() :
2bad268c 34fFlags(0),
35fLabel(0),
36fTrackLength(0),
37fStopVertex(0),
38fRalpha(0),
39fRx(0),
40fITSchi2(0),
ae982df3 41fITSncls(0),
2bad268c 42fITSsignal(0),
43fVertexX(0),
44fVertexY(0),
45fVertexZ(0),
46fVertexPx(0),
47fVertexPy(0),
48fVertexPz(0),
49fVertex(kFALSE),
50fTPCchi2(0),
05e445cd 51fTPCncls(0),
2bad268c 52fTPCsignal(0),
53fTRDchi2(0),
54fTRDncls(0),
55fTRDsignal(0),
56fTOFchi2(0),
57fTOFindex(0),
58fTOFsignal(0)
ae982df3 59{
60 //
61 // The default ESD constructor
62 //
2bad268c 63 for (Int_t i=0; i<kSPECIES; i++) {
64 fTrackTime[i]=0;
65 fR[i]=0;
66 fITSr[i]=0;
67 fTPCr[i]=0;
68 fTRDr[i]=0;
69 fTOFr[i]=0;
70 }
71 for (Int_t i=0; i<5; fRp[i++]);
72 for (Int_t i=0; i<15; fRc[i++]);
73 for (Int_t i=0; i<6; fITSindex[i++]);
74 for (Int_t i=0; i<180; fTPCindex[i++]);
ae982df3 75}
76
77//_______________________________________________________________________
78Float_t AliESDtrack::GetMass() const {
4427806c 79 // Returns the mass of the most probable particle type
ae982df3 80 Float_t max=0.;
81 Int_t k=-1;
82 for (Int_t i=0; i<kSPECIES; i++) {
83 if (fR[i]>max) {k=i; max=fR[i];}
84 }
85 if (k==0) return 0.00051;
86 if (k==1) return 0.10566;
87 if (k==2||k==-1) return 0.13957;
88 if (k==3) return 0.49368;
89 if (k==4) return 0.93827;
90 Warning("GetMass()","Undefined mass !");
91 return 0.13957;
92}
93
94//_______________________________________________________________________
ad2f1f2b 95Bool_t AliESDtrack::UpdateTrackParams(AliKalmanTrack *t, ULong_t flags) {
ae982df3 96 //
97 // This function updates track's running parameters
98 //
99 switch (flags) {
ad2f1f2b 100
101 case kITSin:
102 case kITSout:
103 case kITSrefit:
ae982df3 104 fITSncls=t->GetNumberOfClusters();
105 fITSchi2=t->GetChi2();
106 for (Int_t i=0;i<fITSncls;i++) fITSindex[i]=t->GetClusterIndex(i);
107 fITSsignal=t->GetPIDsignal();
108 break;
ad2f1f2b 109
ae982df3 110 case kTPCin: case kTPCout: case kTPCrefit:
111 fTPCncls=t->GetNumberOfClusters();
112 fTPCchi2=t->GetChi2();
113 for (Int_t i=0;i<fTPCncls;i++) fTPCindex[i]=t->GetClusterIndex(i);
114 fTPCsignal=t->GetPIDsignal();
115 {Double_t mass=t->GetMass(); // preliminary mass setting
116 if (mass>0.5) fR[4]=1.; // used by
117 else if (mass<0.4) fR[2]=1.; // the ITS reconstruction
118 else fR[3]=1.;} //
119 break;
79e94bf8 120 case kTRDin: case kTRDout: case kTRDrefit:
121 fTRDncls=t->GetNumberOfClusters();
122 fTRDchi2=t->GetChi2();
123 fTRDsignal=t->GetPIDsignal();
124 break;
ae982df3 125 default:
126 Error("UpdateTrackParams()","Wrong flag !\n");
127 return kFALSE;
128 }
129
130 SetStatus(flags);
131 fLabel=t->GetLabel();
132
133 if (t->IsStartedTimeIntegral()) {
134 SetStatus(kTIME);
135 Double_t times[10];t->GetIntegratedTimes(times); SetIntegratedTimes(times);
136 SetIntegratedLength(t->GetIntegratedLength());
137 }
138
139 fRalpha=t->GetAlpha();
140 t->GetExternalParameters(fRx,fRp);
141 t->GetExternalCovariance(fRc);
ad2f1f2b 142
143 if (flags == kITSin)
144 {
4095d1ca 145 // AliITStrackV2* itstrack = dynamic_cast<AliITStrackV2*>(t);
146 AliKalmanTrack *itstrack = t;
05e445cd 147 if (itstrack)
148 {
149 itstrack->PropagateTo(3.,0.0028,65.19);
150 itstrack->PropagateToVertex();
151
152 Double_t ralpha=t->GetAlpha();
153 Double_t rx; // X-coordinate of the track reference plane
154 Double_t rp[5]; // external track parameters
155 t->GetExternalParameters(rx,rp);
156
157 Double_t phi=TMath::ASin(rp[2]) + ralpha;
158 Double_t pt=1./TMath::Abs(rp[4]);
159 Double_t r=TMath::Sqrt(rx*rx + rp[0]*rp[0]);
160
161 fVertexX=r*TMath::Cos(phi);
162 fVertexY=r*TMath::Sin(phi);
163 fVertexZ=rp[1];
164
165 fVertexPx = pt*TMath::Cos(phi);
166 fVertexPy = pt*TMath::Sin(phi);
167 fVertexPz = pt*rp[3];
168 fVertex = kTRUE;
169 }
ad2f1f2b 170 }
171
ae982df3 172 return kTRUE;
173}
174
e23730c7 175//_______________________________________________________________________
176void AliESDtrack::GetExternalParametersAt(Double_t x, Double_t p[5]) const {
177 //---------------------------------------------------------------------
178 // This function returns external representation of the track parameters
179 // at the plane x
180 //---------------------------------------------------------------------
181 Double_t dx=x-fRx;
182 Double_t c=fRp[4]/AliKalmanTrack::GetConvConst();
183 Double_t f1=fRp[2], f2=f1 + c*dx;
184 Double_t r1=sqrt(1.- f1*f1), r2=sqrt(1.- f2*f2);
185
186 p[0]=fRp[0]+dx*(f1+f2)/(r1+r2);
187 p[1]=fRp[1]+dx*(f1+f2)/(f1*r2 + f2*r1)*fRp[3];
188 p[2]=fRp[2]+dx*c;
189 p[3]=fRp[3];
190 p[4]=fRp[4];
191}
192
ae982df3 193//_______________________________________________________________________
194void AliESDtrack::GetExternalParameters(Double_t &x, Double_t p[5]) const {
195 //---------------------------------------------------------------------
196 // This function returns external representation of the track parameters
197 //---------------------------------------------------------------------
198 x=fRx;
199 for (Int_t i=0; i<5; i++) p[i]=fRp[i];
200}
201
202Double_t AliESDtrack::GetP() const {
203 //---------------------------------------------------------------------
204 // This function returns the track momentum
205 //---------------------------------------------------------------------
206 Double_t lam=TMath::ATan(fRp[3]);
207 Double_t pt=1./TMath::Abs(fRp[4]);
208 return pt/TMath::Cos(lam);
209}
210
211void AliESDtrack::GetPxPyPz(Double_t *p) const {
212 //---------------------------------------------------------------------
213 // This function returns the global track momentum components
214 //---------------------------------------------------------------------
215 Double_t phi=TMath::ASin(fRp[2]) + fRalpha;
216 Double_t pt=1./TMath::Abs(fRp[4]);
217 p[0]=pt*TMath::Cos(phi); p[1]=pt*TMath::Sin(phi); p[2]=pt*fRp[3];
218}
219
220void AliESDtrack::GetXYZ(Double_t *xyz) const {
221 //---------------------------------------------------------------------
222 // This function returns the global track position
223 //---------------------------------------------------------------------
224 Double_t phi=TMath::ASin(fRp[2]) + fRalpha;
225 Double_t r=TMath::Sqrt(fRx*fRx + fRp[0]*fRp[0]);
226 xyz[0]=r*TMath::Cos(phi); xyz[1]=r*TMath::Sin(phi); xyz[2]=fRp[1];
227}
228
229//_______________________________________________________________________
230void AliESDtrack::GetExternalCovariance(Double_t c[15]) const {
231 //---------------------------------------------------------------------
232 // This function returns external representation of the cov. matrix
233 //---------------------------------------------------------------------
234 for (Int_t i=0; i<15; i++) c[i]=fRc[i];
235}
236
237//_______________________________________________________________________
238void AliESDtrack::GetIntegratedTimes(Double_t *times) const {
4427806c 239 // Returns the array with integrated times for each particle hypothesis
ae982df3 240 for (Int_t i=0; i<kSPECIES; i++) times[i]=fTrackTime[i];
241}
242
243//_______________________________________________________________________
244void AliESDtrack::SetIntegratedTimes(const Double_t *times) {
4427806c 245 // Sets the array with integrated times for each particle hypotesis
ae982df3 246 for (Int_t i=0; i<kSPECIES; i++) fTrackTime[i]=times[i];
247}
248
c630aafd 249//_______________________________________________________________________
4427806c 250void AliESDtrack::SetITSpid(const Double_t *p) {
251 // Sets values for the probability of each particle type (in ITS)
c630aafd 252 for (Int_t i=0; i<kSPECIES; i++) fITSr[i]=p[i];
253 SetStatus(AliESDtrack::kITSpid);
254}
255
256//_______________________________________________________________________
257void AliESDtrack::GetITSpid(Double_t *p) const {
4427806c 258 // Gets the probability of each particle type (in ITS)
c630aafd 259 for (Int_t i=0; i<kSPECIES; i++) p[i]=fITSr[i];
260}
261
ae982df3 262//_______________________________________________________________________
263Int_t AliESDtrack::GetITSclusters(UInt_t *idx) const {
264 //---------------------------------------------------------------------
265 // This function returns indices of the assgined ITS clusters
266 //---------------------------------------------------------------------
267 for (Int_t i=0; i<fITSncls; i++) idx[i]=fITSindex[i];
268 return fITSncls;
269}
270
271//_______________________________________________________________________
05e445cd 272Int_t AliESDtrack::GetTPCclusters(Int_t *idx) const {
ae982df3 273 //---------------------------------------------------------------------
274 // This function returns indices of the assgined ITS clusters
275 //---------------------------------------------------------------------
05e445cd 276 for (Int_t i=0; i<180; i++) idx[i]=fTPCindex[i]; // MI I prefer some constant
ae982df3 277 return fTPCncls;
278}
8c6a71ab 279
280//_______________________________________________________________________
281void AliESDtrack::SetTPCpid(const Double_t *p) {
4427806c 282 // Sets values for the probability of each particle type (in TPC)
8c6a71ab 283 for (Int_t i=0; i<kSPECIES; i++) fTPCr[i]=p[i];
284 SetStatus(AliESDtrack::kTPCpid);
285}
286
287//_______________________________________________________________________
288void AliESDtrack::GetTPCpid(Double_t *p) const {
4427806c 289 // Gets the probability of each particle type (in TPC)
8c6a71ab 290 for (Int_t i=0; i<kSPECIES; i++) p[i]=fTPCr[i];
291}
292
c630aafd 293//_______________________________________________________________________
294void AliESDtrack::SetTRDpid(const Double_t *p) {
4427806c 295 // Sets values for the probability of each particle type (in TRD)
c630aafd 296 for (Int_t i=0; i<kSPECIES; i++) fTRDr[i]=p[i];
297 SetStatus(AliESDtrack::kTRDpid);
298}
299
300//_______________________________________________________________________
301void AliESDtrack::GetTRDpid(Double_t *p) const {
4427806c 302 // Gets the probability of each particle type (in TRD)
c630aafd 303 for (Int_t i=0; i<kSPECIES; i++) p[i]=fTRDr[i];
304}
305
79e94bf8 306//_______________________________________________________________________
307void AliESDtrack::SetTRDpid(Int_t iSpecies, Float_t p)
308{
4427806c 309 // Sets the probability of particle type iSpecies to p (in TRD)
79e94bf8 310 fTRDr[iSpecies] = p;
311}
312
313Float_t AliESDtrack::GetTRDpid(Int_t iSpecies) const
314{
4427806c 315 // Returns the probability of particle type iSpecies (in TRD)
79e94bf8 316 return fTRDr[iSpecies];
317}
318
c630aafd 319//_______________________________________________________________________
320void AliESDtrack::SetTOFpid(const Double_t *p) {
4427806c 321 // Sets the probability of each particle type (in TOF)
c630aafd 322 for (Int_t i=0; i<kSPECIES; i++) fTOFr[i]=p[i];
323 SetStatus(AliESDtrack::kTOFpid);
324}
325
326//_______________________________________________________________________
327void AliESDtrack::GetTOFpid(Double_t *p) const {
4427806c 328 // Gets probabilities of each particle type (in TOF)
c630aafd 329 for (Int_t i=0; i<kSPECIES; i++) p[i]=fTOFr[i];
330}
331
8c6a71ab 332//_______________________________________________________________________
333void AliESDtrack::SetESDpid(const Double_t *p) {
4427806c 334 // Sets the probability of each particle type for the ESD track
8c6a71ab 335 for (Int_t i=0; i<kSPECIES; i++) fR[i]=p[i];
336 SetStatus(AliESDtrack::kESDpid);
337}
338
339//_______________________________________________________________________
340void AliESDtrack::GetESDpid(Double_t *p) const {
4427806c 341 // Gets probability of each particle type for the ESD track
8c6a71ab 342 for (Int_t i=0; i<kSPECIES; i++) p[i]=fR[i];
343}
344
ad2f1f2b 345void AliESDtrack::GetVertexXYZ(Double_t& x,Double_t& y, Double_t&z) const
346{
347//returns track position in DCA to vertex
348 x = fVertexX;
349 y = fVertexY;
350 z = fVertexZ;
351}
352void AliESDtrack::GetVertexPxPyPz(Double_t& px,Double_t& py, Double_t& pz) const
353{
354//returns track momentum in DCA to vertex
355 px = fVertexPx;
356 py = fVertexPy;
357 pz = fVertexPz;
358}