11 #if !defined(__CINT__) || defined(__MAKECINT__) 15 #include<TClassTable.h> 16 #include<TClonesArray.h> 52 const Int_t MAX = 20000;
53 const Bool_t kOLD = kFALSE;
61 cout<<
"AliRun object found on file "<<
gAlice<<endl;
62 AliKalmanTrack::SetFieldMap(
gAlice->Field());
69 cerr<<
"Doing comparison...\n";
77 if (!cf->IsOpen()) {cerr<<
"Can't open AliTPCclusters.root !\n";
return 1;}
79 if (!digp) { cerr<<
"TPC parameters have not been found !\n";
return 2; }
83 AliTPCtrack *iotrack=0;
90 eventptr[firstev+1]=0;
91 for (Int_t event=firstev;
event<eventn;
event++){
92 cout<<
"================================================"<<endl;
93 cout<<
"Processing event "<<
event<<endl;
94 cout<<
"================================================"<<endl;
98 sprintf(tname,
"TreeT_TPC");
101 sprintf(tname,
"TreeT_TPC_%d",event);
105 if (!tf->IsOpen()) {cerr<<
"Can't open AliTPCtracks.root !\n";
return 3;}
107 tracktree=(TTree*)tf->Get(tname);
108 if (!tracktree) {cerr<<
"Can't get a tree with TPC tracks !\n";
return 4;}
109 TBranch *tbranch=tracktree->GetBranch(
"tracks");
110 Int_t nentr0=(Int_t)tracktree->GetEntries();
112 for (i=0; i<nentr0; i++) {
113 iotrack=
new AliTPCtrack;
114 tbranch->SetAddress(&iotrack);
115 tracktree->GetEvent(i);
116 tarray.AddLast(iotrack);
118 eventptr[
event+1] = nentr;
127 ifstream in(
"good_tracks_tpc");
129 cerr<<
"Reading good tracks...\n";
131 gt[ngood].
px>>gt[ngood].
py>>gt[ngood].
pz>>
132 gt[ngood].
x >>gt[ngood].
y >>gt[ngood].
z) {
137 cerr<<
"Too many good tracks !\n";
142 if (!in.eof()) cerr<<
"Read error (good_tracks_tpc) !\n";
144 cerr<<
"Marking good tracks (this will take a while)...\n";
146 printf(
"Goood %d\n", ngood);
147 ofstream out(
"good_tracks_tpc");
149 cout<<
"File good_tracks_tpc opened\n";
150 for (Int_t ngd=0; ngd<ngood; ngd++) {
152 gt[ngd].
px<<
' '<<gt[ngd].
py<<
' '<<gt[ngd].
pz<<
' '<<
153 gt[ngd].
x <<
' '<<gt[ngd].
y <<
' '<<gt[ngd].
z <<endl;
155 }
else cerr<<
"Can not open file (good_tracks_tpc) !\n";
159 ofstream out2(
"good_tracks_tpc_par");
163 for (Int_t ngd=0; ngd<ngood; ngd++) {
164 Float_t pt = TMath::Sqrt(gt[ngd].
px*gt[ngd].
px+gt[ngd].
py*gt[ngd].
py);
166 if (TMath::Abs(pt)>0.01) angle = gt[ngd].
pz/pt;
167 out2<<gt[ngd].
fEventN<<
"\t"<<gt[ngd].
lab<<
"\t"<<gt[ngd].
code<<
"\t"<<
168 pt<<
"\t"<<angle<<
"\t"<<endl;
170 }
else cerr<<
"Can not open file (good_tracks_tpc) !\n";
175 cerr<<
"Number of good tracks : "<<ngood<<endl;
176 cout<<
"Number of good tracks : "<<ngood<<endl;
177 if(ngood==0)
return 5;
178 TH1F *hp=
new TH1F(
"hp",
"PHI resolution",50,-20.,20.); hp->SetFillColor(4);
179 TH1F *hl=
new TH1F(
"hl",
"LAMBDA resolution",50,-20,20);hl->SetFillColor(4);
180 TH1F *hpt=
new TH1F(
"hpt",
"Relative Pt resolution",30,-10.,10.);
181 hpt->SetFillColor(2);
182 TH1F *hmpt=
new TH1F(
"hmpt",
"Relative Pt resolution (pt>4GeV/c)",30,-60,60);
183 hmpt->SetFillColor(6);
185 AliTPCtrack *trk=(AliTPCtrack*)tarray.UncheckedAt(0);
187 Double_t pmin=0.1*(100/0.299792458/0.2/trk->GetConvConst());
188 Double_t pmax=6.0+pmin;
190 TH1F *hgood=
new TH1F(
"hgood",
"Good tracks",30,pmin,pmax);
191 TH1F *hfound=
new TH1F(
"hfound",
"Found tracks",30,pmin,pmax);
192 TH1F *hfake=
new TH1F(
"hfake",
"Fake tracks",30,pmin,pmax);
193 TH1F *hg=
new TH1F(
"hg",
"",30,pmin,pmax);
194 hg->SetLineColor(4); hg->SetLineWidth(2);
195 TH1F *hf=
new TH1F(
"hf",
"Efficiency for fake tracks",30,pmin,pmax);
196 hf->SetFillColor(1); hf->SetFillStyle(3013); hf->SetLineWidth(2);
198 TH1F *he =
new TH1F(
"he",
"dE/dX for pions with 0.4<p<0.5 GeV/c",50,0.,100.);
199 TH2F *hep=
new TH2F(
"hep",
"dE/dX vs momentum",50,0.,2.,50,0.,250.);
200 hep->SetMarkerStyle(8);
201 hep->SetMarkerSize(0.4);
204 Int_t track_notfound[MAX], itrack_notfound=0;
205 Int_t track_fake[MAX], itrack_fake=0;
206 Int_t track_multifound[MAX], track_multifound_n[MAX], itrack_multifound=0;
208 Int_t
lab=gt[ngood].
lab,tlab=-1;
210 TMath::Sqrt(gt[ngood].
px*gt[ngood].
px + gt[ngood].
py*gt[ngood].
py);
212 if (ptg<pmin)
continue;
215 Int_t ievent = gt[ngood].
fEventN;
217 AliTPCtrack *
track=0;
218 for (i=eventptr[ievent]; i<eventptr[ievent+1]; i++) {
220 track=(AliTPCtrack*)tarray.UncheckedAt(i);
221 tlab=track->GetLabel();
222 if (lab==TMath::Abs(tlab))
break;
224 if (i==eventptr[ievent+1]) {
225 track_notfound[itrack_notfound++]=
lab;
231 AliTPCtrack * mitrack;
232 for (mi=eventptr[ievent]; mi<eventptr[ievent+1]; mi++) {
234 mitrack=(AliTPCtrack*)tarray.UncheckedAt(mi);
235 if (lab==TMath::Abs(mitrack->GetLabel())) micount++;
238 track_multifound[itrack_multifound]=
lab;
239 track_multifound_n[itrack_multifound]=micount;
244 Double_t xk=gt[ngood].
x;
245 if (!track)
continue;
247 track->PropagateTo(xk);
249 if (lab==tlab) hfound->Fill(ptg);
251 track_fake[itrack_fake++]=
lab;
254 Double_t par[5]; track->GetExternalParameters(xk,par);
255 Float_t phi=TMath::ASin(par[2]) + track->GetAlpha();
256 if (phi<-TMath::Pi()) phi+=2*TMath::Pi();
257 if (phi>=TMath::Pi()) phi-=2*TMath::Pi();
258 Float_t lam=TMath::ATan(par[3]);
259 Float_t pt_1=TMath::Abs(par[4]);
261 if (TMath::Abs(gt[ngood].
code)==11 && ptg>4.) {
262 hmpt->Fill((pt_1 - 1/ptg)/(1/ptg)*100.);
266 Float_t phig=TMath::ATan2(gt[ngood].py,gt[ngood].
px);
267 hp->Fill((phi - phig)*1000.);
269 Float_t lamg=TMath::ATan2(gt[ngood].
pz,ptg);
270 hl->Fill((lam - lamg)*1000.);
272 hpt->Fill((pt_1 - 1/ptg)/(1/ptg)*100.);
275 Float_t mom=1./(pt_1*TMath::Cos(lam));
276 Float_t dedx=track->GetdEdx();
277 hep->Fill(mom,dedx,1.);
278 if (TMath::Abs(gt[ngood].code)==211)
279 if (mom>0.4 && mom<0.5) {
285 cout<<
"\nList of Not found tracks :\n";
286 for ( i = 0; i< itrack_notfound; i++){
287 cout<<track_notfound[i]<<
"\t";
288 if ((i%5)==4) cout<<
"\n";
290 cout<<
"\nList of fake tracks :\n";
291 for ( i = 0; i< itrack_fake; i++){
292 cout<<track_fake[i]<<
"\t";
293 if ((i%5)==4) cout<<
"\n";
295 cout<<
"\nList of multiple found tracks :\n";
296 for ( i=0; i<itrack_multifound; i++) {
297 cout<<
"id. "<<track_multifound[i]
298 <<
" found - "<<track_multifound_n[i]<<
"times\n";
301 Stat_t ng=hgood->GetEntries(), nf=hfound->GetEntries();
302 if (ng!=0) cerr<<
"\n\nIntegral efficiency is about "<<nf/ng*100.<<
" %\n";
303 if (ng!=0) cout<<
"\n\nIntegral efficiency is about "<<nf/ng*100.<<
" %\n";
304 cout<<
"Total number of found tracks ="<<nentr<<endl;
305 cout<<
"Total number of \"good\" tracks =" 306 <<mingood<<
" (selected for comparison: "<<ng<<
')'<<endl<<endl;
309 gStyle->SetOptStat(111110);
312 TCanvas *c1=
new TCanvas(
"c1",
"",0,0,700,850);
314 TPad *p1=
new TPad(
"p1",
"",0,0.3,.5,.6); p1->Draw();
315 p1->cd(); p1->SetFillColor(42); p1->SetFrameFillColor(10);
316 hp->SetFillColor(4); hp->SetXTitle(
"(mrad)"); hp->Fit(
"gaus"); c1->cd();
318 TPad *p2=
new TPad(
"p2",
"",0.5,.3,1,.6); p2->Draw();
319 p2->cd(); p2->SetFillColor(42); p2->SetFrameFillColor(10);
320 hl->SetXTitle(
"(mrad)"); hl->Fit(
"gaus"); c1->cd();
322 TPad *p3=
new TPad(
"p3",
"",0,0,0.5,0.3); p3->Draw();
323 p3->cd(); p3->SetFillColor(42); p3->SetFrameFillColor(10);
324 hpt->SetXTitle(
"(%)"); hpt->Fit(
"gaus"); c1->cd();
326 TPad *p4=
new TPad(
"p4",
"",0.5,0,1,0.3); p4->Draw();
327 p4->cd(); p4->SetFillColor(42); p4->SetFrameFillColor(10);
328 hmpt->SetXTitle(
"(%)"); hmpt->Fit(
"gaus"); c1->cd();
330 TPad *p5=
new TPad(
"p5",
"",0,0.6,1,1); p5->Draw(); p5->cd();
331 p5->SetFillColor(41); p5->SetFrameFillColor(10);
332 hfound->Sumw2(); hgood->Sumw2(); hfake->Sumw2();
333 hg->Divide(hfound,hgood,1,1.,
"b");
334 hf->Divide(hfake,hgood,1,1.,
"b");
336 hg->SetYTitle(
"Tracking efficiency");
337 hg->SetXTitle(
"Pt (GeV/c)");
340 TLine *line1 =
new TLine(pmin,1.0,pmax,1.0); line1->SetLineStyle(4);
342 TLine *line2 =
new TLine(pmin,0.9,pmax,0.9); line2->SetLineStyle(4);
346 hf->SetFillStyle(3013);
349 hf->Draw(
"histsame");
350 TText *text =
new TText(0.461176,0.248448,
"Fake tracks");
351 text->SetTextSize(0.05);
353 text =
new TText(0.453919,1.11408,
"Good tracks");
354 text->SetTextSize(0.05);
359 TCanvas *c2=
new TCanvas(
"c2",
"",320,32,530,590);
361 TPad *p6=
new TPad(
"p6",
"",0.,0.,1.,.5); p6->Draw();
362 p6->cd(); p6->SetFillColor(42); p6->SetFrameFillColor(10);
363 he->SetFillColor(2); he->SetFillStyle(3005);
364 he->SetXTitle(
"Arbitrary Units");
365 he->Fit(
"gaus"); c2->cd();
367 TPad *p7=
new TPad(
"p7",
"",0.,0.5,1.,1.); p7->Draw();
368 p7->cd(); p7->SetFillColor(42); p7->SetFrameFillColor(10);
369 hep->SetXTitle(
"p (Gev/c)"); hep->SetYTitle(
"dE/dX (Arb. Units)");
370 hep->Draw(); c1->cd();
384 if (!file->IsOpen()) {cerr<<
"Can't open galice.root !\n"; exit(4);}
387 cerr<<
"gAlice have not been found on galice.root !\n";
396 cerr<<
"TPC version "<<ver<<
" has been found !\n";
400 cerr<<
"2 pad-lenght geom hits with 3 pad-length geom digits...\n";
406 digp =(
AliTPCParam*)gDirectory->Get(
"75x40_100x60_150x60");
409 if (!digp) { cerr<<
"TPC parameters have not been found !\n"; exit(6); }
415 Int_t gap=Int_t(0.125*nrows), shift=Int_t(0.5*gap);
416 Int_t good_number=Int_t(0.4*nrows);
421 for (Int_t event=firstev;
event<eventn;
event++){
424 cout<<
"function good_tracks -- event "<<
event<<
", Charged primaries:"<<nopr<<
"\n";
426 Int_t *good=
new Int_t[np];
427 for (Int_t ii=0; ii<np; ii++) good[ii]=0;
430 Int_t sectors_by_rows=0;
438 if (!cf->IsOpen()){cerr<<
"Can't open AliTPCclusters.root !\n";exit(5);}
439 AliTPCClustersArray *ca=
new AliTPCClustersArray;
441 ca->SetClusterType(
"AliTPCcluster");
442 ca->ConnectTree(
"TreeC_TPC_0");
443 Int_t nrows=Int_t(ca->GetTree()->GetEntries());
444 for (Int_t n=0; n<nrows; n++) {
449 Int_t ncl=clrow.
GetArray()->GetEntriesFast();
451 AliTPCcluster *c=(AliTPCcluster*)clrow[ncl];
452 Int_t
lab=c->GetLabel(0);
456 if (row==nrow_up-1 ) good[
lab]|=0x1000;
458 if (row==nrow_up-1-gap) good[
lab]|=0x800;
461 ca->ClearRow(sec,row);
469 sprintf(treeName,
"TreeD_75x40_100x60_150x60_%d",event);
470 TD=(TTree*)fdigit->Get(treeName);
472 TD->GetBranch(
"Segment")->SetAddress(&digits);
473 count =
new Int_t[np];
475 for (i=0; i<np; i++) count[i]=0;
476 sectors_by_rows=(Int_t)TD->GetEntries();
477 for (i=0; i<sectors_by_rows; i++) {
478 if (!TD->GetEvent(i))
continue;
491 if (idx0>=0 && dig>=zero && idx0<np ) count[idx0]+=1;
492 if (idx1>=0 && dig>=zero && idx1<np ) count[idx1]+=1;
493 if (idx2>=0 && dig>=zero && idx2<np ) count[idx2]+=1;
494 }
while (digits->
Next());
495 for (Int_t j=0; j<np; j++) {
498 if (row==nrow_up-1 ) good[j]|=0x4000;
500 if (row==nrow_up-1-gap) good[j]|=0x1000;
503 if (row==nrow_up-1-shift) good[j]|=0x2000;
505 if (row==nrow_up-1-gap-shift) good[j]|=0x800;
517 cerr<<
"Invalid TPC version !\n";
524 for (Int_t i=0; i<np; i++) {
525 if ((good[i]&0x5000) != 0x5000)
526 if ((good[i]&0x2800) != 0x2800)
continue;
527 if ((good[i]&0x7FF ) < good_number)
continue;
529 TParticle *
p = (TParticle*)
gAlice->Particle(i);
531 if (p->Pt()<0.100)
continue;
532 if (TMath::Abs(p->Pz()/p->Pt())>0.999)
continue;
534 Int_t j=p->GetFirstMother();
536 TParticle *pp = (TParticle*)
gAlice->Particle(j);
545 gt[
nt].
code=p->GetPdgCode();
549 if (nt==max) {cerr<<
"Too many good tracks !\n";
break;}
554 TTree *TH=
gAlice->TreeH(); np=(Int_t)TH->GetEntries();
556 for (Int_t i=0; i<np; i++) {
559 AliTPChit *phit = (AliTPChit*)TPC->FirstHit(-1);
560 for ( ; phit; phit=(AliTPChit*)TPC->NextHit() ) {
561 if (phit->fQ !=0. )
continue;
563 Double_t
px=phit->X(),
py=phit->Y(),
pz=phit->Z();
565 if ((phit=(AliTPChit*)TPC->NextHit())==0)
break;
566 if (phit->fQ != 0.)
continue;
568 Double_t
x=phit->X(),
y=phit->Y(),
z=phit->Z();
569 if (TMath::Sqrt(x*x+
y*
y)>90.)
continue;
571 Int_t j,
lab=phit->Track();
572 for (j=0; j<
nt; j++) {
if (gt[j].
fEventN==event && gt[j].lab==lab)
break;}
578 gt[j].
x = x*cs + y*sn;
579 gt[j].
y =-x*sn + y*cs;
600 Double_t vertcut = 0.001;
601 Double_t decacut = 3.;
602 Double_t timecut = 0.;
604 TParticle * part =
gAlice->Particle(0);
605 Double_t xori = part->Vx();
606 Double_t yori = part->Vy();
607 Double_t zori = part->Vz();
608 for(Int_t iprim = 0; iprim<nparticles; iprim++){
610 part =
gAlice->Particle(iprim);
611 Double_t ptot=TMath::Sqrt(part->Px()*part->Px()+part->Py()*part->Py()+part->Pz()*part->Pz());
612 if (ptot<0.01)
continue;
613 char *xxx=strstr(part->GetName(),
"XXX");
616 TParticlePDG *ppdg = part->GetPDG();
617 if(TMath::Abs(ppdg->Charge())!=3)
continue;
619 Double_t dist=TMath::Sqrt((part->Vx()-xori)*(part->Vx()-xori)+(part->Vy()-yori)*(part->Vy()-yori)+(part->Vz()-zori)*(part->Vz()-zori));
620 if(dist>vertcut)
continue;
622 if(part->T()>timecut)
continue;
625 if(ptot==(TMath::Abs(part->Pz())))
continue;
627 Bool_t prmch = kTRUE;
628 Int_t fidau=part->GetFirstDaughter();
632 lasdau=part->GetLastDaughter();
636 for(Int_t j=fidau;j<=lasdau;j++){
637 TParticle *dau=
gAlice->Particle(j);
638 Double_t distd=TMath::Sqrt((dau->Vx()-xori)*(dau->Vx()-xori)+(dau->Vy()-yori)*(dau->Vy()-yori)+(dau->Vz()-zori)*(dau->Vz()-zori));
639 if(distd<decacut)prmch=kFALSE;
printf("Chi2/npoints = %f\n", TMath::Sqrt(chi2/npoints))
TFile * Open(const char *filename, Long64_t &nevents)
Manager and of geomety classes for set: TPC.
Int_t FindPrimaries(Int_t nparticles)
Manager and of geomety classes for set: TPC.
virtual Int_t GetEvent(Int_t event)
Int_t AliTPCComparison2(Int_t firstev=0, Int_t eventn=1)
Time Projection Chamber AliTPCClusterRow objects.
virtual void ExpandTrackBuffer()
Int_t GetTrackIDFast(Int_t row, Int_t column, Int_t level)
TClonesArray * GetArray()
Bool_t AdjustSectorRow(Int_t index, Int_t §or, Int_t &row) const
Int_t good_tracks(GoodTrackTPC *gt, Int_t max, Int_t firstev, Int_t eventn)
void AdjustCosSin(Int_t isec, Float_t &cos, Float_t &sin) const
virtual Int_t IsVersion() const =0
AliDetector * GetDetector(const char *name) const
Int_t GetNInnerSector() const