]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITStrackerV2.cxx
Matrices to go from local RS of alignable volumes to Tracking Reference system (V2...
[u/mrichter/AliRoot.git] / ITS / AliITStrackerV2.cxx
CommitLineData
006b5f7f 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 ITS tracker class
00a7cc50 18// It reads AliITSRecPoint clusters and creates AliITStrackV2 tracks
18856a77 19// and fills with them the ESD
006b5f7f 20// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
a9a2d814 21// dEdx analysis by: Boris Batyunya, JINR, Boris.Batiounia@cern.ch
006b5f7f 22//-------------------------------------------------------------------------
1f9a65c4 23
9c369bfe 24#include <new>
25
006b5f7f 26#include <TFile.h>
27#include <TTree.h>
28#include <TRandom.h>
a504d56f 29#include <TGeoMatrix.h>
006b5f7f 30
31#include "AliITSgeom.h"
a504d56f 32#include "AliAlignObj.h"
006b5f7f 33#include "AliITSRecPoint.h"
c630aafd 34#include "AliESD.h"
00a7cc50 35#include "AliITSRecPoint.h"
006b5f7f 36#include "AliITStrackerV2.h"
37
8676d691 38ClassImp(AliITStrackerV2)
006b5f7f 39
a504d56f 40AliITStrackerV2::AliITSlayer AliITStrackerV2::fgLayers[kMaxLayer]; //ITS layers
006b5f7f 41
6c94f330 42AliITStrackerV2::AliITStrackerV2():
43 AliTracker(),
44 fI(kMaxLayer),
45 fBestTrack(),
46 fTrackToFollow(),
47 fPass(0),
48 fLastLayerToTrackTo(kLastLayerToTrackTo)
49{
50 //--------------------------------------------------------------------
51 //This is the AliITStrackerV2 default constructor
52 //--------------------------------------------------------------------
53
54 for (Int_t i=1; i<kMaxLayer+1; i++) new(fgLayers+i-1) AliITSlayer();
55
56 fConstraint[0]=1; fConstraint[1]=0;
57
58 Double_t xyz[]={kXV,kYV,kZV}, ers[]={kSigmaXV,kSigmaYV,kSigmaZV};
59 SetVertex(xyz,ers);
60
61 for (Int_t i=0; i<kMaxLayer; i++) fLayersNotToSkip[i]=kLayersNotToSkip[i];
62
63}
64
65AliITStrackerV2::AliITStrackerV2(const AliITStrackerV2 &t):
66 AliTracker(t),
67 fI(t.fI),
68 fBestTrack(t.fBestTrack),
69 fTrackToFollow(t.fTrackToFollow),
70 fPass(t.fPass),
71 fLastLayerToTrackTo(t.fLastLayerToTrackTo)
72{
73 //--------------------------------------------------------------------
74 //This is the AliITStrackerV2 copy constructor
75 //--------------------------------------------------------------------
76
77 //for (Int_t i=1; i<kMaxLayer+1; i++) new(fgLayers+i-1) AliITSlayer();
78
79 fConstraint[0]=t.fConstraint[0]; fConstraint[1]=t.fConstraint[1];
80
81 Double_t xyz[]={kXV,kYV,kZV}, ers[]={kSigmaXV,kSigmaYV,kSigmaZV};
82 xyz[0]=t.GetX(); xyz[1]=t.GetY(); xyz[2]=t.GetZ();
83 ers[0]=t.GetSigmaX(); ers[1]=t.GetSigmaY(); ers[2]=t.GetSigmaZ();
84 SetVertex(xyz,ers);
85
86 for (Int_t i=0; i<kMaxLayer; i++) fLayersNotToSkip[i]=t.fLayersNotToSkip[i];
87
88}
89
90AliITStrackerV2::AliITStrackerV2(const AliITSgeom *geom) :
91 AliTracker(),
92 fI(kMaxLayer),
93 fBestTrack(),
94 fTrackToFollow(),
95 fPass(0),
96 fLastLayerToTrackTo(kLastLayerToTrackTo)
97{
006b5f7f 98 //--------------------------------------------------------------------
61ab8ea8 99 //This is the AliITStrackerV2 constructor
006b5f7f 100 //--------------------------------------------------------------------
006b5f7f 101 AliITSgeom *g=(AliITSgeom*)geom;
102
c219fd63 103 Float_t x,y,z; Int_t i;
c630aafd 104 for (i=1; i<kMaxLayer+1; i++) {
006b5f7f 105 Int_t nlad=g->GetNladders(i);
106 Int_t ndet=g->GetNdetectors(i);
107
108 g->GetTrans(i,1,1,x,y,z);
006b5f7f 109 Double_t poff=TMath::ATan2(y,x);
110 Double_t zoff=z;
a504d56f 111 Double_t r=TMath::Sqrt(x*x + y*y);
006b5f7f 112
113 g->GetTrans(i,1,2,x,y,z);
114 r += TMath::Sqrt(x*x + y*y);
115 g->GetTrans(i,2,1,x,y,z);
116 r += TMath::Sqrt(x*x + y*y);
117 g->GetTrans(i,2,2,x,y,z);
118 r += TMath::Sqrt(x*x + y*y);
119 r*=0.25;
120
18856a77 121 new (fgLayers+i-1) AliITSlayer(r,poff,zoff,nlad,ndet);
006b5f7f 122
123 for (Int_t j=1; j<nlad+1; j++) {
124 for (Int_t k=1; k<ndet+1; k++) { //Fill this layer with detectors
125 Float_t x,y,zshift; g->GetTrans(i,j,k,x,y,zshift);
126 Double_t rot[9]; g->GetRotMatrix(i,j,k,rot);
127
f363d377 128 Double_t phi=TMath::ATan2(rot[1],rot[0])+TMath::Pi();
129 phi+=TMath::Pi()/2;
130 if (i==1) phi+=TMath::Pi();
c219fd63 131
132 if (phi<0) phi+=TMath::TwoPi();
133 else if (phi>=TMath::TwoPi()) phi-=TMath::TwoPi();
134
f363d377 135 Double_t cp=TMath::Cos(phi), sp=TMath::Sin(phi);
136 Double_t r=x*cp+y*sp;
006b5f7f 137
18856a77 138 AliITSdetector &det=fgLayers[i-1].GetDetector((j-1)*ndet + k-1);
006b5f7f 139 new(&det) AliITSdetector(r,phi);
140 }
141 }
c630aafd 142
006b5f7f 143 }
144
c219fd63 145 fConstraint[0]=1; fConstraint[1]=0;
8676d691 146
147 Double_t xyz[]={kXV,kYV,kZV}, ers[]={kSigmaXV,kSigmaYV,kSigmaZV};
148 SetVertex(xyz,ers);
c0dd5278 149
150 for (Int_t i=0; i<kMaxLayer; i++) fLayersNotToSkip[i]=kLayersNotToSkip[i];
c0dd5278 151
152}
153
154void AliITStrackerV2::SetLayersNotToSkip(Int_t *l) {
155 //--------------------------------------------------------------------
156 //This function set masks of the layers which must be not skipped
157 //--------------------------------------------------------------------
158 for (Int_t i=0; i<kMaxLayer; i++) fLayersNotToSkip[i]=l[i];
61ab8ea8 159}
006b5f7f 160
c630aafd 161Int_t AliITStrackerV2::LoadClusters(TTree *cTree) {
61ab8ea8 162 //--------------------------------------------------------------------
163 //This function loads ITS clusters
164 //--------------------------------------------------------------------
00a7cc50 165 TBranch *branch=cTree->GetBranch("ITSRecPoints");
61ab8ea8 166 if (!branch) {
c630aafd 167 Error("LoadClusters"," can't get the branch !\n");
8676d691 168 return 1;
61ab8ea8 169 }
006b5f7f 170
00a7cc50 171 TClonesArray dummy("AliITSRecPoint",10000), *clusters=&dummy;
61ab8ea8 172 branch->SetAddress(&clusters);
006b5f7f 173
61ab8ea8 174 Int_t j=0;
175 for (Int_t i=0; i<kMaxLayer; i++) {
18856a77 176 Int_t ndet=fgLayers[i].GetNdetectors();
177 Int_t jmax = j + fgLayers[i].GetNladders()*ndet;
c219fd63 178
179 Double_t r=fgLayers[i].GetR();
180 Double_t circ=TMath::TwoPi()*r;
181
61ab8ea8 182 for (; j<jmax; j++) {
183 if (!cTree->GetEvent(j)) continue;
184 Int_t ncl=clusters->GetEntriesFast();
185 while (ncl--) {
00a7cc50 186 AliITSRecPoint *c=(AliITSRecPoint*)clusters->UncheckedAt(ncl);
c219fd63 187
188 Int_t idx=c->GetDetectorIndex();
a504d56f 189 AliITSdetector &det=fgLayers[i].GetDetector(idx);
190
191 //Shift the cluster to the misaligned position
192 Double_t x=det.GetR(); //y=...; z=...;
193 c->SetX(x); //c->SetY(y); c->SetZ(z);
194
195 Double_t y=r*det.GetPhi()+c->GetY();
c219fd63 196 if (y>circ) y-=circ; else if (y<0) y+=circ;
197 c->SetPhiR(y);
198
00a7cc50 199 fgLayers[i].InsertCluster(new AliITSRecPoint(*c));
61ab8ea8 200 }
201 clusters->Delete();
202 }
18856a77 203 fgLayers[i].ResetRoad(); //road defined by the cluster density
006b5f7f 204 }
c630aafd 205
8676d691 206 return 0;
61ab8ea8 207}
006b5f7f 208
61ab8ea8 209void AliITStrackerV2::UnloadClusters() {
210 //--------------------------------------------------------------------
211 //This function unloads ITS clusters
212 //--------------------------------------------------------------------
18856a77 213 for (Int_t i=0; i<kMaxLayer; i++) fgLayers[i].ResetClusters();
006b5f7f 214}
215
880f41b9 216static Int_t CorrectForDeadZoneMaterial(AliITStrackV2 *t) {
217 //--------------------------------------------------------------------
218 // Correction for the material between the TPC and the ITS
219 // (should it belong to the TPC code ?)
220 //--------------------------------------------------------------------
221 Double_t riw=80., diw=0.0053, x0iw=30; // TPC inner wall ?
222 Double_t rcd=61., dcd=0.0053, x0cd=30; // TPC "central drum" ?
223 Double_t yr=12.8, dr=0.03; // rods ?
224 Double_t zm=0.2, dm=0.40; // membrane
225 //Double_t rr=52., dr=0.19, x0r=24., yyr=7.77; //rails
226 Double_t rs=50., ds=0.001; // something belonging to the ITS (screen ?)
227
228 if (t->GetX() > riw) {
229 if (!t->PropagateTo(riw,diw,x0iw)) return 1;
230 if (TMath::Abs(t->GetY())>yr) t->CorrectForMaterial(dr);
231 if (TMath::Abs(t->GetZ())<zm) t->CorrectForMaterial(dm);
232 if (!t->PropagateTo(rcd,dcd,x0cd)) return 1;
233 //Double_t x,y,z; t->GetGlobalXYZat(rr,x,y,z);
234 //if (TMath::Abs(y)<yyr) t->PropagateTo(rr,dr,x0r);
235 if (!t->PropagateTo(rs,ds)) return 1;
236 } else if (t->GetX() < rs) {
237 if (!t->PropagateTo(rs,-ds)) return 1;
238 //Double_t x,y,z; t->GetGlobalXYZat(rr,x,y,z);
239 //if (TMath::Abs(y)<yyr) t->PropagateTo(rr,-dr,x0r);
240 if (!t->PropagateTo(rcd,-dcd,x0cd)) return 1;
ba1a3e1a 241 if (!t->PropagateTo(riw+0.001,-diw,x0iw)) return 1;
880f41b9 242 } else {
243 ::Error("CorrectForDeadZoneMaterial","track is already in the dead zone !");
244 return 1;
245 }
246
247 return 0;
248}
249
c630aafd 250Int_t AliITStrackerV2::Clusters2Tracks(AliESD *event) {
006b5f7f 251 //--------------------------------------------------------------------
c630aafd 252 // This functions reconstructs ITS tracks
253 // The clusters must be already loaded !
006b5f7f 254 //--------------------------------------------------------------------
c630aafd 255 TObjArray itsTracks(15000);
006b5f7f 256
c630aafd 257 {/* Read ESD tracks */
258 Int_t nentr=event->GetNumberOfTracks();
259 Info("Clusters2Tracks", "Number of ESD tracks: %d\n", nentr);
260 while (nentr--) {
261 AliESDtrack *esd=event->GetTrack(nentr);
262
ba1a3e1a 263 if ((esd->GetStatus()&AliESDtrack::kTPCin)==0) continue;
264 if (esd->GetStatus()&AliESDtrack::kTPCout) continue;
265 if (esd->GetStatus()&AliESDtrack::kITSin) continue;
c630aafd 266
267 AliITStrackV2 *t=0;
268 try {
269 t=new AliITStrackV2(*esd);
270 } catch (const Char_t *msg) {
271 Warning("Clusters2Tracks",msg);
272 delete t;
273 continue;
274 }
6c94f330 275 if (TMath::Abs(t->GetD(GetX(),GetY()))>4) {
ebd8369c 276 delete t;
277 continue;
278 }
006b5f7f 279
c630aafd 280 if (CorrectForDeadZoneMaterial(t)!=0) {
281 Warning("Clusters2Tracks",
282 "failed to correct for the material in the dead zone !\n");
283 delete t;
284 continue;
285 }
286 itsTracks.AddLast(t);
287 }
288 } /* End Read ESD tracks */
289
290 itsTracks.Sort();
291 Int_t nentr=itsTracks.GetEntriesFast();
15dd636f 292
c630aafd 293 Int_t ntrk=0;
294 for (fPass=0; fPass<2; fPass++) {
295 Int_t &constraint=fConstraint[fPass]; if (constraint<0) continue;
296 for (Int_t i=0; i<nentr; i++) {
297 AliITStrackV2 *t=(AliITStrackV2*)itsTracks.UncheckedAt(i);
15dd636f 298 if (t==0) continue; //this track has been already tracked
c630aafd 299 Int_t tpcLabel=t->GetLabel(); //save the TPC track label
300
301 ResetTrackToFollow(*t);
302 ResetBestTrack();
303
304 for (FollowProlongation(); fI<kMaxLayer; fI++) {
15dd636f 305 while (TakeNextProlongation()) FollowProlongation();
c630aafd 306 }
307
de5d3595 308 if (fBestTrack.GetNumberOfClusters() == 0) continue;
15dd636f 309
c630aafd 310 if (fConstraint[fPass]) {
15dd636f 311 ResetTrackToFollow(*t);
312 if (!RefitAt(3.7, &fTrackToFollow, &fBestTrack)) continue;
313 ResetBestTrack();
314 }
315
c630aafd 316 fBestTrack.SetLabel(tpcLabel);
317 fBestTrack.CookdEdx();
318 CookLabel(&fBestTrack,0.); //For comparison only
319 fBestTrack.UpdateESDtrack(AliESDtrack::kITSin);
15dd636f 320 UseClusters(&fBestTrack);
c630aafd 321 delete itsTracks.RemoveAt(i);
322 ntrk++;
323 }
324 }
babd135a 325
c630aafd 326 itsTracks.Delete();
2257f27e 327
c630aafd 328 Info("Clusters2Tracks","Number of prolonged tracks: %d\n",ntrk);
329
330 return 0;
331}
332
c630aafd 333Int_t AliITStrackerV2::PropagateBack(AliESD *event) {
334 //--------------------------------------------------------------------
335 // This functions propagates reconstructed ITS tracks back
336 // The clusters must be loaded !
337 //--------------------------------------------------------------------
338 Int_t nentr=event->GetNumberOfTracks();
339 Info("PropagateBack", "Number of ESD tracks: %d\n", nentr);
340
341 Int_t ntrk=0;
342 for (Int_t i=0; i<nentr; i++) {
343 AliESDtrack *esd=event->GetTrack(i);
344
ba1a3e1a 345 if ((esd->GetStatus()&AliESDtrack::kITSin)==0) continue;
346 if (esd->GetStatus()&AliESDtrack::kITSout) continue;
c630aafd 347
348 AliITStrackV2 *t=0;
349 try {
350 t=new AliITStrackV2(*esd);
351 } catch (const Char_t *msg) {
352 Warning("PropagateBack",msg);
353 delete t;
354 continue;
355 }
356
357 ResetTrackToFollow(*t);
358
359 // propagete to vertex [SR, GSI 17.02.2003]
a9459f9c 360 // Start Time measurement [SR, GSI 17.02.2003], corrected by I.Belikov
361 if (fTrackToFollow.PropagateTo(3.,0.0028,65.19)) {
6c94f330 362 if (fTrackToFollow.PropagateToVertex(event->GetVertex())) {
a9459f9c 363 fTrackToFollow.StartTimeIntegral();
364 }
365 fTrackToFollow.PropagateTo(3.,-0.0028,65.19);
366 }
c630aafd 367
6c94f330 368 fTrackToFollow.ResetCovariance(10.); fTrackToFollow.ResetClusters();
c630aafd 369 if (RefitAt(49.,&fTrackToFollow,t)) {
370 if (CorrectForDeadZoneMaterial(&fTrackToFollow)!=0) {
371 Warning("PropagateBack",
372 "failed to correct for the material in the dead zone !\n");
373 delete t;
374 continue;
375 }
376 fTrackToFollow.SetLabel(t->GetLabel());
ba1a3e1a 377 //fTrackToFollow.CookdEdx();
c630aafd 378 CookLabel(&fTrackToFollow,0.); //For comparison only
379 fTrackToFollow.UpdateESDtrack(AliESDtrack::kITSout);
15dd636f 380 UseClusters(&fTrackToFollow);
c630aafd 381 ntrk++;
382 }
383 delete t;
384 }
385
386 Info("PropagateBack","Number of back propagated ITS tracks: %d\n",ntrk);
61ab8ea8 387
83d73500 388 return 0;
389}
390
c630aafd 391Int_t AliITStrackerV2::RefitInward(AliESD *event) {
83d73500 392 //--------------------------------------------------------------------
393 // This functions refits ITS tracks using the
394 // "inward propagated" TPC tracks
c630aafd 395 // The clusters must be loaded !
83d73500 396 //--------------------------------------------------------------------
c630aafd 397 Int_t nentr=event->GetNumberOfTracks();
398 Info("RefitInward", "Number of ESD tracks: %d\n", nentr);
399
400 Int_t ntrk=0;
401 for (Int_t i=0; i<nentr; i++) {
402 AliESDtrack *esd=event->GetTrack(i);
403
ba1a3e1a 404 if ((esd->GetStatus()&AliESDtrack::kITSout) == 0) continue;
405 if (esd->GetStatus()&AliESDtrack::kITSrefit) continue;
406 if (esd->GetStatus()&AliESDtrack::kTPCout)
15dd636f 407 if ((esd->GetStatus()&AliESDtrack::kTPCrefit)==0) continue;
c630aafd 408
409 AliITStrackV2 *t=0;
410 try {
411 t=new AliITStrackV2(*esd);
412 } catch (const Char_t *msg) {
413 Warning("RefitInward",msg);
414 delete t;
415 continue;
416 }
417
418 if (CorrectForDeadZoneMaterial(t)!=0) {
419 Warning("RefitInward",
420 "failed to correct for the material in the dead zone !\n");
421 delete t;
422 continue;
423 }
424
425 ResetTrackToFollow(*t);
426 fTrackToFollow.ResetClusters();
427
428 //Refitting...
ef7253ac 429 if (RefitAt(3.7, &fTrackToFollow, t, kTRUE)) {
c630aafd 430 fTrackToFollow.SetLabel(t->GetLabel());
431 fTrackToFollow.CookdEdx();
15dd636f 432 CookLabel(&fTrackToFollow,0.); //For comparison only
18856a77 433
49d13e89 434 if (fTrackToFollow.PropagateTo(3.,0.0028,65.19)) {//The beam pipe
435 AliESDtrack *esdTrack =fTrackToFollow.GetESDtrack();
436 esdTrack->UpdateTrackParams(&fTrackToFollow,AliESDtrack::kITSrefit);
437 Float_t r[3]={0.,0.,0.};
438 Double_t maxD=3.;
439 esdTrack->RelateToVertex(event->GetVertex(),GetBz(r),maxD);
440 ntrk++;
67c3dcbe 441 }
c630aafd 442 }
443 delete t;
444 }
445
446 Info("RefitInward","Number of refitted tracks: %d\n",ntrk);
83d73500 447
c630aafd 448 return 0;
449}
83d73500 450
006b5f7f 451AliCluster *AliITStrackerV2::GetCluster(Int_t index) const {
452 //--------------------------------------------------------------------
453 // Return pointer to a given cluster
454 //--------------------------------------------------------------------
455 Int_t l=(index & 0xf0000000) >> 28;
456 Int_t c=(index & 0x0fffffff) >> 00;
18856a77 457 return fgLayers[l].GetCluster(c);
006b5f7f 458}
459
460
461void AliITStrackerV2::FollowProlongation() {
462 //--------------------------------------------------------------------
463 //This function finds a track prolongation
464 //--------------------------------------------------------------------
c0dd5278 465 while (fI>fLastLayerToTrackTo) {
a9a2d814 466 Int_t i=fI-1;
8676d691 467
18856a77 468 AliITSlayer &layer=fgLayers[i];
a9a2d814 469 AliITStrackV2 &track=fTracks[i];
006b5f7f 470
14825d5a 471 Double_t r=layer.GetR();
61ab8ea8 472
a9a2d814 473 if (i==3 || i==1) {
18856a77 474 Double_t rs=0.5*(fgLayers[i+1].GetR() + r);
61ab8ea8 475 Double_t d=0.0034, x0=38.6;
476 if (i==1) {rs=9.; d=0.0097; x0=42;}
477 if (!fTrackToFollow.PropagateTo(rs,d,x0)) {
8676d691 478 //Warning("FollowProlongation","propagation failed !\n");
c0dd5278 479 return;
a9a2d814 480 }
006b5f7f 481 }
482
483 //find intersection
484 Double_t x,y,z;
14825d5a 485 if (!fTrackToFollow.GetGlobalXYZat(r,x,y,z)) {
8676d691 486 //Warning("FollowProlongation","failed to estimate track !\n");
c0dd5278 487 return;
006b5f7f 488 }
489 Double_t phi=TMath::ATan2(y,x);
f363d377 490
006b5f7f 491 Int_t idet=layer.FindDetectorIndex(phi,z);
492 if (idet<0) {
8676d691 493 //Warning("FollowProlongation","failed to find a detector !\n");
c0dd5278 494 return;
006b5f7f 495 }
496
497 //propagate to the intersection
498 const AliITSdetector &det=layer.GetDetector(idet);
14825d5a 499 phi=det.GetPhi();
a9a2d814 500 if (!fTrackToFollow.Propagate(phi,det.GetR())) {
8676d691 501 //Warning("FollowProlongation","propagation failed !\n");
c0dd5278 502 return;
006b5f7f 503 }
504 fTrackToFollow.SetDetectorIndex(idet);
505
506 //Select possible prolongations and store the current track estimation
507 track.~AliITStrackV2(); new(&track) AliITStrackV2(fTrackToFollow);
8676d691 508 Double_t dz=7*TMath::Sqrt(track.GetSigmaZ2() + kSigmaZ2[i]);
509 Double_t dy=7*TMath::Sqrt(track.GetSigmaY2() + kSigmaY2[i]);
510 Double_t road=layer.GetRoad();
511 if (dz*dy>road*road) {
512 Double_t dd=TMath::Sqrt(dz*dy), scz=dz/dd, scy=dy/dd;
513 dz=road*scz; dy=road*scy;
514 }
b87bd7cd 515
516 //Double_t dz=4*TMath::Sqrt(track.GetSigmaZ2() + kSigmaZ2[i]);
14825d5a 517 if (dz < 0.5*TMath::Abs(track.GetTgl())) dz=0.5*TMath::Abs(track.GetTgl());
7f6ddf58 518 if (dz > kMaxRoad) {
8676d691 519 //Warning("FollowProlongation","too broad road in Z !\n");
c0dd5278 520 return;
006b5f7f 521 }
a9a2d814 522
15dd636f 523 if (TMath::Abs(fTrackToFollow.GetZ()-GetZ()) > r+dz) return;
a9a2d814 524
b87bd7cd 525 //Double_t dy=4*TMath::Sqrt(track.GetSigmaY2() + kSigmaY2[i]);
14825d5a 526 if (dy < 0.5*TMath::Abs(track.GetSnp())) dy=0.5*TMath::Abs(track.GetSnp());
7f6ddf58 527 if (dy > kMaxRoad) {
8676d691 528 //Warning("FollowProlongation","too broad road in Y !\n");
c0dd5278 529 return;
006b5f7f 530 }
a9a2d814 531
c219fd63 532 fI--;
533
7f6ddf58 534 Double_t zmin=track.GetZ() - dz;
006b5f7f 535 Double_t zmax=track.GetZ() + dz;
14825d5a 536 Double_t ymin=track.GetY() + r*phi - dy;
537 Double_t ymax=track.GetY() + r*phi + dy;
c219fd63 538 if (layer.SelectClusters(zmin,zmax,ymin,ymax)==0)
539 if (fLayersNotToSkip[fI]) return;
006b5f7f 540
15dd636f 541 if (!TakeNextProlongation())
542 if (fLayersNotToSkip[fI]) return;
543
006b5f7f 544 }
545
546 //deal with the best track
547 Int_t ncl=fTrackToFollow.GetNumberOfClusters();
548 Int_t nclb=fBestTrack.GetNumberOfClusters();
15dd636f 549 if (ncl)
550 if (ncl >= nclb) {
551 Double_t chi2=fTrackToFollow.GetChi2();
552 if (chi2/ncl < kChi2PerCluster) {
553 if (ncl > nclb || chi2 < fBestTrack.GetChi2()) {
554 ResetBestTrack();
006b5f7f 555 }
15dd636f 556 }
006b5f7f 557 }
15dd636f 558
006b5f7f 559}
560
006b5f7f 561Int_t AliITStrackerV2::TakeNextProlongation() {
562 //--------------------------------------------------------------------
a9a2d814 563 // This function takes another track prolongation
564 //
565 // dEdx analysis by: Boris Batyunya, JINR, Boris.Batiounia@cern.ch
006b5f7f 566 //--------------------------------------------------------------------
18856a77 567 AliITSlayer &layer=fgLayers[fI];
4ab260d6 568 ResetTrackToFollow(fTracks[fI]);
006b5f7f 569
b87bd7cd 570 Double_t dz=7*TMath::Sqrt(fTrackToFollow.GetSigmaZ2() + kSigmaZ2[fI]);
571 Double_t dy=7*TMath::Sqrt(fTrackToFollow.GetSigmaY2() + kSigmaY2[fI]);
8676d691 572 Double_t road=layer.GetRoad();
573 if (dz*dy>road*road) {
574 Double_t dd=TMath::Sqrt(dz*dy), scz=dz/dd, scy=dy/dd;
575 dz=road*scz; dy=road*scy;
576 }
006b5f7f 577
00a7cc50 578 const AliITSRecPoint *c=0; Int_t ci=-1;
579 const AliITSRecPoint *cc=0; Int_t cci=-1;
c219fd63 580 Double_t chi2=kMaxChi2;
006b5f7f 581 while ((c=layer.GetNextCluster(ci))!=0) {
006b5f7f 582 Int_t idet=c->GetDetectorIndex();
15dd636f 583
4ab260d6 584 if (fTrackToFollow.GetDetectorIndex()!=idet) {
006b5f7f 585 const AliITSdetector &det=layer.GetDetector(idet);
4ab260d6 586 ResetTrackToFollow(fTracks[fI]);
587 if (!fTrackToFollow.Propagate(det.GetPhi(),det.GetR())) {
8676d691 588 //Warning("TakeNextProlongation","propagation failed !\n");
006b5f7f 589 continue;
590 }
4ab260d6 591 fTrackToFollow.SetDetectorIndex(idet);
592 if (TMath::Abs(fTrackToFollow.GetZ()-GetZ())>layer.GetR()+dz) continue;
006b5f7f 593 }
594
4ab260d6 595 if (TMath::Abs(fTrackToFollow.GetZ() - c->GetZ()) > dz) continue;
596 if (TMath::Abs(fTrackToFollow.GetY() - c->GetY()) > dy) continue;
006b5f7f 597
c219fd63 598 Double_t ch2=fTrackToFollow.GetPredictedChi2(c);
599 if (ch2 > chi2) continue;
600 chi2=ch2;
601 cc=c; cci=ci;
602 break;
006b5f7f 603 }
604
c219fd63 605 if (!cc) return 0;
006b5f7f 606
a504d56f 607 if (!fTrackToFollow.PropagateTo(cc->GetX(),0.,0.)) return 0; // Alignment
c219fd63 608 if (!fTrackToFollow.Update(cc,chi2,(fI<<28)+cci)) {
8676d691 609 //Warning("TakeNextProlongation","filtering failed !\n");
006b5f7f 610 return 0;
611 }
15dd636f 612
4ab260d6 613 if (fTrackToFollow.GetNumberOfClusters()>1)
6c94f330 614 if (TMath::Abs(fTrackToFollow.GetD(GetX(),GetY()))>4) return 0;
4ab260d6 615
a9a2d814 616 fTrackToFollow.
c219fd63 617 SetSampledEdx(cc->GetQ(),fTrackToFollow.GetNumberOfClusters()-1); //b.b.
a9a2d814 618
619 {
880f41b9 620 Double_t x0;
61ab8ea8 621 Double_t d=layer.GetThickness(fTrackToFollow.GetY(),fTrackToFollow.GetZ(),x0);
880f41b9 622 fTrackToFollow.CorrectForMaterial(d,x0);
a9a2d814 623 }
4ab260d6 624
a9a2d814 625 if (fConstraint[fPass]) {
4ab260d6 626 Double_t d=GetEffectiveThickness(0,0); //Think of this !!!!
8676d691 627 Double_t xyz[]={GetX(),GetY(),GetZ()};
628 Double_t ers[]={GetSigmaX(),GetSigmaY(),GetSigmaZ()};
629 fTrackToFollow.Improve(d,xyz,ers);
a9a2d814 630 }
006b5f7f 631
006b5f7f 632 return 1;
633}
634
635
6c94f330 636AliITStrackerV2::AliITSlayer::AliITSlayer():
637 fR(0.),
638 fPhiOffset(0.),
639 fNladders(0),
640 fZOffset(0.),
641 fNdetectors(0),
642 fDetectors(0),
643 fNsel(0),
644 fRoad(2*fR*TMath::Sqrt(3.14/1.)) //assuming that there's only one cluster
645{
006b5f7f 646 //--------------------------------------------------------------------
647 //default AliITSlayer constructor
648 //--------------------------------------------------------------------
c219fd63 649
650 for (Int_t i=0; i<kNsector; i++) fN[i]=0;
c219fd63 651
006b5f7f 652}
653
654AliITStrackerV2::AliITSlayer::
6c94f330 655AliITSlayer(Double_t r,Double_t p,Double_t z,Int_t nl,Int_t nd):
656 fR(r),
657 fPhiOffset(p),
658 fNladders(nl),
659 fZOffset(z),
660 fNdetectors(nd),
661 fDetectors(new AliITSdetector[nl*nd]),
662 fNsel(0),
663 fRoad(2*r*TMath::Sqrt(3.14/1.)) //assuming that there's only one cluster
664{
006b5f7f 665 //--------------------------------------------------------------------
666 //main AliITSlayer constructor
667 //--------------------------------------------------------------------
006b5f7f 668
c219fd63 669 for (Int_t i=0; i<kNsector; i++) fN[i]=0;
c219fd63 670
671 for (Int_t i=0; i<kMaxClusterPerLayer; i++) fClusters[i]=0;
b87bd7cd 672
006b5f7f 673}
674
675AliITStrackerV2::AliITSlayer::~AliITSlayer() {
676 //--------------------------------------------------------------------
677 // AliITSlayer destructor
678 //--------------------------------------------------------------------
679 delete[] fDetectors;
c219fd63 680 ResetClusters();
006b5f7f 681}
682
61ab8ea8 683void AliITStrackerV2::AliITSlayer::ResetClusters() {
684 //--------------------------------------------------------------------
685 // This function removes loaded clusters
686 //--------------------------------------------------------------------
c219fd63 687 for (Int_t s=0; s<kNsector; s++) {
688 Int_t &n=fN[s];
689 while (n) {
690 n--;
691 delete fClusters[s*kMaxClusterPerSector+n];
692 }
693 }
61ab8ea8 694}
695
b87bd7cd 696void AliITStrackerV2::AliITSlayer::ResetRoad() {
697 //--------------------------------------------------------------------
698 // This function calculates the road defined by the cluster density
699 //--------------------------------------------------------------------
700 Int_t n=0;
c219fd63 701 for (Int_t s=0; s<kNsector; s++) {
702 Int_t i=fN[s];
703 while (i--)
704 if (TMath::Abs(fClusters[s*kMaxClusterPerSector+i]->GetZ())<fR) n++;
b87bd7cd 705 }
706 if (n>1) fRoad=2*fR*TMath::Sqrt(3.14/n);
707}
708
00a7cc50 709Int_t AliITStrackerV2::AliITSlayer::InsertCluster(AliITSRecPoint *c) {
006b5f7f 710 //--------------------------------------------------------------------
c219fd63 711 // This function inserts a cluster to this layer in increasing
712 // order of the cluster's fZ
006b5f7f 713 //--------------------------------------------------------------------
c219fd63 714 Float_t circ=TMath::TwoPi()*fR;
715 Int_t sec=Int_t(kNsector*c->GetPhiR()/circ);
81e97e0d 716 if (sec>=kNsector) {
717 ::Error("InsertCluster","Wrong sector !\n");
718 return 1;
719 }
c219fd63 720 Int_t &n=fN[sec];
721 if (n>=kMaxClusterPerSector) {
722 ::Error("InsertCluster","Too many clusters !\n");
723 return 1;
006b5f7f 724 }
c219fd63 725 if (n==0) fClusters[sec*kMaxClusterPerSector]=c;
726 else {
727 Int_t i=FindClusterIndex(c->GetZ(),sec);
728 Int_t k=n-i+sec*kMaxClusterPerSector;
00a7cc50 729 memmove(fClusters+i+1 ,fClusters+i,k*sizeof(AliITSRecPoint*));
c219fd63 730 fClusters[i]=c;
731 }
732 n++;
006b5f7f 733 return 0;
734}
735
c219fd63 736Int_t
737AliITStrackerV2::AliITSlayer::FindClusterIndex(Float_t z,Int_t s) const {
006b5f7f 738 //--------------------------------------------------------------------
c219fd63 739 // For the sector "s", this function returns the index of the first
740 // with its fZ >= "z".
006b5f7f 741 //--------------------------------------------------------------------
c219fd63 742 Int_t nc=fN[s];
743 if (nc==0) return kMaxClusterPerSector*s;
744
745 Int_t b=kMaxClusterPerSector*s;
746 if (z <= fClusters[b]->GetZ()) return b;
747
748 Int_t e=b+nc-1;
749 if (z > fClusters[e]->GetZ()) return e+1;
750
751 Int_t m=(b+e)/2;
006b5f7f 752 for (; b<e; m=(b+e)/2) {
753 if (z > fClusters[m]->GetZ()) b=m+1;
754 else e=m;
755 }
756 return m;
757}
758
c219fd63 759Int_t AliITStrackerV2::AliITSlayer::
760SelectClusters(Float_t zmin,Float_t zmax,Float_t ymin, Float_t ymax) {
006b5f7f 761 //--------------------------------------------------------------------
c219fd63 762 // This function selects clusters within the "window"
006b5f7f 763 //--------------------------------------------------------------------
c219fd63 764 Float_t circ=fR*TMath::TwoPi();
765
766 if (ymin>circ) ymin-=circ; else if (ymin<0) ymin+=circ;
767 if (ymax>circ) ymax-=circ; else if (ymax<0) ymax+=circ;
768
521f4796 769 Int_t i1=Int_t(kNsector*ymin/circ); if (i1==kNsector) i1--;
c219fd63 770 if (fN[i1]!=0) {
771 Float_t ym = (ymax<ymin) ? ymax+circ : ymax;
772 Int_t i=FindClusterIndex(zmin,i1), imax=i1*kMaxClusterPerSector+fN[i1];
773 for (; i<imax; i++) {
00a7cc50 774 AliITSRecPoint *c=fClusters[i];
c219fd63 775 if (c->IsUsed()) continue;
776 if (c->GetZ()>zmax) break;
777 if (c->GetPhiR()<=ymin) continue;
778 if (c->GetPhiR()>ym) continue;
779 fIndex[fNsel++]=i;
780 }
781 }
782
521f4796 783 Int_t i2=Int_t(kNsector*ymax/circ); if (i2==kNsector) i2--;
c219fd63 784 if (i2==i1) return fNsel;
785
786 if (fN[i2]!=0) {
787 Float_t ym = (ymin>ymax) ? ymin-circ : ymin;
788 Int_t i=FindClusterIndex(zmin,i2), imax=i2*kMaxClusterPerSector+fN[i2];
789 for (; i<imax; i++) {
00a7cc50 790 AliITSRecPoint *c=fClusters[i];
c219fd63 791 if (c->IsUsed()) continue;
792 if (c->GetZ()>zmax) break;
793 if (c->GetPhiR()<=ym) continue;
794 if (c->GetPhiR()>ymax) continue;
795 fIndex[fNsel++]=i;
796 }
797 }
798
799 return fNsel;
006b5f7f 800}
801
00a7cc50 802const AliITSRecPoint *AliITStrackerV2::AliITSlayer::GetNextCluster(Int_t &ci){
006b5f7f 803 //--------------------------------------------------------------------
804 // This function returns clusters within the "window"
805 //--------------------------------------------------------------------
00a7cc50 806 AliITSRecPoint *c=0;
c219fd63 807 ci=-1;
808 if (fNsel) {
809 fNsel--;
810 ci=fIndex[fNsel];
811 c=fClusters[ci];
006b5f7f 812 }
c219fd63 813 return c;
814}
7f6ddf58 815
c219fd63 816Int_t AliITStrackerV2::AliITSlayer::GetNumberOfClusters() const {
817 Int_t n=0;
818 for (Int_t s=0; s<kNsector; s++) n+=fN[s];
819 return n;
006b5f7f 820}
821
c219fd63 822Int_t
823AliITStrackerV2::AliITSlayer::FindDetectorIndex(Double_t phi,Double_t z)const {
006b5f7f 824 //--------------------------------------------------------------------
825 //This function finds the detector crossed by the track
826 //--------------------------------------------------------------------
f363d377 827 Double_t dphi=-(phi-fPhiOffset);
006b5f7f 828 if (dphi < 0) dphi += 2*TMath::Pi();
829 else if (dphi >= 2*TMath::Pi()) dphi -= 2*TMath::Pi();
830 Int_t np=Int_t(dphi*fNladders*0.5/TMath::Pi()+0.5);
3e3e8427 831 if (np>=fNladders) np-=fNladders;
832 if (np<0) np+=fNladders;
006b5f7f 833
834 Double_t dz=fZOffset-z;
835 Int_t nz=Int_t(dz*(fNdetectors-1)*0.5/fZOffset+0.5);
3e3e8427 836 if (nz>=fNdetectors) return -1;
837 if (nz<0) return -1;
006b5f7f 838
006b5f7f 839 return np*fNdetectors + nz;
840}
841
842Double_t
61ab8ea8 843AliITStrackerV2::AliITSlayer::GetThickness(Double_t y,Double_t z,Double_t &x0)
844const {
a9a2d814 845 //--------------------------------------------------------------------
846 //This function returns the layer thickness at this point (units X0)
847 //--------------------------------------------------------------------
848 Double_t d=0.0085;
61ab8ea8 849 x0=21.82;
a9a2d814 850
851 if (43<fR&&fR<45) { //SSD2
61ab8ea8 852 Double_t dd=0.0034;
853 d=dd;
854 if (TMath::Abs(y-0.00)>3.40) d+=dd;
855 if (TMath::Abs(y-1.90)<0.45) {d+=(0.013-0.0034);}
856 if (TMath::Abs(y+1.90)<0.45) {d+=(0.013-0.0034);}
a9a2d814 857 for (Int_t i=0; i<12; i++) {
61ab8ea8 858 if (TMath::Abs(z-3.9*(i+0.5))<0.15) {
859 if (TMath::Abs(y-0.00)>3.40) d+=dd;
860 d+=0.0034;
861 break;
862 }
863 if (TMath::Abs(z+3.9*(i+0.5))<0.15) {
864 if (TMath::Abs(y-0.00)>3.40) d+=dd;
865 d+=0.0034;
866 break;
867 }
868 if (TMath::Abs(z-3.4-3.9*i)<0.50) {d+=(0.016-0.0034); break;}
869 if (TMath::Abs(z+0.5+3.9*i)<0.50) {d+=(0.016-0.0034); break;}
a9a2d814 870 }
871 } else
872 if (37<fR&&fR<41) { //SSD1
61ab8ea8 873 Double_t dd=0.0034;
874 d=dd;
875 if (TMath::Abs(y-0.00)>3.40) d+=dd;
876 if (TMath::Abs(y-1.90)<0.45) {d+=(0.013-0.0034);}
877 if (TMath::Abs(y+1.90)<0.45) {d+=(0.013-0.0034);}
a9a2d814 878 for (Int_t i=0; i<11; i++) {
61ab8ea8 879 if (TMath::Abs(z-3.9*i)<0.15) {
880 if (TMath::Abs(y-0.00)>3.40) d+=dd;
881 d+=dd;
882 break;
883 }
884 if (TMath::Abs(z+3.9*i)<0.15) {
885 if (TMath::Abs(y-0.00)>3.40) d+=dd;
886 d+=dd;
887 break;
888 }
889 if (TMath::Abs(z-1.85-3.9*i)<0.50) {d+=(0.016-0.0034); break;}
890 if (TMath::Abs(z+2.05+3.9*i)<0.50) {d+=(0.016-0.0034); break;}
a9a2d814 891 }
892 } else
893 if (13<fR&&fR<26) { //SDD
61ab8ea8 894 Double_t dd=0.0033;
895 d=dd;
896 if (TMath::Abs(y-0.00)>3.30) d+=dd;
897
898 if (TMath::Abs(y-1.80)<0.55) {
899 d+=0.016;
900 for (Int_t j=0; j<20; j++) {
901 if (TMath::Abs(z+0.7+1.47*j)<0.12) {d+=0.08; x0=9.; break;}
902 if (TMath::Abs(z-0.7-1.47*j)<0.12) {d+=0.08; x0=9.; break;}
903 }
904 }
905 if (TMath::Abs(y+1.80)<0.55) {
906 d+=0.016;
907 for (Int_t j=0; j<20; j++) {
908 if (TMath::Abs(z-0.7-1.47*j)<0.12) {d+=0.08; x0=9.; break;}
909 if (TMath::Abs(z+0.7+1.47*j)<0.12) {d+=0.08; x0=9.; break;}
910 }
911 }
912
913 for (Int_t i=0; i<4; i++) {
914 if (TMath::Abs(z-7.3*i)<0.60) {
915 d+=dd;
916 if (TMath::Abs(y-0.00)>3.30) d+=dd;
917 break;
918 }
919 if (TMath::Abs(z+7.3*i)<0.60) {
920 d+=dd;
921 if (TMath::Abs(y-0.00)>3.30) d+=dd;
922 break;
923 }
a9a2d814 924 }
925 } else
926 if (6<fR&&fR<8) { //SPD2
61ab8ea8 927 Double_t dd=0.0063; x0=21.5;
928 d=dd;
929 if (TMath::Abs(y-3.08)>0.5) d+=dd;
930 //if (TMath::Abs(y-3.08)>0.45) d+=dd;
931 if (TMath::Abs(y-3.03)<0.10) {d+=0.014;}
a9a2d814 932 } else
933 if (3<fR&&fR<5) { //SPD1
61ab8ea8 934 Double_t dd=0.0063; x0=21.5;
935 d=dd;
936 if (TMath::Abs(y+0.21)>0.6) d+=dd;
937 //if (TMath::Abs(y+0.21)>0.45) d+=dd;
938 if (TMath::Abs(y+0.10)<0.10) {d+=0.014;}
a9a2d814 939 }
940
a9a2d814 941 return d;
942}
006b5f7f 943
a9a2d814 944Double_t AliITStrackerV2::GetEffectiveThickness(Double_t y,Double_t z) const
006b5f7f 945{
946 //--------------------------------------------------------------------
a9a2d814 947 //Returns the thickness between the current layer and the vertex (units X0)
006b5f7f 948 //--------------------------------------------------------------------
61ab8ea8 949 Double_t d=0.0028*3*3; //beam pipe
950 Double_t x0=0;
006b5f7f 951
18856a77 952 Double_t xn=fgLayers[fI].GetR();
006b5f7f 953 for (Int_t i=0; i<fI; i++) {
18856a77 954 Double_t xi=fgLayers[i].GetR();
955 d+=fgLayers[i].GetThickness(y,z,x0)*xi*xi;
006b5f7f 956 }
957
958 if (fI>1) {
61ab8ea8 959 Double_t xi=9.;
960 d+=0.0097*xi*xi;
006b5f7f 961 }
962
963 if (fI>3) {
18856a77 964 Double_t xi=0.5*(fgLayers[3].GetR()+fgLayers[4].GetR());
61ab8ea8 965 d+=0.0034*xi*xi;
006b5f7f 966 }
61ab8ea8 967
006b5f7f 968 return d/(xn*xn);
969}
970
ef7253ac 971Bool_t AliITStrackerV2::RefitAt(Double_t xx,AliITStrackV2 *t,
972 const AliITStrackV2 *c, Bool_t extra) {
4ab260d6 973 //--------------------------------------------------------------------
c630aafd 974 // This function refits the track "t" at the position "x" using
975 // the clusters from "c"
ef7253ac 976 // If "extra"==kTRUE,
977 // the clusters from overlapped modules get attached to "t"
4ab260d6 978 //--------------------------------------------------------------------
880f41b9 979 Int_t index[kMaxLayer];
980 Int_t k;
981 for (k=0; k<kMaxLayer; k++) index[k]=-1;
c630aafd 982 Int_t nc=c->GetNumberOfClusters();
880f41b9 983 for (k=0; k<nc; k++) {
c630aafd 984 Int_t idx=c->GetClusterIndex(k),nl=(idx&0xf0000000)>>28;
880f41b9 985 index[nl]=idx;
986 }
880f41b9 987
4ab260d6 988 Int_t from, to, step;
ee34184f 989 if (xx > t->GetX()) {
4ab260d6 990 from=0; to=kMaxLayer;
991 step=+1;
992 } else {
993 from=kMaxLayer-1; to=-1;
994 step=-1;
995 }
996
997 for (Int_t i=from; i != to; i += step) {
18856a77 998 AliITSlayer &layer=fgLayers[i];
4ab260d6 999 Double_t r=layer.GetR();
1000
1001 {
1002 Double_t hI=i-0.5*step;
880f41b9 1003 if (TMath::Abs(hI-1.5)<0.01 || TMath::Abs(hI-3.5)<0.01) {
18856a77 1004 Double_t rs=0.5*(fgLayers[i-step].GetR() + r);
61ab8ea8 1005 Double_t d=0.0034, x0=38.6;
880f41b9 1006 if (TMath::Abs(hI-1.5)<0.01) {rs=9.; d=0.0097; x0=42;}
1007 if (!t->PropagateTo(rs,-step*d,x0)) {
4ab260d6 1008 return kFALSE;
1009 }
1010 }
1011 }
1012
880f41b9 1013 // remember old position [SR, GSI 18.02.2003]
1014 Double_t oldX=0., oldY=0., oldZ=0.;
1015 if (t->IsStartedTimeIntegral() && step==1) {
1016 t->GetGlobalXYZat(t->GetX(),oldX,oldY,oldZ);
1017 }
1018 //
1019
4ab260d6 1020 Double_t x,y,z;
1021 if (!t->GetGlobalXYZat(r,x,y,z)) {
1022 return kFALSE;
1023 }
1024 Double_t phi=TMath::ATan2(y,x);
1025 Int_t idet=layer.FindDetectorIndex(phi,z);
1026 if (idet<0) {
1027 return kFALSE;
1028 }
1029 const AliITSdetector &det=layer.GetDetector(idet);
1030 phi=det.GetPhi();
1031 if (!t->Propagate(phi,det.GetR())) {
1032 return kFALSE;
1033 }
1034 t->SetDetectorIndex(idet);
1035
00a7cc50 1036 const AliITSRecPoint *cl=0;
4ab260d6 1037 Double_t maxchi2=kMaxChi2;
1038
1039 Int_t idx=index[i];
1040 if (idx>0) {
00a7cc50 1041 const AliITSRecPoint *c=(AliITSRecPoint *)GetCluster(idx);
4ab260d6 1042 if (idet != c->GetDetectorIndex()) {
1043 idet=c->GetDetectorIndex();
1044 const AliITSdetector &det=layer.GetDetector(idet);
1045 if (!t->Propagate(det.GetPhi(),det.GetR())) {
1046 return kFALSE;
1047 }
1048 t->SetDetectorIndex(idet);
1049 }
1050 Double_t chi2=t->GetPredictedChi2(c);
c630aafd 1051 if (chi2<maxchi2) {
1052 cl=c;
1053 maxchi2=chi2;
1054 } else {
1055 return kFALSE;
1056 }
4ab260d6 1057 }
ef7253ac 1058
4ab260d6 1059 if (cl) {
a504d56f 1060 if (!t->PropagateTo(cl->GetX(),0.,0.)) return kFALSE; //Alignment
4ab260d6 1061 if (!t->Update(cl,maxchi2,idx)) {
1062 return kFALSE;
1063 }
880f41b9 1064 t->SetSampledEdx(cl->GetQ(),t->GetNumberOfClusters()-1);
4ab260d6 1065 }
1066
1067 {
61ab8ea8 1068 Double_t x0;
1069 Double_t d=layer.GetThickness(t->GetY(),t->GetZ(),x0);
1070 t->CorrectForMaterial(-step*d,x0);
4ab260d6 1071 }
880f41b9 1072
ef7253ac 1073 if (extra) { //search for extra clusters
1074 AliITStrackV2 tmp(*t);
1075 Double_t dz=4*TMath::Sqrt(tmp.GetSigmaZ2()+kSigmaZ2[i]);
1076 if (dz < 0.5*TMath::Abs(tmp.GetTgl())) dz=0.5*TMath::Abs(tmp.GetTgl());
1077 Double_t dy=4*TMath::Sqrt(t->GetSigmaY2()+kSigmaY2[i]);
1078 if (dy < 0.5*TMath::Abs(tmp.GetSnp())) dy=0.5*TMath::Abs(tmp.GetSnp());
1079 Double_t zmin=t->GetZ() - dz;
1080 Double_t zmax=t->GetZ() + dz;
1081 Double_t ymin=t->GetY() + phi*r - dy;
1082 Double_t ymax=t->GetY() + phi*r + dy;
1083 layer.SelectClusters(zmin,zmax,ymin,ymax);
1084
1085 const AliITSRecPoint *c=0; Int_t ci=-1,cci=-1;
1086 Double_t maxchi2=1000.*kMaxChi2, tolerance=0.1;
1087 while ((c=layer.GetNextCluster(ci))!=0) {
1088 if (idet == c->GetDetectorIndex()) continue;
1089
1090 const AliITSdetector &det=layer.GetDetector(c->GetDetectorIndex());
1091
1092 if (!tmp.Propagate(det.GetPhi(),det.GetR())) continue;
1093
1094 if (TMath::Abs(tmp.GetZ() - c->GetZ()) > tolerance) continue;
1095 if (TMath::Abs(tmp.GetY() - c->GetY()) > tolerance) continue;
1096
1097 Double_t chi2=tmp.GetPredictedChi2(c);
1098 if (chi2<maxchi2) { maxchi2=chi2; cci=ci; }
1099 }
1100 if (cci>=0) t->SetExtraCluster(i,(i<<28)+cci);
1101 }
1102
880f41b9 1103 // track time update [SR, GSI 17.02.2003]
1104 if (t->IsStartedTimeIntegral() && step==1) {
1105 Double_t newX, newY, newZ;
1106 t->GetGlobalXYZat(t->GetX(),newX,newY,newZ);
1107 Double_t dL2 = (oldX-newX)*(oldX-newX) + (oldY-newY)*(oldY-newY) +
1108 (oldZ-newZ)*(oldZ-newZ);
1109 t->AddTimeStep(TMath::Sqrt(dL2));
1110 }
1111 //
4ab260d6 1112
1113 }
1114
ee34184f 1115 if (!t->PropagateTo(xx,0.,0.)) return kFALSE;
4ab260d6 1116 return kTRUE;
1117}
1118
b87bd7cd 1119void AliITStrackerV2::UseClusters(const AliKalmanTrack *t, Int_t from) const {
1120 //--------------------------------------------------------------------
1121 // This function marks clusters assigned to the track
1122 //--------------------------------------------------------------------
1123 AliTracker::UseClusters(t,from);
880f41b9 1124
5482d29d 1125 Int_t clusterIndex = t->GetClusterIndex(0);
1126 AliITSRecPoint *c= 0x0;
1127
1128 if (clusterIndex>-1)
1129 c = (AliITSRecPoint *)GetCluster(clusterIndex);
d920bdee 1130 if (c && c->GetSigmaZ2()>0.1) c->UnUse();
5482d29d 1131
1132 c = 0x0;
1133 clusterIndex = t->GetClusterIndex(1);
1134 if (clusterIndex>-1)
1135 c=(AliITSRecPoint *)GetCluster(clusterIndex);
d920bdee 1136 if (c && c->GetSigmaZ2()>0.1) c->UnUse();
880f41b9 1137
b87bd7cd 1138}