]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCtrack.cxx
Removing obsolete mapping macro
[u/mrichter/AliRoot.git] / TPC / AliTPCtrack.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 /* $Id$ */
17
18 //-----------------------------------------------------------------
19 //           Implementation of the TPC track class
20 //        This class is used by the AliTPCtracker class
21 //      Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
22 //-----------------------------------------------------------------
23
24 #include <Riostream.h>
25
26 #include "AliTPCtrack.h"
27 #include "AliCluster.h"
28 #include "AliTracker.h"
29 #include "AliESDtrack.h"
30 #include "AliESDVertex.h"
31
32 ClassImp(AliTPCtrack)
33
34 //_________________________________________________________________________
35 AliTPCtrack::AliTPCtrack(): 
36   AliKalmanTrack(),
37   fdEdx(0),
38   fSdEdx(1e10),
39   fNFoundable(0),
40   fBConstrain(kFALSE),
41   fLastPoint(-1),
42   fFirstPoint(-1),
43   fRemoval(0),
44   fTrackType(0),
45   fLab2(-1),
46   fNShared(0),
47   fReference()
48 {
49   //-------------------------------------------------
50   // default constructor
51   //-------------------------------------------------
52   for (Int_t i=0; i<kMaxRow;i++) fIndex[i]=-2;
53   for (Int_t i=0; i<4;i++) fPoints[i]=0.;
54   for (Int_t i=0; i<12;i++) fKinkPoint[i]=0.;
55   for (Int_t i=0; i<3;i++) fKinkIndexes[i]=0;
56   for (Int_t i=0; i<3;i++) fV0Indexes[i]=0;
57 }
58
59 //_________________________________________________________________________
60
61
62
63 AliTPCtrack::AliTPCtrack(Double_t x, Double_t alpha, const Double_t p[5],
64                          const Double_t cov[15], Int_t index) :
65   AliKalmanTrack(),
66   fdEdx(0),
67   fSdEdx(1e10),
68   fNFoundable(0),
69   fBConstrain(kFALSE),
70   fLastPoint(0),
71   fFirstPoint(0),
72   fRemoval(0),
73   fTrackType(0),
74   fLab2(0),
75   fNShared(0),
76   fReference()
77 {
78   //-----------------------------------------------------------------
79   // This is the main track constructor.
80   //-----------------------------------------------------------------
81   Double_t cnv=1./(AliTracker::GetBz()*kB2C);
82
83   Double_t pp[5]={
84     p[0],
85     p[1],
86     x*p[4] - p[2],
87     p[3],
88     p[4]*cnv
89   };
90
91   Double_t c22 = x*x*cov[14] - 2*x*cov[12] + cov[5];
92   Double_t c32 = x*cov[13] - cov[8];
93   Double_t c20 = x*cov[10] - cov[3], 
94            c21 = x*cov[11] - cov[4], c42 = x*cov[14] - cov[12];
95
96   Double_t cc[15]={
97     cov[0 ],
98     cov[1 ],     cov[2 ],
99     c20,         c21,         c22,
100     cov[6 ],     cov[7 ],     c32,     cov[9 ],
101     cov[10]*cnv, cov[11]*cnv, c42*cnv, cov[13]*cnv, cov[14]*cnv*cnv
102   };
103
104   Double_t mostProbablePt=AliExternalTrackParam::GetMostProbablePt();
105   Double_t p0=TMath::Sign(1/mostProbablePt,pp[4]);
106   Double_t w0=cc[14]/(cc[14] + p0*p0), w1=p0*p0/(cc[14] + p0*p0);
107   pp[4] = w0*p0 + w1*pp[4]; 
108   cc[10]*=w1; cc[11]*=w1; cc[12]*=w1; cc[13]*=w1; cc[14]*=w1;
109
110   Set(x,alpha,pp,cc);
111
112   SetNumberOfClusters(1);
113   
114   fIndex[0]=index;
115   for (Int_t i=1; i<kMaxRow;i++) fIndex[i]=-2;
116   for (Int_t i=0; i<4;i++) fPoints[i]=0.;
117   for (Int_t i=0; i<12;i++) fKinkPoint[i]=0.;
118   for (Int_t i=0; i<3;i++) fKinkIndexes[i]=0;
119   for (Int_t i=0; i<3;i++) fV0Indexes[i]=0;
120 }
121
122 //_____________________________________________________________________________
123 AliTPCtrack::AliTPCtrack(const AliESDtrack& t) :
124   AliKalmanTrack(),
125   fdEdx(t.GetTPCsignal()),
126   fSdEdx(1e10),
127   fNFoundable(0),
128   fBConstrain(kFALSE),
129   fLastPoint(0),
130   fFirstPoint(0),
131   fRemoval(0),
132   fTrackType(0),
133   fLab2(0),
134   fNShared(0),
135   fReference()
136 {
137   //-----------------------------------------------------------------
138   // Conversion AliESDtrack -> AliTPCtrack.
139   //-----------------------------------------------------------------
140   SetNumberOfClusters(t.GetTPCclusters(fIndex));
141   SetLabel(t.GetLabel());
142   SetMass(t.GetMass());
143   for (Int_t i=0; i<4;i++) fPoints[i]=0.;
144   for (Int_t i=0; i<12;i++) fKinkPoint[i]=0.;
145   for (Int_t i=0; i<3;i++) fKinkIndexes[i]=0;
146   for (Int_t i=0; i<3;i++) fV0Indexes[i]=0;
147
148   Set(t.GetX(),t.GetAlpha(),t.GetParameter(),t.GetCovariance());
149
150   if ((t.GetStatus()&AliESDtrack::kTIME) == 0) return;
151   StartTimeIntegral();
152   Double_t times[10]; t.GetIntegratedTimes(times); SetIntegratedTimes(times);
153   SetIntegratedLength(t.GetIntegratedLength());
154 }
155
156 //_____________________________________________________________________________
157 AliTPCtrack::AliTPCtrack(const AliTPCtrack& t) :
158   AliKalmanTrack(t),
159   fdEdx(t.fdEdx),
160   fSdEdx(t.fSdEdx),
161   fNFoundable(t.fNFoundable),
162   fBConstrain(t.fBConstrain),
163   fLastPoint(t.fLastPoint),
164   fFirstPoint(t.fFirstPoint),
165   fRemoval(t.fRemoval),
166   fTrackType(t.fTrackType),
167   fLab2(t.fLab2),
168   fNShared(t.fNShared),
169   fReference(t.fReference)
170
171 {
172   //-----------------------------------------------------------------
173   // This is a track copy constructor.
174   //-----------------------------------------------------------------
175   Set(t.GetX(),t.GetAlpha(),t.GetParameter(),t.GetCovariance());
176
177   for (Int_t i=0; i<kMaxRow; i++) fIndex[i]=t.fIndex[i];
178   for (Int_t i=0; i<4;i++) fPoints[i]=t.fPoints[i];
179   for (Int_t i=0; i<12;i++) fKinkPoint[i]=t.fKinkPoint[i];
180   for (Int_t i=0; i<3;i++) fKinkIndexes[i]=t.fKinkIndexes[i];
181   for (Int_t i=0; i<3;i++) fV0Indexes[i]=t.fV0Indexes[i];
182 }
183
184 AliTPCtrack& AliTPCtrack::operator=(const AliTPCtrack& o){
185   if(this!=&o){
186     AliKalmanTrack::operator=(o);
187     fdEdx = o.fdEdx;
188     for(Int_t i = 0;i<kMaxRow;++i)fIndex[i] = o.fIndex[i];
189     for(Int_t i = 0;i<4;++i)fPoints[i] = o.fPoints[i];
190     fSdEdx = o.fSdEdx;
191     fNFoundable = o.fNFoundable;
192     fBConstrain = o.fBConstrain;
193     fLastPoint  = o.fLastPoint;
194     fFirstPoint = o.fFirstPoint;
195     fTrackType  = o.fTrackType;
196     fLab2       = o.fLab2;
197     fNShared    = o.fNShared;
198     fReference  = o.fReference;
199     for(Int_t i = 0;i<12;++i) fKinkPoint[i] = o.fKinkPoint[i];
200
201     for(Int_t i = 0;i<3;++i){
202       fKinkIndexes[i] = o.fKinkIndexes[i];
203       fV0Indexes[i] = o.fV0Indexes[i];
204     }
205   }
206   return *this;
207
208 }
209
210
211 //_____________________________________________________________________________
212 Int_t AliTPCtrack::Compare(const TObject *o) const {
213   //-----------------------------------------------------------------
214   // This function compares tracks according to the their curvature
215   //-----------------------------------------------------------------
216   AliTPCtrack *t=(AliTPCtrack*)o;
217   //Double_t co=t->OneOverPt();
218   //Double_t c = OneOverPt();
219   Double_t co=t->GetSigmaY2()*t->GetSigmaZ2();
220   Double_t c =GetSigmaY2()*GetSigmaZ2();
221   if (c>co) return 1;
222   else if (c<co) return -1;
223   return 0;
224 }
225
226 Double_t AliTPCtrack::GetPredictedChi2(const AliCluster *c) const {
227   //-----------------------------------------------------------------
228   // This function calculates a predicted chi2 increment.
229   //-----------------------------------------------------------------
230   Double_t p[2]={c->GetY(), c->GetZ()};
231   Double_t cov[3]={c->GetSigmaY2(), 0., c->GetSigmaZ2()};
232   return AliExternalTrackParam::GetPredictedChi2(p,cov);
233 }
234
235 //_____________________________________________________________________________
236 Bool_t AliTPCtrack::PropagateTo(Double_t xk,Double_t rho,Double_t x0) {
237   //-----------------------------------------------------------------
238   //  This function propagates a track to a reference plane x=xk.
239   //  rho - density of the crossed matrial (g/cm^3)
240   //  x0  - radiation length of the crossed material (g/cm^2) 
241   //-----------------------------------------------------------------
242   Double_t oldX=GetX(), oldY=GetY(), oldZ=GetZ();
243
244   Double_t bz=GetBz();
245   if (!AliExternalTrackParam::PropagateTo(xk,bz)) return kFALSE;
246
247   Double_t d = TMath::Sqrt((GetX()-oldX)*(GetX()-oldX) + 
248                            (GetY()-oldY)*(GetY()-oldY) + 
249                            (GetZ()-oldZ)*(GetZ()-oldZ));
250   if (IsStartedTimeIntegral() && GetX()>oldX) AddTimeStep(d);
251
252   if (oldX < xk) d = -d;
253   if (!AliExternalTrackParam::CorrectForMeanMaterial(d*rho/x0,d*rho,GetMass(),
254       kFALSE,AliExternalTrackParam::BetheBlochGas)) return kFALSE;
255
256   return kTRUE;
257 }
258
259 //_____________________________________________________________________________
260 Bool_t 
261 AliTPCtrack::PropagateToVertex(const AliESDVertex *v,Double_t rho,Double_t x0) 
262 {
263   //-----------------------------------------------------------------
264   // This function propagates tracks to the vertex
265   // rho - density of the crossed matrial (g/cm3)
266   // x0  - radiation length of the crossed material (g/cm2) 
267   //-----------------------------------------------------------------
268   Double_t oldX=GetX(), oldY=GetY(), oldZ=GetZ();
269
270   Double_t bz=GetBz();
271   if (!PropagateToDCA(v,bz,kVeryBig)) return kFALSE;
272
273   Double_t d = TMath::Sqrt((GetX()-oldX)*(GetX()-oldX) + 
274                            (GetY()-oldY)*(GetY()-oldY) + 
275                            (GetZ()-oldZ)*(GetZ()-oldZ));
276
277   if (oldX < GetX()) d = -d;
278   if (!AliExternalTrackParam::CorrectForMeanMaterial(d*rho/x0,d*rho,GetMass(),
279       kFALSE,AliExternalTrackParam::BetheBlochGas)) return kFALSE;
280
281   return kTRUE;
282 }
283
284 //_____________________________________________________________________________
285 Bool_t AliTPCtrack::Update(const AliCluster *c, Double_t chisq, Int_t index) {
286   //-----------------------------------------------------------------
287   // This function associates a cluster with this track.
288   //-----------------------------------------------------------------
289   Double_t p[2]={c->GetY(), c->GetZ()};
290   Double_t cov[3]={c->GetSigmaY2(), 0., c->GetSigmaZ2()};
291
292   if (!AliExternalTrackParam::Update(p,cov)) return kFALSE;
293
294   AliTracker::FillResiduals(this,p,cov,c->GetVolumeId());
295
296   Int_t n=GetNumberOfClusters();
297   fIndex[n]=index;
298   SetNumberOfClusters(n+1);
299   SetChi2(GetChi2()+chisq);
300
301   return kTRUE;
302 }
303
304 ////////////////////////////////////////////////////////////////////////
305 // MI ADDITION
306
307 Float_t AliTPCtrack::Density(Int_t row0, Int_t row1)
308 {
309   //
310   // calculate cluster density
311   Int_t good  = 0;
312   Int_t found = 0;
313   //if (row0<fFirstPoint) row0 = fFirstPoint;
314   if (row1>fLastPoint) row1 = fLastPoint;
315
316   
317   for (Int_t i=row0;i<=row1;i++){ 
318     //    Int_t index = fClusterIndex[i];
319     Int_t index = fIndex[i];
320     if (index!=-1)  good++;
321     if (index>0)    found++;
322   }
323   Float_t density=0;
324   if (good>0) density = Float_t(found)/Float_t(good);
325   return density;
326 }
327
328
329 Float_t AliTPCtrack::Density2(Int_t row0, Int_t row1)
330 {
331   //
332   // calculate cluster density
333   Int_t good  = 0;
334   Int_t found = 0;
335   //  
336   for (Int_t i=row0;i<=row1;i++){     
337     Int_t index = fIndex[i];
338     if (index!=-1)  good++;
339     if (index>0)    found++;
340   }
341   Float_t density=0;
342   if (good>0) density = Float_t(found)/Float_t(good);
343   return density;
344 }
345
346 void  AliTPCtrack::UpdatePoints()
347 {
348   //--------------------------------------------------
349   //calculates first ,amx dens and last points
350   //--------------------------------------------------
351   Float_t density[160];
352   for (Int_t i=0;i<160;i++) density[i]=-1.;
353   fPoints[0]= 160;
354   fPoints[1] = -1;
355   //
356   Int_t ngood=0;
357   Int_t undeff=0;
358   Int_t nall =0;
359   Int_t range=20;
360   for (Int_t i=0;i<160;i++){
361     Int_t last = i-range;
362     if (nall<range) nall++;
363     if (last>=0){
364       if (fIndex[last]>0&& (fIndex[last]&0x8000)==0) ngood--;
365       if (fIndex[last]==-1) undeff--;
366     }
367     if (fIndex[i]>0&& (fIndex[i]&0x8000)==0)   ngood++;
368     if (fIndex[i]==-1) undeff++;
369     if (nall==range &&undeff<range/2) density[i-range/2] = Float_t(ngood)/Float_t(nall-undeff);
370   }
371   Float_t maxdens=0;
372   Int_t indexmax =0;
373   for (Int_t i=0;i<160;i++){
374     if (density[i]<0) continue;
375     if (density[i]>maxdens){
376       maxdens=density[i];
377       indexmax=i;
378     }
379   }
380   //
381   //max dens point
382   fPoints[3] = maxdens;
383   fPoints[1] = indexmax;
384   //
385   // last point
386   for (Int_t i=indexmax;i<160;i++){
387     if (density[i]<0) continue;
388     if (density[i]<maxdens/2.) {
389       break;
390     }
391     fPoints[2]=i;
392   }
393   //
394   // first point
395   for (Int_t i=indexmax;i>0;i--){
396     if (density[i]<0) continue;
397     if (density[i]<maxdens/2.) {
398       break;
399     }
400     fPoints[0]=i;
401   }
402   //
403 }
404