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){
1558 t.fRelativeSector= (t.fRelativeSector+1) % fN;
1559 if (!t.Rotate(fSectors->GetAlpha()))
1561 } else if (y <-ymax) {
1562 t.fRelativeSector= (t.fRelativeSector-1+fN) % fN;
1563 if (!t.Rotate(-fSectors->GetAlpha()))
1566 if (!t.PropagateTo(x)) {
1569 t.GetProlongation(x,y,z);
1572 // update current shape info every 3 pad-row
1573 if ( (nr%6==0) || t.GetNumberOfClusters()<2 || (t.fCurrentSigmaY2<0.0001) ){
1574 // t.fCurrentSigmaY = GetSigmaY(&t);
1575 //t.fCurrentSigmaZ = GetSigmaZ(&t);
1579 AliTPCclusterMI *cl=0;
1584 const AliTPCRow &krow=GetRow(t.fRelativeSector,nr);
1585 if ( (t.GetSigmaY2()<0) || t.GetSigmaZ2()<0) return 0;
1587 Double_t roadz = 1.;
1590 if (TMath::Abs(TMath::Abs(y)-ymax)<krow.fDeadZone){
1592 t.SetClusterIndex2(row,-1);
1597 if (TMath::Abs(z)>(1.05*x+10)) t.SetClusterIndex2(row,-1);
1601 if ((cl==0)&&(krow)) {
1602 // cl = krow.FindNearest2(y+10,z,roady,roadz,index);
1603 cl = krow.FindNearest2(y,z,roady,roadz,index);
1605 if (cl) t.fCurrentClusterIndex1 = krow.GetIndex(index);
1609 t.fCurrentCluster = cl;
1610 // Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1612 t.SetClusterIndex2(row,index);
1613 t.fClusterPointer[row] = cl;
1621 Int_t AliTPCtrackerMI::UpdateClusters(AliTPCseed& t, Int_t nr) {
1622 //-----------------------------------------------------------------
1623 // This function tries to find a track prolongation to next pad row
1624 //-----------------------------------------------------------------
1625 t.fCurrentCluster = 0;
1626 t.fCurrentClusterIndex1 = 0;
1628 Double_t xt=t.GetX();
1629 Int_t row = GetRowNumber(xt)-1;
1630 Double_t ymax= GetMaxY(nr);
1632 if (row < nr) return 1; // don't prolongate if not information until now -
1633 if (TMath::Abs(t.GetSnp())>0.9 && t.GetNumberOfClusters()>40. && fIteration!=2) {
1635 return 0; // not prolongate strongly inclined tracks
1637 if (TMath::Abs(t.GetSnp())>0.95) {
1639 return 0; // not prolongate strongly inclined tracks
1642 Double_t x= GetXrow(nr);
1644 //t.PropagateTo(x+0.02);
1645 //t.PropagateTo(x+0.01);
1646 if (!t.PropagateTo(x)){
1653 if (TMath::Abs(y)>ymax){
1655 t.fRelativeSector= (t.fRelativeSector+1) % fN;
1656 if (!t.Rotate(fSectors->GetAlpha()))
1658 } else if (y <-ymax) {
1659 t.fRelativeSector= (t.fRelativeSector-1+fN) % fN;
1660 if (!t.Rotate(-fSectors->GetAlpha()))
1663 // if (!t.PropagateTo(x)){
1671 AliTPCRow &krow=GetRow(t.fRelativeSector,nr);
1673 if (TMath::Abs(TMath::Abs(y)-ymax)<krow.fDeadZone){
1675 t.SetClusterIndex2(nr,-1);
1680 if (TMath::Abs(t.GetZ())<(1.05*t.GetX()+10)) t.fNFoundable++;
1686 if ( (nr%6==0) || t.GetNumberOfClusters()<2){
1687 // t.fCurrentSigmaY = GetSigmaY(&t);
1688 //t.fCurrentSigmaZ = GetSigmaZ(&t);
1692 AliTPCclusterMI *cl=0;
1695 Double_t roady = 1.;
1696 Double_t roadz = 1.;
1700 index = t.GetClusterIndex2(nr);
1701 if ( (index>0) && (index&0x8000)==0){
1702 cl = t.fClusterPointer[nr];
1703 if ( (cl==0) && (index>0)) cl = GetClusterMI(index);
1704 t.fCurrentClusterIndex1 = index;
1706 t.fCurrentCluster = cl;
1713 //cl = krow.FindNearest2(y+10,z,roady,roadz,index);
1714 cl = krow.FindNearest2(y,z,roady,roadz,index);
1717 if (cl) t.fCurrentClusterIndex1 = krow.GetIndex(index);
1718 t.fCurrentCluster = cl;
1724 Int_t AliTPCtrackerMI::FollowToNextCluster(AliTPCseed & t, Int_t nr) {
1725 //-----------------------------------------------------------------
1726 // This function tries to find a track prolongation to next pad row
1727 //-----------------------------------------------------------------
1729 //update error according neighborhoud
1731 if (t.fCurrentCluster) {
1733 Int_t accept = AcceptCluster(&t,t.fCurrentCluster,1.);
1735 if (t.fCurrentCluster->IsUsed(10)){
1741 if (t.fNShared>0.7*t.GetNumberOfClusters()) {
1746 if (fIteration>0) accept = 0;
1747 if (accept<3) UpdateTrack(&t,accept);
1751 if ( ( (t.GetSigmaY2()+t.GetSigmaZ2())>0.16)&& t.GetNumberOfClusters()>18) t.fRemoval=10;
1752 if ( t.GetChi2()/t.GetNumberOfClusters()>6 &&t.GetNumberOfClusters()>18) t.fRemoval=10;
1754 if (( (t.fNFoundable*0.5 > t.GetNumberOfClusters()) || t.fNoCluster>15)) t.fRemoval=10;
1762 //_____________________________________________________________________________
1763 Int_t AliTPCtrackerMI::FollowProlongation(AliTPCseed& t, Int_t rf, Int_t step) {
1764 //-----------------------------------------------------------------
1765 // This function tries to find a track prolongation.
1766 //-----------------------------------------------------------------
1767 Double_t xt=t.GetX();
1769 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1770 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1771 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1773 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1775 Int_t first = GetRowNumber(xt)-1;
1776 for (Int_t nr= first; nr>=rf; nr-=step) {
1777 if (nr<fInnerSec->GetNRows())
1778 fSectors = fInnerSec;
1780 fSectors = fOuterSec;
1781 if (FollowToNext(t,nr)==0)
1782 if (!t.IsActive()) return 0;
1789 //_____________________________________________________________________________
1790 Int_t AliTPCtrackerMI::FollowProlongationFast(AliTPCseed& t, Int_t rf, Int_t step) {
1791 //-----------------------------------------------------------------
1792 // This function tries to find a track prolongation.
1793 //-----------------------------------------------------------------
1794 Double_t xt=t.GetX();
1796 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1797 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1798 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1799 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1801 for (Int_t nr=GetRowNumber(xt)-1; nr>=rf; nr-=step) {
1803 if (FollowToNextFast(t,nr)==0)
1804 if (!t.IsActive()) return 0;
1814 Int_t AliTPCtrackerMI::FollowBackProlongation(AliTPCseed& t, Int_t rf) {
1815 //-----------------------------------------------------------------
1816 // This function tries to find a track prolongation.
1817 //-----------------------------------------------------------------
1818 // Double_t xt=t.GetX();
1820 Double_t alpha=t.GetAlpha() - fSectors->GetAlphaShift();
1821 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
1822 if (alpha < 0. ) alpha += 2.*TMath::Pi();
1823 t.fRelativeSector = Int_t(alpha/fSectors->GetAlpha()+0.0001)%fN;
1826 first = t.fFirstPoint+3;
1828 if (first<0) first=0;
1829 for (Int_t nr=first+1; nr<=rf; nr++) {
1830 //if ( (t.GetSnp()<0.9))
1831 if (nr<fInnerSec->GetNRows())
1832 fSectors = fInnerSec;
1834 fSectors = fOuterSec;
1844 Float_t AliTPCtrackerMI::OverlapFactor(AliTPCseed * s1, AliTPCseed * s2, Int_t &sum1, Int_t & sum2)
1852 Float_t dz2 =(s1->GetZ() - s2->GetZ());
1855 Float_t dy2 =TMath::Abs((s1->GetY() - s2->GetY()));
1857 Float_t distance = TMath::Sqrt(dz2+dy2);
1858 if (distance>4.) return 0; // if there are far away - not overlap - to reduce combinatorics
1861 Int_t firstpoint = TMath::Min(s1->fFirstPoint,s2->fFirstPoint);
1862 Int_t lastpoint = TMath::Max(s1->fLastPoint,s2->fLastPoint);
1867 if (firstpoint>lastpoint) {
1868 firstpoint =lastpoint;
1873 for (Int_t i=firstpoint-1;i<lastpoint+1;i++){
1874 if (s1->GetClusterIndex2(i)>0) sum1++;
1875 if (s2->GetClusterIndex2(i)>0) sum2++;
1876 if (s1->GetClusterIndex2(i)==s2->GetClusterIndex2(i) && s1->GetClusterIndex2(i)>0) {
1880 if (sum<5) return 0;
1882 Float_t summin = TMath::Min(sum1+1,sum2+1);
1883 Float_t ratio = (sum+1)/Float_t(summin);
1887 void AliTPCtrackerMI::SignShared(AliTPCseed * s1, AliTPCseed * s2)
1891 if (TMath::Abs(s1->GetC()-s2->GetC())>0.004) return;
1892 if (TMath::Abs(s1->GetTgl()-s2->GetTgl())>0.6) return;
1894 Float_t dz2 =(s1->GetZ() - s2->GetZ());
1896 Float_t dy2 =(s1->GetY() - s2->GetY());
1898 Float_t distance = dz2+dy2;
1899 if (distance>325.) return ; // if there are far away - not overlap - to reduce combinatorics
1904 Int_t firstpoint = TMath::Max(s1->fFirstPoint,s2->fFirstPoint);
1905 Int_t lastpoint = TMath::Min(s1->fLastPoint,s2->fLastPoint);
1907 if (firstpoint>=lastpoint-5) return;;
1909 for (Int_t i=firstpoint;i<lastpoint;i++){
1910 // if ( (s1->GetClusterIndex2(i)&0xFFFF8FFF)==(s2->GetClusterIndex2(i)&0xFFFF8FFF) && s1->GetClusterIndex2(i)>0) {
1911 if ( (s1->GetClusterIndex2(i))==(s2->GetClusterIndex2(i)) && s1->GetClusterIndex2(i)>0) {
1918 for (Int_t i=firstpoint;i<lastpoint;i++){
1919 // if ( (s1->GetClusterIndex2(i)&0xFFFF8FFF)==(s2->GetClusterIndex2(i)&0xFFFF8FFF) && s1->GetClusterIndex2(i)>0) {
1920 if ( (s1->GetClusterIndex2(i))==(s2->GetClusterIndex2(i)) && s1->GetClusterIndex2(i)>0) {
1921 AliTPCTrackerPoint *p1 = s1->GetTrackPoint(i);
1922 AliTPCTrackerPoint *p2 = s2->GetTrackPoint(i);;
1923 if (s1->IsActive()&&s2->IsActive()){
1924 p1->fIsShared = kTRUE;
1925 p2->fIsShared = kTRUE;
1932 for (Int_t i=0;i<4;i++){
1933 if (s1->fOverlapLabels[3*i]==0){
1934 s1->fOverlapLabels[3*i] = s2->GetLabel();
1935 s1->fOverlapLabels[3*i+1] = sumshared;
1936 s1->fOverlapLabels[3*i+2] = s2->GetUniqueID();
1940 for (Int_t i=0;i<4;i++){
1941 if (s2->fOverlapLabels[3*i]==0){
1942 s2->fOverlapLabels[3*i] = s1->GetLabel();
1943 s2->fOverlapLabels[3*i+1] = sumshared;
1944 s2->fOverlapLabels[3*i+2] = s1->GetUniqueID();
1952 void AliTPCtrackerMI::SignShared(TObjArray * arr)
1955 //sort trackss according sectors
1957 for (Int_t i=0; i<arr->GetEntriesFast(); i++) {
1958 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1960 //if (pt) RotateToLocal(pt);
1964 arr->Sort(); // sorting according z
1965 arr->Expand(arr->GetEntries());
1968 Int_t nseed=arr->GetEntriesFast();
1969 for (Int_t i=0; i<nseed; i++) {
1970 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1972 for (Int_t j=0;j<=12;j++){
1973 pt->fOverlapLabels[j] =0;
1976 for (Int_t i=0; i<nseed; i++) {
1977 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
1979 if (pt->fRemoval>10) continue;
1980 for (Int_t j=i+1; j<nseed; j++){
1981 AliTPCseed *pt2=(AliTPCseed*)arr->UncheckedAt(j);
1983 if (pt2->fRemoval<=10) {
1984 if ( TMath::Abs(pt->fRelativeSector-pt2->fRelativeSector)>0) break;
1991 void AliTPCtrackerMI::RemoveDouble(TObjArray * arr, Float_t factor1, Float_t factor2, Int_t removalindex)
1994 //sort trackss according sectors
1997 printf("Number of tracks before double removal- %d\n",arr->GetEntries());
2000 for (Int_t i=0; i<arr->GetEntriesFast(); i++) {
2001 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2006 arr->Sort(); // sorting according z
2007 arr->Expand(arr->GetEntries());
2009 //reset overlap labels
2011 Int_t nseed=arr->GetEntriesFast();
2012 for (Int_t i=0; i<nseed; i++) {
2013 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2016 for (Int_t j=0;j<=12;j++){
2017 pt->fOverlapLabels[j] =0;
2021 //sign shared tracks
2022 for (Int_t i=0; i<nseed; i++) {
2023 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2025 if (pt->fRemoval>10) continue;
2026 Float_t deltac = pt->GetC()*0.1;
2027 for (Int_t j=i+1; j<nseed; j++){
2028 AliTPCseed *pt2=(AliTPCseed*)arr->UncheckedAt(j);
2030 if (pt2->fRemoval<=10) {
2031 if ( TMath::Abs(pt->fRelativeSector-pt2->fRelativeSector)>0) break;
2032 if (TMath::Abs(pt->GetC() -pt2->GetC())>deltac) continue;
2033 if (TMath::Abs(pt->GetTgl()-pt2->GetTgl())>0.05) continue;
2040 // remove highly shared tracks
2041 for (Int_t i=0; i<nseed; i++) {
2042 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2044 if (pt->fRemoval>10) continue;
2047 for (Int_t j=0;j<4;j++){
2048 sumshared = pt->fOverlapLabels[j*3+1];
2050 Float_t factor = factor1;
2051 if (pt->fRemoval>0) factor = factor2;
2052 if (sumshared/pt->GetNumberOfClusters()>factor){
2053 for (Int_t j=0;j<4;j++){
2054 if (pt->fOverlapLabels[3*j]==0) continue;
2055 if (pt->fOverlapLabels[3*j+1]<5) continue;
2056 if (pt->fRemoval==removalindex) continue;
2057 AliTPCseed * pt2 = (AliTPCseed*)arr->UncheckedAt(pt->fOverlapLabels[3*j+2]);
2059 if (pt2->GetSigma2C()<pt->GetSigma2C()){
2060 // pt->fRemoval = removalindex;
2061 delete arr->RemoveAt(i);
2069 printf("Number of tracks after double removal- %d\n",arr->GetEntries());
2078 void AliTPCtrackerMI::SortTracks(TObjArray * arr, Int_t mode) const
2081 //sort tracks in array according mode criteria
2082 Int_t nseed = arr->GetEntriesFast();
2083 for (Int_t i=0; i<nseed; i++) {
2084 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2094 void AliTPCtrackerMI::RemoveUsed(TObjArray * arr, Float_t factor1, Float_t factor2, Int_t removalindex)
2097 //Loop over all tracks and remove "overlaps"
2100 Int_t nseed = arr->GetEntriesFast();
2103 for (Int_t i=0; i<nseed; i++) {
2104 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2106 delete arr->RemoveAt(i);
2110 pt->fBSigned = kFALSE;
2114 nseed = arr->GetEntriesFast();
2121 for (Int_t i=0; i<nseed; i++) {
2122 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2126 Int_t found,foundable,shared;
2128 pt->GetClusterStatistic(0,160,found, foundable,shared,kFALSE);
2130 pt->GetClusterStatistic(0,160,found, foundable,shared,kTRUE);
2132 Double_t factor = factor2;
2133 if (pt->fBConstrain) factor = factor1;
2135 if ((Float_t(shared)/Float_t(found))>factor){
2136 pt->Desactivate(removalindex);
2141 for (Int_t i=0; i<160; i++) {
2142 Int_t index=pt->GetClusterIndex2(i);
2143 if (index<0 || index&0x8000 ) continue;
2144 AliTPCclusterMI *c= pt->fClusterPointer[i];
2146 // if (!c->IsUsed(10)) c->Use(10);
2147 //if (pt->IsActive())
2156 printf("\n*****\nNumber of good tracks after shared removal\t%d\n",fNtracks);
2159 void AliTPCtrackerMI::UnsignClusters()
2162 // loop over all clusters and unsign them
2165 for (Int_t sec=0;sec<fkNIS;sec++){
2166 for (Int_t row=0;row<fInnerSec->GetNRows();row++){
2167 AliTPCclusterMI *cl = fInnerSec[sec][row].fClusters1;
2168 for (Int_t icl =0;icl< fInnerSec[sec][row].fN1;icl++)
2169 // if (cl[icl].IsUsed(10))
2171 cl = fInnerSec[sec][row].fClusters2;
2172 for (Int_t icl =0;icl< fInnerSec[sec][row].fN2;icl++)
2173 //if (cl[icl].IsUsed(10))
2178 for (Int_t sec=0;sec<fkNOS;sec++){
2179 for (Int_t row=0;row<fOuterSec->GetNRows();row++){
2180 AliTPCclusterMI *cl = fOuterSec[sec][row].fClusters1;
2181 for (Int_t icl =0;icl< fOuterSec[sec][row].fN1;icl++)
2182 //if (cl[icl].IsUsed(10))
2184 cl = fOuterSec[sec][row].fClusters2;
2185 for (Int_t icl =0;icl< fOuterSec[sec][row].fN2;icl++)
2186 //if (cl[icl].IsUsed(10))
2195 void AliTPCtrackerMI::SignClusters(TObjArray * arr, Float_t fnumber, Float_t fdensity)
2198 //sign clusters to be "used"
2200 // snumber and sdensity sign number of sigmas - bellow mean value to be accepted
2201 // loop over "primaries"
2215 Int_t nseed = arr->GetEntriesFast();
2216 for (Int_t i=0; i<nseed; i++) {
2217 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2221 if (!(pt->IsActive())) continue;
2222 Float_t dens = pt->GetNumberOfClusters()/Float_t(pt->fNFoundable);
2223 if ( (dens>0.7) && (pt->GetNumberOfClusters()>70)){
2225 sumdens2+= dens*dens;
2226 sumn += pt->GetNumberOfClusters();
2227 sumn2 += pt->GetNumberOfClusters()*pt->GetNumberOfClusters();
2228 Float_t chi2 = pt->GetChi2()/pt->GetNumberOfClusters();
2231 sumchi2 +=chi2*chi2;
2236 Float_t mdensity = 0.9;
2237 Float_t meann = 130;
2238 Float_t meanchi = 1;
2239 Float_t sdensity = 0.1;
2240 Float_t smeann = 10;
2241 Float_t smeanchi =0.4;
2245 mdensity = sumdens/sum;
2247 meanchi = sumchi/sum;
2249 sdensity = sumdens2/sum-mdensity*mdensity;
2250 sdensity = TMath::Sqrt(sdensity);
2252 smeann = sumn2/sum-meann*meann;
2253 smeann = TMath::Sqrt(smeann);
2255 smeanchi = sumchi2/sum - meanchi*meanchi;
2256 smeanchi = TMath::Sqrt(smeanchi);
2260 //REMOVE SHORT DELTAS or tracks going out of sensitive volume of TPC
2262 for (Int_t i=0; i<nseed; i++) {
2263 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2267 if (pt->fBSigned) continue;
2268 if (pt->fBConstrain) continue;
2269 //if (!(pt->IsActive())) continue;
2271 Int_t found,foundable,shared;
2272 pt->GetClusterStatistic(0,160,found, foundable,shared);
2273 if (shared/float(found)>0.3) {
2274 if (shared/float(found)>0.9 ){
2275 //delete arr->RemoveAt(i);
2280 Bool_t isok =kFALSE;
2281 if ( (pt->fNShared/pt->GetNumberOfClusters()<0.5) &&pt->GetNumberOfClusters()>60)
2283 if ((TMath::Abs(1/pt->GetC())<100.) && (pt->fNShared/pt->GetNumberOfClusters()<0.7))
2285 if (TMath::Abs(pt->GetZ()/pt->GetX())>1.1)
2287 if ( (TMath::Abs(pt->GetSnp()>0.7) && pt->GetD(0,0)>60.))
2291 for (Int_t i=0; i<160; i++) {
2292 Int_t index=pt->GetClusterIndex2(i);
2293 if (index<0) continue;
2294 AliTPCclusterMI *c= pt->fClusterPointer[i];
2296 //if (!(c->IsUsed(10))) c->Use();
2303 Double_t maxchi = meanchi+2.*smeanchi;
2305 for (Int_t i=0; i<nseed; i++) {
2306 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2310 //if (!(pt->IsActive())) continue;
2311 if (pt->fBSigned) continue;
2312 Double_t chi = pt->GetChi2()/pt->GetNumberOfClusters();
2313 if (chi>maxchi) continue;
2316 Float_t dens = pt->GetNumberOfClusters()/Float_t(pt->fNFoundable);
2318 //sign only tracks with enoug big density at the beginning
2320 if ((pt->GetDensityFirst(40)<0.75) && pt->GetNumberOfClusters()<meann) continue;
2323 Double_t mindens = TMath::Max(double(mdensity-sdensity*fdensity*bfactor),0.65);
2324 Double_t minn = TMath::Max(Int_t(meann-fnumber*smeann*bfactor),50);
2326 // if (pt->fBConstrain) mindens = TMath::Max(mdensity-sdensity*fdensity*bfactor,0.65);
2327 if ( (pt->fRemoval==10) && (pt->GetSnp()>0.8)&&(dens>mindens))
2330 if ((dens>mindens && pt->GetNumberOfClusters()>minn) && chi<maxchi ){
2331 //Int_t noc=pt->GetNumberOfClusters();
2332 pt->fBSigned = kTRUE;
2333 for (Int_t i=0; i<160; i++) {
2335 Int_t index=pt->GetClusterIndex2(i);
2336 if (index<0) continue;
2337 AliTPCclusterMI *c= pt->fClusterPointer[i];
2339 // if (!(c->IsUsed(10))) c->Use();
2344 // gLastCheck = nseed;
2352 void AliTPCtrackerMI::StopNotActive(TObjArray * arr, Int_t row0, Float_t th0, Float_t th1, Float_t th2) const
2354 // stop not active tracks
2355 // take th1 as threshold for number of founded to number of foundable on last 10 active rows
2356 // take th2 as threshold for number of founded to number of foundable on last 20 active rows
2357 Int_t nseed = arr->GetEntriesFast();
2359 for (Int_t i=0; i<nseed; i++) {
2360 AliTPCseed *pt=(AliTPCseed*)arr->UncheckedAt(i);
2364 if (!(pt->IsActive())) continue;
2365 StopNotActive(pt,row0,th0, th1,th2);
2371 void AliTPCtrackerMI::StopNotActive(AliTPCseed * seed, Int_t row0, Float_t th0, Float_t th1,
2374 // stop not active tracks
2375 // take th1 as threshold for number of founded to number of foundable on last 10 active rows
2376 // take th2 as threshold for number of founded to number of foundable on last 20 active rows
2379 Int_t foundable = 0;
2380 Int_t maxindex = seed->fLastPoint; //last foundable row
2381 if (seed->fNFoundable*th0 > seed->GetNumberOfClusters()) {
2382 seed->Desactivate(10) ;
2386 for (Int_t i=row0; i<maxindex; i++){
2387 Int_t index = seed->GetClusterIndex2(i);
2388 if (index!=-1) foundable++;
2390 if (foundable<=30) sumgood1++;
2391 if (foundable<=50) {
2398 if (foundable>=30.){
2399 if (sumgood1<(th1*30.)) seed->Desactivate(10);
2402 if (sumgood2<(th2*50.)) seed->Desactivate(10);
2406 Int_t AliTPCtrackerMI::RefitInward(AliESD *event)
2409 // back propagation of ESD tracks
2415 //PrepareForProlongation(fSeeds,1);
2416 PropagateForward2(fSeeds);
2417 Int_t nseed = fSeeds->GetEntriesFast();
2418 for (Int_t i=0;i<nseed;i++){
2419 AliTPCseed * seed = (AliTPCseed*) fSeeds->UncheckedAt(i);
2420 seed->PropagateTo(fParam->GetInnerRadiusLow());
2421 AliESDtrack *esd=event->GetTrack(i);
2422 seed->CookdEdx(0.02,0.6);
2423 CookLabel(seed,0.1); //For comparison only
2424 if (seed->GetNumberOfClusters()>20){
2425 esd->UpdateTrackParams(seed,AliESDtrack::kTPCrefit);
2428 //printf("problem\n");
2437 Int_t AliTPCtrackerMI::PropagateBack(AliESD *event)
2440 // back propagation of ESD tracks
2446 PropagateBack(fSeeds);
2447 Int_t nseed = fSeeds->GetEntriesFast();
2448 for (Int_t i=0;i<nseed;i++){
2449 AliTPCseed * seed = (AliTPCseed*) fSeeds->UncheckedAt(i);
2450 AliESDtrack *esd=event->GetTrack(i);
2451 seed->CookdEdx(0.02,0.6);
2452 CookLabel(seed,0.1); //For comparison only
2453 esd->UpdateTrackParams(seed,AliESDtrack::kTPCout);
2461 void AliTPCtrackerMI::DeleteSeeds()
2465 Int_t nseed = fSeeds->GetEntriesFast();
2466 for (Int_t i=0;i<nseed;i++){
2467 AliTPCseed * seed = (AliTPCseed*)fSeeds->At(i);
2468 if (seed) delete fSeeds->RemoveAt(i);
2474 void AliTPCtrackerMI::ReadSeeds(AliESD *event, Int_t direction)
2477 //read seeds from the event
2479 Int_t nentr=event->GetNumberOfTracks();
2480 Info("PropagateBack", "Number of ESD tracks: %d\n", nentr);
2484 fSeeds = new TObjArray;
2488 for (Int_t i=0; i<nentr; i++) {
2489 AliESDtrack *esd=event->GetTrack(i);
2490 ULong_t status=esd->GetStatus();
2491 AliTPCtrack t(*esd);
2492 AliTPCseed *seed = new AliTPCseed(t,t.GetAlpha());
2493 if ((status==AliESDtrack::kTPCin)&&(direction==1)) seed->ResetCovariance();
2494 if ( direction ==2 &&(status & AliESDtrack::kTRDrefit) == 0 ) seed->ResetCovariance();
2498 // rotate to the local coordinate system
2500 fSectors=fInnerSec; fN=fkNIS;
2502 Double_t alpha=seed->GetAlpha() - fSectors->GetAlphaShift();
2503 if (alpha > 2.*TMath::Pi()) alpha -= 2.*TMath::Pi();
2504 if (alpha < 0. ) alpha += 2.*TMath::Pi();
2505 Int_t ns=Int_t(alpha/fSectors->GetAlpha())%fN;
2506 alpha =ns*fSectors->GetAlpha() + fSectors->GetAlphaShift();
2507 alpha-=seed->GetAlpha();
2508 if (!seed->Rotate(alpha)) continue;
2511 //seed->PropagateTo(fSectors->GetX(0));
2513 // Int_t index = esd->GetTPCindex();
2514 //AliTPCseed * seed2= (AliTPCseed*)fSeeds->At(index);
2515 //if (direction==2){
2516 // AliTPCseed * seed2 = ReSeed(seed,0.,0.5,1.);
2523 fSeeds->AddLast(seed);
2529 //_____________________________________________________________________________
2530 void AliTPCtrackerMI::MakeSeeds3(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t cuts[4],
2531 Float_t deltay, Int_t ddsec) {
2532 //-----------------------------------------------------------------
2533 // This function creates track seeds.
2534 // SEEDING WITH VERTEX CONSTRAIN
2535 //-----------------------------------------------------------------
2536 // cuts[0] - fP4 cut
2537 // cuts[1] - tan(phi) cut
2538 // cuts[2] - zvertex cut
2539 // cuts[3] - fP3 cut
2547 Double_t x[5], c[15];
2548 // Int_t di = i1-i2;
2550 AliTPCseed * seed = new AliTPCseed;
2551 Double_t alpha=fSectors->GetAlpha(), shift=fSectors->GetAlphaShift();
2552 Double_t cs=cos(alpha), sn=sin(alpha);
2554 // Double_t x1 =fOuterSec->GetX(i1);
2555 //Double_t xx2=fOuterSec->GetX(i2);
2557 Double_t x1 =GetXrow(i1);
2558 Double_t xx2=GetXrow(i2);
2560 Double_t x3=GetX(), y3=GetY(), z3=GetZ();
2562 Int_t imiddle = (i2+i1)/2; //middle pad row index
2563 Double_t xm = GetXrow(imiddle); // radius of middle pad-row
2564 const AliTPCRow& krm=GetRow(sec,imiddle); //middle pad -row
2568 const AliTPCRow& kr1=GetRow(ns,i1);
2569 Double_t ymax = GetMaxY(i1)-kr1.fDeadZone-1.5;
2570 Double_t ymaxm = GetMaxY(imiddle)-kr1.fDeadZone-1.5;
2573 // change cut on curvature if it can't reach this layer
2574 // maximal curvature set to reach it
2575 Double_t dvertexmax = TMath::Sqrt((x1-x3)*(x1-x3)+(ymax+5-y3)*(ymax+5-y3));
2576 if (dvertexmax*0.5*cuts[0]>0.85){
2577 cuts[0] = 0.85/(dvertexmax*0.5+1.);
2579 Double_t r2min = 1/(cuts[0]*cuts[0]); //minimal square of radius given by cut
2582 if (deltay>0) ddsec = 0;
2583 // loop over clusters
2584 for (Int_t is=0; is < kr1; is++) {
2586 if (kr1[is]->IsUsed(10)) continue;
2587 Double_t y1=kr1[is]->GetY(), z1=kr1[is]->GetZ();
2588 //if (TMath::Abs(y1)>ymax) continue;
2590 if (deltay>0 && TMath::Abs(ymax-TMath::Abs(y1))> deltay ) continue; // seed only at the edge
2592 // find possible directions
2593 Float_t anglez = (z1-z3)/(x1-x3);
2594 Float_t extraz = z1 - anglez*(x1-xx2); // extrapolated z
2597 //find rotation angles relative to line given by vertex and point 1
2598 Double_t dvertex2 = (x1-x3)*(x1-x3)+(y1-y3)*(y1-y3);
2599 Double_t dvertex = TMath::Sqrt(dvertex2);
2600 Double_t angle13 = TMath::ATan((y1-y3)/(x1-x3));
2601 Double_t cs13 = cos(-angle13), sn13 = sin(-angle13);
2604 // loop over 2 sectors
2610 Double_t dddz1=0; // direction of delta inclination in z axis
2617 for (Int_t dsec = dsec1; dsec<=dsec2;dsec++){
2618 Int_t sec2 = sec + dsec;
2620 // AliTPCRow& kr2 = fOuterSec[(sec2+fkNOS)%fkNOS][i2];
2621 //AliTPCRow& kr2m = fOuterSec[(sec2+fkNOS)%fkNOS][imiddle];
2622 AliTPCRow& kr2 = GetRow((sec2+fkNOS)%fkNOS,i2);
2623 AliTPCRow& kr2m = GetRow((sec2+fkNOS)%fkNOS,imiddle);
2624 Int_t index1 = TMath::Max(kr2.Find(extraz-0.6-dddz1*TMath::Abs(z1)*0.05)-1,0);
2625 Int_t index2 = TMath::Min(kr2.Find(extraz+0.6+dddz2*TMath::Abs(z1)*0.05)+1,kr2);
2627 // rotation angles to p1-p3
2628 Double_t cs13r = cos(-angle13+dsec*alpha)/dvertex, sn13r = sin(-angle13+dsec*alpha)/dvertex;
2629 Double_t x2, y2, z2;
2631 // Double_t dymax = maxangle*TMath::Abs(x1-xx2);
2634 Double_t dxx0 = (xx2-x3)*cs13r;
2635 Double_t dyy0 = (xx2-x3)*sn13r;
2636 for (Int_t js=index1; js < index2; js++) {
2637 const AliTPCclusterMI *kcl = kr2[js];
2638 if (kcl->IsUsed(10)) continue;
2640 //calcutate parameters
2642 Double_t yy0 = dyy0 +(kcl->GetY()-y3)*cs13r;
2644 if (TMath::Abs(yy0)<0.000001) continue;
2645 Double_t xx0 = dxx0 -(kcl->GetY()-y3)*sn13r;
2646 Double_t y0 = 0.5*(xx0*xx0+yy0*yy0-xx0)/yy0;
2647 Double_t r02 = (0.25+y0*y0)*dvertex2;
2648 //curvature (radius) cut
2649 if (r02<r2min) continue;
2653 Double_t c0 = 1/TMath::Sqrt(r02);
2657 //Double_t dfi0 = 2.*TMath::ASin(dvertex*c0*0.5);
2658 //Double_t dfi1 = 2.*TMath::ASin(TMath::Sqrt(yy0*yy0+(1-xx0)*(1-xx0))*dvertex*c0*0.5);
2659 Double_t dfi0 = 2.*AliTPCFastMath::FastAsin(dvertex*c0*0.5);
2660 Double_t dfi1 = 2.*AliTPCFastMath::FastAsin(TMath::Sqrt(yy0*yy0+(1-xx0)*(1-xx0))*dvertex*c0*0.5);
2663 Double_t z0 = kcl->GetZ();
2664 Double_t zzzz2 = z1-(z1-z3)*dfi1/dfi0;
2665 if (TMath::Abs(zzzz2-z0)>0.5) continue;
2668 Double_t dip = (z1-z0)*c0/dfi1;
2669 Double_t x0 = (0.5*cs13+y0*sn13)*dvertex*c0;
2680 x2= xx2*cs-y2*sn*dsec;
2681 y2=+xx2*sn*dsec+y2*cs;
2691 // do we have cluster at the middle ?
2693 GetProlongation(x1,xm,x,ym,zm);
2695 AliTPCclusterMI * cm=0;
2696 if (TMath::Abs(ym)-ymaxm<0){
2697 cm = krm.FindNearest2(ym,zm,1.0,0.6,dummy);
2698 if ((!cm) || (cm->IsUsed(10))) {
2703 // rotate y1 to system 0
2704 // get state vector in rotated system
2705 Double_t yr1 = (-0.5*sn13+y0*cs13)*dvertex*c0;
2706 Double_t xr2 = x0*cs+yr1*sn*dsec;
2707 Double_t xr[5]={kcl->GetY(),kcl->GetZ(), xr2, dip, c0};
2709 GetProlongation(xx2,xm,xr,ym,zm);
2710 if (TMath::Abs(ym)-ymaxm<0){
2711 cm = kr2m.FindNearest2(ym,zm,1.0,0.6,dummy);
2712 if ((!cm) || (cm->IsUsed(10))) {
2722 dym = ym - cm->GetY();
2723 dzm = zm - cm->GetZ();
2730 Double_t sy1=kr1[is]->GetSigmaY2()*2., sz1=kr1[is]->GetSigmaZ2()*2.;
2731 Double_t sy2=kcl->GetSigmaY2()*2., sz2=kcl->GetSigmaZ2()*2.;
2732 //Double_t sy3=400*3./12., sy=0.1, sz=0.1;
2733 Double_t sy3=25000*x[4]*x[4]+0.1, sy=0.1, sz=0.1;
2734 //Double_t sy3=25000*x[4]*x[4]*60+0.5, sy=0.1, sz=0.1;
2736 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
2737 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
2738 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
2739 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
2740 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
2741 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
2743 Double_t f30=(F3(x1,y1+sy,x2,y2,z1,z2)-x[3])/sy;
2744 Double_t f31=(F3(x1,y1,x2,y2,z1+sz,z2)-x[3])/sz;
2745 Double_t f32=(F3(x1,y1,x2,y2+sy,z1,z2)-x[3])/sy;
2746 Double_t f34=(F3(x1,y1,x2,y2,z1,z2+sz)-x[3])/sz;
2750 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
2751 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
2752 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
2753 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
2754 c[13]=f30*sy1*f40+f32*sy2*f42;
2755 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
2757 // if (!BuildSeed(kr1[is],kcl,0,x1,x2,x3,x,c)) continue;
2759 UInt_t index=kr1.GetIndex(is);
2760 AliTPCseed *track=new(seed) AliTPCseed(index, x, c, x1, ns*alpha+shift);
2762 track->fIsSeeding = kTRUE;
2769 FollowProlongation(*track, (i1+i2)/2,1);
2770 Int_t foundable,found,shared;
2771 track->GetClusterStatistic((i1+i2)/2,i1, found, foundable, shared, kTRUE);
2772 if ((found<0.55*foundable) || shared>0.5*found || (track->GetSigmaY2()+track->GetSigmaZ2())>0.5){
2774 seed->~AliTPCseed();
2780 FollowProlongation(*track, i2,1);
2784 track->fBConstrain =1;
2785 // track->fLastPoint = i1+fInnerSec->GetNRows(); // first cluster in track position
2786 track->fLastPoint = i1; // first cluster in track position
2787 track->fFirstPoint = track->fLastPoint;
2789 if (track->GetNumberOfClusters()<(i1-i2)*0.5 ||
2790 track->GetNumberOfClusters() < track->fNFoundable*0.6 ||
2791 track->fNShared>0.4*track->GetNumberOfClusters() ) {
2793 seed->~AliTPCseed();
2797 // Z VERTEX CONDITION
2799 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2800 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2801 if (TMath::Abs(zv-z3)>cuts[2]) {
2802 FollowProlongation(*track, TMath::Max(i2-20,0));
2803 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2804 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2805 if (TMath::Abs(zv-z3)>cuts[2]){
2806 FollowProlongation(*track, TMath::Max(i2-40,0));
2807 zv = track->GetZ()+track->GetTgl()/track->GetC()*
2808 ( asin(-track->GetEta()) - asin(track->GetX()*track->GetC()-track->GetEta()));
2809 if (TMath::Abs(zv-z3)>cuts[2] &&(track->GetNumberOfClusters() > track->fNFoundable*0.7)){
2810 // make seed without constrain
2811 AliTPCseed * track2 = MakeSeed(track,0.2,0.5,1.);
2812 FollowProlongation(*track2, i2,1);
2813 track2->fBConstrain = kFALSE;
2814 track2->fSeedType = 1;
2815 arr->AddLast(track2);
2817 seed->~AliTPCseed();
2822 seed->~AliTPCseed();
2829 track->fSeedType =0;
2830 arr->AddLast(track);
2831 seed = new AliTPCseed;
2833 // don't consider other combinations
2834 if (track->GetNumberOfClusters() > track->fNFoundable*0.8)
2840 // printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin,nout1,nout2);
2846 void AliTPCtrackerMI::MakeSeeds5(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t cuts[4],
2851 //-----------------------------------------------------------------
2852 // This function creates track seeds.
2853 //-----------------------------------------------------------------
2854 // cuts[0] - fP4 cut
2855 // cuts[1] - tan(phi) cut
2856 // cuts[2] - zvertex cut
2857 // cuts[3] - fP3 cut
2867 Double_t x[5], c[15];
2869 // make temporary seed
2870 AliTPCseed * seed = new AliTPCseed;
2871 Double_t alpha=fOuterSec->GetAlpha(), shift=fOuterSec->GetAlphaShift();
2872 // Double_t cs=cos(alpha), sn=sin(alpha);
2877 Double_t x1 = GetXrow(i1-1);
2878 const AliTPCRow& kr1=GetRow(sec,i1-1);
2879 Double_t y1max = GetMaxY(i1-1)-kr1.fDeadZone-1.5;
2881 Double_t x1p = GetXrow(i1);
2882 const AliTPCRow& kr1p=GetRow(sec,i1);
2884 Double_t x1m = GetXrow(i1-2);
2885 const AliTPCRow& kr1m=GetRow(sec,i1-2);
2888 //last 3 padrow for seeding
2889 AliTPCRow& kr3 = GetRow((sec+fkNOS)%fkNOS,i1-7);
2890 Double_t x3 = GetXrow(i1-7);
2891 // Double_t y3max= GetMaxY(i1-7)-kr3.fDeadZone-1.5;
2893 AliTPCRow& kr3p = GetRow((sec+fkNOS)%fkNOS,i1-6);
2894 Double_t x3p = GetXrow(i1-6);
2896 AliTPCRow& kr3m = GetRow((sec+fkNOS)%fkNOS,i1-8);
2897 Double_t x3m = GetXrow(i1-8);
2902 Int_t im = i1-4; //middle pad row index
2903 Double_t xm = GetXrow(im); // radius of middle pad-row
2904 const AliTPCRow& krm=GetRow(sec,im); //middle pad -row
2905 // Double_t ymmax = GetMaxY(im)-kr1.fDeadZone-1.5;
2908 Double_t deltax = x1-x3;
2909 Double_t dymax = deltax*cuts[1];
2910 Double_t dzmax = deltax*cuts[3];
2912 // loop over clusters
2913 for (Int_t is=0; is < kr1; is++) {
2915 if (kr1[is]->IsUsed(10)) continue;
2916 Double_t y1=kr1[is]->GetY(), z1=kr1[is]->GetZ();
2918 if (deltay>0 && TMath::Abs(y1max-TMath::Abs(y1))> deltay ) continue; // seed only at the edge
2920 Int_t index1 = TMath::Max(kr3.Find(z1-dzmax)-1,0);
2921 Int_t index2 = TMath::Min(kr3.Find(z1+dzmax)+1,kr3);
2927 for (Int_t js=index1; js < index2; js++) {
2928 const AliTPCclusterMI *kcl = kr3[js];
2929 if (kcl->IsUsed(10)) continue;
2931 // apply angular cuts
2932 if (TMath::Abs(y1-y3)>dymax) continue;
2935 if (TMath::Abs(z1-z3)>dzmax) continue;
2937 Double_t angley = (y1-y3)/(x1-x3);
2938 Double_t anglez = (z1-z3)/(x1-x3);
2940 Double_t erry = TMath::Abs(angley)*(x1-x1m)*0.5+0.5;
2941 Double_t errz = TMath::Abs(anglez)*(x1-x1m)*0.5+0.5;
2943 Double_t yyym = angley*(xm-x1)+y1;
2944 Double_t zzzm = anglez*(xm-x1)+z1;
2946 const AliTPCclusterMI *kcm = krm.FindNearest2(yyym,zzzm,erry,errz,index);
2948 if (kcm->IsUsed(10)) continue;
2950 erry = TMath::Abs(angley)*(x1-x1m)*0.4+0.5;
2951 errz = TMath::Abs(anglez)*(x1-x1m)*0.4+0.5;
2958 // look around first
2959 const AliTPCclusterMI *kc1m = kr1m.FindNearest2(angley*(x1m-x1)+y1,
2965 if (kc1m->IsUsed(10)) used++;
2967 const AliTPCclusterMI *kc1p = kr1p.FindNearest2(angley*(x1p-x1)+y1,
2973 if (kc1p->IsUsed(10)) used++;
2975 if (used>1) continue;
2976 if (found<1) continue;
2980 const AliTPCclusterMI *kc3m = kr3m.FindNearest2(angley*(x3m-x3)+y3,
2986 if (kc3m->IsUsed(10)) used++;
2990 const AliTPCclusterMI *kc3p = kr3p.FindNearest2(angley*(x3p-x3)+y3,
2996 if (kc3p->IsUsed(10)) used++;
3000 if (used>1) continue;
3001 if (found<3) continue;
3011 x[4]=F1(x1,y1,x2,y2,x3,y3);
3012 //if (TMath::Abs(x[4]) >= cuts[0]) continue;
3015 x[2]=F2(x1,y1,x2,y2,x3,y3);
3018 x[3]=F3n(x1,y1,x2,y2,z1,z2,x[4]);
3019 //if (TMath::Abs(x[3]) > cuts[3]) continue;
3023 Double_t sy1=0.1, sz1=0.1;
3024 Double_t sy2=0.1, sz2=0.1;
3025 Double_t sy3=0.1, sy=0.1, sz=0.1;
3027 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
3028 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
3029 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
3030 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
3031 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
3032 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
3034 Double_t f30=(F3(x1,y1+sy,x2,y2,z1,z2)-x[3])/sy;
3035 Double_t f31=(F3(x1,y1,x2,y2,z1+sz,z2)-x[3])/sz;
3036 Double_t f32=(F3(x1,y1,x2,y2+sy,z1,z2)-x[3])/sy;
3037 Double_t f34=(F3(x1,y1,x2,y2,z1,z2+sz)-x[3])/sz;
3041 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3042 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3043 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3044 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3045 c[13]=f30*sy1*f40+f32*sy2*f42;
3046 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3048 // if (!BuildSeed(kr1[is],kcl,0,x1,x2,x3,x,c)) continue;
3050 UInt_t index=kr1.GetIndex(is);
3051 AliTPCseed *track=new(seed) AliTPCseed(index, x, c, x1, sec*alpha+shift);
3053 track->fIsSeeding = kTRUE;
3056 FollowProlongation(*track, i1-7,1);
3057 if (track->GetNumberOfClusters() < track->fNFoundable*0.75 ||
3058 track->fNShared>0.6*track->GetNumberOfClusters() || ( track->GetSigmaY2()+ track->GetSigmaZ2())>0.6){
3060 seed->~AliTPCseed();
3066 FollowProlongation(*track, i2,1);
3067 track->fBConstrain =0;
3068 track->fLastPoint = i1+fInnerSec->GetNRows(); // first cluster in track position
3069 track->fFirstPoint = track->fLastPoint;
3071 if (track->GetNumberOfClusters()<(i1-i2)*0.5 ||
3072 track->GetNumberOfClusters()<track->fNFoundable*0.7 ||
3073 track->fNShared>2. || track->GetChi2()/track->GetNumberOfClusters()>6 || ( track->GetSigmaY2()+ track->GetSigmaZ2())>0.5 ) {
3075 seed->~AliTPCseed();
3080 FollowProlongation(*track, TMath::Max(i2-10,0),1);
3081 AliTPCseed * track2 = MakeSeed(track,0.2,0.5,0.9);
3082 FollowProlongation(*track2, i2,1);
3083 track2->fBConstrain = kFALSE;
3084 track2->fSeedType = 4;
3085 arr->AddLast(track2);
3087 seed->~AliTPCseed();
3091 //arr->AddLast(track);
3092 //seed = new AliTPCseed;
3098 // printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin,nout1,nout2,nout3);
3104 //_____________________________________________________________________________
3105 void AliTPCtrackerMI::MakeSeeds2(TObjArray * arr, Int_t sec, Int_t i1, Int_t i2, Float_t */*cuts[4]*/,
3106 Float_t deltay, Bool_t /*bconstrain*/) {
3107 //-----------------------------------------------------------------
3108 // This function creates track seeds - without vertex constraint
3109 //-----------------------------------------------------------------
3110 // cuts[0] - fP4 cut - not applied
3111 // cuts[1] - tan(phi) cut
3112 // cuts[2] - zvertex cut - not applied
3113 // cuts[3] - fP3 cut
3123 Double_t alpha=fOuterSec->GetAlpha(), shift=fOuterSec->GetAlphaShift();
3124 // Double_t cs=cos(alpha), sn=sin(alpha);
3125 Int_t row0 = (i1+i2)/2;
3126 Int_t drow = (i1-i2)/2;
3127 const AliTPCRow& kr0=fSectors[sec][row0];
3130 AliTPCpolyTrack polytrack;
3131 Int_t nclusters=fSectors[sec][row0];
3132 AliTPCseed * seed = new AliTPCseed;
3137 for (Int_t is=0; is < nclusters; is++) { //LOOP over clusters
3139 Int_t nfoundable =0;
3140 for (Int_t iter =1; iter<2; iter++){ //iterations
3141 const AliTPCRow& krm=fSectors[sec][row0-iter];
3142 const AliTPCRow& krp=fSectors[sec][row0+iter];
3143 const AliTPCclusterMI * cl= kr0[is];
3145 if (cl->IsUsed(10)) {
3151 Double_t x = kr0.GetX();
3152 // Initialization of the polytrack
3157 Double_t y0= cl->GetY();
3158 Double_t z0= cl->GetZ();
3162 Double_t ymax = fSectors->GetMaxY(row0)-kr0.fDeadZone-1.5;
3163 if (deltay>0 && TMath::Abs(ymax-TMath::Abs(y0))> deltay ) continue; // seed only at the edge
3165 erry = (0.5)*cl->GetSigmaY2()/TMath::Sqrt(cl->GetQ())*6;
3166 errz = (0.5)*cl->GetSigmaZ2()/TMath::Sqrt(cl->GetQ())*6;
3167 polytrack.AddPoint(x,y0,z0,erry, errz);
3170 if (cl->IsUsed(10)) sumused++;
3173 Float_t roady = (5*TMath::Sqrt(cl->GetSigmaY2()+0.2)+1.)*iter;
3174 Float_t roadz = (5*TMath::Sqrt(cl->GetSigmaZ2()+0.2)+1.)*iter;
3177 AliTPCclusterMI * cl1 = krm.FindNearest(y0,z0,roady,roadz);
3178 if (cl1 && TMath::Abs(ymax-TMath::Abs(y0))) {
3179 erry = (0.5)*cl1->GetSigmaY2()/TMath::Sqrt(cl1->GetQ())*3;
3180 errz = (0.5)*cl1->GetSigmaZ2()/TMath::Sqrt(cl1->GetQ())*3;
3181 if (cl1->IsUsed(10)) sumused++;
3182 polytrack.AddPoint(x,cl1->GetY(),cl1->GetZ(),erry,errz);
3186 AliTPCclusterMI * cl2 = krp.FindNearest(y0,z0,roady,roadz);
3188 erry = (0.5)*cl2->GetSigmaY2()/TMath::Sqrt(cl2->GetQ())*3;
3189 errz = (0.5)*cl2->GetSigmaZ2()/TMath::Sqrt(cl2->GetQ())*3;
3190 if (cl2->IsUsed(10)) sumused++;
3191 polytrack.AddPoint(x,cl2->GetY(),cl2->GetZ(),erry,errz);
3194 if (sumused>0) continue;
3196 polytrack.UpdateParameters();
3202 nfoundable = polytrack.GetN();
3203 nfound = nfoundable;
3205 for (Int_t ddrow = iter+1; ddrow<drow;ddrow++){
3206 Float_t maxdist = 0.8*(1.+3./(ddrow));
3207 for (Int_t delta = -1;delta<=1;delta+=2){
3208 Int_t row = row0+ddrow*delta;
3209 kr = &(fSectors[sec][row]);
3210 Double_t xn = kr->GetX();
3211 Double_t ymax = fSectors->GetMaxY(row)-kr->fDeadZone-1.5;
3212 polytrack.GetFitPoint(xn,yn,zn);
3213 if (TMath::Abs(yn)>ymax) continue;
3215 AliTPCclusterMI * cln = kr->FindNearest(yn,zn,roady,roadz);
3217 Float_t dist = TMath::Sqrt( (yn-cln->GetY())*(yn-cln->GetY())+(zn-cln->GetZ())*(zn-cln->GetZ()));
3220 erry = (dist+0.3)*cln->GetSigmaY2()/TMath::Sqrt(cln->GetQ())*(1.+1./(ddrow));
3221 errz = (dist+0.3)*cln->GetSigmaZ2()/TMath::Sqrt(cln->GetQ())*(1.+1./(ddrow));
3222 if (cln->IsUsed(10)) {
3223 // printf("used\n");
3231 polytrack.AddPoint(xn,cln->GetY(),cln->GetZ(),erry, errz);
3236 if ( (sumused>3) || (sumused>0.5*nfound) || (nfound<0.6*nfoundable)) break;
3237 polytrack.UpdateParameters();
3240 if ( (sumused>3) || (sumused>0.5*nfound)) {
3241 //printf("sumused %d\n",sumused);
3246 polytrack.GetFitDerivation(kr0.GetX(),dy,dz);
3247 AliTPCpolyTrack track2;
3249 polytrack.Refit(track2,0.5+TMath::Abs(dy)*0.3,0.4+TMath::Abs(dz)*0.3);
3250 if (track2.GetN()<0.5*nfoundable) continue;
3253 if ((nfound>0.6*nfoundable) &&( nfoundable>0.4*(i1-i2))) {
3255 // test seed with and without constrain
3256 for (Int_t constrain=0; constrain<=0;constrain++){
3257 // add polytrack candidate
3259 Double_t x[5], c[15];
3260 Double_t x1,x2,x3,y1,y2,y3,z1,z2,z3;
3261 track2.GetBoundaries(x3,x1);
3263 track2.GetFitPoint(x1,y1,z1);
3264 track2.GetFitPoint(x2,y2,z2);
3265 track2.GetFitPoint(x3,y3,z3);
3267 //is track pointing to the vertex ?
3270 polytrack.GetFitPoint(x0,y0,z0);
3283 x[4]=F1(x1,y1,x2,y2,x3,y3);
3285 // if (TMath::Abs(x[4]) >= cuts[0]) continue; //
3286 x[2]=F2(x1,y1,x2,y2,x3,y3);
3288 //if (TMath::Abs(x[4]*x1-x[2]) >= cuts[1]) continue;
3289 //x[3]=F3(x1,y1,x2,y2,z1,z2);
3290 x[3]=F3n(x1,y1,x3,y3,z1,z3,x[4]);
3291 //if (TMath::Abs(x[3]) > cuts[3]) continue;
3294 Double_t sy =0.1, sz =0.1;
3295 Double_t sy1=0.02, sz1=0.02;
3296 Double_t sy2=0.02, sz2=0.02;
3300 sy3=25000*x[4]*x[4]+0.1, sy=0.1, sz=0.1;
3303 Double_t f40=(F1(x1,y1+sy,x2,y2,x3,y3)-x[4])/sy;
3304 Double_t f42=(F1(x1,y1,x2,y2+sy,x3,y3)-x[4])/sy;
3305 Double_t f43=(F1(x1,y1,x2,y2,x3,y3+sy)-x[4])/sy;
3306 Double_t f20=(F2(x1,y1+sy,x2,y2,x3,y3)-x[2])/sy;
3307 Double_t f22=(F2(x1,y1,x2,y2+sy,x3,y3)-x[2])/sy;
3308 Double_t f23=(F2(x1,y1,x2,y2,x3,y3+sy)-x[2])/sy;
3310 Double_t f30=(F3(x1,y1+sy,x3,y3,z1,z3)-x[3])/sy;
3311 Double_t f31=(F3(x1,y1,x3,y3,z1+sz,z3)-x[3])/sz;
3312 Double_t f32=(F3(x1,y1,x3,y3+sy,z1,z3)-x[3])/sy;
3313 Double_t f34=(F3(x1,y1,x3,y3,z1,z3+sz)-x[3])/sz;
3318 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3319 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3320 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3321 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3322 c[13]=f30*sy1*f40+f32*sy2*f42;
3323 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3325 //Int_t row1 = fSectors->GetRowNumber(x1);
3326 Int_t row1 = GetRowNumber(x1);
3330 AliTPCseed *track=new (seed) AliTPCseed(index, x, c, x1, sec*alpha+shift);
3331 track->fIsSeeding = kTRUE;
3332 Int_t rc=FollowProlongation(*track, i2);
3333 if (constrain) track->fBConstrain =1;
3335 track->fBConstrain =0;
3336 track->fLastPoint = row1+fInnerSec->GetNRows(); // first cluster in track position
3337 track->fFirstPoint = track->fLastPoint;
3339 if (rc==0 || track->GetNumberOfClusters()<(i1-i2)*0.5 ||
3340 track->GetNumberOfClusters() < track->fNFoundable*0.6 ||
3341 track->fNShared>0.4*track->GetNumberOfClusters()) {
3344 seed->~AliTPCseed();
3347 arr->AddLast(track);
3348 seed = new AliTPCseed;
3352 } // if accepted seed
3355 printf("\nSeeding statiistic:\t%d\t%d\t%d\t%d",nin0,nin1,nin2,nin3);
3361 AliTPCseed *AliTPCtrackerMI::MakeSeed(AliTPCseed *track, Float_t r0, Float_t r1, Float_t r2)
3365 //reseed using track points
3366 Int_t p0 = int(r0*track->GetNumberOfClusters()); // point 0
3367 Int_t p1 = int(r1*track->GetNumberOfClusters());
3368 Int_t p2 = int(r2*track->GetNumberOfClusters()); // last point
3370 Double_t x0[3],x1[3],x2[3];
3375 // find track position at given ratio of the length
3376 Int_t sec0, sec1, sec2;
3382 for (Int_t i=0;i<160;i++){
3383 if (track->fClusterPointer[i]){
3385 AliTPCTrackerPoint *trpoint =track->GetTrackPoint(i);
3386 if ( (index<p0) || x0[0]<0 ){
3387 if (trpoint->GetX()>1){
3388 clindex = track->GetClusterIndex2(i);
3390 x0[0] = trpoint->GetX();
3391 x0[1] = trpoint->GetY();
3392 x0[2] = trpoint->GetZ();
3393 sec0 = ((clindex&0xff000000)>>24)%18;
3398 if ( (index<p1) &&(trpoint->GetX()>1)){
3399 clindex = track->GetClusterIndex2(i);
3401 x1[0] = trpoint->GetX();
3402 x1[1] = trpoint->GetY();
3403 x1[2] = trpoint->GetZ();
3404 sec1 = ((clindex&0xff000000)>>24)%18;
3407 if ( (index<p2) &&(trpoint->GetX()>1)){
3408 clindex = track->GetClusterIndex2(i);
3410 x2[0] = trpoint->GetX();
3411 x2[1] = trpoint->GetY();
3412 x2[2] = trpoint->GetZ();
3413 sec2 = ((clindex&0xff000000)>>24)%18;
3420 Double_t alpha, cs,sn, xx2,yy2;
3422 alpha = (sec1-sec2)*fSectors->GetAlpha();
3423 cs = TMath::Cos(alpha);
3424 sn = TMath::Sin(alpha);
3425 xx2= x1[0]*cs-x1[1]*sn;
3426 yy2= x1[0]*sn+x1[1]*cs;
3430 alpha = (sec0-sec2)*fSectors->GetAlpha();
3431 cs = TMath::Cos(alpha);
3432 sn = TMath::Sin(alpha);
3433 xx2= x0[0]*cs-x0[1]*sn;
3434 yy2= x0[0]*sn+x0[1]*cs;
3440 Double_t x[5],c[15];
3444 x[4]=F1(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]);
3445 // if (x[4]>1) return 0;
3446 x[2]=F2(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]);
3447 x[3]=F3n(x2[0],x2[1],x0[0],x0[1],x2[2],x0[2],x[4]);
3448 //if (TMath::Abs(x[3]) > 2.2) return 0;
3449 //if (TMath::Abs(x[2]) > 1.99) return 0;
3451 Double_t sy =0.1, sz =0.1;
3453 Double_t sy1=0.02+track->GetSigmaY2(), sz1=0.02+track->GetSigmaZ2();
3454 Double_t sy2=0.01+track->GetSigmaY2(), sz2=0.01+track->GetSigmaZ2();
3455 Double_t sy3=0.01+track->GetSigmaY2();
3457 Double_t f40=(F1(x2[0],x2[1]+sy,x1[0],x1[1],x0[0],x0[1])-x[4])/sy;
3458 Double_t f42=(F1(x2[0],x2[1],x1[0],x1[1]+sy,x0[0],x0[1])-x[4])/sy;
3459 Double_t f43=(F1(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]+sy)-x[4])/sy;
3460 Double_t f20=(F2(x2[0],x2[1]+sy,x1[0],x1[1],x0[0],x0[1])-x[2])/sy;
3461 Double_t f22=(F2(x2[0],x2[1],x1[0],x1[1]+sy,x0[0],x0[1])-x[2])/sy;
3462 Double_t f23=(F2(x2[0],x2[1],x1[0],x1[1],x0[0],x0[1]+sy)-x[2])/sy;
3464 Double_t f30=(F3(x2[0],x2[1]+sy,x0[0],x0[1],x2[2],x0[2])-x[3])/sy;
3465 Double_t f31=(F3(x2[0],x2[1],x0[0],x0[1],x2[2]+sz,x0[2])-x[3])/sz;
3466 Double_t f32=(F3(x2[0],x2[1],x0[0],x0[1]+sy,x2[2],x0[2])-x[3])/sy;
3467 Double_t f34=(F3(x2[0],x2[1],x0[0],x0[1],x2[2],x0[2]+sz)-x[3])/sz;
3472 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3473 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3474 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3475 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3476 c[13]=f30*sy1*f40+f32*sy2*f42;
3477 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3479 // Int_t row1 = fSectors->GetRowNumber(x2[0]);
3480 AliTPCseed *seed=new AliTPCseed(0, x, c, x2[0], sec2*fSectors->GetAlpha()+fSectors->GetAlphaShift());
3481 // Double_t y0,z0,y1,z1, y2,z2;
3482 //seed->GetProlongation(x0[0],y0,z0);
3483 // seed->GetProlongation(x1[0],y1,z1);
3484 //seed->GetProlongation(x2[0],y2,z2);
3486 seed->fLastPoint = pp2;
3487 seed->fFirstPoint = pp2;
3494 AliTPCseed *AliTPCtrackerMI::ReSeed(AliTPCseed *track, Float_t r0, Float_t r1, Float_t r2)
3498 //reseed using founded clusters
3500 // Find the number of clusters
3501 Int_t nclusters = 0;
3502 for (Int_t irow=0;irow<160;irow++){
3503 if (track->GetClusterIndex(irow)>0) nclusters++;
3507 ipos[0] = TMath::Max(int(r0*nclusters),0); // point 0 cluster
3508 ipos[1] = TMath::Min(int(r1*nclusters),nclusters-1); //
3509 ipos[2] = TMath::Min(int(r2*nclusters),nclusters-1); // last point
3513 Int_t row[3],sec[3]={0,0,0};
3515 // find track row position at given ratio of the length
3517 for (Int_t irow=0;irow<160;irow++){
3518 if (track->GetClusterIndex2(irow)<0) continue;
3520 for (Int_t ipoint=0;ipoint<3;ipoint++){
3521 if (index<=ipos[ipoint]) row[ipoint] = irow;
3525 //Get cluster and sector position
3526 for (Int_t ipoint=0;ipoint<3;ipoint++){
3527 Int_t clindex = track->GetClusterIndex2(row[ipoint]);
3528 AliTPCclusterMI * cl = GetClusterMI(clindex);
3531 // AliTPCclusterMI * cl = GetClusterMI(clindex);
3534 sec[ipoint] = ((clindex&0xff000000)>>24)%18;
3535 xyz[ipoint][0] = GetXrow(row[ipoint]);
3536 xyz[ipoint][1] = cl->GetY();
3537 xyz[ipoint][2] = cl->GetZ();
3541 // Calculate seed state vector and covariance matrix
3543 Double_t alpha, cs,sn, xx2,yy2;
3545 alpha = (sec[1]-sec[2])*fSectors->GetAlpha();
3546 cs = TMath::Cos(alpha);
3547 sn = TMath::Sin(alpha);
3548 xx2= xyz[1][0]*cs-xyz[1][1]*sn;
3549 yy2= xyz[1][0]*sn+xyz[1][1]*cs;
3553 alpha = (sec[0]-sec[2])*fSectors->GetAlpha();
3554 cs = TMath::Cos(alpha);
3555 sn = TMath::Sin(alpha);
3556 xx2= xyz[0][0]*cs-xyz[0][1]*sn;
3557 yy2= xyz[0][0]*sn+xyz[0][1]*cs;
3563 Double_t x[5],c[15];
3567 x[4]=F1(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]);
3568 x[2]=F2(xyz[2][0],xyz[2][1],xyz[1][0],xyz[1][1],xyz[0][0],xyz[0][1]);
3569 x[3]=F3n(xyz[2][0],xyz[2][1],xyz[0][0],xyz[0][1],xyz[2][2],xyz[0][2],x[4]);
3571 Double_t sy =0.1, sz =0.1;
3573 Double_t sy1=0.2, sz1=0.2;
3574 Double_t sy2=0.2, sz2=0.2;
3577 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;
3578 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;
3579 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;
3580 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;
3581 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;
3582 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;
3584 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;
3585 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;
3586 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;
3587 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;
3592 c[3]=f20*sy1; c[4]=0.; c[5]=f20*sy1*f20+f22*sy2*f22+f23*sy3*f23;
3593 c[6]=f30*sy1; c[7]=f31*sz1; c[8]=f30*sy1*f20+f32*sy2*f22;
3594 c[9]=f30*sy1*f30+f31*sz1*f31+f32*sy2*f32+f34*sz2*f34;
3595 c[10]=f40*sy1; c[11]=0.; c[12]=f40*sy1*f20+f42*sy2*f22+f43*sy3*f23;
3596 c[13]=f30*sy1*f40+f32*sy2*f42;
3597 c[14]=f40*sy1*f40+f42*sy2*f42+f43*sy3*f43;
3599 // Int_t row1 = fSectors->GetRowNumber(xyz[2][0]);
3600 AliTPCseed *seed=new AliTPCseed(0, x, c, xyz[2][0], sec[2]*fSectors->GetAlpha()+fSectors->GetAlphaShift());
3601 seed->fLastPoint = row[2];
3602 seed->fFirstPoint = row[2];
3606 Int_t AliTPCtrackerMI::CheckKinkPoint(AliTPCseed*seed, Float_t th)
3611 for (Int_t i=0;i<12;i++) seed->fKinkPoint[i]=0;
3613 if (TMath::Abs(seed->GetC())>0.01) return 0;
3616 Float_t x[160], y[160], erry[160], z[160], errz[160];
3618 Float_t xt[160], yt[160], zt[160];
3623 Int_t middle = seed->GetNumberOfClusters()/2;
3626 // find central sector, get local cooordinates
3628 for (Int_t i=seed->fFirstPoint;i<=seed->fLastPoint;i++) {
3629 sec[i]= seed->GetClusterSector(i)%18;
3632 AliTPCclusterMI * cl = seed->fClusterPointer[i];
3633 // if (cl==0) cl = GetClusterMI(seed->GetClusterIndex2(i));
3640 if (i>i2) i2 = i; //last point with cluster
3641 if (i2<i1) i1 = i; //first point with cluster
3644 AliTPCTrackerPoint * point = seed->GetTrackPoint(i);
3646 yt[i] = point->GetY();
3647 zt[i] = point->GetZ();
3649 if (point->GetX()>0){
3650 erry[i] = point->GetErrY();
3651 errz[i] = point->GetErrZ();
3656 secm = sec[i]; //central sector
3657 padm = i; //middle point with cluster