1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
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 **************************************************************************/
17 //-------------------------------------------------------
18 // Implementation of the TPC tracker
20 // Origin: Marian Ivanov Marian.Ivanov@cern.ch
22 // AliTPC parallel tracker -
24 // run AliTPCFindClusters.C macro - clusters neccessary for tracker are founded
25 // run AliTPCFindTracksMI.C macro - to find tracks
26 // tracks are written to AliTPCtracks.root file
27 // for comparison also seeds are written to the same file - to special branch
28 //-------------------------------------------------------
34 #include <TObjArray.h>
37 #include <TClonesArray.h>
39 #include "Riostream.h"
41 #include "AliTPCclusterMI.h"
42 #include "AliComplexCluster.h"
43 #include "AliTPCParam.h"
44 #include "AliTPCClustersRow.h"
45 #include "AliTPCpolyTrack.h"
46 #include "TStopwatch.h"
50 #include "AliRunLoader.h"
52 #include "AliTPCreco.h"
53 #include "AliTPCtrackerMI.h"
58 ClassImp(AliTPCtrackerMI)
61 class AliTPCFastMath {
64 static Double_t FastAsin(Double_t x);
66 static Double_t fgFastAsin[20000]; //lookup table for fast asin computation
69 Double_t AliTPCFastMath::fgFastAsin[20000];
70 AliTPCFastMath gAliTPCFastMath;
72 AliTPCFastMath::AliTPCFastMath(){
74 // initialized lookup table;
75 for (Int_t i=0;i<10000;i++){
76 fgFastAsin[2*i] = TMath::ASin(i/10000.);
77 fgFastAsin[2*i+1] = (TMath::ASin((i+1)/10000.)-fgFastAsin[2*i]);
81 Double_t AliTPCFastMath::FastAsin(Double_t x){
83 // return asin using lookup table
85 Int_t index = int(x*10000);
86 return fgFastAsin[2*index]+(x*10000.-index)*fgFastAsin[2*index+1];
89 Int_t index = int(x*10000);
90 return -(fgFastAsin[2*index]+(x*10000.-index)*fgFastAsin[2*index+1]);
96 Int_t AliTPCtrackerMI::UpdateTrack(AliTPCseed * track, Int_t accept){
98 //update track information using current cluster - track->fCurrentCluster
101 AliTPCclusterMI* c =track->fCurrentCluster;
102 if (accept>0) track->fCurrentClusterIndex1 |=0x8000; //sign not accepted clusters
104 UInt_t i = track->fCurrentClusterIndex1;
106 Int_t sec=(i&0xff000000)>>24;
107 //Int_t row = (i&0x00ff0000)>>16;
108 track->fRow=(i&0x00ff0000)>>16;
109 track->fSector = sec;
110 // Int_t index = i&0xFFFF;
111 if (sec>=fParam->GetNInnerSector()) track->fRow += fParam->GetNRowLow();
112 track->SetClusterIndex2(track->fRow, i);
113 //track->fFirstPoint = row;
114 //if ( track->fLastPoint<row) track->fLastPoint =row;
115 // if (track->fRow<0 || track->fRow>160) {
116 // printf("problem\n");
118 if (track->fFirstPoint>track->fRow)
119 track->fFirstPoint = track->fRow;
120 if (track->fLastPoint<track->fRow)
121 track->fLastPoint = track->fRow;
124 track->fClusterPointer[track->fRow] = c;
127 Float_t angle2 = track->GetSnp()*track->GetSnp();
128 angle2 = TMath::Sqrt(angle2/(1-angle2));
130 //SET NEW Track Point
134 AliTPCTrackerPoint &point =*(track->GetTrackPoint(track->fRow));
136 point.SetSigmaY(c->GetSigmaY2()/track->fCurrentSigmaY2);
137 point.SetSigmaZ(c->GetSigmaZ2()/track->fCurrentSigmaZ2);
138 point.SetErrY(sqrt(track->fErrorY2));
139 point.SetErrZ(sqrt(track->fErrorZ2));
141 point.SetX(track->GetX());
142 point.SetY(track->GetY());
143 point.SetZ(track->GetZ());
144 point.SetAngleY(angle2);
145 point.SetAngleZ(track->GetTgl());
146 if (point.fIsShared){
147 track->fErrorY2 *= 4;
148 track->fErrorZ2 *= 4;
152 Double_t chi2 = track->GetPredictedChi2(track->fCurrentCluster);
154 track->fErrorY2 *= 1.3;
155 track->fErrorY2 += 0.01;
156 track->fErrorZ2 *= 1.3;
157 track->fErrorZ2 += 0.005;
159 if (accept>0) return 0;
160 if (track->GetNumberOfClusters()%20==0){
161 // if (track->fHelixIn){
162 // TClonesArray & larr = *(track->fHelixIn);
163 // Int_t ihelix = larr.GetEntriesFast();
164 // new(larr[ihelix]) AliHelix(*track) ;
167 track->fNoCluster =0;
168 return track->Update(c,chi2,i);
173 Int_t AliTPCtrackerMI::AcceptCluster(AliTPCseed * seed, AliTPCclusterMI * cluster, Float_t factor,
174 Float_t cory, Float_t corz)
177 // decide according desired precision to accept given
178 // cluster for tracking
179 Double_t sy2=ErrY2(seed,cluster)*cory;
180 Double_t sz2=ErrZ2(seed,cluster)*corz;
181 //sy2=ErrY2(seed,cluster)*cory;
182 //sz2=ErrZ2(seed,cluster)*cory;
184 Double_t sdistancey2 = sy2+seed->GetSigmaY2();
185 Double_t sdistancez2 = sz2+seed->GetSigmaZ2();
187 Double_t rdistancey2 = (seed->fCurrentCluster->GetY()-seed->GetY())*
188 (seed->fCurrentCluster->GetY()-seed->GetY())/sdistancey2;
189 Double_t rdistancez2 = (seed->fCurrentCluster->GetZ()-seed->GetZ())*
190 (seed->fCurrentCluster->GetZ()-seed->GetZ())/sdistancez2;
192 Double_t rdistance2 = rdistancey2+rdistancez2;
195 if (rdistance2>16) return 3;
198 if ((rdistancey2>9.*factor || rdistancez2>9.*factor) && cluster->GetType()==0)
199 return 2; //suspisiouce - will be changed
201 if ((rdistancey2>6.25*factor || rdistancez2>6.25*factor) && cluster->GetType()>0)
202 // strict cut on overlaped cluster
203 return 2; //suspisiouce - will be changed
205 if ( (rdistancey2>1.*factor || rdistancez2>6.25*factor )
206 && cluster->GetType()<0){
216 //_____________________________________________________________________________
217 AliTPCtrackerMI::AliTPCtrackerMI(const AliTPCParam *par):
218 AliTracker(), fkNIS(par->GetNInnerSector()/2), fkNOS(par->GetNOuterSector()/2)
220 //---------------------------------------------------------------------
221 // The main TPC tracker constructor
222 //---------------------------------------------------------------------
223 fInnerSec=new AliTPCSector[fkNIS];
224 fOuterSec=new AliTPCSector[fkNOS];
227 for (i=0; i<fkNIS; i++) fInnerSec[i].Setup(par,0);
228 for (i=0; i<fkNOS; i++) fOuterSec[i].Setup(par,1);
235 Int_t nrowlow = par->GetNRowLow();
236 Int_t nrowup = par->GetNRowUp();
239 for (Int_t i=0;i<nrowlow;i++){
240 fXRow[i] = par->GetPadRowRadiiLow(i);
241 fPadLength[i]= par->GetPadPitchLength(0,i);
242 fYMax[i] = fXRow[i]*TMath::Tan(0.5*par->GetInnerAngle());
246 for (Int_t i=0;i<nrowup;i++){
247 fXRow[i+nrowlow] = par->GetPadRowRadiiUp(i);
248 fPadLength[i+nrowlow] = par->GetPadPitchLength(60,i);
249 fYMax[i+nrowlow] = fXRow[i+nrowlow]*TMath::Tan(0.5*par->GetOuterAngle());
262 //_____________________________________________________________________________
263 AliTPCtrackerMI::~AliTPCtrackerMI() {
264 //------------------------------------------------------------------
265 // TPC tracker destructor
266 //------------------------------------------------------------------
275 void AliTPCtrackerMI::SetIO()
279 fInput = AliRunLoader::GetTreeR("TPC", kFALSE,AliConfig::fgkDefaultEventFolderName);
281 fOutput = AliRunLoader::GetTreeT("TPC", kTRUE,AliConfig::fgkDefaultEventFolderName);
283 AliTPCtrack *iotrack= new AliTPCtrack;
284 fOutput->Branch("tracks","AliTPCtrack",&iotrack,32000,100);
290 void AliTPCtrackerMI::SetIO(TTree * input, TTree * output, AliESD * event)
306 AliTPCtrack *iotrack= new AliTPCtrack;
307 // iotrack->fHelixIn = new TClonesArray("AliHelix");
308 //iotrack->fHelixOut = new TClonesArray("AliHelix");
309 fOutput->Branch("tracks","AliTPCtrack",&iotrack,32000,100);
312 if (output && (fDebug&2)){
313 //write the full seed information if specified in debug mode
315 fSeedTree = new TTree("Seeds","Seeds");
316 AliTPCseed * vseed = new AliTPCseed;
318 TClonesArray * arrtr = new TClonesArray("AliTPCTrackPoint",160);
319 arrtr->ExpandCreateFast(160);
320 TClonesArray * arre = new TClonesArray("AliTPCExactPoint",160);
322 vseed->fPoints = arrtr;
323 vseed->fEPoints = arre;
324 // vseed->fClusterPoints = arrcl;
325 fSeedTree->Branch("seeds","AliTPCseed",&vseed,32000,99);
328 fTreeDebug = new TTree("trackDebug","trackDebug");
329 TClonesArray * arrd = new TClonesArray("AliTPCTrackPoint2",0);
330 fTreeDebug->Branch("debug",&arrd,32000,99);
338 void AliTPCtrackerMI::FillESD(TObjArray* arr)
342 //fill esds using updated tracks
344 // write tracks to the event
345 // store index of the track
346 Int_t nseed=arr->GetEntriesFast();
347 for (Int_t i=0; i<nseed; i++) {
348 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
350 pt->PropagateTo(fParam->GetInnerRadiusLow());
351 if (pt->GetNumberOfClusters()>70) {
353 iotrack.UpdateTrackParams(pt,AliESDtrack::kTPCin);
354 //iotrack.SetTPCindex(i);
355 fEvent->AddTrack(&iotrack);
361 void AliTPCtrackerMI::WriteTracks(TTree * tree)
364 // write tracks from seed array to selected tree
368 AliTPCtrack *iotrack= new AliTPCtrack;
369 fOutput->Branch("tracks","AliTPCtrack",&iotrack,32000,100);
374 void AliTPCtrackerMI::WriteTracks()
377 // write tracks to the given output tree -
378 // output specified with SetIO routine
385 AliTPCtrack *iotrack= 0;
386 Int_t nseed=fSeeds->GetEntriesFast();
387 //for (Int_t i=0; i<nseed; i++) {
388 // iotrack= (AliTPCtrack*)fSeeds->UncheckedAt(i);
389 // if (iotrack) break;
391 //TBranch * br = fOutput->Branch("tracks","AliTPCtrack",&iotrack,32000,100);
392 TBranch * br = fOutput->GetBranch("tracks");
393 br->SetAddress(&iotrack);
395 for (Int_t i=0; i<nseed; i++) {
396 AliTPCseed *pt=(AliTPCseed*)fSeeds->UncheckedAt(i);
398 AliTPCtrack * track = new AliTPCtrack(*pt);
401 // br->SetAddress(&iotrack);
406 //fOutput->GetDirectory()->cd();
412 //write the full seed information if specified in debug mode
414 AliTPCseed * vseed = new AliTPCseed;
416 TClonesArray * arrtr = new TClonesArray("AliTPCTrackPoint",160);
417 arrtr->ExpandCreateFast(160);
418 //TClonesArray * arrcl = new TClonesArray("AliTPCclusterMI",160);
419 //arrcl->ExpandCreateFast(160);
420 TClonesArray * arre = new TClonesArray("AliTPCExactPoint",160);
422 vseed->fPoints = arrtr;
423 vseed->fEPoints = arre;
424 // vseed->fClusterPoints = arrcl;
425 //TBranch * brseed = seedtree->Branch("seeds","AliTPCseed",&vseed,32000,99);
426 TBranch * brseed = fSeedTree->GetBranch("seeds");
428 Int_t nseed=fSeeds->GetEntriesFast();
430 for (Int_t i=0; i<nseed; i++) {
431 AliTPCseed *pt=(AliTPCseed*)fSeeds->UncheckedAt(i);
434 // pt->fClusterPoints = arrcl;
438 brseed->SetAddress(&vseed);
442 // pt->fClusterPoints = 0;
445 if (fTreeDebug) fTreeDebug->Write();
453 Double_t AliTPCtrackerMI::ErrY2(AliTPCseed* seed, AliTPCclusterMI * cl){
456 //seed->SetErrorY2(0.1);
458 //calculate look-up table at the beginning
459 static Bool_t ginit = kFALSE;
460 static Float_t gnoise1,gnoise2,gnoise3;
461 static Float_t ggg1[10000];
462 static Float_t ggg2[10000];
463 static Float_t ggg3[10000];
464 static Float_t glandau1[10000];
465 static Float_t glandau2[10000];
466 static Float_t glandau3[10000];
468 static Float_t gcor01[500];
469 static Float_t gcor02[500];
470 static Float_t gcorp[500];
475 for (Int_t i=1;i<500;i++){
476 Float_t rsigma = float(i)/100.;
477 gcor02[i] = TMath::Max(0.78 +TMath::Exp(7.4*(rsigma-1.2)),0.6);
478 gcor01[i] = TMath::Max(0.72 +TMath::Exp(3.36*(rsigma-1.2)),0.6);
479 gcorp[i] = TMath::Max(TMath::Power((rsigma+0.5),1.5),1.2);
483 for (Int_t i=3;i<10000;i++){
487 Float_t amp = float(i);
488 Float_t padlength =0.75;
489 gnoise1 = 0.0004/padlength;
490 Float_t nel = 0.268*amp;
491 Float_t nprim = 0.155*amp;
492 ggg1[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.001*nel/(padlength*padlength))/nel;
493 glandau1[i] = (2.+0.12*nprim)*0.5* (2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
494 if (glandau1[i]>1) glandau1[i]=1;
495 glandau1[i]*=padlength*padlength/12.;
499 gnoise2 = 0.0004/padlength;
502 ggg2[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.0008*nel/(padlength*padlength))/nel;
503 glandau2[i] = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
504 if (glandau2[i]>1) glandau2[i]=1;
505 glandau2[i]*=padlength*padlength/12.;
510 gnoise3 = 0.0004/padlength;
513 ggg3[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.0008*nel/(padlength*padlength))/nel;
514 glandau3[i] = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
515 if (glandau3[i]>1) glandau3[i]=1;
516 glandau3[i]*=padlength*padlength/12.;
524 Int_t amp = int(TMath::Abs(cl->GetQ()));
526 seed->SetErrorY2(1.);
530 Float_t z = TMath::Abs(fParam->GetZLength()-TMath::Abs(seed->GetZ()));
531 Int_t ctype = cl->GetType();
532 Float_t padlength= GetPadPitchLength(seed->fRow);
533 Float_t angle2 = seed->GetSnp()*seed->GetSnp();
534 angle2 = angle2/(1-angle2);
537 Int_t rsigmay = int(100.*cl->GetSigmaY2()/(seed->fCurrentSigmaY2));
540 if (fSectors==fInnerSec){
542 res = ggg1[amp]*z+glandau1[amp]*angle2;
543 if (ctype==0) res *= gcor01[rsigmay];
546 res*= gcorp[rsigmay];
552 res = ggg2[amp]*z+glandau2[amp]*angle2;
553 if (ctype==0) res *= gcor02[rsigmay];
556 res*= gcorp[rsigmay];
561 res = ggg3[amp]*z+glandau3[amp]*angle2;
562 if (ctype==0) res *= gcor02[rsigmay];
565 res*= gcorp[rsigmay];
572 res*=2.4; // overestimate error 2 times
579 seed->SetErrorY2(res);
587 Double_t AliTPCtrackerMI::ErrZ2(AliTPCseed* seed, AliTPCclusterMI * cl){
590 //seed->SetErrorY2(0.1);
592 //calculate look-up table at the beginning
593 static Bool_t ginit = kFALSE;
594 static Float_t gnoise1,gnoise2,gnoise3;
595 static Float_t ggg1[10000];
596 static Float_t ggg2[10000];
597 static Float_t ggg3[10000];
598 static Float_t glandau1[10000];
599 static Float_t glandau2[10000];
600 static Float_t glandau3[10000];
602 static Float_t gcor01[1000];
603 static Float_t gcor02[1000];
604 static Float_t gcorp[1000];
609 for (Int_t i=1;i<1000;i++){
610 Float_t rsigma = float(i)/100.;
611 gcor02[i] = TMath::Max(0.81 +TMath::Exp(6.8*(rsigma-1.2)),0.6);
612 gcor01[i] = TMath::Max(0.72 +TMath::Exp(2.04*(rsigma-1.2)),0.6);
613 gcorp[i] = TMath::Max(TMath::Power((rsigma+0.5),1.5),1.2);
617 for (Int_t i=3;i<10000;i++){
621 Float_t amp = float(i);
622 Float_t padlength =0.75;
623 gnoise1 = 0.0004/padlength;
624 Float_t nel = 0.268*amp;
625 Float_t nprim = 0.155*amp;
626 ggg1[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.001*nel/(padlength*padlength))/nel;
627 glandau1[i] = (2.+0.12*nprim)*0.5* (2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
628 if (glandau1[i]>1) glandau1[i]=1;
629 glandau1[i]*=padlength*padlength/12.;
633 gnoise2 = 0.0004/padlength;
636 ggg2[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.0008*nel/(padlength*padlength))/nel;
637 glandau2[i] = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
638 if (glandau2[i]>1) glandau2[i]=1;
639 glandau2[i]*=padlength*padlength/12.;
644 gnoise3 = 0.0004/padlength;
647 ggg3[i] = fParam->GetDiffT()*fParam->GetDiffT()*(2+0.0008*nel/(padlength*padlength))/nel;
648 glandau3[i] = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
649 if (glandau3[i]>1) glandau3[i]=1;
650 glandau3[i]*=padlength*padlength/12.;
658 Int_t amp = int(TMath::Abs(cl->GetQ()));
660 seed->SetErrorY2(1.);
664 Float_t z = TMath::Abs(fParam->GetZLength()-TMath::Abs(seed->GetZ()));
665 Int_t ctype = cl->GetType();
666 Float_t padlength= GetPadPitchLength(seed->fRow);
668 Float_t angle2 = seed->GetSnp()*seed->GetSnp();
669 // if (angle2<0.6) angle2 = 0.6;
670 angle2 = seed->GetTgl()*seed->GetTgl()*(1+angle2/(1-angle2));
673 Int_t rsigmaz = int(100.*cl->GetSigmaZ2()/(seed->fCurrentSigmaZ2));
676 if (fSectors==fInnerSec){
678 res = ggg1[amp]*z+glandau1[amp]*angle2;
679 if (ctype==0) res *= gcor01[rsigmaz];
682 res*= gcorp[rsigmaz];
688 res = ggg2[amp]*z+glandau2[amp]*angle2;
689 if (ctype==0) res *= gcor02[rsigmaz];
692 res*= gcorp[rsigmaz];
697 res = ggg3[amp]*z+glandau3[amp]*angle2;
698 if (ctype==0) res *= gcor02[rsigmaz];
701 res*= gcorp[rsigmaz];
710 if ((ctype<0) &&<70){
718 seed->SetErrorZ2(res);
725 Double_t AliTPCtrackerMI::ErrZ2(AliTPCseed* seed, AliTPCclusterMI * cl){
728 //seed->SetErrorZ2(0.1);
732 Float_t z = TMath::Abs(fParam->GetZLength()-TMath::Abs(seed->GetZ()));
734 Float_t rsigmaz = cl->GetSigmaZ2()/(seed->fCurrentSigmaZ2);
735 Int_t ctype = cl->GetType();
736 Float_t amp = TMath::Abs(cl->GetQ());
741 Float_t landau=2 ; //landau fluctuation part
742 Float_t gg=2; // gg fluctuation part
743 Float_t padlength= GetPadPitchLength(seed->GetX());
745 if (fSectors==fInnerSec){
746 snoise2 = 0.0004/padlength;
749 gg = (2+0.001*nel/(padlength*padlength))/nel;
750 landau = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
751 if (landau>1) landau=1;
754 snoise2 = 0.0004/padlength;
757 gg = (2+0.0008*nel/(padlength*padlength))/nel;
758 landau = (2.+0.12*nprim)*0.5*(2.+nprim*nprim*0.001/(padlength*padlength))/nprim;
759 if (landau>1) landau=1;
761 Float_t sdiff = gg*fParam->GetDiffT()*fParam->GetDiffT()*z;
764 Float_t angle2 = seed->GetSnp()*seed->GetSnp();
765 angle2 = TMath::Sqrt((1-angle2));
766 if (angle2<0.6) angle2 = 0.6;
769 Float_t angle = seed->GetTgl()/angle2;
770 Float_t angular = landau*angle*angle*padlength*padlength/12.;
771 Float_t res = sdiff + angular;
774 if ((ctype==0) && (fSectors ==fOuterSec))
775 res *= 0.81 +TMath::Exp(6.8*(rsigmaz-1.2));
777 if ((ctype==0) && (fSectors ==fInnerSec))
778 res *= 0.72 +TMath::Exp(2.04*(rsigmaz-1.2));
782 res*= TMath::Power(rsigmaz+0.5,1.5); //0.31+0.147*ctype;
788 if ((ctype<0) &&<70){
796 seed->SetErrorZ2(res);
803 void AliTPCseed::Reset(Bool_t all)
807 SetNumberOfClusters(0);
813 for (Int_t i=0;i<8;i++){
814 delete [] fTrackPoints[i];
822 for (Int_t i=0;i<200;i++) SetClusterIndex2(i,-3);
823 for (Int_t i=0;i<160;i++) fClusterPointer[i]=0;
829 void AliTPCseed::Modify(Double_t factor)
832 //------------------------------------------------------------------
833 //This function makes a track forget its history :)
834 //------------------------------------------------------------------
840 fC10*=0; fC11*=factor;
841 fC20*=0; fC21*=0; fC22*=factor;
842 fC30*=0; fC31*=0; fC32*=0; fC33*=factor;
843 fC40*=0; fC41*=0; fC42*=0; fC43*=0; fC44*=factor;
844 SetNumberOfClusters(0);
848 fCurrentSigmaY2 = 0.000005;
849 fCurrentSigmaZ2 = 0.000005;
858 Int_t AliTPCseed::GetProlongation(Double_t xk, Double_t &y, Double_t & z) const
860 //-----------------------------------------------------------------
861 // This function find proloncation of a track to a reference plane x=xk.
862 // doesn't change internal state of the track
863 //-----------------------------------------------------------------
865 Double_t x1=fX, x2=x1+(xk-x1), dx=x2-x1;
867 if (TMath::Abs(fP4*xk - fP2) >= 0.999) {
871 // Double_t y1=fP0, z1=fP1;
872 Double_t c1=fP4*x1 - fP2, r1=sqrt(1.- c1*c1);
873 Double_t c2=fP4*x2 - fP2, r2=sqrt(1.- c2*c2);
877 //y += dx*(c1+c2)/(r1+r2);
878 //z += dx*(c1+c2)/(c1*r2 + c2*r1)*fP3;
880 Double_t dy = dx*(c1+c2)/(r1+r2);
883 Double_t delta = fP4*dx*(c1+c2)/(c1*r2 + c2*r1);
885 if (TMath::Abs(delta)>0.0001){
886 dz = fP3*TMath::ASin(delta)/fP4;
888 dz = dx*fP3*(c1+c2)/(c1*r2 + c2*r1);
891 dz = fP3*AliTPCFastMath::FastAsin(delta)/fP4;
901 //_____________________________________________________________________________
902 Double_t AliTPCseed::GetPredictedChi2(const AliTPCclusterMI *c) const
904 //-----------------------------------------------------------------
905 // This function calculates a predicted chi2 increment.
906 //-----------------------------------------------------------------
907 //Double_t r00=c->GetSigmaY2(), r01=0., r11=c->GetSigmaZ2();
908 Double_t r00=fErrorY2, r01=0., r11=fErrorZ2;
909 r00+=fC00; r01+=fC10; r11+=fC11;
911 Double_t det=r00*r11 - r01*r01;
912 if (TMath::Abs(det) < 1.e-10) {
913 Int_t n=GetNumberOfClusters();
914 if (n>4) cerr<<n<<" AliKalmanTrack warning: Singular matrix !\n";
917 Double_t tmp=r00; r00=r11; r11=tmp; r01=-r01;
919 Double_t dy=c->GetY() - fP0, dz=c->GetZ() - fP1;
921 return (dy*r00*dy + 2*r01*dy*dz + dz*r11*dz)/det;
925 //_________________________________________________________________________________________
928 Int_t AliTPCseed::Compare(const TObject *o) const {
929 //-----------------------------------------------------------------
930 // This function compares tracks according to the sector - for given sector according z
931 //-----------------------------------------------------------------
932 AliTPCseed *t=(AliTPCseed*)o;
935 if (t->fRelativeSector>fRelativeSector) return -1;
936 if (t->fRelativeSector<fRelativeSector) return 1;
937 Double_t z2 = t->GetZ();
938 Double_t z1 = GetZ();
940 if (z2<z1) return -1;
945 f2 = 1-20*TMath::Sqrt(t->fC44)/(TMath::Abs(t->GetC())+0.0066);
946 if (t->fBConstrain) f2=1.2;
949 f1 = 1-20*TMath::Sqrt(fC44)/(TMath::Abs(GetC())+0.0066);
951 if (fBConstrain) f1=1.2;
953 if (t->GetNumberOfClusters()*f2 <GetNumberOfClusters()*f1) return -1;
958 void AliTPCtrackerMI::RotateToLocal(AliTPCseed *seed)
960 //rotate to track "local coordinata
961 Float_t x = seed->GetX();
962 Float_t y = seed->GetY();
963 Float_t ymax = x*TMath::Tan(0.5*fSectors->GetAlpha());
966 seed->fRelativeSector= (seed->fRelativeSector+1) % fN;
967 if (!seed->Rotate(fSectors->GetAlpha()))
969 } else if (y <-ymax) {
970 seed->fRelativeSector= (seed->fRelativeSector-1+fN) % fN;
971 if (!seed->Rotate(-fSectors->GetAlpha()))
980 //_____________________________________________________________________________
981 Int_t AliTPCseed::Update(const AliTPCclusterMI *c, Double_t chisq, UInt_t /*index*/) {
982 //-----------------------------------------------------------------
983 // This function associates a cluster with this track.
984 //-----------------------------------------------------------------
985 Double_t r00=fErrorY2, r01=0., r11=fErrorZ2;
987 r00+=fC00; r01+=fC10; r11+=fC11;
988 Double_t det=r00*r11 - r01*r01;
989 Double_t tmp=r00; r00=r11/det; r11=tmp/det; r01=-r01/det;
991 Double_t k00=fC00*r00+fC10*r01, k01=fC00*r01+fC10*r11;
992 Double_t k10=fC10*r00+fC11*r01, k11=fC10*r01+fC11*r11;
993 Double_t k20=fC20*r00+fC21*r01, k21=fC20*r01+fC21*r11;
994 Double_t k30=fC30*r00+fC31*r01, k31=fC30*r01+fC31*r11;
995 Double_t k40=fC40*r00+fC41*r01, k41=fC40*r01+fC41*r11;
997 Double_t dy=c->GetY() - fP0, dz=c->GetZ() - fP1;
998 Double_t cur=fP4 + k40*dy + k41*dz, eta=fP2 + k20*dy + k21*dz;
999 if (TMath::Abs(cur*fX-eta) >= 0.9) {
1003 fP0 += k00*dy + k01*dz;
1004 fP1 += k10*dy + k11*dz;
1006 fP3 += k30*dy + k31*dz;
1009 Double_t c01=fC10, c02=fC20, c03=fC30, c04=fC40;
1010 Double_t c12=fC21, c13=fC31, c14=fC41;
1012 fC00-=k00*fC00+k01*fC10; fC10-=k00*c01+k01*fC11;
1013 fC20-=k00*c02+k01*c12; fC30-=k00*c03+k01*c13;
1014 fC40-=k00*c04+k01*c14;
1016 fC11-=k10*c01+k11*fC11;
1017 fC21-=k10*c02+k11*c12; fC31-=k10*c03+k11*c13;
1018 fC41-=k10*c04+k11*c14;
1020 fC22-=k20*c02+k21*c12; fC32-=k20*c03+k21*c13;
1021 fC42-=k20*c04+k21*c14;
1023 fC33-=k30*c03+k31*c13;
1024 fC43-=k40*c03+k41*c13;
1026 fC44-=k40*c04+k41*c14;
1028 Int_t n=GetNumberOfClusters();
1030 SetNumberOfClusters(n+1);
1031 SetChi2(GetChi2()+chisq);
1038 //_____________________________________________________________________________
1039 Double_t AliTPCtrackerMI::F1old(Double_t x1,Double_t y1,
1040 Double_t x2,Double_t y2,
1041 Double_t x3,Double_t y3)
1043 //-----------------------------------------------------------------
1044 // Initial approximation of the track curvature
1045 //-----------------------------------------------------------------
1046 Double_t d=(x2-x1)*(y3-y2)-(x3-x2)*(y2-y1);
1047 Double_t a=0.5*((y3-y2)*(y2*y2-y1*y1+x2*x2-x1*x1)-
1048 (y2-y1)*(y3*y3-y2*y2+x3*x3-x2*x2));
1049 Double_t b=0.5*((x2-x1)*(y3*y3-y2*y2+x3*x3-x2*x2)-
1050 (x3-x2)*(y2*y2-y1*y1+x2*x2-x1*x1));
1052 Double_t xr=TMath::Abs(d/(d*x1-a)), yr=d/(d*y1-b);
1053 if ( xr*xr+yr*yr<=0.00000000000001) return 100;
1054 return -xr*yr/sqrt(xr*xr+yr*yr);
1059 //_____________________________________________________________________________
1060 Double_t AliTPCtrackerMI::F1(Double_t x1,Double_t y1,
1061 Double_t x2,Double_t y2,
1062 Double_t x3,Double_t y3)
1064 //-----------------------------------------------------------------
1065 // Initial approximation of the track curvature
1066 //-----------------------------------------------------------------
1072 Double_t det = x3*y2-x2*y3;
1077 Double_t u = 0.5* (x2*(x2-x3)+y2*(y2-y3))/det;
1078 Double_t x0 = x3*0.5-y3*u;
1079 Double_t y0 = y3*0.5+x3*u;
1080 Double_t c2 = 1/TMath::Sqrt(x0*x0+y0*y0);
1086 Double_t AliTPCtrackerMI::F2(Double_t x1,Double_t y1,
1087 Double_t x2,Double_t y2,
1088 Double_t x3,Double_t y3)
1090 //-----------------------------------------------------------------
1091 // Initial approximation of the track curvature
1092 //-----------------------------------------------------------------
1098 Double_t det = x3*y2-x2*y3;
1103 Double_t u = 0.5* (x2*(x2-x3)+y2*(y2-y3))/det;
1104 Double_t x0 = x3*0.5-y3*u;
1105 Double_t y0 = y3*0.5+x3*u;
1106 Double_t c2 = 1/TMath::Sqrt(x0*x0+y0*y0);
1115 //_____________________________________________________________________________
1116 Double_t AliTPCtrackerMI::F2old(Double_t x1,Double_t y1,
1117 Double_t x2,Double_t y2,
1118 Double_t x3,Double_t y3)
1120 //-----------------------------------------------------------------
1121 // Initial approximation of the track curvature times center of curvature
1122 //-----------------------------------------------------------------
1123 Double_t d=(x2-x1)*(y3-y2)-(x3-x2)*(y2-y1);
1124 Double_t a=0.5*((y3-y2)*(y2*y2-y1*y1+x2*x2-x1*x1)-
1125 (y2-y1)*(y3*y3-y2*y2+x3*x3-x2*x2));
1126 Double_t b=0.5*((x2-x1)*(y3*y3-y2*y2+x3*x3-x2*x2)-
1127 (x3-x2)*(y2*y2-y1*y1+x2*x2-x1*x1));
1129 Double_t xr=TMath::Abs(d/(d*x1-a)), yr=d/(d*y1-b);
1131 return -a/(d*y1-b)*xr/sqrt(xr*xr+yr*yr);
1134 //_____________________________________________________________________________
1135 Double_t AliTPCtrackerMI::F3(Double_t x1,Double_t y1,
1136 Double_t x2,Double_t y2,
1137 Double_t z1,Double_t z2)
1139 //-----------------------------------------------------------------
1140 // Initial approximation of the tangent of the track dip angle
1141 //-----------------------------------------------------------------
1142 return (z1 - z2)/sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
1146 Double_t AliTPCtrackerMI::F3n(Double_t x1,Double_t y1,
1147 Double_t x2,Double_t y2,
1148 Double_t z1,Double_t z2, Double_t c)
1150 //-----------------------------------------------------------------
1151 // Initial approximation of the tangent of the track dip angle
1152 //-----------------------------------------------------------------
1156 //angle1 = (z1-z2)*c/(TMath::ASin(c*x1-ni)-TMath::ASin(c*x2-ni));
1158 Double_t d = TMath::Sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
1159 if (TMath::Abs(d*c*0.5)>1) return 0;
1160 // Double_t angle2 = TMath::ASin(d*c*0.5);
1161 // Double_t angle2 = AliTPCFastMath::FastAsin(d*c*0.5);
1162 Double_t angle2 = (d*c*0.5>0.1)? TMath::ASin(d*c*0.5): AliTPCFastMath::FastAsin(d*c*0.5);
1164 angle2 = (z1-z2)*c/(angle2*2.);
1168 Bool_t AliTPCtrackerMI::GetProlongation(Double_t x1, Double_t x2, Double_t x[5], Double_t &y, Double_t &z)
1169 {//-----------------------------------------------------------------
1170 // This function find proloncation of a track to a reference plane x=x2.
1171 //-----------------------------------------------------------------
1175 if (TMath::Abs(x[4]*x1 - x[2]) >= 0.999) {
1179 Double_t c1=x[4]*x1 - x[2], r1=sqrt(1.- c1*c1);
1180 Double_t c2=x[4]*x2 - x[2], r2=sqrt(1.- c2*c2);
1184 Double_t dy = dx*(c1+c2)/(r1+r2);
1187 Double_t delta = x[4]*dx*(c1+c2)/(c1*r2 + c2*r1);
1189 if (TMath::Abs(delta)>0.01){
1190 dz = x[3]*TMath::ASin(delta)/x[4];
1192 dz = x[3]*AliTPCFastMath::FastAsin(delta)/x[4];
1195 //dz = x[3]*AliTPCFastMath::FastAsin(delta)/x[4];
1203 Int_t AliTPCtrackerMI::LoadClusters (TTree *tree)
1208 return LoadClusters();
1211 Int_t AliTPCtrackerMI::LoadClusters()
1214 // load clusters to the memory
1215 AliTPCClustersRow *clrow= new AliTPCClustersRow;
1216 clrow->SetClass("AliTPCclusterMI");
1218 clrow->GetArray()->ExpandCreateFast(10000);
1220 // TTree * tree = fClustersArray.GetTree();
1222 TTree * tree = fInput;
1223 TBranch * br = tree->GetBranch("Segment");
1224 br->SetAddress(&clrow);
1226 Int_t j=Int_t(tree->GetEntries());
1227 for (Int_t i=0; i<j; i++) {
1231 fParam->AdjustSectorRow(clrow->GetID(),sec,row);
1233 AliTPCRow * tpcrow=0;
1236 tpcrow = &(fInnerSec[sec%fkNIS][row]);
1240 tpcrow = &(fOuterSec[(sec-fkNIS*2)%fkNOS][row]);
1241 left = (sec-fkNIS*2)/fkNOS;
1244 tpcrow->fN1 = clrow->GetArray()->GetEntriesFast();
1245 tpcrow->fClusters1 = new AliTPCclusterMI[tpcrow->fN1];
1246 for (Int_t i=0;i<tpcrow->fN1;i++)
1247 tpcrow->fClusters1[i] = *(AliTPCclusterMI*)(clrow->GetArray()->At(i));
1250 tpcrow->fN2 = clrow->GetArray()->GetEntriesFast();
1251 tpcrow->fClusters2 = new AliTPCclusterMI[tpcrow->fN2];
1252 for (Int_t i=0;i<tpcrow->fN2;i++)
1253 tpcrow->fClusters2[i] = *(AliTPCclusterMI*)(clrow->GetArray()->At(i));
1264 void AliTPCtrackerMI::UnloadClusters()
1267 // unload clusters from the memory
1269 Int_t nrows = fOuterSec->GetNRows();
1270 for (Int_t sec = 0;sec<fkNOS;sec++)
1271 for (Int_t row = 0;row<nrows;row++){
1272 AliTPCRow* tpcrow = &(fOuterSec[sec%fkNOS][row]);
1274 // if (tpcrow->fClusters1) delete []tpcrow->fClusters1;
1275 // if (tpcrow->fClusters2) delete []tpcrow->fClusters2;
1277 tpcrow->ResetClusters();
1280 nrows = fInnerSec->GetNRows();
1281 for (Int_t sec = 0;sec<fkNIS;sec++)
1282 for (Int_t row = 0;row<nrows;row++){
1283 AliTPCRow* tpcrow = &(fInnerSec[sec%fkNIS][row]);
1285 // if (tpcrow->fClusters1) delete []tpcrow->fClusters1;
1286 //if (tpcrow->fClusters2) delete []tpcrow->fClusters2;
1288 tpcrow->ResetClusters();
1295 //_____________________________________________________________________________
1296 Int_t AliTPCtrackerMI::LoadOuterSectors() {
1297 //-----------------------------------------------------------------
1298 // This function fills outer TPC sectors with clusters.
1299 //-----------------------------------------------------------------
1300 Int_t nrows = fOuterSec->GetNRows();
1302 for (Int_t sec = 0;sec<fkNOS;sec++)
1303 for (Int_t row = 0;row<nrows;row++){
1304 AliTPCRow* tpcrow = &(fOuterSec[sec%fkNOS][row]);
1305 Int_t sec2 = sec+2*fkNIS;
1307 Int_t ncl = tpcrow->fN1;
1309 AliTPCclusterMI *c= &(tpcrow->fClusters1[ncl]);
1310 index=(((sec2<<8)+row)<<16)+ncl;
1311 tpcrow->InsertCluster(c,index);
1316 AliTPCclusterMI *c= &(tpcrow->fClusters2[ncl]);
1317 index=((((sec2+fkNOS)<<8)+row)<<16)+ncl;
1318 tpcrow->InsertCluster(c,index);
1321 // write indexes for fast acces
1323 for (Int_t i=0;i<510;i++)
1324 tpcrow->fFastCluster[i]=-1;
1325 for (Int_t i=0;i<tpcrow->GetN();i++){
1326 Int_t zi = Int_t((*tpcrow)[i]->GetZ()+255.);
1327 tpcrow->fFastCluster[zi]=i; // write index
1330 for (Int_t i=0;i<510;i++){
1331 if (tpcrow->fFastCluster[i]<0)
1332 tpcrow->fFastCluster[i] = last;
1334 last = tpcrow->fFastCluster[i];
1343 //_____________________________________________________________________________
1344 Int_t AliTPCtrackerMI::LoadInnerSectors() {
1345 //-----------------------------------------------------------------
1346 // This function fills inner TPC sectors with clusters.
1347 //-----------------------------------------------------------------
1348 Int_t nrows = fInnerSec->GetNRows();
1350 for (Int_t sec = 0;sec<fkNIS;sec++)
1351 for (Int_t row = 0;row<nrows;row++){
1352 AliTPCRow* tpcrow = &(fInnerSec[sec%fkNIS][row]);
1355 Int_t ncl = tpcrow->fN1;
1357 AliTPCclusterMI *c= &(tpcrow->fClusters1[ncl]);
1358 index=(((sec<<8)+row)<<16)+ncl;
1359 tpcrow->InsertCluster(c,index);
1364 AliTPCclusterMI *c= &(tpcrow->fClusters2[ncl]);
1365 index=((((sec+fkNIS)<<8)+row)<<16)+ncl;
1366 tpcrow->InsertCluster(c,index);
1369 // write indexes for fast acces
1371 for (Int_t i=0;i<510;i++)
1372 tpcrow->fFastCluster[i]=-1;
1373 for (Int_t i=0;i<tpcrow->GetN();i++){
1374 Int_t zi = Int_t((*tpcrow)[i]->GetZ()+255.);
1375 tpcrow->fFastCluster[zi]=i; // write index
1378 for (Int_t i=0;i<510;i++){
1379 if (tpcrow->fFastCluster[i]<0)
1380 tpcrow->fFastCluster[i] = last;
1382 last = tpcrow->fFastCluster[i];
1394 //_________________________________________________________________________
1395 AliTPCclusterMI *AliTPCtrackerMI::GetClusterMI(Int_t index) const {
1396 //--------------------------------------------------------------------
1397 // Return pointer to a given cluster
1398 //--------------------------------------------------------------------
1399 Int_t sec=(index&0xff000000)>>24;
1400 Int_t row=(index&0x00ff0000)>>16;
1401 Int_t ncl=(index&0x00007fff)>>00;
1403 const AliTPCRow * tpcrow=0;
1404 AliTPCclusterMI * clrow =0;
1406 tpcrow = &(fInnerSec[sec%fkNIS][row]);
1408 clrow = tpcrow->fClusters1;
1410 clrow = tpcrow->fClusters2;
1413 tpcrow = &(fOuterSec[(sec-fkNIS*2)%fkNOS][row]);
1414 if (sec-2*fkNIS<fkNOS)
1415 clrow = tpcrow->fClusters1;
1417 clrow = tpcrow->fClusters2;
1419 if (tpcrow==0) return 0;
1420 if (tpcrow->GetN()<=ncl) return 0;
1421 // return (AliTPCclusterMI*)(*tpcrow)[ncl];
1422 return &(clrow[ncl]);
1428 Int_t AliTPCtrackerMI::FollowToNext(AliTPCseed& t, Int_t nr) {
1429 //-----------------------------------------------------------------
1430 // This function tries to find a track prolongation to next pad row
1431 //-----------------------------------------------------------------
1433 Double_t x= GetXrow(nr), ymax=GetMaxY(nr);
1435 // if (t.GetRadius()>x+10 ) return 0;
1436 // t.PropagateTo(x+0.02);
1437 //t.PropagateTo(x+0.01);
1438 if (!t.PropagateTo(x)) {
1443 Double_t y=t.GetY(), z=t.GetZ();
1444 if (TMath::Abs(y)>ymax){
1446 t.fRelativeSector= (t.fRelativeSector+1) % fN;
1447 if (!t.Rotate(fSectors->GetAlpha()))
1449 } else if (y <-ymax) {
1450 t.fRelativeSector= (t.fRelativeSector-1+fN) % fN;
1451 if (!t.Rotate(-fSectors->GetAlpha()))
1454 //if (!t.PropagateTo(x)) {
1460 // update current shape info every 3 pad-row
1461 if ( (nr%5==0) || t.GetNumberOfClusters()<2 || (t.fCurrentSigmaY2<0.0001) ){
1462 //t.fCurrentSigmaY = GetSigmaY(&t);
1463 //t.fCurrentSigmaZ = GetSigmaZ(&t);
1467 AliTPCclusterMI *cl=0;
1472 if (t.GetClusterIndex2(nr)>0){
1474 //cl = GetClusterMI(t.GetClusterIndex2(nr));
1475 index = t.GetClusterIndex2(nr);
1476 cl = t.fClusterPointer[nr];
1477 if ( (cl==0) && (index>0)) cl = GetClusterMI(index);
1478 t.fCurrentClusterIndex1 = index;
1481 const AliTPCRow &krow=GetRow(t.fRelativeSector,nr);
1482 if ( (t.GetSigmaY2()<0) || t.GetSigmaZ2()<0) return 0;
1484 Double_t roadz = 1.;
1486 if (TMath::Abs(TMath::Abs(y)-ymax)<krow.fDeadZone){
1488 t.SetClusterIndex2(nr,-1);
1493 if (TMath::Abs(z)<(1.05*x+10)) t.fNFoundable++;
1499 t.fCurrentCluster = cl;
1501 Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1502 if (fIteration>0) accept =0;
1504 //if founded cluster is acceptible
1505 UpdateTrack(&t,accept);
1511 // cl = krow.FindNearest2(y+10.,z,roady,roadz,index);
1512 cl = krow.FindNearest2(y,z,roady,roadz,index);
1513 if (cl) t.fCurrentClusterIndex1 = krow.GetIndex(index);
1518 t.fCurrentCluster = cl;
1520 Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1522 if (t.fCurrentCluster->IsUsed(10)){
1527 if (t.fNShared>0.7*t.GetNumberOfClusters()) {
1533 if (accept<3) UpdateTrack(&t,accept);
1536 if ( fIteration==0 && t.fNFoundable*0.5 > t.GetNumberOfClusters()) t.fRemoval=10;
1542 Int_t AliTPCtrackerMI::FollowToNextFast(AliTPCseed& t, Int_t nr) {
1543 //-----------------------------------------------------------------
1544 // This function tries to find a track prolongation to next pad row
1545 //-----------------------------------------------------------------
1547 Double_t x= GetXrow(nr), ymax=GetMaxY(nr);
1549 if (!t.GetProlongation(x,y,z)) {
1555 if (TMath::Abs(y)>ymax){
1559 t.fRelativeSector= (t.fRelativeSector+1) % fN;
1560 if (!t.Rotate(fSectors->GetAlpha()))
1562 } else if (y <-ymax) {
1563 t.fRelativeSector= (t.fRelativeSector-1+fN) % fN;
1564 if (!t.Rotate(-fSectors->GetAlpha()))
1567 if (!t.PropagateTo(x)) {
1570 t.GetProlongation(x,y,z);
1573 // update current shape info every 3 pad-row
1574 if ( (nr%6==0) || t.GetNumberOfClusters()<2 || (t.fCurrentSigmaY2<0.0001) ){
1575 // t.fCurrentSigmaY = GetSigmaY(&t);
1576 //t.fCurrentSigmaZ = GetSigmaZ(&t);
1580 AliTPCclusterMI *cl=0;
1585 const AliTPCRow &krow=GetRow(t.fRelativeSector,nr);
1586 if ( (t.GetSigmaY2()<0) || t.GetSigmaZ2()<0) return 0;
1588 Double_t roadz = 1.;
1591 if (TMath::Abs(TMath::Abs(y)-ymax)<krow.fDeadZone){
1593 t.SetClusterIndex2(row,-1);
1598 if (TMath::Abs(z)>(1.05*x+10)) t.SetClusterIndex2(row,-1);
1602 if ((cl==0)&&(krow)) {
1603 // cl = krow.FindNearest2(y+10,z,roady,roadz,index);
1604 cl = krow.FindNearest2(y,z,roady,roadz,index);
1606 if (cl) t.fCurrentClusterIndex1 = krow.GetIndex(index);
1610 t.fCurrentCluster = cl;
1611 // Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1613 t.SetClusterIndex2(row,index);
1614 t.fClusterPointer[row] = cl;
1622 Int_t AliTPCtrackerMI::UpdateClusters(AliTPCseed& t, Int_t nr) {
1623 //-----------------------------------------------------------------
1624 // This function tries to find a track prolongation to next pad row
1625 //-----------------------------------------------------------------
1626 t.fCurrentCluster = 0;
1627 t.fCurrentClusterIndex1 = 0;
1629 Double_t xt=t.GetX();
1630 Int_t row = GetRowNumber(xt)-1;
1631 Double_t ymax= GetMaxY(nr);
1633 if (row < nr) return 1; // don't prolongate if not information until now -
1634 if (TMath::Abs(t.GetSnp())>0.9 && t.GetNumberOfClusters()>40. && fIteration!=2) {
1636 return 0; // not prolongate strongly inclined tracks
1638 if (TMath::Abs(t.GetSnp())>0.95) {
1640 return 0; // not prolongate strongly inclined tracks
1643 Double_t x= GetXrow(nr);
1645 //t.PropagateTo(x+0.02);
1646 //t.PropagateTo(x+0.01);
1647 if (!t.PropagateTo(x)){
1654 if (TMath::Abs(y)>ymax){
1656 t.fRelativeSector= (t.fRelativeSector+1) % fN;
1657 if (!t.Rotate(fSectors->GetAlpha()))
1659 } else if (y <-ymax) {
1660 t.fRelativeSector= (t.fRelativeSector-1+fN) % fN;
1661 if (!t.Rotate(-fSectors->GetAlpha()))
1664 // if (!t.PropagateTo(x)){
1672 AliTPCRow &krow=GetRow(t.fRelativeSector,nr);
1674 if (TMath::Abs(TMath::Abs(y)-ymax)<krow.fDeadZone){
1676 t.SetClusterIndex2(nr,-1);
1681 if (TMath::Abs(t.GetZ())<(1.05*t.GetX()+10)) t.fNFoundable++;
1687 if ( (nr%6==0) || t.GetNumberOfClusters()<2){
1688 // t.fCurrentSigmaY = GetSigmaY(&t);
1689 //t.fCurrentSigmaZ = GetSigmaZ(&t);
1693 AliTPCclusterMI *cl=0;
1696 Double_t roady = 1.;
1697 Double_t roadz = 1.;
1701 index = t.GetClusterIndex2(nr);
1702 if ( (index>0) && (index&0x8000)==0){
1703 cl = t.fClusterPointer[nr];
1704 if ( (cl==0) && (index>0)) cl = GetClusterMI(index);
1705 t.fCurrentClusterIndex1 = index;
1707 t.fCurrentCluster = cl;
1714 //cl = krow.FindNearest2(y+10,z,roady,roadz,index);
1715 cl = krow.FindNearest2(y,z,roady,roadz,index);
1718 if (cl) t.fCurrentClusterIndex1 = krow.GetIndex(index);
1719 t.fCurrentCluster = cl;
1725 Int_t AliTPCtrackerMI::FollowToNextCluster(AliTPCseed & t, Int_t nr) {
1726 //-----------------------------------------------------------------
1727 // This function tries to find a track prolongation to next pad row
1728 //-----------------------------------------------------------------
1730 //update error according neighborhoud
1732 if (t.fCurrentCluster) {
1734 Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1736 if (t.fCurrentCluster->IsUsed(10)){
1742 if (t.fNShared>0.7*t.GetNumberOfClusters()) {
1747 if (fIteration>0) accept = 0;
1748 if (accept<3) UpdateTrack(&t,accept);
1752 if ( ( (t.GetSigmaY2()+t.GetSigmaZ2())>0.16)&& t.GetNumberOfClusters()>18) t.fRemoval=10;
1753 if ( t.GetChi2()/t.GetNumberOfClusters()>6 &&t.GetNumberOfClusters()>18) t.fRemoval=10;
1755 if (( (t.fNFoundable*0.5 > t.GetNumberOfClusters()) || t.fNoCluster>15)) t.fRemoval=10;
1763 //_____________________________________________________________________________
1764 Int_t AliTPCtrackerMI::FollowProlongation(AliTPCseed& t, Int_t rf, Int_t step) {
1765 //-----------------------------------------------------------------
1766 // This function tries to find a track prolongation.
1767 //-----------------------------------------------------------------
1768 Double_t xt=t.GetX();
1770 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1771 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1772 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1774 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1776 Int_t first = GetRowNumber(xt)-1;
1777 for (Int_t nr= first; nr>=rf; nr-=step) {
1778 if (nr<fInnerSec->GetNRows())
1779 fSectors = fInnerSec;
1781 fSectors = fOuterSec;
1782 if (FollowToNext(t,nr)==0)
1783 if (!t.IsActive()) return 0;
1790 //_____________________________________________________________________________
1791 Int_t AliTPCtrackerMI::FollowProlongationFast(AliTPCseed& t, Int_t rf, Int_t step) {
1792 //-----------------------------------------------------------------
1793 // This function tries to find a track prolongation.
1794 //-----------------------------------------------------------------
1795 Double_t xt=t.GetX();
1797 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1798 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1799 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1800 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1802 for (Int_t nr=GetRowNumber(xt)-1; nr>=rf; nr-=step) {
1804 if (FollowToNextFast(t,nr)==0)
1805 if (!t.IsActive()) return 0;
1815 Int_t AliTPCtrackerMI::FollowBackProlongation(AliTPCseed& t, Int_t rf) {
1816 //-----------------------------------------------------------------
1817 // This function tries to find a track prolongation.
1818 //-----------------------------------------------------------------
1819 // Double_t xt=t.GetX();
1821 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1822 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1823 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1824 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1827 first = t.fFirstPoint+3;
1829 if (first<0) first=0;
1830 for (Int_t nr=first+1; nr<=rf; nr++) {
1831 //if ( (t.GetSnp()<0.9))
1832 if (nr<fInnerSec->GetNRows())
1833 fSectors = fInnerSec;
1835 fSectors = fOuterSec;
1845 Float_t AliTPCtrackerMI::OverlapFactor(AliTPCseed * s1, AliTPCseed * s2, Int_t &sum1, Int_t & sum2)
1853 Float_t dz2 =(s1->GetZ() - s2->GetZ());
1856 Float_t dy2 =TMath::Abs((s1->GetY() - s2->GetY()));
1858 Float_t distance = TMath::Sqrt(dz2+dy2);
1859 if (distance>4.) return 0; // if there are far away - not overlap - to reduce combinatorics
1862 Int_t firstpoint = TMath::Min(s1->fFirstPoint,s2->fFirstPoint);
1863 Int_t lastpoint = TMath::Max(s1->fLastPoint,s2->fLastPoint);
1868 if (firstpoint>lastpoint) {
1869 firstpoint =lastpoint;
1874 for (Int_t i=firstpoint-1;i<lastpoint+1;i++){
1875 if (s1->GetClusterIndex2(i)>0) sum1++;
1876 if (s2->GetClusterIndex2(i)>0) sum2++;
1877 if (s1->GetClusterIndex2(i)==s2->GetClusterIndex2(i) && s1->GetClusterIndex2(i)>0) {
1881 if (sum<5) return 0;
1883 Float_t summin = TMath::Min(sum1+1,sum2+1);
1884 Float_t ratio = (sum+1)/Float_t(summin);
1888 void AliTPCtrackerMI::SignShared(AliTPCseed * s1, AliTPCseed * s2)
1892 if (TMath::Abs(s1->GetC()-s2->GetC())>0.004) return;
1893 if (TMath::Abs(s1->GetTgl()-s2->GetTgl())>0.6) return;
1895 Float_t dz2 =(s1->GetZ() - s2->GetZ());
1897 Float_t dy2 =(s1->GetY() - s2->GetY());
1899 Float_t distance = dz2+dy2;
1900 if (distance>325.) return ; // if there are far away - not overlap - to reduce combinatorics
1905 Int_t firstpoint = TMath::Max(s1->fFirstPoint,s2->fFirstPoint);
1906 Int_t lastpoint = TMath::Min(s1->fLastPoint,s2->fLastPoint);
1908 if (firstpoint>=lastpoint-5) return;;
1910 for (Int_t i=firstpoint;i<lastpoint;i++){
1911 // if ( (s1->GetClusterIndex2(i)&0xFFFF8FFF)==(s2->GetClusterIndex2(i)&0xFFFF8FFF) && s1->GetClusterIndex2(i)>0) {
1912 if ( (s1->GetClusterIndex2(i))==(s2->GetClusterIndex2(i)) && s1->GetClusterIndex2(i)>0) {
1919 for (Int_t i=firstpoint;i<lastpoint;i++){
1920 // if ( (s1->GetClusterIndex2(i)&0xFFFF8FFF)==(s2->GetClusterIndex2(i)&0xFFFF8FFF) && s1->GetClusterIndex2(i)>0) {
1921 if ( (s1->GetClusterIndex2(i))==(s2->GetClusterIndex2(i)) && s1->GetClusterIndex2(i)>0) {
1922 AliTPCTrackerPoint *p1 = s1->GetTrackPoint(i);
1923 AliTPCTrackerPoint *p2 = s2->GetTrackPoint(i);;
1924 if (s1->IsActive()&&s2->IsActive()){
1925 p1->fIsShared = kTRUE;
1926 p2->fIsShared = kTRUE;
1933 for (Int_t i=0;i<4;i++){
1934 if (s1->fOverlapLabels[3*i]==0){
1935 s1->fOverlapLabels[3*i] = s2->GetLabel();
1936 s1->fOverlapLabels[3*i+1] = sumshared;
1937 s1->fOverlapLabels[3*i+2] = s2->GetUniqueID();
1941 for (Int_t i=0;i<4;i++){
1942 if (s2->fOverlapLabels[3*i]==0){
1943 s2->fOverlapLabels[3*i] = s1->GetLabel();
1944 s2->fOverlapLabels[3*i+1] = sumshared;
1945 s2->fOverlapLabels[3*i+2] = s1->GetUniqueID();
1953 void AliTPCtrackerMI::SignShared(TObjArray * arr)
1956 //sort trackss according sectors
1958 for (Int_t i=0; i<arr->GetEntriesFast(); i++) {
1959 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1961 //if (pt) RotateToLocal(pt);
1965 arr->Sort(); // sorting according z
1966 arr->Expand(arr->GetEntries());
1969 Int_t nseed=arr->GetEntriesFast();
1970 for (Int_t i=0; i<nseed; i++) {
1971 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1973 for (Int_t j=0;j<=12;j++){
1974 pt->fOverlapLabels[j] =0;
1977 for (Int_t i=0; i<nseed; i++) {
1978 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1980 if (pt->fRemoval>10) continue;
1981 for (Int_t j=i+1; j<nseed; j++){
1982 AliTPCseed *pt2=(AliTPCseed*)arr->UncheckedAt(j);
1984 if (pt2->fRemoval<=10) {
1985 if ( TMath::Abs(pt->fRelativeSector-pt2->fRelativeSector)>0) break;
1992 void AliTPCtrackerMI::RemoveDouble(TObjArray * arr, Float_t factor1, Float_t factor2, Int_t removalindex)
1995 //sort trackss according sectors
1998 printf("Number of tracks before double removal- %d\n",arr->GetEntries());
2001 for (Int_t i=0; i<arr->GetEntriesFast(); i++) {
2002 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2007 arr->Sort(); // sorting according z
2008 arr->Expand(arr->GetEntries());
2010 //reset overlap labels
2012 Int_t nseed=arr->GetEntriesFast();
2013 for (Int_t i=0; i<nseed; i++) {
2014 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2017 for (Int_t j=0;j<=12;j++){
2018 pt->fOverlapLabels[j] =0;
2022 //sign shared tracks
2023 for (Int_t i=0; i<nseed; i++) {
2024 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2026 if (pt->fRemoval>10) continue;
2027 Float_t deltac = pt->GetC()*0.1;
2028 for (Int_t j=i+1; j<nseed; j++){
2029 AliTPCseed *pt2=(AliTPCseed*)arr->UncheckedAt(j);
2031 if (pt2->fRemoval<=10) {
2032 if ( TMath::Abs(pt->fRelativeSector-pt2->fRelativeSector)>0) break;
2033 if (TMath::Abs(pt->GetC() -pt2->GetC())>deltac) continue;
2034 if (TMath::Abs(pt->GetTgl()-pt2->GetTgl())>0.05) continue;
2041 // remove highly shared tracks
2042 for (Int_t i=0; i<nseed; i++) {
2043 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2045 if (pt->fRemoval>10) continue;
2048 for (Int_t j=0;j<4;j++){
2049 sumshared = pt->fOverlapLabels[j*3+1];
2051 Float_t factor = factor1;
2052 if (pt->fRemoval>0) factor = factor2;
2053 if (sumshared/pt->GetNumberOfClusters()>factor){
2054 for (Int_t j=0;j<4;j++){
2055 if (pt->fOverlapLabels[3*j]==0) continue;
2056 if (pt->fOverlapLabels[3*j+1]<5) continue;
2057 if (pt->fRemoval==removalindex) continue;
2058 AliTPCseed * pt2 = (AliTPCseed*)arr->UncheckedAt(pt->fOverlapLabels[3*j+2]);
2060 if (pt2->GetSigma2C()<pt->GetSigma2C()){
2061 // pt->fRemoval = removalindex;
2062 delete arr->RemoveAt(i);
2070 printf("Number of tracks after double removal- %d\n",arr->GetEntries());
2079 void AliTPCtrackerMI::SortTracks(TObjArray * arr, Int_t mode) const
2082 //sort tracks in array according mode criteria
2083 Int_t nseed = arr->GetEntriesFast();
2084 for (Int_t i=0; i<nseed; i++) {
2085 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2095 void AliTPCtrackerMI::RemoveUsed(TObjArray * arr, Float_t factor1, Float_t factor2, Int_t removalindex)
2098 //Loop over all tracks and remove "overlaps"
2101 Int_t nseed = arr->GetEntriesFast();
2104 for (Int_t i=0; i<nseed; i++) {
2105 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2107 delete arr->RemoveAt(i);
2111 pt->fBSigned = kFALSE;
2115 nseed = arr->GetEntriesFast();
2122 for (Int_t i=0; i<nseed; i++) {
2123 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2127 Int_t found,foundable,shared;
2129 pt->GetClusterStatistic(0,160,found, foundable,shared,kFALSE);
2131 pt->GetClusterStatistic(0,160,found, foundable,shared,kTRUE);
2133 Double_t factor = factor2;
2134 if (pt->fBConstrain) factor = factor1;
2136 if ((Float_t(shared)/Float_t(found))>factor){
2137 pt->Desactivate(removalindex);
2142 for (Int_t i=0; i<160; i++) {
2143 Int_t index=pt->GetClusterIndex2(i);
2144 if (index<0 || index&0x8000 ) continue;
2145 AliTPCclusterMI *c= pt->fClusterPointer[i];
2147 // if (!c->IsUsed(10)) c->Use(10);
2148 //if (pt->IsActive())
2157 printf("\n*****\nNumber of good tracks after shared removal\t%d\n",fNtracks);
2160 void AliTPCtrackerMI::UnsignClusters()
2163 // loop over all clusters and unsign them
2166 for (Int_t sec=0;sec<fkNIS;sec++){
2167 for (Int_t row=0;row<fInnerSec->GetNRows();row++){
2168 AliTPCclusterMI *cl = fInnerSec[sec][row].fClusters1;
2169 for (Int_t icl =0;icl< fInnerSec[sec][row].fN1;icl++)
2170 // if (cl[icl].IsUsed(10))
2172 cl = fInnerSec[sec][row].fClusters2;
2173 for (Int_t icl =0;icl< fInnerSec[sec][row].fN2;icl++)
2174 //if (cl[icl].IsUsed(10))
2179 for (Int_t sec=0;sec<fkNOS;sec++){
2180 for (Int_t row=0;row<fOuterSec->GetNRows();row++){
2181 AliTPCclusterMI *cl = fOuterSec[sec][row].fClusters1;
2182 for (Int_t icl =0;icl< fOuterSec[sec][row].fN1;icl++)
2183 //if (cl[icl].IsUsed(10))
2185 cl = fOuterSec[sec][row].fClusters2;
2186 for (Int_t icl =0;icl< fOuterSec[sec][row].fN2;icl++)
2187 //if (cl[icl].IsUsed(10))
2196 void AliTPCtrackerMI::SignClusters(TObjArray * arr, Float_t fnumber, Float_t fdensity)
2199 //sign clusters to be "used"
2201 // snumber and sdensity sign number of sigmas - bellow mean value to be accepted
2202 // loop over "primaries"
2216 Int_t nseed = arr->GetEntriesFast();
2217 for (Int_t i=0; i<nseed; i++) {
2218 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2222 if (!(pt->IsActive())) continue;
2223 Float_t dens = pt->GetNumberOfClusters()/Float_t(pt->fNFoundable);
2224 if ( (dens>0.7) && (pt->GetNumberOfClusters()>70)){
2226 sumdens2+= dens*dens;
2227 sumn += pt->GetNumberOfClusters();
2228 sumn2 += pt->GetNumberOfClusters()*pt->GetNumberOfClusters();
2229 Float_t chi2 = pt->GetChi2()/pt->GetNumberOfClusters();
2232 sumchi2 +=chi2*chi2;
2237 Float_t mdensity = 0.9;
2238 Float_t meann = 130;
2239 Float_t meanchi = 1;
2240 Float_t sdensity = 0.1;
2241 Float_t smeann = 10;
2242 Float_t smeanchi =0.4;
2246 mdensity = sumdens/sum;
2248 meanchi = sumchi/sum;
2250 sdensity = sumdens2/sum-mdensity*mdensity;
2251 sdensity = TMath::Sqrt(sdensity);
2253 smeann = sumn2/sum-meann*meann;
2254 smeann = TMath::Sqrt(smeann);
2256 smeanchi = sumchi2/sum - meanchi*meanchi;
2257 smeanchi = TMath::Sqrt(smeanchi);
2261 //REMOVE SHORT DELTAS or tracks going out of sensitive volume of TPC
2263 for (Int_t i=0; i<nseed; i++) {
2264 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2268 if (pt->fBSigned) continue;
2269 if (pt->fBConstrain) continue;
2270 //if (!(pt->IsActive())) continue;
2272 Int_t found,foundable,shared;
2273 pt->GetClusterStatistic(0,160,found, foundable,shared);
2274 if (shared/float(found)>0.3) {
2275 if (shared/float(found)>0.9 ){
2276 //delete arr->RemoveAt(i);
2281 Bool_t isok =kFALSE;
2282 if ( (pt->fNShared/pt->GetNumberOfClusters()<0.5) &&pt->GetNumberOfClusters()>60)
2284 if ((TMath::Abs(1/pt->GetC())<100.) && (pt->fNShared/pt->GetNumberOfClusters()<0.7))
2286 if (TMath::Abs(pt->GetZ()/pt->GetX())>1.1)
2288 if ( (TMath::Abs(pt->GetSnp()>0.7) && pt->GetD(0,0)>60.))
2292 for (Int_t i=0; i<160; i++) {
2293 Int_t index=pt->GetClusterIndex2(i);
2294 if (index<0) continue;
2295 AliTPCclusterMI *c= pt->fClusterPointer[i];
2297 //if (!(c->IsUsed(10))) c->Use();
2304 Double_t maxchi = meanchi+2.*smeanchi;
2306 for (Int_t i=0; i<nseed; i++) {
2307 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2311 //if (!(pt->IsActive())) continue;
2312 if (pt->fBSigned) continue;
2313 Double_t chi = pt->GetChi2()/pt->GetNumberOfClusters();
2314 if (chi>maxchi) continue;
2317 Float_t dens = pt->GetNumberOfClusters()/Float_t(pt->fNFoundable);
2319 //sign only tracks with enoug big density at the beginning
2321 if ((pt->GetDensityFirst(40)<0.75) && pt->GetNumberOfClusters()<meann) continue;
2324 Double_t mindens = TMath::Max(double(mdensity-sdensity*fdensity*bfactor),0.65);
2325 Double_t minn = TMath::Max(Int_t(meann-fnumber*smeann*bfactor),50);
2327 // if (pt->fBConstrain) mindens = TMath::Max(mdensity-sdensity*fdensity*bfactor,0.65);
2328 if ( (pt->fRemoval==10) && (pt->GetSnp()>0.8)&&(dens>mindens))
2331 if ((dens>mindens && pt->GetNumberOfClusters()>minn) && chi<maxchi ){
2332 //Int_t noc=pt->GetNumberOfClusters();
2333 pt->fBSigned = kTRUE;
2334 for (Int_t i=0; i<160; i++) {
2336 Int_t index=pt->GetClusterIndex2(i);
2337 if (index<0) continue;
2338 AliTPCclusterMI *c= pt->fClusterPointer[i];
2340 // if (!(c->IsUsed(10))) c->Use();
2345 // gLastCheck = nseed;
2353 void AliTPCtrackerMI::StopNotActive(TObjArray * arr, Int_t row0, Float_t th0, Float_t th1, Float_t th2) const
2355 // stop not active tracks
2356 // take th1 as threshold for number of founded to number of foundable on last 10 active rows
2357 // take th2 as threshold for number of founded to number of foundable on last 20 active rows
2358 Int_t nseed = arr->GetEntriesFast();
2360 for (Int_t i=0; i<nseed; i++) {
2361 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2365 if (!(pt->IsActive())) continue;
2366 StopNotActive(pt,row0,th0, th1,th2);
2372 void AliTPCtrackerMI::StopNotActive(AliTPCseed * seed, Int_t row0, Float_t th0, Float_t th1,
2375 // stop not active tracks
2376 // take th1 as threshold for number of founded to number of foundable on last 10 active rows
2377 // take th2 as threshold for number of founded to number of foundable on last 20 active rows
2380 Int_t foundable = 0;
2381 Int_t maxindex = seed->fLastPoint; //last foundable row
2382 if (seed->fNFoundable*th0 > seed->GetNumberOfClusters()) {
2383 seed->Desactivate(10) ;
2387 for (Int_t i=row0; i<maxindex; i++){
2388 Int_t index = seed->GetClusterIndex2(i);
2389 if (index!=-1) foundable++;
2391 if (foundable<=30) sumgood1++;
2392 if (foundable<=50) {
2399 if (foundable>=30.){
2400 if (sumgood1<(th1*30.)) seed->Desactivate(10);
2403 if (sumgood2<(th2*50.)) seed->Desactivate(10);
2407 Int_t AliTPCtrackerMI::RefitInward(AliESD *event)
2410 // back propagation of ESD tracks
2416 //PrepareForProlongation(fSeeds,1);
2417 PropagateForward2(fSeeds);
2418 Int_t nseed = fSeeds->GetEntriesFast();
2419 for (Int_t i=0;i<nseed;i++){
2420 AliTPCseed * seed = (AliTPCseed*) fSeeds->UncheckedAt(i);
2421 seed->PropagateTo(fParam->GetInnerRadiusLow());
2422 AliESDtrack *esd=event->GetTrack(i);
2423 seed->CookdEdx(0.02,0.6);
2424 CookLabel(seed,0.1); //For comparison only
2425 if (seed->GetNumberOfClusters()>20){
2426 esd->UpdateTrackParams(seed,AliESDtrack::kTPCrefit);
2429 //printf("problem\n");
2438 Int_t AliTPCtrackerMI::PropagateBack(AliESD *event)
2441 // back propagation of ESD tracks
2447 PropagateBack(fSeeds);
2448 Int_t nseed = fSeeds->GetEntriesFast();
2449 for (Int_t i=0;i<nseed;i++){
2450 AliTPCseed * seed = (AliTPCseed*) fSeeds->UncheckedAt(i);
2451 AliESDtrack *esd=event->GetTrack(i);
2452 seed->CookdEdx(0.02,0.6);
2453 CookLabel(seed,0.1); //For comparison only
2454 esd->UpdateTrackParams(seed,AliESDtrack::kTPCout);
2462 void AliTPCtrackerMI::DeleteSeeds()
2466 Int_t nseed = fSeeds->GetEntriesFast();
2467 for (Int_t i=0;i<nseed;i++){
2468 AliTPCseed * seed = (AliTPCseed*)fSeeds->At(i);
2469 if (seed) delete fSeeds->RemoveAt(i);
2475 void AliTPCtrackerMI::ReadSeeds(AliESD *event, Int_t direction)
2478 //read seeds from the event
2480 Int_t nentr=event->GetNumberOfTracks();
2481 Info("PropagateBack", "Number of ESD tracks: %d\n", nentr);
2485 fSeeds = new TObjArray;
2489 for (Int_t i=0; i<nentr; i++) {
2490 AliESDtrack *esd=event->GetTrack(i);
2491 ULong_t status=esd->GetStatus();
2492 AliTPCtrack t(*esd);
2493 AliTPCseed *seed = new AliTPCseed(t,t.GetAlpha());
2494 if ((status==AliESDtrack::kTPCin)&&(direction==1)) seed->ResetCovariance();
2495 if ( direction ==2 &&(status & AliESDtrack::kTRDrefit) == 0 ) seed->ResetCovariance();
2499 // rotate to the local coordinate system
2501 fSectors=fInnerSec; fN=fkNIS;
2503 Double_t alpha=seed->GetAlpha() - fSectors->GetAlphaShift();
2504 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
2505 if (alpha < 0. ) alpha += 2.*TMath::Pi();
2506 Int_t ns=Int_t(alpha/fSectors->GetAlpha())%fN;
2507 alpha =ns*fSectors->GetAlpha() + fSectors->GetAlphaShift();
2508 alpha-=seed->GetAlpha();
2509 if (!seed->Rotate(alpha)) continue;
2512 //seed->PropagateTo(fSectors->GetX(0));
2514 // Int_t index = esd->GetTPCindex();
2515 //AliTPCseed * seed2= (AliTPCseed*)fSeeds->At(index);
2516 //if (direction==2){
2517 // AliTPCseed * seed2 = ReSeed(seed,0.,0.5,1.);
2524 fSeeds->AddLast(seed);
2530 //_____________________________________________________________________________
2531 void AliTPCtrackerMI::MakeSeeds3(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t cuts[4],
2532 Float_t deltay, Int_t ddsec) {
2533 //-----------------------------------------------------------------
2534 // This function creates track seeds.
2535 // SEEDING WITH VERTEX CONSTRAIN
2536 //-----------------------------------------------------------------
2537 // cuts[0] - fP4 cut
2538 // cuts[1] - tan(phi) cut
2539 // cuts[2] - zvertex cut
2540 // cuts[3] - fP3 cut
2548 Double_t x[5], c[15];
2549 // Int_t di = i1-i2;
2551 AliTPCseed * seed = new AliTPCseed;
2552 Double_t alpha=fSectors->GetAlpha(), shift=fSectors->GetAlphaShift();
2553 Double_t cs=cos(alpha), sn=sin(alpha);
2555 // Double_t x1 =fOuterSec->GetX(i1);
2556 //Double_t xx2=fOuterSec->GetX(i2);
2558 Double_t x1 =GetXrow(i1);
2559 Double_t xx2=GetXrow(i2);
2561 Double_t x3=GetX(), y3=GetY(), z3=GetZ();
2563 Int_t imiddle = (i2+i1)/2; //middle pad row index
2564 Double_t xm = GetXrow(imiddle); // radius of middle pad-row
2565 const AliTPCRow& krm=GetRow(sec,imiddle); //middle pad -row
2569 const AliTPCRow& kr1=GetRow(ns,i1);
2570 Double_t ymax = GetMaxY(i1)-kr1.fDeadZone-1.5;
2571 Double_t ymaxm = GetMaxY(imiddle)-kr1.fDeadZone-1.5;
2574 // change cut on curvature if it can't reach this layer
2575 // maximal curvature set to reach it
2576 Double_t dvertexmax = TMath::Sqrt((x1-x3)*(x1-x3)+(ymax+5-y3)*(ymax+5-y3));
2577 if (dvertexmax*0.5*cuts[0]>0.85){
2578 cuts[0] = 0.85/(dvertexmax*0.5+1.);
2580 Double_t r2min = 1/(cuts[0]*cuts[0]); //minimal square of radius given by cut
2583 if (deltay>0) ddsec = 0;
2584 // loop over clusters
2585 for (Int_t is=0; is < kr1; is++) {
2587 if (kr1[is]->IsUsed(10)) continue;
2588 Double_t y1=kr1[is]->GetY(), z1=kr1[is]->GetZ();
2589 //if (TMath::Abs(y1)>ymax) continue;
2591 if (deltay>0 && TMath::Abs(ymax-TMath::Abs(y1))> deltay ) continue; // seed only at the edge
2593 // find possible directions
2594 Float_t anglez = (z1-z3)/(x1-x3);
2595 Float_t extraz = z1 - anglez*(x1-xx2); // extrapolated z
2598 //find rotation angles relative to line given by vertex and point 1
2599 Double_t dvertex2 = (x1-x3)*(x1-x3)+(y1-y3)*(y1-y3);
2600 Double_t dvertex = TMath::Sqrt(dvertex2);
2601 Double_t angle13 = TMath::ATan((y1-y3)/(x1-x3));
2602 Double_t cs13 = cos(-angle13), sn13 = sin(-angle13);
2605 // loop over 2 sectors
2611 Double_t dddz1=0; // direction of delta inclination in z axis
2618 for (Int_t dsec = dsec1; dsec<=dsec2;dsec++){
2619 Int_t sec2 = sec + dsec;
2621 // AliTPCRow& kr2 = fOuterSec[(sec2+fkNOS)%fkNOS][i2];
2622 //AliTPCRow& kr2m = fOuterSec[(sec2+fkNOS)%fkNOS][imiddle];
2623 AliTPCRow& kr2 = GetRow((sec2+fkNOS)%fkNOS,i2);
2624 AliTPCRow& kr2m = GetRow((sec2+fkNOS)%fkNOS,imiddle);
2625 Int_t index1 = TMath::Max(kr2.Find(extraz-0.6-dddz1*TMath::Abs(z1)*0.05)-1,0);
2626 Int_t index2 = TMath::Min(kr2.Find(extraz+0.6+dddz2*TMath::Abs(z1)*0.05)+1,kr2);
2628 // rotation angles to p1-p3
2629 Double_t cs13r = cos(-angle13+dsec*alpha)/dvertex, sn13r = sin(-angle13+dsec*alpha)/dvertex;
2630 Double_t x2, y2, z2;
2632 // Double_t dymax = maxangle*TMath::Abs(x1-xx2);
2635 Double_t dxx0 = (xx2-x3)*cs13r;
2636 Double_t dyy0 = (xx2-x3)*sn13r;
2637 for (Int_t js=index1; js < index2; js++) {
2638 const AliTPCclusterMI *kcl = kr2[js];
2639 if (kcl->IsUsed(10)) continue;
2641 //calcutate parameters
2643 Double_t yy0 = dyy0 +(kcl->GetY()-y3)*cs13r;
2645 if (TMath::Abs(yy0)<0.000001) continue;
2646 Double_t xx0 = dxx0 -(kcl->GetY()-y3)*sn13r;
2647 Double_t y0 = 0.5*(xx0*xx0+yy0*yy0-xx0)/yy0;
2648 Double_t r02 = (0.25+y0*y0)*dvertex2;
2649 //curvature (radius) cut
2650 if (r02<r2min) continue;
2654 Double_t c0 = 1/TMath::Sqrt(r02);
2658 //Double_t dfi0 = 2.*TMath::ASin(dvertex*c0*0.5);
2659 //Double_t dfi1 = 2.*TMath::ASin(TMath::Sqrt(yy0*yy0+(1-xx0)*(1-xx0))*dvertex*c0*0.5);
2660 Double_t dfi0 = 2.*AliTPCFastMath::FastAsin(dvertex*c0*0.5);
2661 Double_t dfi1 = 2.*AliTPCFastMath::FastAsin(TMath::Sqrt(yy0*yy0+(1-xx0)*(1-xx0))*dvertex*c0*0.5);
2664 Double_t z0 = kcl->GetZ();
2665 Double_t zzzz2 = z1-(z1-z3)*dfi1/dfi0;
2666 if (TMath::Abs(zzzz2-z0)>0.5) continue;
2669 Double_t dip = (z1-z0)*c0/dfi1;
2670 Double_t x0 = (0.5*cs13+y0*sn13)*dvertex*c0;
2681 x2= xx2*cs-y2*sn*dsec;
2682 y2=+xx2*sn*dsec+y2*cs;
2692 // do we have cluster at the middle ?
2694 GetProlongation(x1,xm,x,ym,zm);
2696 AliTPCclusterMI * cm=0;
2697 if (TMath::Abs(ym)-ymaxm<0){
2698 cm = krm.FindNearest2(ym,zm,1.0,0.6,dummy);
2699 if ((!cm) || (cm->IsUsed(10))) {
2704 // rotate y1 to system 0
2705 // get state vector in rotated system
2706 Double_t yr1 = (-0.5*sn13+y0*cs13)*dvertex*c0;
2707 Double_t xr2 = x0*cs+yr1*sn*dsec;
2708 Double_t xr[5]={kcl->GetY(),kcl->GetZ(), xr2, dip, c0};
2710 GetProlongation(xx2,xm,xr,ym,zm);
2711 if (TMath::Abs(ym)-ymaxm<0){
2712 cm = kr2m.FindNearest2(ym,zm,1.0,0.6,dummy);
2713 if ((!cm) || (cm->IsUsed(10))) {
2723 dym = ym - cm->GetY();
2724 dzm = zm - cm->GetZ();
2731 Double_t sy1=kr1[is]->GetSigmaY2()*2., sz1=kr1[is]->GetSigmaZ2()*2.;
2732 Double_t sy2=kcl->GetSigmaY2()*2., sz2=kcl->GetSigmaZ2()*2.;
2733 //Double_t sy3=400*3./12., sy=0.1, sz=0.1;
2734 Double_t sy3=25000*x[4]*x[4]+0.1, sy=0.1, sz=0.1;
2735 //Double_t sy3=25000*x[4]*x[4]*60+0.5, sy=0.1, sz=0.1;
2737 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
2738 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
2739 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
2740 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
2741 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
2742 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
2744 Double_t f30=(F3(x1,y1+sy,x2,y2,z1,z2)-x[3])/sy;
2745 Double_t f31=(F3(x1,y1,x2,y2,z1+sz,z2)-x[3])/sz;
2746 Double_t f32=(F3(x1,y1,x2,y2+sy,z1,z2)-x[3])/sy;
2747 Double_t f34=(F3(x1,y1,x2,y2,z1,z2+sz)-x[3])/sz;
2751 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
2752 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
2753 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
2754 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
2755 c[13]=f30*sy1*f40+f32*sy2*f42;
2756 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
2758 // if (!BuildSeed(kr1[is],kcl,0,x1,x2,x3,x,c)) continue;
2760 UInt_t index=kr1.GetIndex(is);
2761 AliTPCseed *track=new(seed) AliTPCseed(index, x, c, x1, ns*alpha+shift);
2763 track->fIsSeeding = kTRUE;
2770 FollowProlongation(*track, (i1+i2)/2,1);
2771 Int_t foundable,found,shared;
2772 track->GetClusterStatistic((i1+i2)/2,i1, found, foundable, shared, kTRUE);
2773 if ((found<0.55*foundable) || shared>0.5*found || (track->GetSigmaY2()+track->GetSigmaZ2())>0.5){
2775 seed->~AliTPCseed();
2781 FollowProlongation(*track, i2,1);
2785 track->fBConstrain =1;
2786 // track->fLastPoint = i1+fInnerSec->GetNRows(); // first cluster in track position
2787 track->fLastPoint = i1; // first cluster in track position
2788 track->fFirstPoint = track->fLastPoint;
2790 if (track->GetNumberOfClusters()<(i1-i2)*0.5 ||
2791 track->GetNumberOfClusters() < track->fNFoundable*0.6 ||
2792 track->fNShared>0.4*track->GetNumberOfClusters() ) {
2794 seed->~AliTPCseed();
2798 // Z VERTEX CONDITION
2800 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2801 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2802 if (TMath::Abs(zv-z3)>cuts[2]) {
2803 FollowProlongation(*track, TMath::Max(i2-20,0));
2804 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2805 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2806 if (TMath::Abs(zv-z3)>cuts[2]){
2807 FollowProlongation(*track, TMath::Max(i2-40,0));
2808 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2809 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2810 if (TMath::Abs(zv-z3)>cuts[2] &&(track->GetNumberOfClusters() > track->fNFoundable*0.7)){
2811 // make seed without constrain
2812 AliTPCseed * track2 = MakeSeed(track,0.2,0.5,1.);
2813 FollowProlongation(*track2, i2,1);
2814 track2->fBConstrain = kFALSE;
2815 track2->fSeedType = 1;
2816 arr->AddLast(track2);
2818 seed->~AliTPCseed();
2823 seed->~AliTPCseed();
2830 track->fSeedType =0;
2831 arr->AddLast(track);
2832 seed = new AliTPCseed;
2834 // don't consider other combinations
2835 if (track->GetNumberOfClusters() > track->fNFoundable*0.8)
2841 // printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin,nout1,nout2);
2847 void AliTPCtrackerMI::MakeSeeds5(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t cuts[4],
2852 //-----------------------------------------------------------------
2853 // This function creates track seeds.
2854 //-----------------------------------------------------------------
2855 // cuts[0] - fP4 cut
2856 // cuts[1] - tan(phi) cut
2857 // cuts[2] - zvertex cut
2858 // cuts[3] - fP3 cut
2868 Double_t x[5], c[15];
2870 // make temporary seed
2871 AliTPCseed * seed = new AliTPCseed;
2872 Double_t alpha=fOuterSec->GetAlpha(), shift=fOuterSec->GetAlphaShift();
2873 // Double_t cs=cos(alpha), sn=sin(alpha);
2878 Double_t x1 = GetXrow(i1-1);
2879 const AliTPCRow& kr1=GetRow(sec,i1-1);
2880 Double_t y1max = GetMaxY(i1-1)-kr1.fDeadZone-1.5;
2882 Double_t x1p = GetXrow(i1);
2883 const AliTPCRow& kr1p=GetRow(sec,i1);
2885 Double_t x1m = GetXrow(i1-2);
2886 const AliTPCRow& kr1m=GetRow(sec,i1-2);
2889 //last 3 padrow for seeding
2890 AliTPCRow& kr3 = GetRow((sec+fkNOS)%fkNOS,i1-7);
2891 Double_t x3 = GetXrow(i1-7);
2892 // Double_t y3max= GetMaxY(i1-7)-kr3.fDeadZone-1.5;
2894 AliTPCRow& kr3p = GetRow((sec+fkNOS)%fkNOS,i1-6);
2895 Double_t x3p = GetXrow(i1-6);
2897 AliTPCRow& kr3m = GetRow((sec+fkNOS)%fkNOS,i1-8);
2898 Double_t x3m = GetXrow(i1-8);
2903 Int_t im = i1-4; //middle pad row index
2904 Double_t xm = GetXrow(im); // radius of middle pad-row
2905 const AliTPCRow& krm=GetRow(sec,im); //middle pad -row
2906 // Double_t ymmax = GetMaxY(im)-kr1.fDeadZone-1.5;
2909 Double_t deltax = x1-x3;
2910 Double_t dymax = deltax*cuts[1];
2911 Double_t dzmax = deltax*cuts[3];
2913 // loop over clusters
2914 for (Int_t is=0; is < kr1; is++) {
2916 if (kr1[is]->IsUsed(10)) continue;
2917 Double_t y1=kr1[is]->GetY(), z1=kr1[is]->GetZ();
2919 if (deltay>0 && TMath::Abs(y1max-TMath::Abs(y1))> deltay ) continue; // seed only at the edge
2921 Int_t index1 = TMath::Max(kr3.Find(z1-dzmax)-1,0);
2922 Int_t index2 = TMath::Min(kr3.Find(z1+dzmax)+1,kr3);
2928 for (Int_t js=index1; js < index2; js++) {
2929 const AliTPCclusterMI *kcl = kr3[js];
2930 if (kcl->IsUsed(10)) continue;
2932 // apply angular cuts
2933 if (TMath::Abs(y1-y3)>dymax) continue;
2936 if (TMath::Abs(z1-z3)>dzmax) continue;
2938 Double_t angley = (y1-y3)/(x1-x3);
2939 Double_t anglez = (z1-z3)/(x1-x3);
2941 Double_t erry = TMath::Abs(angley)*(x1-x1m)*0.5+0.5;
2942 Double_t errz = TMath::Abs(anglez)*(x1-x1m)*0.5+0.5;
2944 Double_t yyym = angley*(xm-x1)+y1;
2945 Double_t zzzm = anglez*(xm-x1)+z1;
2947 const AliTPCclusterMI *kcm = krm.FindNearest2(yyym,zzzm,erry,errz,index);
2949 if (kcm->IsUsed(10)) continue;
2951 erry = TMath::Abs(angley)*(x1-x1m)*0.4+0.5;
2952 errz = TMath::Abs(anglez)*(x1-x1m)*0.4+0.5;
2959 // look around first
2960 const AliTPCclusterMI *kc1m = kr1m.FindNearest2(angley*(x1m-x1)+y1,
2966 if (kc1m->IsUsed(10)) used++;
2968 const AliTPCclusterMI *kc1p = kr1p.FindNearest2(angley*(x1p-x1)+y1,
2974 if (kc1p->IsUsed(10)) used++;
2976 if (used>1) continue;
2977 if (found<1) continue;
2981 const AliTPCclusterMI *kc3m = kr3m.FindNearest2(angley*(x3m-x3)+y3,
2987 if (kc3m->IsUsed(10)) used++;
2991 const AliTPCclusterMI *kc3p = kr3p.FindNearest2(angley*(x3p-x3)+y3,
2997 if (kc3p->IsUsed(10)) used++;
3001 if (used>1) continue;
3002 if (found<3) continue;
3012 x[4]=F1(x1,y1,x2,y2,x3,y3);
3013 //if (TMath::Abs(x[4]) >= cuts[0]) continue;
3016 x[2]=F2(x1,y1,x2,y2,x3,y3);
3019 x[3]=F3n(x1,y1,x2,y2,z1,z2,x[4]);
3020 //if (TMath::Abs(x[3]) > cuts[3]) continue;
3024 Double_t sy1=0.1, sz1=0.1;
3025 Double_t sy2=0.1, sz2=0.1;
3026 Double_t sy3=0.1, sy=0.1, sz=0.1;
3028 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
3029 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
3030 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
3031 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
3032 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
3033 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
3035 Double_t f30=(F3(x1,y1+sy,x2,y2,z1,z2)-x[3])/sy;
3036 Double_t f31=(F3(x1,y1,x2,y2,z1+sz,z2)-x[3])/sz;
3037 Double_t f32=(F3(x1,y1,x2,y2+sy,z1,z2)-x[3])/sy;
3038 Double_t f34=(F3(x1,y1,x2,y2,z1,z2+sz)-x[3])/sz;
3042 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3043 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3044 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3045 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3046 c[13]=f30*sy1*f40+f32*sy2*f42;
3047 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3049 // if (!BuildSeed(kr1[is],kcl,0,x1,x2,x3,x,c)) continue;
3051 UInt_t index=kr1.GetIndex(is);
3052 AliTPCseed *track=new(seed) AliTPCseed(index, x, c, x1, sec*alpha+shift);
3054 track->fIsSeeding = kTRUE;
3057 FollowProlongation(*track, i1-7,1);
3058 if (track->GetNumberOfClusters() < track->fNFoundable*0.75 ||
3059 track->fNShared>0.6*track->GetNumberOfClusters() || ( track->GetSigmaY2()+ track->GetSigmaZ2())>0.6){
3061 seed->~AliTPCseed();
3067 FollowProlongation(*track, i2,1);
3068 track->fBConstrain =0;
3069 track->fLastPoint = i1+fInnerSec->GetNRows(); // first cluster in track position
3070 track->fFirstPoint = track->fLastPoint;
3072 if (track->GetNumberOfClusters()<(i1-i2)*0.5 ||
3073 track->GetNumberOfClusters()<track->fNFoundable*0.7 ||
3074 track->fNShared>2. || track->GetChi2()/track->GetNumberOfClusters()>6 || ( track->GetSigmaY2()+ track->GetSigmaZ2())>0.5 ) {
3076 seed->~AliTPCseed();
3081 FollowProlongation(*track, TMath::Max(i2-10,0),1);
3082 AliTPCseed * track2 = MakeSeed(track,0.2,0.5,0.9);
3083 FollowProlongation(*track2, i2,1);
3084 track2->fBConstrain = kFALSE;
3085 track2->fSeedType = 4;
3086 arr->AddLast(track2);
3088 seed->~AliTPCseed();
3092 //arr->AddLast(track);
3093 //seed = new AliTPCseed;
3099 // printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin,nout1,nout2,nout3);
3105 //_____________________________________________________________________________
3106 void AliTPCtrackerMI::MakeSeeds2(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t */*cuts[4]*/,
3107 Float_t deltay, Bool_t /*bconstrain*/) {
3108 //-----------------------------------------------------------------
3109 // This function creates track seeds - without vertex constraint
3110 //-----------------------------------------------------------------
3111 // cuts[0] - fP4 cut - not applied
3112 // cuts[1] - tan(phi) cut
3113 // cuts[2] - zvertex cut - not applied
3114 // cuts[3] - fP3 cut
3124 Double_t alpha=fOuterSec->GetAlpha(), shift=fOuterSec->GetAlphaShift();
3125 // Double_t cs=cos(alpha), sn=sin(alpha);
3126 Int_t row0 = (i1+i2)/2;
3127 Int_t drow = (i1-i2)/2;
3128 const AliTPCRow& kr0=fSectors[sec][row0];
3131 AliTPCpolyTrack polytrack;
3132 Int_t nclusters=fSectors[sec][row0];
3133 AliTPCseed * seed = new AliTPCseed;
3138 for (Int_t is=0; is < nclusters; is++) { //LOOP over clusters
3140 Int_t nfoundable =0;
3141 for (Int_t iter =1; iter<2; iter++){ //iterations
3142 const AliTPCRow& krm=fSectors[sec][row0-iter];
3143 const AliTPCRow& krp=fSectors[sec][row0+iter];
3144 const AliTPCclusterMI * cl= kr0[is];
3146 if (cl->IsUsed(10)) {
3152 Double_t x = kr0.GetX();
3153 // Initialization of the polytrack
3158 Double_t y0= cl->GetY();
3159 Double_t z0= cl->GetZ();
3163 Double_t ymax = fSectors->GetMaxY(row0)-kr0.fDeadZone-1.5;
3164 if (deltay>0 && TMath::Abs(ymax-TMath::Abs(y0))> deltay ) continue; // seed only at the edge
3166 erry = (0.5)*cl->GetSigmaY2()/TMath::Sqrt(cl->GetQ())*6;
3167 errz = (0.5)*cl->GetSigmaZ2()/TMath::Sqrt(cl->GetQ())*6;
3168 polytrack.AddPoint(x,y0,z0,erry, errz);
3171 if (cl->IsUsed(10)) sumused++;
3174 Float_t roady = (5*TMath::Sqrt(cl->GetSigmaY2()+0.2)+1.)*iter;
3175 Float_t roadz = (5*TMath::Sqrt(cl->GetSigmaZ2()+0.2)+1.)*iter;
3178 AliTPCclusterMI * cl1 = krm.FindNearest(y0,z0,roady,roadz);
3179 if (cl1 && TMath::Abs(ymax-TMath::Abs(y0))) {
3180 erry = (0.5)*cl1->GetSigmaY2()/TMath::Sqrt(cl1->GetQ())*3;
3181 errz = (0.5)*cl1->GetSigmaZ2()/TMath::Sqrt(cl1->GetQ())*3;
3182 if (cl1->IsUsed(10)) sumused++;
3183 polytrack.AddPoint(x,cl1->GetY(),cl1->GetZ(),erry,errz);
3187 AliTPCclusterMI * cl2 = krp.FindNearest(y0,z0,roady,roadz);
3189 erry = (0.5)*cl2->GetSigmaY2()/TMath::Sqrt(cl2->GetQ())*3;
3190 errz = (0.5)*cl2->GetSigmaZ2()/TMath::Sqrt(cl2->GetQ())*3;
3191 if (cl2->IsUsed(10)) sumused++;
3192 polytrack.AddPoint(x,cl2->GetY(),cl2->GetZ(),erry,errz);
3195 if (sumused>0) continue;
3197 polytrack.UpdateParameters();
3203 nfoundable = polytrack.GetN();
3204 nfound = nfoundable;
3206 for (Int_t ddrow = iter+1; ddrow<drow;ddrow++){
3207 Float_t maxdist = 0.8*(1.+3./(ddrow));
3208 for (Int_t delta = -1;delta<=1;delta+=2){
3209 Int_t row = row0+ddrow*delta;
3210 kr = &(fSectors[sec][row]);
3211 Double_t xn = kr->GetX();
3212 Double_t ymax = fSectors->GetMaxY(row)-kr->fDeadZone-1.5;
3213 polytrack.GetFitPoint(xn,yn,zn);
3214 if (TMath::Abs(yn)>ymax) continue;
3216 AliTPCclusterMI * cln = kr->FindNearest(yn,zn,roady,roadz);
3218 Float_t dist = TMath::Sqrt( (yn-cln->GetY())*(yn-cln->GetY())+(zn-cln->GetZ())*(zn-cln->GetZ()));
3221 erry = (dist+0.3)*cln->GetSigmaY2()/TMath::Sqrt(cln->GetQ())*(1.+1./(ddrow));
3222 errz = (dist+0.3)*cln->GetSigmaZ2()/TMath::Sqrt(cln->GetQ())*(1.+1./(ddrow));
3223 if (cln->IsUsed(10)) {
3224 // printf("used\n");
3232 polytrack.AddPoint(xn,cln->GetY(),cln->GetZ(),erry, errz);
3237 if ( (sumused>3) || (sumused>0.5*nfound) || (nfound<0.6*nfoundable)) break;
3238 polytrack.UpdateParameters();
3241 if ( (sumused>3) || (sumused>0.5*nfound)) {
3242 //printf("sumused %d\n",sumused);
3247 polytrack.GetFitDerivation(kr0.GetX(),dy,dz);
3248 AliTPCpolyTrack track2;
3250 polytrack.Refit(track2,0.5+TMath::Abs(dy)*0.3,0.4+TMath::Abs(dz)*0.3);
3251 if (track2.GetN()<0.5*nfoundable) continue;
3254 if ((nfound>0.6*nfoundable) &&( nfoundable>0.4*(i1-i2))) {
3256 // test seed with and without constrain
3257 for (Int_t constrain=0; constrain<=0;constrain++){
3258 // add polytrack candidate
3260 Double_t x[5], c[15];
3261 Double_t x1,x2,x3,y1,y2,y3,z1,z2,z3;
3262 track2.GetBoundaries(x3,x1);
3264 track2.GetFitPoint(x1,y1,z1);
3265 track2.GetFitPoint(x2,y2,z2);
3266 track2.GetFitPoint(x3,y3,z3);
3268 //is track pointing to the vertex ?
3271 polytrack.GetFitPoint(x0,y0,z0);
3284 x[4]=F1(x1,y1,x2,y2,x3,y3);
3286 // if (TMath::Abs(x[4]) >= cuts[0]) continue; //
3287 x[2]=F2(x1,y1,x2,y2,x3,y3);
3289 //if (TMath::Abs(x[4]*x1-x[2]) >= cuts[1]) continue;
3290 //x[3]=F3(x1,y1,x2,y2,z1,z2);
3291 x[3]=F3n(x1,y1,x3,y3,z1,z3,x[4]);
3292 //if (TMath::Abs(x[3]) > cuts[3]) continue;
3295 Double_t sy =0.1, sz =0.1;
3296 Double_t sy1=0.02, sz1=0.02;
3297 Double_t sy2=0.02, sz2=0.02;
3301 sy3=25000*x[4]*x[4]+0.1, sy=0.1, sz=0.1;
3304 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
3305 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
3306 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
3307 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
3308 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
3309 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
3311 Double_t f30=(F3(x1,y1+sy,x3,y3,z1,z3)-x[3])/sy;
3312 Double_t f31=(F3(x1,y1,x3,y3,z1+sz,z3)-x[3])/sz;
3313 Double_t f32=(F3(x1,y1,x3,y3+sy,z1,z3)-x[3])/sy;
3314 Double_t f34=(F3(x1,y1,x3,y3,z1,z3+sz)-x[3])/sz;
3319 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3320 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3321 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3322 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3323 c[13]=f30*sy1*f40+f32*sy2*f42;
3324 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3326 //Int_t row1 = fSectors->GetRowNumber(x1);
3327 Int_t row1 = GetRowNumber(x1);
3331 AliTPCseed *track=new (seed) AliTPCseed(index, x, c, x1, sec*alpha+shift);
3332 track->fIsSeeding = kTRUE;
3333 Int_t rc=FollowProlongation(*track, i2);
3334 if (constrain) track->fBConstrain =1;
3336 track->fBConstrain =0;
3337 track->fLastPoint = row1+fInnerSec->GetNRows(); // first cluster in track position
3338 track->fFirstPoint = track->fLastPoint;
3340 if (rc==0 || track->GetNumberOfClusters()<(i1-i2)*0.5 ||
3341 track->GetNumberOfClusters() < track->fNFoundable*0.6 ||
3342 track->fNShared>0.4*track->GetNumberOfClusters()) {
3345 seed->~AliTPCseed();
3348 arr->AddLast(track);
3349 seed = new AliTPCseed;
3353 } // if accepted seed
3356 printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin3);
3362 AliTPCseed *AliTPCtrackerMI::MakeSeed(AliTPCseed *track, Float_t r0, Float_t r1, Float_t r2)
3366 //reseed using track points
3367 Int_t p0 = int(r0*track->GetNumberOfClusters()); // point 0
3368 Int_t p1 = int(r1*track->GetNumberOfClusters());
3369 Int_t p2 = int(r2*track->GetNumberOfClusters()); // last point
3371 Double_t x0[3],x1[3],x2[3];
3376 // find track position at given ratio of the length
3377 Int_t sec0, sec1, sec2;
3383 for (Int_t i=0;i<160;i++){
3384 if (track->fClusterPointer[i]){
3386 AliTPCTrackerPoint *trpoint =track->GetTrackPoint(i);
3387 if ( (index<p0) || x0[0]<0 ){
3388 if (trpoint->GetX()>1){
3389 clindex = track->GetClusterIndex2(i);
3391 x0[0] = trpoint->GetX();
3392 x0[1] = trpoint->GetY();
3393 x0[2] = trpoint->GetZ();
3394 sec0 = ((clindex&0xff000000)>>24)%18;
3399 if ( (index<p1) &&(trpoint->GetX()>1)){
3400 clindex = track->GetClusterIndex2(i);
3402 x1[0] = trpoint->GetX();
3403 x1[1] = trpoint->GetY();
3404 x1[2] = trpoint->GetZ();
3405 sec1 = ((clindex&0xff000000)>>24)%18;
3408 if ( (index<p2) &&(trpoint->GetX()>1)){
3409 clindex = track->GetClusterIndex2(i);
3411 x2[0] = trpoint->GetX();
3412 x2[1] = trpoint->GetY();
3413 x2[2] = trpoint->GetZ();
3414 sec2 = ((clindex&0xff000000)>>24)%18;
3421 Double_t alpha, cs,sn, xx2,yy2;
3423 alpha = (sec1-sec2)*fSectors->GetAlpha();
3424 cs = TMath::Cos(alpha);
3425 sn = TMath::Sin(alpha);
3426 xx2= x1[0]*cs-x1[1]*sn;
3427 yy2= x1[0]*sn+x1[1]*cs;
3431 alpha = (sec0-sec2)*fSectors->GetAlpha();
3432 cs = TMath::Cos(alpha);
3433 sn = TMath::Sin(alpha);
3434 xx2= x0[0]*cs-x0[1]*sn;
3435 yy2= x0[0]*sn+x0[1]*cs;
3441 Double_t x[5],c[15];
3445 x[4]=F1(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]);
3446 // if (x[4]>1) return 0;
3447 x[2]=F2(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]);
3448 x[3]=F3n(x2[0],x2[1],x0[0],x0[1],x2[2],x0[2],x[4]);
3449 //if (TMath::Abs(x[3]) > 2.2) return 0;
3450 //if (TMath::Abs(x[2]) > 1.99) return 0;
3452 Double_t sy =0.1, sz =0.1;
3454 Double_t sy1=0.02+track->GetSigmaY2(), sz1=0.02+track->GetSigmaZ2();
3455 Double_t sy2=0.01+track->GetSigmaY2(), sz2=0.01+track->GetSigmaZ2();
3456 Double_t sy3=0.01+track->GetSigmaY2();
3458 Double_t f40=(F1(x2[0],x2[1]+sy,x1[0],x1[1],x0[0],x0[1])-x[4])/sy;
3459 Double_t f42=(F1(x2[0],x2[1],x1[0],x1[1]+sy,x0[0],x0[1])-x[4])/sy;
3460 Double_t f43=(F1(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]+sy)-x[4])/sy;
3461 Double_t f20=(F2(x2[0],x2[1]+sy,x1[0],x1[1],x0[0],x0[1])-x[2])/sy;
3462 Double_t f22=(F2(x2[0],x2[1],x1[0],x1[1]+sy,x0[0],x0[1])-x[2])/sy;
3463 Double_t f23=(F2(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]+sy)-x[2])/sy;
3465 Double_t f30=(F3(x2[0],x2[1]+sy,x0[0],x0[1],x2[2],x0[2])-x[3])/sy;
3466 Double_t f31=(F3(x2[0],x2[1],x0[0],x0[1],x2[2]+sz,x0[2])-x[3])/sz;
3467 Double_t f32=(F3(x2[0],x2[1],x0[0],x0[1]+sy,x2[2],x0[2])-x[3])/sy;
3468 Double_t f34=(F3(x2[0],x2[1],x0[0],x0[1],x2[2],x0[2]+sz)-x[3])/sz;
3473 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3474 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3475 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3476 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3477 c[13]=f30*sy1*f40+f32*sy2*f42;
3478 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3480 // Int_t row1 = fSectors->GetRowNumber(x2[0]);
3481 AliTPCseed *seed=new AliTPCseed(0, x, c, x2[0], sec2*fSectors->GetAlpha()+fSectors->GetAlphaShift());
3482 // Double_t y0,z0,y1,z1, y2,z2;
3483 //seed->GetProlongation(x0[0],y0,z0);
3484 // seed->GetProlongation(x1[0],y1,z1);
3485 //seed->GetProlongation(x2[0],y2,z2);
3487 seed->fLastPoint = pp2;
3488 seed->fFirstPoint = pp2;
3495 AliTPCseed *AliTPCtrackerMI::ReSeed(AliTPCseed *track, Float_t r0, Float_t r1, Float_t r2)
3499 //reseed using founded clusters
3501 // Find the number of clusters
3502 Int_t nclusters = 0;
3503 for (Int_t irow=0;irow<160;irow++){
3504 if (track->GetClusterIndex(irow)>0) nclusters++;
3508 ipos[0] = TMath::Max(int(r0*nclusters),0); // point 0 cluster
3509 ipos[1] = TMath::Min(int(r1*nclusters),nclusters-1); //
3510 ipos[2] = TMath::Min(int(r2*nclusters),nclusters-1); // last point
3514 Int_t row[3],sec[3]={0,0,0};
3516 // find track row position at given ratio of the length
3518 for (Int_t irow=0;irow<160;irow++){
3519 if (track->GetClusterIndex2(irow)<0) continue;
3521 for (Int_t ipoint=0;ipoint<3;ipoint++){
3522 if (index<=ipos[ipoint]) row[ipoint] = irow;
3526 //Get cluster and sector position
3527 for (Int_t ipoint=0;ipoint<3;ipoint++){
3528 Int_t clindex = track->GetClusterIndex2(row[ipoint]);
3529 AliTPCclusterMI * cl = GetClusterMI(clindex);
3532 // AliTPCclusterMI * cl = GetClusterMI(clindex);
3535 sec[ipoint] = ((clindex&0xff000000)>>24)%18;
3536 xyz[ipoint][0] = GetXrow(row[ipoint]);
3537 xyz[ipoint][1] = cl->GetY();
3538 xyz[ipoint][2] = cl->GetZ();
3542 // Calculate seed state vector and covariance matrix
3544 Double_t alpha, cs,sn, xx2,yy2;
3546 alpha = (sec[1]-sec[2])*fSectors->GetAlpha();
3547 cs = TMath::Cos(alpha);
3548 sn = TMath::Sin(alpha);
3549 xx2= xyz[1][0]*cs-xyz[1][1]*sn;
3550 yy2= xyz[1][0]*sn+xyz[1][1]*cs;
3554 alpha = (sec[0]-sec[2])*fSectors->GetAlpha();
3555 cs = TMath::Cos(alpha);
3556 sn = TMath::Sin(alpha);
3557 xx2= xyz[0][0]*cs-xyz[0][1]*sn;
3558 yy2= xyz[0][0]*sn+xyz[0][1]*cs;
3564 Double_t x[5],c[15];
3568 x[4]=F1(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]);
3569 x[2]=F2(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]);
3570 x[3]=F3n(xyz[2][0],xyz[2][1],xyz[0][0],xyz[0][1],xyz[2][2],xyz[0][2],x[4]);
3572 Double_t sy =0.1, sz =0.1;
3574 Double_t sy1=0.2, sz1=0.2;
3575 Double_t sy2=0.2, sz2=0.2;
3578 Double_t f40=(F1(xyz[2][0],xyz[2][1]+sy,xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1])-x[4])/sy;
3579 Double_t f42=(F1(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1]+sy,xyz[0][0],xyz[0][1])-x[4])/sy;
3580 Double_t f43=(F1(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]+sy)-x[4])/sy;
3581 Double_t f20=(F2(xyz[2][0],xyz[2][1]+sy,xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1])-x[2])/sy;
3582 Double_t f22=(F2(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1]+sy,xyz[0][0],xyz[0][1])-x[2])/sy;
3583 Double_t f23=(F2(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]+sy)-x[2])/sy;
3585 Double_t f30=(F3(xyz[2][0],xyz[2][1]+sy,xyz[0][0],xyz[0][1],xyz[2][2],xyz[0][2])-x[3])/sy;
3586 Double_t f31=(F3(xyz[2][0],xyz[2][1],xyz[0][0],xyz[0][1],xyz[2][2]+sz,xyz[0][2])-x[3])/sz;
3587 Double_t f32=(F3(xyz[2][0],xyz[2][1],xyz[0][0],xyz[0][1]+sy,xyz[2][2],xyz[0][2])-x[3])/sy;
3588 Double_t f34=(F3(xyz[2][0],xyz[2][1],xyz[0][0],xyz[0][1],xyz[2][2],xyz[0][2]+sz)-x[3])/sz;
3593 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3594 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3595 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3596 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3597 c[13]=f30*sy1*f40+f32*sy2*f42;
3598 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3600 // Int_t row1 = fSectors->GetRowNumber(xyz[2][0]);
3601 AliTPCseed *seed=new AliTPCseed(0, x, c, xyz[2][0], sec[2]*fSectors->GetAlpha()+fSectors->GetAlphaShift());
3602 seed->fLastPoint = row[2];
3603 seed->fFirstPoint = row[2];
3607 Int_t AliTPCtrackerMI::CheckKinkPoint(AliTPCseed*seed, Float_t th)
3612 for (Int_t i=0;i<12;i++) seed->fKinkPoint[i]=0;
3614 if (TMath::Abs(seed->GetC())>0.01) return 0;
3617 Float_t x[160], y[160], erry[160], z[160], errz[160];
3619 Float_t xt[160], yt[160], zt[160];
3624 Int_t middle = seed->GetNumberOfClusters()/2;
3627 // find central sector, get local cooordinates
3629 for (Int_t i=seed->fFirstPoint;i<=seed->fLastPoint;i++) {
3630 sec[i]= seed->GetClusterSector(i)%18;
3633 AliTPCclusterMI * cl = seed->fClusterPointer[i];
3634 // if (cl==0) cl = GetClusterMI(seed->GetClusterIndex2(i));
3641 if (i>i2) i2 = i; //last point with cluster
3642 if (i2<i1) i1 = i; //first point with cluster
3645 AliTPCTrackerPoint * point = seed->GetTrackPoint(i);
3647 yt[i] = point->GetY();
3648 zt[i] = point->GetZ();
3650 if (point->GetX()>0){
3651 erry[i] = point->GetErrY();
3652 errz[i] = point->GetErrZ();
3657 secm = sec[i]; //central sector
3658 padm = i; //middle point with cluster