]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDtrack.cxx
TOF index initialized with -1 (S.Kiselev)
[u/mrichter/AliRoot.git] / STEER / AliESDtrack.cxx
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 //           Implementation of the ESD track class
17 //   ESD = Event Summary Data
18 //   This is the class to deal with during the phisical analysis of data
19 //      Origin: Iouri Belikov, CERN
20 //      e-mail: Jouri.Belikov@cern.ch
21 //-----------------------------------------------------------------
22
23 #include "TMath.h"
24
25 #include "AliESDtrack.h"
26 #include "AliKalmanTrack.h"
27 #include "AliLog.h"
28
29 ClassImp(AliESDtrack)
30
31 //_______________________________________________________________________
32 AliESDtrack::AliESDtrack() : 
33 fFlags(0),
34 fLabel(0),
35 fTrackLength(0),
36 fStopVertex(0),
37 fRalpha(0),
38 fRx(0),
39 fCalpha(0),
40 fCx(0),
41 fCchi2(1e10),
42 fIalpha(0),
43 fIx(0),
44 fTalpha(0),
45 fTx(0),
46 fOalpha(0),
47 fOx(0),
48 fITSchi2(0),
49 fITSncls(0),
50 fITSsignal(0),
51 fTPCchi2(0),
52 fTPCncls(0),
53 fTPCClusterMap(159),//number of padrows
54 fTPCsignal(0),
55 fTRDchi2(0),
56 fTRDncls(0),
57 fTRDncls0(0),
58 fTRDsignal(0),
59 fTOFchi2(0),
60 fTOFindex(-1),
61 fTOFsignal(-1),
62 fPHOSsignal(-1),
63 fEMCALsignal(-1),
64 fRICHsignal(-1)
65 {
66   //
67   // The default ESD constructor 
68   //
69   for (Int_t i=0; i<kSPECIES; i++) {
70     fTrackTime[i]=0.;
71     fR[i]=1.;
72     fITSr[i]=1.;
73     fTPCr[i]=1.;
74     fTRDr[i]=1.;
75     fTOFr[i]=1.;
76     fRICHr[i]=1.;
77   }
78   
79   for (Int_t i=0; i<kSPECIESN; i++) {
80     fPHOSr[i]  = 1.;
81     fEMCALr[i] = 1.;
82   }
83
84  
85   fPHOSpos[0]=fPHOSpos[1]=fPHOSpos[2]=0.;
86   fEMCALpos[0]=fEMCALpos[1]=fEMCALpos[2]=0.;
87   Int_t i;
88   for (i=0; i<5; i++)  { fRp[i]=0.; fCp[i]=0.; fIp[i]=0.; fOp[i]=0.; fTp[i]=0.;}
89   for (i=0; i<15; i++) { fRc[i]=0.; fCc[i]=0.; fIc[i]=0.; fOc[i]=0.; fTc[i]=0.;  }
90   for (i=0; i<6; i++)  { fITSindex[i]=0; }
91   for (i=0; i<180; i++){ fTPCindex[i]=0; }
92   for (i=0; i<130; i++) { fTRDindex[i]=0; }
93   fTPCLabel = 0;
94   fTRDLabel = 0;
95   fITSLabel = 0;
96   fITStrack = 0;
97   fTRDtrack = 0;  
98 }
99
100 //_______________________________________________________________________
101
102 AliESDtrack::AliESDtrack(const AliESDtrack& track):TObject(track){
103   //
104   //copy constructor
105   //
106   fFlags = track.fFlags;
107   fLabel =track.fLabel;
108   fTrackLength =track.fTrackLength;
109   for (Int_t i=0;i<kSPECIES;i++) fTrackTime[i] =track.fTrackTime[i];
110   for (Int_t i=0;i<kSPECIES;i++)  fR[i] =track.fR[i];
111   fStopVertex =track.fStopVertex;
112   //
113   fRalpha =track.fRalpha;
114   fRx =track.fRx;
115   for (Int_t i=0;i<5;i++) fRp[i] =track.fRp[i];
116   for (Int_t i=0;i<15;i++) fRc[i] =track.fRc[i];
117   //
118   fCalpha =track.fCalpha;
119   fCx =track.fCx;
120   for (Int_t i=0;i<5;i++) fCp[i] =track.fCp[i];
121   for (Int_t i=0;i<15;i++)  fCc[i] =track.fCc[i];
122   fCchi2 =track.fCchi2;
123   //
124   fIalpha =track.fIalpha;
125   fIx =track.fIx;
126   for (Int_t i=0;i<5;i++) fIp[i] =track.fIp[i];
127   for (Int_t i=0;i<15;i++)  fIc[i] =track.fIc[i];
128   //
129   fTalpha =track.fTalpha;
130   fTx =track.fTx;
131   for (Int_t i=0;i<5;i++) fTp[i] =track.fTp[i];
132   for (Int_t i=0;i<15;i++)  fTc[i] =track.fTc[i];
133   //
134   fOalpha =track.fOalpha;
135   fOx =track.fOx;
136   for (Int_t i=0;i<5;i++) fOp[i] =track.fOp[i];
137   for (Int_t i=0;i<15;i++)  fOc[i] =track.fOc[i];
138   //
139   fXalpha =track.fXalpha;
140   fXx =track.fXx;
141   for (Int_t i=0;i<5;i++) fXp[i] =track.fXp[i];
142   for (Int_t i=0;i<15;i++) fXc[i] =track.fXc[i];
143   //
144   fITSchi2 =track.fITSchi2;
145   for (Int_t i=0;i<12;i++) fITSchi2MIP[i] =track.fITSchi2MIP[i];
146   fITSncls =track.fITSncls;       
147   for (Int_t i=0;i<6;i++) fITSindex[i]=track.fITSindex[i];    
148   fITSsignal =track.fITSsignal;     
149   for (Int_t i=0;i<kSPECIES;i++) fITSr[i]=track.fITSr[i]; 
150   fITSLabel =track.fITSLabel;       
151   fITSFakeRatio =track.fITSFakeRatio;   
152   fITStrack =0;  //coping separatelly - in user code
153   //
154   fTPCchi2 =track.fTPCchi2;       
155   fTPCncls =track.fTPCncls;       
156   for (Int_t i=0;i<180;i++) fTPCindex[i]=track.fTPCindex[i];  
157   fTPCClusterMap=track.fTPCClusterMap;  
158   fTPCsignal=track.fTPCsignal;      
159   for (Int_t i=0;i<kSPECIES;i++) fTPCr[i]=track.fTPCr[i]; 
160   fTPCLabel=track.fTPCLabel;       
161   //
162   fTRDchi2=track.fTRDchi2;        
163   fTRDncls=track.fTRDncls;       
164   fTRDncls0=track.fTRDncls0;       
165   for (Int_t i=0;i<130;i++) fTRDindex[i]=track.fTRDindex[i];   
166   fTRDsignal=track.fTRDsignal;      
167   for (Int_t i=0;i<kSPECIES;i++) fTRDr[i]=track.fTRDr[i]; 
168   fTRDLabel=track.fTRDLabel;       
169   fTRDtrack=0; 
170   //
171   fTOFchi2=track.fTOFchi2;        
172   fTOFindex=track.fTOFindex;       
173   fTOFsignal=track.fTOFsignal;      
174   for (Int_t i=0;i<kSPECIES;i++) fTOFr[i]=track.fTOFr[i];
175   //
176   for (Int_t i=0;i<3;i++) fPHOSpos[i]=track.fPHOSpos[i]; 
177   fPHOSsignal=track.fPHOSsignal; 
178   for (Int_t i=0;i<kSPECIESN;i++) fPHOSr[i]=track.fPHOSr[i]; 
179   //
180   for (Int_t i=0;i<3;i++) fEMCALpos[i]=track.fEMCALpos[i]; 
181   fEMCALsignal=track.fEMCALsignal; 
182   for (Int_t i=0;i<kSPECIESN;i++) fEMCALr[i]=track.fEMCALr[i]; 
183   //
184   fRICHsignal=track.fRICHsignal;     
185   for (Int_t i=0;i<kSPECIES;i++) fRICHr[i]=track.fRICHr[i];
186   
187   
188 }
189 //_______________________________________________________________________
190 AliESDtrack::~AliESDtrack(){ 
191   //
192   // This is destructor according Coding Conventrions 
193   //
194   //printf("Delete track\n");
195   delete fITStrack;
196   delete fTRDtrack;  
197 }
198
199 //_______________________________________________________________________
200 Double_t AliESDtrack::GetMass() const {
201   // Returns the mass of the most probable particle type
202   Float_t max=0.;
203   Int_t k=-1;
204   for (Int_t i=0; i<kSPECIES; i++) {
205     if (fR[i]>max) {k=i; max=fR[i];}
206   }
207   if (k==0) { // dE/dx "crossing points" in the TPC
208      Double_t p=GetP();
209      if ((p>0.38)&&(p<0.48))
210         if (fR[0]<fR[3]*10.) return 0.49368;
211      if ((p>0.75)&&(p<0.85))
212         if (fR[0]<fR[4]*10.) return 0.93827;
213      return 0.00051;
214   }
215   if (k==1) return 0.10566; 
216   if (k==2||k==-1) return 0.13957;
217   if (k==3) return 0.49368;
218   if (k==4) return 0.93827;
219   AliWarning("Undefined mass !");
220   return 0.13957;
221 }
222
223 //_______________________________________________________________________
224 Bool_t AliESDtrack::UpdateTrackParams(AliKalmanTrack *t, ULong_t flags) {
225   //
226   // This function updates track's running parameters 
227   //
228   SetStatus(flags);
229   fLabel=t->GetLabel();
230
231   if (t->IsStartedTimeIntegral()) {
232     SetStatus(kTIME);
233     Double_t times[10];t->GetIntegratedTimes(times); SetIntegratedTimes(times);
234     SetIntegratedLength(t->GetIntegratedLength());
235   }
236
237   fRalpha=t->GetAlpha();
238   t->GetExternalParameters(fRx,fRp);
239   t->GetExternalCovariance(fRc);
240
241   switch (flags) {
242     
243   case kITSin: case kITSout: case kITSrefit:
244     fITSncls=t->GetNumberOfClusters();
245     fITSchi2=t->GetChi2();
246     for (Int_t i=0;i<fITSncls;i++) fITSindex[i]=t->GetClusterIndex(i);
247     fITSsignal=t->GetPIDsignal();
248     fITSLabel = t->GetLabel();
249     fITSFakeRatio = t->GetFakeRatio();
250     break;
251     
252   case kTPCin: case kTPCrefit:
253     fTPCLabel = t->GetLabel();
254     fIalpha=fRalpha;
255     fIx=fRx;
256     {
257       Int_t i;
258       for (i=0; i<5; i++) fIp[i]=fRp[i];
259       for (i=0; i<15;i++) fIc[i]=fRc[i];
260     }
261   case kTPCout:
262   
263     fTPCncls=t->GetNumberOfClusters();
264     fTPCchi2=t->GetChi2();
265     
266      {//prevrow must be declared in separate namespace, otherwise compiler cries:
267       //"jump to case label crosses initialization of `Int_t prevrow'"
268        Int_t prevrow = -1;
269        //       for (Int_t i=0;i<fTPCncls;i++) 
270        for (Int_t i=0;i<160;i++) 
271         {
272           fTPCindex[i]=t->GetClusterIndex(i);
273
274           // Piotr's Cluster Map for HBT  
275           // ### please change accordingly if cluster array is changing 
276           // to "New TPC Tracking" style (with gaps in array) 
277           Int_t idx = fTPCindex[i];
278           Int_t sect = (idx&0xff000000)>>24;
279           Int_t row = (idx&0x00ff0000)>>16;
280           if (sect > 18) row +=63; //if it is outer sector, add number of inner sectors
281
282           fTPCClusterMap.SetBitNumber(row,kTRUE);
283
284           //Fill the gap between previous row and this row with 0 bits
285           //In case  ###  pleas change it as well - just set bit 0 in case there 
286           //is no associated clusters for current "i"
287           if (prevrow < 0) 
288            {
289              prevrow = row;//if previous bit was not assigned yet == this is the first one
290            }
291           else
292            { //we don't know the order (inner to outer or reverse)
293              //just to be save in case it is going to change
294              Int_t n = 0, m = 0;
295              if (prevrow < row)
296               {
297                 n = prevrow;
298                 m = row;
299               }
300              else
301               {
302                 n = row;
303                 m = prevrow;
304               }
305
306              for (Int_t j = n+1; j < m; j++)
307               {
308                 fTPCClusterMap.SetBitNumber(j,kFALSE);
309               }
310              prevrow = row; 
311            }
312           // End Of Piotr's Cluster Map for HBT
313         }
314      }
315     fTPCsignal=t->GetPIDsignal();
316     {Double_t mass=t->GetMass();    // preliminary mass setting 
317     if (mass>0.5) fR[4]=1.;         //        used by
318     else if (mass<0.4) fR[2]=1.;    // the ITS reconstruction
319     else fR[3]=1.;}
320                      //
321     break;
322
323   case kTRDout:
324     { //requested by the PHOS/EMCAL  ("temporary solution")
325       Int_t i;
326       Double_t x=460.,buf[15];
327       if (t->PropagateTo(x,30.,0.)) {  
328          fOalpha=t->GetAlpha();
329          t->GetExternalParameters(x,buf); fOx=x;
330          for (i=0; i<5; i++) fOp[i]=buf[i];
331          t->GetExternalCovariance(buf);
332          for (i=0; i<15; i++) fOc[i]=buf[i];
333       }
334       x=450.;
335       if (t->PropagateTo(x,30.,0.)) {  
336          fXalpha=t->GetAlpha();
337          t->GetExternalParameters(x,buf); fXx=x;
338          for (i=0; i<5; i++) fXp[i]=buf[i];
339          t->GetExternalCovariance(buf);
340          for (i=0; i<15; i++) fXc[i]=buf[i];
341       }
342     }
343   case kTRDin: case kTRDrefit:
344     fTRDLabel = t->GetLabel();
345  
346     fTRDncls=t->GetNumberOfClusters();
347     fTRDchi2=t->GetChi2();
348     for (Int_t i=0;i<fTRDncls;i++) fTRDindex[i]=t->GetClusterIndex(i);
349     fTRDsignal=t->GetPIDsignal();
350     break;
351   case kTRDbackup:
352     t->GetExternalParameters(fTx,fTp);
353     t->GetExternalCovariance(fTc);
354     fTRDncls0 = t->GetNumberOfClusters(); 
355     break;
356   case kTOFin: 
357     break;
358   case kTOFout: 
359     break;
360   case kTRDStop:
361     break;
362   default: 
363     AliError("Wrong flag !");
364     return kFALSE;
365   }
366
367   return kTRUE;
368 }
369
370 //_______________________________________________________________________
371 void 
372 AliESDtrack::SetConstrainedTrackParams(AliKalmanTrack *t, Double_t chi2) {
373   //
374   // This function sets the constrained track parameters 
375   //
376   Int_t i;
377   Double_t x,buf[15];
378   fCalpha=t->GetAlpha();
379   t->GetExternalParameters(x,buf); fCx=x;
380   for (i=0; i<5; i++) fCp[i]=buf[i];
381   t->GetExternalCovariance(buf);
382   for (i=0; i<15; i++) fCc[i]=buf[i];
383   fCchi2=chi2;
384 }
385
386
387 //_______________________________________________________________________
388 void AliESDtrack::GetExternalParameters(Double_t &x, Double_t p[5]) const {
389   //---------------------------------------------------------------------
390   // This function returns external representation of the track parameters
391   //---------------------------------------------------------------------
392   x=fRx;
393   for (Int_t i=0; i<5; i++) p[i]=fRp[i];
394 }
395 //_______________________________________________________________________
396 void AliESDtrack::GetExternalCovariance(Double_t cov[15]) const {
397   //---------------------------------------------------------------------
398   // This function returns external representation of the cov. matrix
399   //---------------------------------------------------------------------
400   for (Int_t i=0; i<15; i++) cov[i]=fRc[i];
401 }
402
403
404 //_______________________________________________________________________
405 void 
406 AliESDtrack::GetConstrainedExternalParameters(Double_t &x, Double_t p[5])const{
407   //---------------------------------------------------------------------
408   // This function returns the constrained external track parameters
409   //---------------------------------------------------------------------
410   x=fCx;
411   for (Int_t i=0; i<5; i++) p[i]=fCp[i];
412 }
413 //_______________________________________________________________________
414 void 
415 AliESDtrack::GetConstrainedExternalCovariance(Double_t c[15]) const {
416   //---------------------------------------------------------------------
417   // This function returns the constrained external cov. matrix
418   //---------------------------------------------------------------------
419   for (Int_t i=0; i<15; i++) c[i]=fCc[i];
420 }
421
422
423 Double_t AliESDtrack::GetP() const {
424   //---------------------------------------------------------------------
425   // This function returns the track momentum
426   // Results for (nearly) straight tracks are meaningless !
427   //---------------------------------------------------------------------
428   if (TMath::Abs(fRp[4])<=0) return 0;
429   Double_t pt=1./TMath::Abs(fRp[4]);
430   return pt*TMath::Sqrt(1.+ fRp[3]*fRp[3]);
431 }
432
433 void AliESDtrack::GetConstrainedPxPyPz(Double_t *p) const {
434   //---------------------------------------------------------------------
435   // This function returns the constrained global track momentum components
436   // Results for (nearly) straight tracks are meaningless !
437   //---------------------------------------------------------------------
438   if (TMath::Abs(fCp[4])<=0) {
439     p[0]=p[1]=p[2]=0;
440     return;
441   }
442   if (TMath::Abs(fCp[2]) > 0.999999) {
443      p[0]=p[1]=p[2]=0;
444      return;
445   }
446   Double_t pt=1./TMath::Abs(fCp[4]);
447   Double_t cs=TMath::Cos(fCalpha), sn=TMath::Sin(fCalpha);
448   Double_t r=TMath::Sqrt(1-fCp[2]*fCp[2]);
449   p[0]=pt*(r*cs - fCp[2]*sn); p[1]=pt*(fCp[2]*cs + r*sn); p[2]=pt*fCp[3];
450 }
451
452 void AliESDtrack::GetConstrainedXYZ(Double_t *xyz) const {
453   //---------------------------------------------------------------------
454   // This function returns the global track position
455   //---------------------------------------------------------------------
456   Double_t cs=TMath::Cos(fCalpha), sn=TMath::Sin(fCalpha);
457   xyz[0]=fCx*cs - fCp[0]*sn; xyz[1]=fCx*sn + fCp[0]*cs; xyz[2]=fCp[1];
458 }
459
460 void AliESDtrack::GetPxPyPz(Double_t *p) const {
461   //---------------------------------------------------------------------
462   // This function returns the global track momentum components
463   // Results for (nearly) straight tracks are meaningless !
464   //---------------------------------------------------------------------
465   if (TMath::Abs(fRp[4])<=0) {
466      p[0]=p[1]=p[2]=0;
467      return;
468   }
469   if (TMath::Abs(fRp[2]) > 0.999999) {
470      p[0]=p[1]=p[2]=0;
471      return;
472   }
473   Double_t pt=1./TMath::Abs(fRp[4]);
474   Double_t cs=TMath::Cos(fRalpha), sn=TMath::Sin(fRalpha);
475   Double_t r=TMath::Sqrt(1-fRp[2]*fRp[2]);
476   p[0]=pt*(r*cs - fRp[2]*sn); p[1]=pt*(fRp[2]*cs + r*sn); p[2]=pt*fRp[3];
477 }
478
479 void AliESDtrack::GetXYZ(Double_t *xyz) const {
480   //---------------------------------------------------------------------
481   // This function returns the global track position
482   //---------------------------------------------------------------------
483   Double_t cs=TMath::Cos(fRalpha), sn=TMath::Sin(fRalpha);
484   xyz[0]=fRx*cs - fRp[0]*sn; xyz[1]=fRx*sn + fRp[0]*cs; xyz[2]=fRp[1];
485 }
486
487 void AliESDtrack::GetCovariance(Double_t cv[21]) const {
488   //---------------------------------------------------------------------
489   // This function returns the global covariance matrix of the track params
490   // 
491   // Cov(x,x) ... :   cv[0]
492   // Cov(y,x) ... :   cv[1]  cv[2]
493   // Cov(z,x) ... :   cv[3]  cv[4]  cv[5]
494   // Cov(px,x)... :   cv[6]  cv[7]  cv[8]  cv[9]
495   // Cov(py,y)... :   cv[10] cv[11] cv[12] cv[13] cv[14]
496   // Cov(pz,z)... :   cv[15] cv[16] cv[17] cv[18] cv[19] cv[20]
497   //
498   // Results for (nearly) straight tracks are meaningless !
499   //---------------------------------------------------------------------
500   if (TMath::Abs(fRp[4])<=0) {
501      for (Int_t i=0; i<21; i++) cv[i]=0.;
502      return;
503   }
504   if (TMath::Abs(fRp[2]) > 0.999999) {
505      for (Int_t i=0; i<21; i++) cv[i]=0.;
506      return;
507   }
508   Double_t pt=1./TMath::Abs(fRp[4]);
509   Double_t cs=TMath::Cos(fRalpha), sn=TMath::Sin(fRalpha);
510   Double_t r=TMath::Sqrt(1-fRp[2]*fRp[2]);
511
512   Double_t m00=-sn, m10=cs;
513   Double_t m23=-pt*(sn + fRp[2]*cs/r), m43=-pt*pt*(r*cs - fRp[2]*sn);
514   Double_t m24= pt*(cs - fRp[2]*sn/r), m44=-pt*pt*(r*sn + fRp[2]*cs);
515   Double_t m35=pt, m45=-pt*pt*fRp[3];
516
517   cv[0]=fRc[0]*m00*m00;
518   cv[1]=fRc[0]*m00*m10; 
519   cv[2]=fRc[0]*m10*m10;
520   cv[3]=fRc[1]*m00; 
521   cv[4]=fRc[1]*m10; 
522   cv[5]=fRc[2];
523   cv[6]=m00*(fRc[3]*m23+fRc[10]*m43); 
524   cv[7]=m10*(fRc[3]*m23+fRc[10]*m43); 
525   cv[8]=fRc[4]*m23+fRc[11]*m43; 
526   cv[9]=m23*(fRc[5]*m23+fRc[12]*m43)+m43*(fRc[12]*m23+fRc[14]*m43);
527   cv[10]=m00*(fRc[3]*m24+fRc[10]*m44); 
528   cv[11]=m10*(fRc[3]*m24+fRc[10]*m44); 
529   cv[12]=fRc[4]*m24+fRc[11]*m44; 
530   cv[13]=m23*(fRc[5]*m24+fRc[12]*m44)+m43*(fRc[12]*m24+fRc[14]*m44);
531   cv[14]=m24*(fRc[5]*m24+fRc[12]*m44)+m44*(fRc[12]*m24+fRc[14]*m44);
532   cv[15]=m00*(fRc[6]*m35+fRc[10]*m45); 
533   cv[16]=m10*(fRc[6]*m35+fRc[10]*m45); 
534   cv[17]=fRc[7]*m35+fRc[11]*m45; 
535   cv[18]=m23*(fRc[8]*m35+fRc[12]*m45)+m43*(fRc[13]*m35+fRc[14]*m45);
536   cv[19]=m24*(fRc[8]*m35+fRc[12]*m45)+m44*(fRc[13]*m35+fRc[14]*m45); 
537   cv[20]=m35*(fRc[9]*m35+fRc[13]*m45)+m45*(fRc[13]*m35+fRc[14]*m45);
538 }
539
540 void AliESDtrack::GetInnerPxPyPz(Double_t *p) const {
541   //---------------------------------------------------------------------
542   // This function returns the global track momentum components
543   // af the entrance of the TPC
544   //---------------------------------------------------------------------
545   if (fIx==0) {p[0]=p[1]=p[2]=0.; return;}
546   Double_t phi=TMath::ASin(fIp[2]) + fIalpha;
547   Double_t pt=1./TMath::Abs(fIp[4]);
548   p[0]=pt*TMath::Cos(phi); p[1]=pt*TMath::Sin(phi); p[2]=pt*fIp[3]; 
549 }
550
551 void AliESDtrack::GetInnerXYZ(Double_t *xyz) const {
552   //---------------------------------------------------------------------
553   // This function returns the global track position
554   // af the entrance of the TPC
555   //---------------------------------------------------------------------
556   if (fIx==0) {xyz[0]=xyz[1]=xyz[2]=0.; return;}
557   Double_t phi=TMath::ATan2(fIp[0],fIx) + fIalpha;
558   Double_t r=TMath::Sqrt(fIx*fIx + fIp[0]*fIp[0]);
559   xyz[0]=r*TMath::Cos(phi); xyz[1]=r*TMath::Sin(phi); xyz[2]=fIp[1]; 
560 }
561
562 void AliESDtrack::GetInnerExternalParameters(Double_t &x, Double_t p[5]) const 
563 {
564   //skowron
565  //---------------------------------------------------------------------
566   // This function returns external representation of the track parameters at Inner Layer of TPC
567   //---------------------------------------------------------------------
568   x=fIx;
569   for (Int_t i=0; i<5; i++) p[i]=fIp[i];
570 }
571 void AliESDtrack::GetInnerExternalCovariance(Double_t cov[15]) const
572 {
573  //skowron
574  //---------------------------------------------------------------------
575  // This function returns external representation of the cov. matrix at Inner Layer of TPC
576  //---------------------------------------------------------------------
577  for (Int_t i=0; i<15; i++) cov[i]=fIc[i];
578  
579 }
580
581 void  AliESDtrack::GetTRDExternalParameters(Double_t &x, Double_t p[5], Double_t cov[15]) const
582 {
583   //
584   //this function returns TRD parameters
585   //
586   x=fTx;
587   for (Int_t i=0; i<5; i++) p[i]=fTp[i];
588   for (Int_t i=0; i<15; i++) cov[i]=fTc[i];
589 }
590
591 void AliESDtrack::GetOuterPxPyPzPHOS(Double_t *p) const {
592   //---------------------------------------------------------------------
593   // This function returns the global track momentum components
594   // af the radius of the PHOS
595   //---------------------------------------------------------------------
596   p[0]=p[1]=p[2]=0. ; 
597   if (fOx==0) 
598     return;
599   Double_t phi=TMath::ASin(fOp[2]) + fOalpha;
600   Double_t pt=1./TMath::Abs(fOp[4]);
601   p[0]=pt*TMath::Cos(phi); 
602   p[1]=pt*TMath::Sin(phi); 
603   p[2]=pt*fOp[3];
604
605 void AliESDtrack::GetOuterPxPyPzEMCAL(Double_t *p) const {
606   //---------------------------------------------------------------------
607   // This function returns the global track momentum components
608   // af the radius of the EMCAL
609   //---------------------------------------------------------------------
610   if (fXx==0)
611     return;
612   Double_t phi=TMath::ASin(fXp[2]) + fXalpha;
613   Double_t pt=1./TMath::Abs(fXp[4]);
614   p[0]=pt*TMath::Cos(phi); 
615   p[1]=pt*TMath::Sin(phi); 
616   p[2]=pt*fXp[3];
617 }
618
619 void AliESDtrack::GetOuterXYZPHOS(Double_t *xyz) const {
620   //---------------------------------------------------------------------
621   // This function returns the global track position
622   // af the radius of the PHOS
623   //---------------------------------------------------------------------
624   xyz[0]=xyz[1]=xyz[2]=0.;
625   if (fOx==0) 
626     return;
627   Double_t phi=TMath::ATan2(fOp[0],fOx) + fOalpha;
628   Double_t r=TMath::Sqrt(fOx*fOx + fOp[0]*fOp[0]);
629   xyz[0]=r*TMath::Cos(phi); xyz[1]=r*TMath::Sin(phi); xyz[2]=fOp[1]; 
630
631 void AliESDtrack::GetOuterXYZEMCAL(Double_t *xyz) const {
632   //---------------------------------------------------------------------
633   // This function returns the global track position
634   // af the radius of the EMCAL
635   //---------------------------------------------------------------------
636   if (fXx==0) 
637     return;
638   Double_t phi=TMath::ATan2(fXp[0],fOx) + fXalpha;
639   Double_t r=TMath::Sqrt(fXx*fXx + fXp[0]*fXp[0]);
640   xyz[0]=r*TMath::Cos(phi); 
641   xyz[1]=r*TMath::Sin(phi); 
642   xyz[2]=fXp[1]; 
643
644
645 //_______________________________________________________________________
646 void AliESDtrack::GetIntegratedTimes(Double_t *times) const {
647   // Returns the array with integrated times for each particle hypothesis
648   for (Int_t i=0; i<kSPECIES; i++) times[i]=fTrackTime[i];
649 }
650
651 //_______________________________________________________________________
652 void AliESDtrack::SetIntegratedTimes(const Double_t *times) {
653   // Sets the array with integrated times for each particle hypotesis
654   for (Int_t i=0; i<kSPECIES; i++) fTrackTime[i]=times[i];
655 }
656
657 //_______________________________________________________________________
658 void AliESDtrack::SetITSpid(const Double_t *p) {
659   // Sets values for the probability of each particle type (in ITS)
660   for (Int_t i=0; i<kSPECIES; i++) fITSr[i]=p[i];
661   SetStatus(AliESDtrack::kITSpid);
662 }
663
664 void AliESDtrack::SetITSChi2MIP(const Float_t *chi2mip){
665   for (Int_t i=0; i<12; i++) fITSchi2MIP[i]=chi2mip[i];
666 }
667 //_______________________________________________________________________
668 void AliESDtrack::GetITSpid(Double_t *p) const {
669   // Gets the probability of each particle type (in ITS)
670   for (Int_t i=0; i<kSPECIES; i++) p[i]=fITSr[i];
671 }
672
673 //_______________________________________________________________________
674 Int_t AliESDtrack::GetITSclusters(UInt_t *idx) const {
675   //---------------------------------------------------------------------
676   // This function returns indices of the assgined ITS clusters 
677   //---------------------------------------------------------------------
678   for (Int_t i=0; i<fITSncls; i++) idx[i]=fITSindex[i];
679   return fITSncls;
680 }
681
682 //_______________________________________________________________________
683 Int_t AliESDtrack::GetTPCclusters(Int_t *idx) const {
684   //---------------------------------------------------------------------
685   // This function returns indices of the assgined ITS clusters 
686   //---------------------------------------------------------------------
687   if (idx!=0)
688     for (Int_t i=0; i<180; i++) idx[i]=fTPCindex[i];  // MI I prefer some constant
689   return fTPCncls;
690 }
691
692 //_______________________________________________________________________
693 void AliESDtrack::SetTPCpid(const Double_t *p) {  
694   // Sets values for the probability of each particle type (in TPC)
695   for (Int_t i=0; i<kSPECIES; i++) fTPCr[i]=p[i];
696   SetStatus(AliESDtrack::kTPCpid);
697 }
698
699 //_______________________________________________________________________
700 void AliESDtrack::GetTPCpid(Double_t *p) const {
701   // Gets the probability of each particle type (in TPC)
702   for (Int_t i=0; i<kSPECIES; i++) p[i]=fTPCr[i];
703 }
704
705 //_______________________________________________________________________
706 Int_t AliESDtrack::GetTRDclusters(UInt_t *idx) const {
707   //---------------------------------------------------------------------
708   // This function returns indices of the assgined TRD clusters 
709   //---------------------------------------------------------------------
710   if (idx!=0)
711     for (Int_t i=0; i<130; i++) idx[i]=fTRDindex[i];  // MI I prefer some constant
712   return fTRDncls;
713 }
714
715 //_______________________________________________________________________
716 void AliESDtrack::SetTRDpid(const Double_t *p) {  
717   // Sets values for the probability of each particle type (in TRD)
718   for (Int_t i=0; i<kSPECIES; i++) fTRDr[i]=p[i];
719   SetStatus(AliESDtrack::kTRDpid);
720 }
721
722 //_______________________________________________________________________
723 void AliESDtrack::GetTRDpid(Double_t *p) const {
724   // Gets the probability of each particle type (in TRD)
725   for (Int_t i=0; i<kSPECIES; i++) p[i]=fTRDr[i];
726 }
727
728 //_______________________________________________________________________
729 void    AliESDtrack::SetTRDpid(Int_t iSpecies, Float_t p)
730 {
731   // Sets the probability of particle type iSpecies to p (in TRD)
732   fTRDr[iSpecies] = p;
733 }
734
735 Float_t AliESDtrack::GetTRDpid(Int_t iSpecies) const
736 {
737   // Returns the probability of particle type iSpecies (in TRD)
738   return fTRDr[iSpecies];
739 }
740
741 //_______________________________________________________________________
742 void AliESDtrack::SetTOFpid(const Double_t *p) {  
743   // Sets the probability of each particle type (in TOF)
744   for (Int_t i=0; i<kSPECIES; i++) fTOFr[i]=p[i];
745   SetStatus(AliESDtrack::kTOFpid);
746 }
747
748 //_______________________________________________________________________
749 void AliESDtrack::GetTOFpid(Double_t *p) const {
750   // Gets probabilities of each particle type (in TOF)
751   for (Int_t i=0; i<kSPECIES; i++) p[i]=fTOFr[i];
752 }
753
754
755
756 //_______________________________________________________________________
757 void AliESDtrack::SetPHOSpid(const Double_t *p) {  
758   // Sets the probability of each particle type (in PHOS)
759   for (Int_t i=0; i<kSPECIESN; i++) fPHOSr[i]=p[i];
760   SetStatus(AliESDtrack::kPHOSpid);
761 }
762
763 //_______________________________________________________________________
764 void AliESDtrack::GetPHOSpid(Double_t *p) const {
765   // Gets probabilities of each particle type (in PHOS)
766   for (Int_t i=0; i<kSPECIESN; i++) p[i]=fPHOSr[i];
767 }
768
769 //_______________________________________________________________________
770 void AliESDtrack::SetEMCALpid(const Double_t *p) {  
771   // Sets the probability of each particle type (in EMCAL)
772   for (Int_t i=0; i<kSPECIESN; i++) fEMCALr[i]=p[i];
773   SetStatus(AliESDtrack::kEMCALpid);
774 }
775
776 //_______________________________________________________________________
777 void AliESDtrack::GetEMCALpid(Double_t *p) const {
778   // Gets probabilities of each particle type (in EMCAL)
779   for (Int_t i=0; i<kSPECIESN; i++) p[i]=fEMCALr[i];
780 }
781
782 //_______________________________________________________________________
783 void AliESDtrack::SetRICHpid(const Double_t *p) {  
784   // Sets the probability of each particle type (in RICH)
785   for (Int_t i=0; i<kSPECIES; i++) fRICHr[i]=p[i];
786   SetStatus(AliESDtrack::kRICHpid);
787 }
788
789 //_______________________________________________________________________
790 void AliESDtrack::GetRICHpid(Double_t *p) const {
791   // Gets probabilities of each particle type (in RICH)
792   for (Int_t i=0; i<kSPECIES; i++) p[i]=fRICHr[i];
793 }
794
795
796
797 //_______________________________________________________________________
798 void AliESDtrack::SetESDpid(const Double_t *p) {  
799   // Sets the probability of each particle type for the ESD track
800   for (Int_t i=0; i<kSPECIES; i++) fR[i]=p[i];
801   SetStatus(AliESDtrack::kESDpid);
802 }
803
804 //_______________________________________________________________________
805 void AliESDtrack::GetESDpid(Double_t *p) const {
806   // Gets probability of each particle type for the ESD track
807   for (Int_t i=0; i<kSPECIES; i++) p[i]=fR[i];
808 }
809
810 //_______________________________________________________________________
811 void AliESDtrack::Print(Option_t *) const {
812   // Prints info on the track
813   
814   printf("ESD track info\n") ; 
815   Double_t p[kSPECIESN] ; 
816   Int_t index = 0 ; 
817   if( IsOn(kITSpid) ){
818     printf("From ITS: ") ; 
819     GetITSpid(p) ; 
820     for(index = 0 ; index < kSPECIES; index++) 
821       printf("%f, ", p[index]) ;
822     printf("\n           signal = %f\n", GetITSsignal()) ;
823   } 
824   if( IsOn(kTPCpid) ){
825     printf("From TPC: ") ; 
826     GetTPCpid(p) ; 
827     for(index = 0 ; index < kSPECIES; index++) 
828       printf("%f, ", p[index]) ;
829     printf("\n           signal = %f\n", GetTPCsignal()) ;
830   }
831   if( IsOn(kTRDpid) ){
832     printf("From TRD: ") ; 
833     GetTRDpid(p) ; 
834     for(index = 0 ; index < kSPECIES; index++) 
835       printf("%f, ", p[index]) ;
836     printf("\n           signal = %f\n", GetTRDsignal()) ;
837   }
838   if( IsOn(kTOFpid) ){
839     printf("From TOF: ") ; 
840     GetTOFpid(p) ; 
841     for(index = 0 ; index < kSPECIES; index++) 
842       printf("%f, ", p[index]) ;
843     printf("\n           signal = %f\n", GetTOFsignal()) ;
844   }
845   if( IsOn(kRICHpid) ){
846     printf("From TOF: ") ; 
847     GetRICHpid(p) ; 
848     for(index = 0 ; index < kSPECIES; index++) 
849       printf("%f, ", p[index]) ;
850     printf("\n           signal = %f\n", GetRICHsignal()) ;
851   }
852   if( IsOn(kPHOSpid) ){
853     printf("From PHOS: ") ; 
854     GetPHOSpid(p) ; 
855     for(index = 0 ; index < kSPECIESN; index++) 
856       printf("%f, ", p[index]) ;
857     printf("\n           signal = %f\n", GetPHOSsignal()) ;
858   }
859   if( IsOn(kEMCALpid) ){
860     printf("From EMCAL: ") ; 
861     GetEMCALpid(p) ; 
862     for(index = 0 ; index < kSPECIESN; index++) 
863       printf("%f, ", p[index]) ;
864     printf("\n           signal = %f\n", GetEMCALsignal()) ;
865   }
866