]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCComparison.C
Possibility to use as quality check (Yu.Belikov)
[u/mrichter/AliRoot.git] / TPC / AliTPCComparison.C
CommitLineData
7f6ddf58 1/****************************************************************************
2 * Very important, delicate and rather obscure macro. *
3 * *
4 * Creates list of "trackable" tracks, *
7f6ddf58 5 * calculates efficiency, resolutions etc. *
bf018fe4 6 * There is a possibility to run this macro over several events. *
7f6ddf58 7 * *
024a7fe9 8 * Origin: I.Belikov, CERN, Jouri.Belikov@cern.ch *
7f6ddf58 9 * with several nice improvements by: M.Ivanov, GSI, m.ivanov@gsi.de *
10 ****************************************************************************/
11
c630aafd 12#if !defined(__CINT__) || defined(__MAKECINT__)
5102bab6 13 #include <TMath.h>
14 #include <TError.h>
15 #include <Riostream.h>
16 #include <TH1F.h>
17 #include <TH2F.h>
18 #include <TTree.h>
19 #include <TParticle.h>
20 #include <TPad.h>
21 #include <TCanvas.h>
22 #include <TLine.h>
23 #include <TText.h>
24 #include <TBenchmark.h>
25 #include <TStyle.h>
26 #include <TKey.h>
bf018fe4 27 #include <TROOT.h>
5102bab6 28
29 #include "AliStack.h"
30 #include "AliHeader.h"
31 #include "AliTrackReference.h"
88cb7938 32 #include "AliRunLoader.h"
33 #include "AliMagF.h"
c630aafd 34 #include "AliRun.h"
5102bab6 35 #include "AliESD.h"
36
37 #include "AliSimDigits.h"
38 #include "AliTPC.h"
39 #include "AliTPCParamSR.h"
40 #include "AliTPCClustersArray.h"
41 #include "AliTPCClustersRow.h"
bf018fe4 42 #include "AliTPCcluster.h"
5102bab6 43 #include "AliTPCLoader.h"
be9c5115 44#endif
45
f38c8ae5 46struct GoodTrackTPC {
cc80f89e 47 Int_t lab;
48 Int_t code;
49 Float_t px,py,pz;
50 Float_t x,y,z;
51};
cc80f89e 52
5102bab6 53Int_t good_tracks_tpc(GoodTrackTPC *gt, const Int_t max,
54const char* evfoldname=AliConfig::fgkDefaultEventFolderName);
88cb7938 55
c630aafd 56extern AliRun *gAlice;
5102bab6 57extern TBenchmark *gBenchmark;
bf018fe4 58extern TROOT *gROOT;
fbb58996 59
0aa211b1 60Int_t AliTPCComparison(Float_t ptcutl=0.2, Float_t ptcuth=10., const Char_t *dir=".") {
5102bab6 61 gBenchmark->Start("AliTPCComparison");
62
63 ::Info("AliTPCComparison.C","Doing comparison...");
c630aafd 64
65 if (gAlice) {
88cb7938 66 delete gAlice->GetRunLoader();
67 delete gAlice;//if everything was OK here it is already NULL
68 gAlice = 0x0;
69 }
70
bf018fe4 71 Char_t fname[100];
72 sprintf(fname,"%s/galice.root",dir);
73
74 AliRunLoader *rl = AliRunLoader::Open(fname,"COMPARISON");
c630aafd 75 if (!rl) {
5102bab6 76 ::Fatal("AliTPCComparison.C","Can't start session !");
c630aafd 77 }
7f6ddf58 78
7f6ddf58 79 /* Generate a list of "good" tracks */
5102bab6 80 const Int_t MAX=20000;
f38c8ae5 81 GoodTrackTPC gt[MAX];
cc80f89e 82 Int_t ngood=0;
bf018fe4 83 sprintf(fname,"%s/good_tracks_tpc",dir);
84 ifstream in(fname);
cc80f89e 85 if (in) {
5102bab6 86 ::Info("AliTPCComparison.C","Reading good tracks...");
7f6ddf58 87 while (in>>gt[ngood].lab>>gt[ngood].code>>
be9c5115 88 gt[ngood].px>>gt[ngood].py>>gt[ngood].pz>>
89 gt[ngood].x >>gt[ngood].y >>gt[ngood].z) {
7ac477db 90 ngood++;
7ac477db 91 if (ngood==MAX) {
5102bab6 92 ::Warning("AliTPCComparison.C","Too many good tracks !");
7ac477db 93 break;
94 }
cc80f89e 95 }
5102bab6 96 if (!in.eof())
97 ::Fatal("AliTPCComparison.C","Read error (good_tracks_tpc) !");
cc80f89e 98 } else {
5102bab6 99 ::Info
100 ("AliTPCComparison","Marking good tracks (this will take a while)...");
88cb7938 101 ngood=good_tracks_tpc(gt,MAX,"COMPARISON");
bf018fe4 102 ofstream out(fname);
cc80f89e 103 if (out) {
104 for (Int_t ngd=0; ngd<ngood; ngd++)
7f6ddf58 105 out<<gt[ngd].lab<<' '<<gt[ngd].code<<' '<<
be9c5115 106 gt[ngd].px<<' '<<gt[ngd].py<<' '<<gt[ngd].pz<<' '<<
107 gt[ngd].x <<' '<<gt[ngd].y <<' '<<gt[ngd].z <<endl;
5102bab6 108 } else
109 ::Fatal("AliTPCComparison.C","Can not open file (good_tracks_tpc) !");
cc80f89e 110 out.close();
111 }
7f6ddf58 112
bf018fe4 113 AliESD *event=0;
3cb3ee52 114 { /*Load tracks*/
bf018fe4 115 sprintf(fname,"%s/AliESDs.root",dir);
116 TFile *ef=TFile::Open(fname);
5102bab6 117 if ((!ef)||(!ef->IsOpen())) {
bf018fe4 118 sprintf(fname,"%s/AliESDtpc.root",dir);
119 ef=TFile::Open(fname);
120 if ((!ef)||(!ef->IsOpen()))
121 ::Fatal("AliTPCComparison.C","Can't open AliESDtpc.root !");
5102bab6 122 }
123 TKey *key=0;
124 TIter next(ef->GetListOfKeys());
bf018fe4 125 if ((key=(TKey*)next())!=0) event=(AliESD*)key->ReadObj();
5102bab6 126 ef->Close();
3cb3ee52 127 }
bf018fe4 128 Int_t nentr=event->GetNumberOfTracks();
129
130 TH1F *hp=(TH1F*)gROOT->FindObject("hp");
131 if (!hp) hp=new TH1F("hp","PHI resolution",50,-20.,20.);
132 hp->SetFillColor(4);
133
134 TH1F *hl=(TH1F*)gROOT->FindObject("hl");
135 if (!hl) hl=new TH1F("hl","LAMBDA resolution",50,-20,20);
136 hl->SetFillColor(4);
137
138 TH1F *hpt=(TH1F*)gROOT->FindObject("hpt");
139 if (!hpt) hpt=new TH1F("hpt","Relative Pt resolution",30,-10.,10.);
140 hpt->SetFillColor(2);
141
142 TH1F *hmpt=(TH1F*)gROOT->FindObject("hmpt");
143 if (!hmpt)
144 hmpt=new TH1F("hmpt","Relative Pt resolution (pt>4GeV/c)",30,-60,60);
cc80f89e 145 hmpt->SetFillColor(6);
8c555625 146
bf018fe4 147
148
149 TH1F *hgood=(TH1F*)gROOT->FindObject("hgood");
150 if (!hgood) hgood=new TH1F("hgood","Good tracks",30,0.2,6.1);
151
152 TH1F *hfound=(TH1F*)gROOT->FindObject("hfound");
153 if (!hfound) hfound=new TH1F("hfound","Found tracks",30,0.2,6.1);
154
155 TH1F *hfake=(TH1F*)gROOT->FindObject("hfake");
156 if (!hfake) hfake=new TH1F("hfake","Fake tracks",30,0.2,6.1);
157
158 TH1F *hg=(TH1F*)gROOT->FindObject("hg");
159 if (!hg) hg=new TH1F("hg","Efficiency for good tracks",30,0.2,6.1);
8c555625 160 hg->SetLineColor(4); hg->SetLineWidth(2);
bf018fe4 161
162 TH1F *hf=(TH1F*)gROOT->FindObject("hf");
163 if (!hf) hf=new TH1F("hf","Efficiency for fake tracks",30,0.2,6.1);
8c555625 164 hf->SetFillColor(1); hf->SetFillStyle(3013); hf->SetLineWidth(2);
165
bf018fe4 166 TH1F *he=(TH1F*)gROOT->FindObject("he");
167 if (!he)
168 he =new TH1F("he","dE/dX for pions with 0.4<p<0.5 GeV/c",50,0.,100.);
169
170 TH2F *hep=(TH2F*)gROOT->FindObject("hep");
171 if (!hep) hep=new TH2F("hep","dE/dX vs momentum",50,0.,2.,50,0.,400.);
be9c5115 172 hep->SetMarkerStyle(8);
173 hep->SetMarkerSize(0.4);
8c555625 174
7f6ddf58 175 //MI change
176 Int_t mingood=ngood;
177 Int_t track_notfound[MAX], itrack_notfound=0;
178 Int_t track_fake[MAX], itrack_fake=0;
179 Int_t track_multifound[MAX], track_multifound_n[MAX], itrack_multifound=0;
cf98c13f 180
bf018fe4 181 Int_t i;
cc80f89e 182 while (ngood--) {
cf98c13f 183 Int_t lab=gt[ngood].lab,tlab=-1;
cc80f89e 184 Float_t ptg=
185 TMath::Sqrt(gt[ngood].px*gt[ngood].px + gt[ngood].py*gt[ngood].py);
8c555625 186
7f6ddf58 187 if (ptg<1e-33) continue; // for those not crossing 0 pad row
0aa211b1 188 if (ptg<ptcutl) continue;
189 if (ptg>ptcuth) continue;
8c555625 190 hgood->Fill(ptg);
cc80f89e 191
bf018fe4 192 AliESDtrack *track=0;
7f6ddf58 193 for (i=0; i<nentr; i++) {
bf018fe4 194 track=event->GetTrack(i);
73042f01 195 tlab=track->GetLabel();
cc80f89e 196 if (lab==TMath::Abs(tlab)) break;
8c555625 197 }
7f6ddf58 198 if (i==nentr) {
cf98c13f 199 track_notfound[itrack_notfound++]=lab;
cc80f89e 200 continue;
201 }
cf98c13f 202
203 //MI change - addition
204 Int_t micount=0;
205 Int_t mi;
bf018fe4 206 AliESDtrack * mitrack;
7f6ddf58 207 for (mi=0; mi<nentr; mi++) {
bf018fe4 208 mitrack=event->GetTrack(mi);
cf98c13f 209 if (lab==TMath::Abs(mitrack->GetLabel())) micount++;
210 }
211 if (micount>1) {
cf98c13f 212 track_multifound[itrack_multifound]=lab;
213 track_multifound_n[itrack_multifound]=micount;
214 itrack_multifound++;
215 }
216
cc80f89e 217 if (lab==tlab) hfound->Fill(ptg);
cf98c13f 218 else {
219 track_fake[itrack_fake++]=lab;
220 hfake->Fill(ptg);
cf98c13f 221 }
cc80f89e 222
bf018fe4 223 Double_t pxpypz[3]; track->GetInnerPxPyPz(pxpypz);
224 Float_t phi=TMath::ATan2(pxpypz[1],pxpypz[0]);
be9c5115 225 if (phi<-TMath::Pi()) phi+=2*TMath::Pi();
226 if (phi>=TMath::Pi()) phi-=2*TMath::Pi();
bf018fe4 227 Double_t pt=TMath::Sqrt(pxpypz[0]*pxpypz[0]+pxpypz[1]*pxpypz[1]);
228 Float_t lam=TMath::ATan2(pxpypz[2],pt);
229 Float_t pt_1=1/pt;
cc80f89e 230
231 if (TMath::Abs(gt[ngood].code)==11 && ptg>4.) {
be9c5115 232 hmpt->Fill((pt_1 - 1/ptg)/(1/ptg)*100.);
cc80f89e 233 } else {
234 Float_t phig=TMath::ATan2(gt[ngood].py,gt[ngood].px);
cc80f89e 235 hp->Fill((phi - phig)*1000.);
3c0f9266 236
cc80f89e 237 Float_t lamg=TMath::ATan2(gt[ngood].pz,ptg);
cc80f89e 238 hl->Fill((lam - lamg)*1000.);
239
be9c5115 240 hpt->Fill((pt_1 - 1/ptg)/(1/ptg)*100.);
cc80f89e 241 }
73042f01 242
bf018fe4 243 Float_t mom=pt/TMath::Cos(lam);
244 Float_t dedx=track->GetTPCsignal();
cc80f89e 245 hep->Fill(mom,dedx,1.);
246 if (TMath::Abs(gt[ngood].code)==211)
247 if (mom>0.4 && mom<0.5) {
248 he->Fill(dedx,1.);
249 }
73042f01 250
cc80f89e 251 }
252
cf98c13f 253 cout<<"\nList of Not found tracks :\n";
cf98c13f 254 for ( i = 0; i< itrack_notfound; i++){
255 cout<<track_notfound[i]<<"\t";
256 if ((i%5)==4) cout<<"\n";
257 }
258 cout<<"\nList of fake tracks :\n";
259 for ( i = 0; i< itrack_fake; i++){
260 cout<<track_fake[i]<<"\t";
261 if ((i%5)==4) cout<<"\n";
262 }
263 cout<<"\nList of multiple found tracks :\n";
264 for ( i=0; i<itrack_multifound; i++) {
7f6ddf58 265 cout<<"id. "<<track_multifound[i]
266 <<" found - "<<track_multifound_n[i]<<"times\n";
cf98c13f 267 }
8c555625 268
7f6ddf58 269 Stat_t ng=hgood->GetEntries(), nf=hfound->GetEntries();
270 if (ng!=0) cerr<<"\n\nIntegral efficiency is about "<<nf/ng*100.<<" %\n";
271 cout<<"Total number of found tracks ="<<nentr<<endl;
272 cout<<"Total number of \"good\" tracks ="
273 <<mingood<<" (selected for comparison: "<<ng<<')'<<endl<<endl;
274
275
8c555625 276 gStyle->SetOptStat(111110);
277 gStyle->SetOptFit(1);
278
279 TCanvas *c1=new TCanvas("c1","",0,0,700,850);
280
2d343a94 281 Int_t minc=33;
282
8c555625 283 TPad *p1=new TPad("p1","",0,0.3,.5,.6); p1->Draw();
284 p1->cd(); p1->SetFillColor(42); p1->SetFrameFillColor(10);
2d343a94 285 hp->SetFillColor(4); hp->SetXTitle("(mrad)");
286 if (hp->GetEntries()<minc) hp->Draw(); else hp->Fit("gaus"); c1->cd();
8c555625 287
288 TPad *p2=new TPad("p2","",0.5,.3,1,.6); p2->Draw();
289 p2->cd(); p2->SetFillColor(42); p2->SetFrameFillColor(10);
2d343a94 290 hl->SetXTitle("(mrad)");
291 if (hl->GetEntries()<minc) hl->Draw(); else hl->Fit("gaus"); c1->cd();
8c555625 292
293 TPad *p3=new TPad("p3","",0,0,0.5,0.3); p3->Draw();
294 p3->cd(); p3->SetFillColor(42); p3->SetFrameFillColor(10);
2d343a94 295 hpt->SetXTitle("(%)");
296 if (hpt->GetEntries()<minc) hpt->Draw(); else hpt->Fit("gaus"); c1->cd();
8c555625 297
298 TPad *p4=new TPad("p4","",0.5,0,1,0.3); p4->Draw();
299 p4->cd(); p4->SetFillColor(42); p4->SetFrameFillColor(10);
2d343a94 300 hmpt->SetXTitle("(%)");
301 if (hmpt->GetEntries()<minc) hmpt->Draw(); else hmpt->Fit("gaus"); c1->cd();
8c555625 302
303 TPad *p5=new TPad("p5","",0,0.6,1,1); p5->Draw(); p5->cd();
3c0f9266 304 p5->SetFillColor(41); p5->SetFrameFillColor(10);
8c555625 305 hfound->Sumw2(); hgood->Sumw2(); hfake->Sumw2();
306 hg->Divide(hfound,hgood,1,1.,"b");
307 hf->Divide(hfake,hgood,1,1.,"b");
308 hg->SetMaximum(1.4);
309 hg->SetYTitle("Tracking efficiency");
310 hg->SetXTitle("Pt (GeV/c)");
311 hg->Draw();
312
7f6ddf58 313 TLine *line1 = new TLine(0.1,1.0,6.1,1.0); line1->SetLineStyle(4);
8c555625 314 line1->Draw("same");
7f6ddf58 315 TLine *line2 = new TLine(0.1,0.9,6.1,0.9); line2->SetLineStyle(4);
8c555625 316 line2->Draw("same");
317
318 hf->SetFillColor(1);
319 hf->SetFillStyle(3013);
320 hf->SetLineColor(2);
321 hf->SetLineWidth(2);
322 hf->Draw("histsame");
323 TText *text = new TText(0.461176,0.248448,"Fake tracks");
324 text->SetTextSize(0.05);
325 text->Draw();
326 text = new TText(0.453919,1.11408,"Good tracks");
327 text->SetTextSize(0.05);
328 text->Draw();
3c0f9266 329
330
331
332 TCanvas *c2=new TCanvas("c2","",320,32,530,590);
333
334 TPad *p6=new TPad("p6","",0.,0.,1.,.5); p6->Draw();
335 p6->cd(); p6->SetFillColor(42); p6->SetFrameFillColor(10);
336 he->SetFillColor(2); he->SetFillStyle(3005);
337 he->SetXTitle("Arbitrary Units");
2d343a94 338 if (he->GetEntries()<minc) he->Draw(); else he->Fit("gaus"); c2->cd();
3c0f9266 339
340 TPad *p7=new TPad("p7","",0.,0.5,1.,1.); p7->Draw();
341 p7->cd(); p7->SetFillColor(42); p7->SetFrameFillColor(10);
342 hep->SetXTitle("p (Gev/c)"); hep->SetYTitle("dE/dX (Arb. Units)");
343 hep->Draw(); c1->cd();
344
cf98c13f 345 gBenchmark->Stop("AliTPCComparison");
346 gBenchmark->Show("AliTPCComparison");
347
2d343a94 348 TFile fc("AliTPCComparison.root","RECREATE");
349 c1->Write();
350 c2->Write();
351 fc.Close();
352
88cb7938 353 delete rl;
73042f01 354 return 0;
cc80f89e 355}
3c0f9266 356
cc80f89e 357
c630aafd 358Int_t
359good_tracks_tpc(GoodTrackTPC *gt, const Int_t max, const char* evfoldname) {
7f6ddf58 360 Int_t nt=0;
cc80f89e 361
c630aafd 362 AliRunLoader *rl = AliRunLoader::GetRunLoader(evfoldname);
363 if (rl == 0x0) {
88cb7938 364 ::Fatal("AliTPCComparison.C::good_tracks_tpc",
365 "Can not find Run Loader in Folder Named %s",
366 evfoldname);
c630aafd 367 }
368 AliTPCLoader *tpcl = (AliTPCLoader *)rl->GetLoader("TPCLoader");
369 if (tpcl == 0x0) {
5102bab6 370 ::Fatal("AliTPCHits2Digits.C","Can not find TPCLoader !");
c630aafd 371 }
88cb7938 372
373 rl->LoadgAlice();
374
375 AliTPC *TPC=(AliTPC*)rl->GetAliRun()->GetDetector("TPC");
73042f01 376 Int_t ver = TPC->IsVersion();
377 cerr<<"TPC version "<<ver<<" has been found !\n";
378
88cb7938 379 rl->CdGAFile();
380 AliTPCParamSR *digp=(AliTPCParamSR*)gDirectory->Get("75x40_100x60_150x60");
5102bab6 381 if (!digp) {
382 ::Fatal("AliTPCHits2Digits.C","TPC parameters have not been found !");
383 }
73042f01 384 TPC->SetParam(digp);
385
88cb7938 386 rl->LoadHeader();
387
388 Int_t np = rl->GetHeader()->GetNtrack();
389
024a7fe9 390
73042f01 391 Int_t nrow_up=digp->GetNRowUp();
392 Int_t nrows=digp->GetNRowLow()+nrow_up;
393 Int_t zero=digp->GetZeroSup();
7f6ddf58 394 Int_t gap=Int_t(0.125*nrows), shift=Int_t(0.5*gap);
cc80f89e 395 Int_t good_number=Int_t(0.4*nrows);
396
7f6ddf58 397 Int_t *good=new Int_t[np];
398 Int_t i;
399 for (i=0; i<np; i++) good[i]=0;
400
401
402 switch (ver) {
403 case 1:
404 {
88cb7938 405 tpcl->LoadRecPoints();
7f6ddf58 406 AliTPCClustersArray *pca=new AliTPCClustersArray, &ca=*pca;
407 ca.Setup(digp);
408 ca.SetClusterType("AliTPCcluster");
88cb7938 409 ca.ConnectTree(tpcl->TreeR());
7f6ddf58 410 Int_t nrows=Int_t(ca.GetTree()->GetEntries());
411 for (Int_t n=0; n<nrows; n++) {
412 AliSegmentID *s=ca.LoadEntry(n);
413 Int_t sec,row;
414 digp->AdjustSectorRow(s->GetID(),sec,row);
415 AliTPCClustersRow &clrow = *ca.GetRow(sec,row);
416 Int_t ncl=clrow.GetArray()->GetEntriesFast();
417 while (ncl--) {
418 AliTPCcluster *c=(AliTPCcluster*)clrow[ncl];
419 Int_t lab=c->GetLabel(0);
420 if (lab<0) continue; //noise cluster
421 lab=TMath::Abs(lab);
422
423 if (sec>=digp->GetNInnerSector())
424 if (row==nrow_up-1) good[lab]|=0x4000;
425 if (sec>=digp->GetNInnerSector())
426 if (row==nrow_up-1-gap) good[lab]|=0x1000;
427
428 if (sec>=digp->GetNInnerSector())
429 if (row==nrow_up-1-shift) good[lab]|=0x2000;
430 if (sec>=digp->GetNInnerSector())
431 if (row==nrow_up-1-gap-shift) good[lab]|=0x800;
432
433 good[lab]++;
434 }
435 ca.ClearRow(sec,row);
436 }
437 delete pca;
88cb7938 438 tpcl->UnloadRecPoints();
7f6ddf58 439 }
afc42102 440 break;
7f6ddf58 441 case 2:
442 {
88cb7938 443 tpcl->LoadDigits();
444 TTree *TD=tpcl->TreeD();
445
7f6ddf58 446 AliSimDigits da, *digits=&da;
447 TD->GetBranch("Segment")->SetAddress(&digits);
448
449 Int_t *count = new Int_t[np];
450 Int_t i;
451 for (i=0; i<np; i++) count[i]=0;
452
453 Int_t sectors_by_rows=(Int_t)TD->GetEntries();
454 for (i=0; i<sectors_by_rows; i++) {
455 if (!TD->GetEvent(i)) continue;
456 Int_t sec,row;
457 digp->AdjustSectorRow(digits->GetID(),sec,row);
2d343a94 458 //PH cerr<<sec<<' '<<row<<" \r";
7f6ddf58 459 digits->First();
460 do { //Many thanks to J.Chudoba who noticed this
461 Int_t it=digits->CurrentRow(), ip=digits->CurrentColumn();
462 Short_t dig = digits->GetDigit(it,ip);
463 Int_t idx0=digits->GetTrackID(it,ip,0);
464 Int_t idx1=digits->GetTrackID(it,ip,1);
465 Int_t idx2=digits->GetTrackID(it,ip,2);
8ded1b7a 466 if (idx0>=0 && dig>=zero && idx0<np) count[idx0]+=1;
467 if (idx1>=0 && dig>=zero && idx1<np) count[idx1]+=1;
468 if (idx2>=0 && dig>=zero && idx2<np) count[idx2]+=1;
afc42102 469 } while (digits->Next());
7f6ddf58 470 for (Int_t j=0; j<np; j++) {
471 if (count[j]>1) {
472 if (sec>=digp->GetNInnerSector())
473 if (row==nrow_up-1 ) good[j]|=0x4000;
474 if (sec>=digp->GetNInnerSector())
475 if (row==nrow_up-1-gap) good[j]|=0x1000;
476
477 if (sec>=digp->GetNInnerSector())
478 if (row==nrow_up-1-shift) good[j]|=0x2000;
479 if (sec>=digp->GetNInnerSector())
480 if (row==nrow_up-1-gap-shift) good[j]|=0x800;
481 good[j]++;
482 }
483 count[j]=0;
484 }
485 }
486 delete[] count;
88cb7938 487 tpcl->UnloadDigits();
afc42102 488 }
7f6ddf58 489 break;
490 default:
5102bab6 491 ::Fatal("AliTPCComparison.C","Invalid TPC version !");
cc80f89e 492 }
7f6ddf58 493
88cb7938 494 rl->LoadKinematics();
495 AliStack* stack = rl->Stack();
7f6ddf58 496 /** select tracks which are "good" enough **/
497 for (i=0; i<np; i++) {
498 if ((good[i]&0x5000) != 0x5000)
499 if ((good[i]&0x2800) != 0x2800) continue;
500 if ((good[i]&0x7FF ) < good_number) continue;
501
88cb7938 502 TParticle *p = (TParticle*)stack->Particle(i);
503 if (p == 0x0)
504 {
505 cerr<<"Can not get particle "<<i<<endl;
506 continue;
507 }
7f6ddf58 508 if (p->Pt()<0.100) continue;
509 if (TMath::Abs(p->Pz()/p->Pt())>0.999) continue;
510
bf018fe4 511 Double_t vx=p->Vx(),vy=p->Vy();
512 if (TMath::Sqrt(vx*vx+vy*vy)>3.5) continue;
513
514 /*
7f6ddf58 515 Int_t j=p->GetFirstMother();
516 if (j>=0) {
88cb7938 517 TParticle *pp = (TParticle*)stack->Particle(j);
518 if (pp == 0x0)
519 {
520 cerr<<"Can not get particle "<<j<<endl;
521 continue;
522 }
bf018fe4 523 //if (pp->GetFirstMother()>=0) continue;//only one decay is allowed
524 // for cascade hyperons only
024a7fe9 525 Int_t jj=pp->GetFirstMother();
526 if (jj>=0) {
88cb7938 527 TParticle *ppp = (TParticle*)stack->Particle(jj);
024a7fe9 528 if (ppp->GetFirstMother()>=0) continue;//two decays are allowed
529 }
bf018fe4 530
7f6ddf58 531 }
bf018fe4 532 */
7f6ddf58 533
534 gt[nt].lab=i;
535 gt[nt].code=p->GetPdgCode();
536 gt[nt].px=0.; gt[nt].py=0.; gt[nt].pz=0.;
527abbe9 537 gt[nt].x=0.; gt[nt].y=0.; gt[nt].z=0.;
7f6ddf58 538 nt++;
539 if (nt==max) {cerr<<"Too many good tracks !\n"; break;}
2d343a94 540 // cerr<<np-i<<" \r";
7f6ddf58 541 }
88cb7938 542 rl->UnloadKinematics();
7f6ddf58 543
544 /** check if there is also information at the entrance of the TPC **/
88cb7938 545
5102bab6 546 rl->LoadTrackRefs();
547 TTree *TR=rl->TreeTR();
548 TBranch *branch=TR->GetBranch("TPC");
549 if (branch==0) {
550 ::Fatal("AliTPCComparison.C::good_tracks_tpc","No track references !");
551 }
552 TClonesArray *references=new TClonesArray("AliTrackReference",1000);
553 branch->SetAddress(&references);
554 np=(Int_t)TR->GetEntries();
7f6ddf58 555 for (i=0; i<np; i++) {
5102bab6 556 references->Clear();
557 TR->GetEvent(i);
558 Int_t nref=references->GetEntriesFast();
559 if (nref==0) continue;
560 AliTrackReference *ref=(AliTrackReference*)references->UncheckedAt(0);
561
562 Int_t j, lab=ref->Label();
563 for (j=0; j<nt; j++) {if (gt[j].lab==lab) break;}
564 if (j==nt) continue;
565
566 // (px,py,pz) - in global coordinate system, (x,y,z) - in local !
567 gt[j].px=ref->Px(); gt[j].py=ref->Py(); gt[j].pz=ref->Pz();
568 gt[j].x = ref->LocalX();
569 gt[j].y = ref->LocalY();
570 gt[j].z = ref->Z();
7f6ddf58 571 }
572
5102bab6 573 delete references;
7f6ddf58 574 delete[] good;
88cb7938 575
576 tpcl->UnloadHits();
5102bab6 577 rl->UnloadTrackRefs();
88cb7938 578 rl->UnloadgAlice();
7f6ddf58 579
cf98c13f 580 gBenchmark->Stop("AliTPCComparison");
581 gBenchmark->Show("AliTPCComparison");
cc80f89e 582 return nt;
8c555625 583}