]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSComparisonV2.C
No dependency on AliITS and on AliITSgeom (Y. Belikov)
[u/mrichter/AliRoot.git] / ITS / AliITSComparisonV2.C
1 /****************************************************************************
2  *           Very important, delicate and rather obscure macro.             *
3  *                                                                          *
4  *               Creates list of "trackable" tracks,                        *
5  *             calculates efficiency, resolutions etc.                      *
6  *  The ESD tracks must be in an appropriate state (kITSin or kITSrefit)    *
7  *                                                                          *
8  *           Origin: I.Belikov, CERN, Jouri.Belikov@cern.ch                 *
9  ****************************************************************************/
10
11 #if !defined(__CINT__) || defined(__MAKECINT__)
12   #include <TMath.h>
13   #include <TError.h>
14   #include <Riostream.h>
15   #include <TH1F.h>
16   #include <TH2F.h>
17   #include <TTree.h>
18   #include <TParticle.h>
19   #include <TCanvas.h>
20   #include <TLine.h>
21   #include <TText.h>
22   #include <TBenchmark.h>
23   #include <TStyle.h>
24   #include <TFile.h>
25   #include <TROOT.h>
26
27   #include "AliStack.h"
28   #include "AliHeader.h"
29   #include "AliTrackReference.h"
30   #include "AliRunLoader.h"
31   #include "AliRun.h"
32   #include "AliESD.h"
33
34   #include "AliITSRecPoint.h"
35   #include "AliITSLoader.h"
36 #endif
37
38 Int_t GoodTracksITS(const Char_t *dir=".");
39
40 extern AliRun *gAlice;
41 extern TBenchmark *gBenchmark;
42 extern TROOT *gROOT;
43
44 static Int_t allgood=0;
45 static Int_t allselected=0;
46 static Int_t allfound=0;
47
48 Int_t AliITSComparisonV2
49 (Float_t ptcutl=0.2, Float_t ptcuth=10., const Char_t *dir=".") {
50    gBenchmark->Start("AliITSComparisonV2");
51
52    ::Info("AliITSComparisonV2.C","Doing comparison...");
53    
54
55    TH1F *hp=(TH1F*)gROOT->FindObject("hp");
56    if (!hp) hp=new TH1F("hp","PHI resolution",50,-20.,20.); 
57    hp->SetFillColor(4);
58
59    TH1F *hl=(TH1F*)gROOT->FindObject("hl");
60    if (!hl) hl=new TH1F("hl","LAMBDA resolution",50,-20,20);
61    hl->SetFillColor(4);
62
63    TH1F *hpt=(TH1F*)gROOT->FindObject("hpt");
64    if (!hpt) hpt=new TH1F("hpt","Relative Pt resolution",30,-10.,10.); 
65    hpt->SetFillColor(2);
66  
67    TH1F *hmpt=(TH1F*)gROOT->FindObject("hmpt");
68    if (!hmpt) 
69       hmpt=new TH1F("hmpt","Transverse impact parameter",30,-777,777); 
70    hmpt->SetFillColor(6);
71
72    TH1F *hz=(TH1F*)gROOT->FindObject("hz");
73    if (!hz) hz=new TH1F("hz","Longitudinal impact parameter",30,-777,777); 
74
75
76
77    TH1F *hgood=(TH1F*)gROOT->FindObject("hgood");
78    if (!hgood) hgood=new TH1F("hgood","Good tracks",30,0.2,6.1);
79     
80    TH1F *hfound=(TH1F*)gROOT->FindObject("hfound");
81    if (!hfound) hfound=new TH1F("hfound","Found tracks",30,0.2,6.1);
82
83    TH1F *hfake=(TH1F*)gROOT->FindObject("hfake");
84    if (!hfake) hfake=new TH1F("hfake","Fake tracks",30,0.2,6.1);
85
86    TH1F *hg=(TH1F*)gROOT->FindObject("hg");
87    if (!hg) hg=new TH1F("hg","Efficiency for good tracks",30,0.2,6.1);
88    hg->SetLineColor(4); hg->SetLineWidth(2);
89
90    TH1F *hf=(TH1F*)gROOT->FindObject("hf");
91    if (!hf) hf=new TH1F("hf","Efficiency for fake tracks",30,0.2,6.1);
92    hf->SetFillColor(1); hf->SetFillStyle(3013); hf->SetLineWidth(2);
93
94    TH1F *he=(TH1F*)gROOT->FindObject("he");
95    if (!he) 
96       he =new TH1F("he","dE/dX for pions with 0.4<p<0.5 GeV/c",50,0.,100.);
97
98    TH2F *hep=(TH2F*)gROOT->FindObject("hep");
99    if (!hep) hep=new TH2F("hep","dE/dX vs momentum",50,0.,2.,50,0.,400.);
100    hep->SetMarkerStyle(8);
101    hep->SetMarkerSize(0.4);
102
103
104    Char_t fname[100];
105    sprintf(fname,"%s/GoodTracksITS.root",dir);
106
107    TFile *refFile=TFile::Open(fname,"old");
108    if (!refFile || !refFile->IsOpen()) {
109    ::Info("AliITSComparisonV2.C","Marking good tracks (will take a while)...");
110      if (GoodTracksITS(dir)) {
111         ::Error("AliITSComparisonV2.C","Can't generate the reference file !");
112         return 1;
113      }
114    }
115    refFile=TFile::Open(fname,"old");
116    if (!refFile || !refFile->IsOpen()) {
117      ::Error("AliITSComparisonV2.C","Can't open the reference file !");
118      return 1;
119    }   
120   
121    TTree *itsTree=(TTree*)refFile->Get("itsTree");
122    if (!itsTree) {
123      ::Error("AliITSComparisonV2.C","Can't get the reference tree !");
124      return 2;
125    }
126    TBranch *branch=itsTree->GetBranch("ITS");
127    if (!branch) {
128      ::Error("AliITSComparisonV2.C","Can't get the ITS branch !");
129      return 3;
130    }
131    TClonesArray dummy("AliTrackReference",1000), *refs=&dummy;
132    branch->SetAddress(&refs);
133
134
135    sprintf(fname,"%s/AliESDs.root",dir);
136    TFile *ef=TFile::Open(fname);
137    if ((!ef)||(!ef->IsOpen())) {
138       sprintf(fname,"%s/AliESDits.root",dir);
139       ef=TFile::Open(fname);
140       if ((!ef)||(!ef->IsOpen())) {
141          ::Error("AliITSComparisonV2.C","Can't open AliESDits.root !");
142          return 4;
143       }
144    }
145    AliESD* event = new AliESD;
146    TTree* esdTree = (TTree*) ef->Get("esdTree");
147    if (!esdTree) {
148       ::Error("AliITSComparison.C", "no ESD tree found");
149       return 6;
150    }
151    esdTree->SetBranchAddress("ESD", &event);
152
153
154    //******* Loop over events *********
155    Int_t e=0;
156    while (esdTree->GetEvent(e)) {
157      cout<<endl<<endl<<"********* Processing event number: "<<e<<"*******\n";
158  
159      Int_t nentr=event->GetNumberOfTracks();
160      allfound+=nentr;
161
162      if (itsTree->GetEvent(e++)==0) {
163         cerr<<"No reconstructable tracks !\n";
164         continue;
165      }
166
167      Int_t ngood=refs->GetEntriesFast(); 
168      allgood+=ngood;
169
170      const Int_t MAX=15000;
171      Int_t notf[MAX], nnotf=0;
172      Int_t fake[MAX], nfake=0;
173      Int_t mult[MAX], numb[MAX], nmult=0;
174      Int_t k;
175      for (k=0; k<ngood; k++) {
176         AliTrackReference *ref=(AliTrackReference*)refs->UncheckedAt(k); 
177         Int_t lab=ref->Label(), tlab=-1;
178         Float_t ptg=TMath::Sqrt(ref->Px()*ref->Px() + ref->Py()*ref->Py());
179
180         if (ptg<ptcutl) continue;
181         if (ptg>ptcuth) continue;
182
183         allselected++;
184
185         hgood->Fill(ptg);
186
187         AliESDtrack *esd=0;
188         Int_t cnt=0;
189         for (Int_t i=0; i<nentr; i++) {
190            AliESDtrack *t=event->GetTrack(i);
191            UInt_t status=t->GetStatus();
192
193            if ((status&AliESDtrack::kITSrefit)==0) continue;
194
195            Int_t lbl=t->GetLabel();
196            if (lab==TMath::Abs(lbl)) {
197               if (cnt==0) {esd=t; tlab=lbl;}
198               cnt++;
199            }
200         }
201         if (cnt==0) {
202            notf[nnotf++]=lab;
203            continue;
204         } else if (cnt>1){
205            mult[nmult]=lab;
206            numb[nmult]=cnt; nmult++;        
207         }
208
209         if (lab==tlab) hfound->Fill(ptg);
210         else {
211           fake[nfake++]=lab;
212           hfake->Fill(ptg); 
213         }
214
215         Double_t alpha=esd->GetAlpha(),xv,par[5]; 
216         esd->GetExternalParameters(xv,par);
217         Float_t phi=TMath::ASin(par[2]) + alpha;
218         if (phi<-TMath::Pi()) phi+=2*TMath::Pi();
219         if (phi>=TMath::Pi()) phi-=2*TMath::Pi();
220         Float_t lam=TMath::ATan(par[3]); 
221         Float_t pt_1=TMath::Abs(par[4]);
222
223         Float_t phig=TMath::ATan2(ref->Py(),ref->Px());
224         hp->Fill((phi - phig)*1000.);
225
226         Float_t lamg=TMath::ATan2(ref->Pz(),ptg);
227         hl->Fill((lam - lamg)*1000.);
228
229         Float_t d,z; esd->GetImpactParameters(d,z);
230         hmpt->Fill(10000*d);
231         hz->Fill(10000*z);
232
233         hpt->Fill((pt_1 - 1/ptg)/(1/ptg)*100.);
234
235         Float_t mom=1./(pt_1*TMath::Cos(lam));
236         Float_t dedx=esd->GetITSsignal();
237         hep->Fill(mom,dedx,1.);
238
239         Int_t pdg=(Int_t)ref->GetLength();  //this is particle's PDG !
240
241         if (TMath::Abs(pdg)==211) //pions
242            if (mom>0.4 && mom<0.5) he->Fill(dedx,1.);
243
244      }
245
246      cout<<"\nList of Not found tracks :\n";
247      for (k=0; k<nnotf; k++){
248        cout<<notf[k]<<"\t";
249        if ((k%9)==8) cout<<"\n";
250      }
251      cout<<"\n\nList of fake  tracks :\n";
252      for (k=0; k<nfake; k++){
253        cout<<fake[k]<<"\t";
254        if ((k%9)==8) cout<<"\n";
255      }
256      cout<<"\n\nList of multiple found tracks :\n";
257      for (k=0; k<nmult; k++) {
258          cout<<"id.   "<<mult[k]
259              <<"     found - "<<numb[k]<<"times\n";
260      }
261      cout<<endl;
262
263      cout<<"Number of found tracks : "<<nentr<<endl;
264      cout<<"Number of \"good\" tracks : "<<ngood<<endl;
265
266      refs->Clear();
267    } //***** End of the loop over events
268
269    delete event;
270    ef->Close();
271    
272    delete itsTree;
273    refFile->Close();
274
275    Stat_t ng=hgood->GetEntries(), nf=hfound->GetEntries();
276    if (ng!=0) cout<<"\n\nIntegral efficiency is about "<<nf/ng*100.<<" %\n";
277    cout<<"Total number selected of \"good\" tracks ="<<allselected<<endl<<endl;
278    cout<<"Total number of found tracks ="<<allfound<<endl;
279    cout<<"Total number of \"good\" tracks ="<<allgood<<endl;
280    cout<<endl;
281
282    gStyle->SetOptStat(111110);
283    gStyle->SetOptFit(1);
284
285    TCanvas *c1=new TCanvas("c1","",0,0,700,850);
286
287    Int_t minc=33; 
288
289    TPad *p1=new TPad("p1","",0,0.3,.5,.6); p1->Draw();
290    p1->cd(); p1->SetFillColor(42); p1->SetFrameFillColor(10); 
291    hp->SetFillColor(4);  hp->SetXTitle("(mrad)"); 
292    if (hp->GetEntries()<minc) hp->Draw(); else hp->Fit("gaus"); c1->cd();
293
294    TPad *p2=new TPad("p2","",0.5,.3,1,.6); p2->Draw(); 
295    p2->cd(); p2->SetFillColor(42); p2->SetFrameFillColor(10);
296    hl->SetXTitle("(mrad)");
297    if (hl->GetEntries()<minc) hl->Draw(); else hl->Fit("gaus"); c1->cd();
298
299    TPad *p3=new TPad("p3","",0,0,0.5,0.3); p3->Draw();
300    p3->cd(); p3->SetFillColor(42); p3->SetFrameFillColor(10); 
301    hpt->SetXTitle("(%)");
302    if (hpt->GetEntries()<minc) hpt->Draw(); else hpt->Fit("gaus"); c1->cd();
303
304    TPad *p4=new TPad("p4","",0.5,0,1,0.3); p4->Draw();
305    p4->cd(); p4->SetFillColor(42); p4->SetFrameFillColor(10);
306    hmpt->SetXTitle("(micron)");
307    if (hmpt->GetEntries()<minc) hmpt->Draw(); else hmpt->Fit("gaus"); 
308    hz->Draw("same"); c1->cd();
309    
310
311    TPad *p5=new TPad("p5","",0,0.6,1,1); p5->Draw(); p5->cd(); 
312    p5->SetFillColor(41); p5->SetFrameFillColor(10);
313    hfound->Sumw2(); hgood->Sumw2(); hfake->Sumw2();
314    hg->Divide(hfound,hgood,1,1.,"b");
315    hf->Divide(hfake,hgood,1,1.,"b");
316    hg->SetMaximum(1.4);
317    hg->SetYTitle("Tracking efficiency");
318    hg->SetXTitle("Pt (GeV/c)");
319    hg->Draw();
320
321    TLine *line1 = new TLine(0.2,1.0,6.1,1.0); line1->SetLineStyle(4);
322    line1->Draw("same");
323    TLine *line2 = new TLine(0.2,0.9,6.1,0.9); line2->SetLineStyle(4);
324    line2->Draw("same");
325
326    hf->SetFillColor(1);
327    hf->SetFillStyle(3013);
328    hf->SetLineColor(2);
329    hf->SetLineWidth(2);
330    hf->Draw("histsame");
331    TText *text = new TText(0.461176,0.248448,"Fake tracks");
332    text->SetTextSize(0.05);
333    text->Draw();
334    text = new TText(0.453919,1.11408,"Good tracks");
335    text->SetTextSize(0.05);
336    text->Draw();
337
338    TCanvas *c2=new TCanvas("c2","",320,32,530,590);
339    TPad *p6=new TPad("p6","",0.,0.,1.,.5); p6->Draw();
340    p6->cd(); p6->SetFillColor(42); p6->SetFrameFillColor(10); 
341    he->SetFillColor(2); he->SetFillStyle(3005);  
342    he->SetXTitle("Arbitrary Units"); 
343    if (he->GetEntries()<minc) he->Draw(); else he->Fit("gaus"); c2->cd();
344
345    TPad *p7=new TPad("p7","",0.,0.5,1.,1.); p7->Draw(); 
346    p7->cd(); p7->SetFillColor(42); p7->SetFrameFillColor(10);
347    hep->SetXTitle("p (Gev/c)"); hep->SetYTitle("dE/dX (Arb. Units)"); 
348    hep->Draw(); c1->cd();
349
350    TFile fc("AliITSComparisonV2.root","RECREATE");
351    c1->Write();
352    c2->Write();
353    fc.Close();
354
355    gBenchmark->Stop("AliITSComparisonV2");
356    gBenchmark->Show("AliITSComparisonV2");
357
358    return 0;
359 }
360
361
362
363 Int_t GoodTracksITS(const Char_t *dir) {
364    if (gAlice) { 
365        delete gAlice->GetRunLoader();
366        delete gAlice;//if everything was OK here it is already NULL
367        gAlice = 0x0;
368    }
369
370    Char_t fname[100];
371    sprintf(fname,"%s/galice.root",dir);
372
373    AliRunLoader *rl = AliRunLoader::Open(fname,"COMPARISON");
374    if (!rl) {
375       ::Error("GoodTracksITS","Can't start session !");
376       return 1;
377    }
378
379    rl->LoadgAlice();
380    rl->LoadHeader();
381    rl->LoadKinematics();
382
383    AliITSLoader* itsl = (AliITSLoader*)rl->GetLoader("ITSLoader");
384    if (itsl == 0x0) {
385        ::Error("GoodTracksITS","Can not find the ITSLoader");
386        delete rl;
387        return 4;
388    }
389    itsl->LoadRecPoints();
390   
391
392    Int_t nev=rl->GetNumberOfEvents();
393    ::Info("GoodTracksITS","Number of events : %d\n",nev);  
394
395    sprintf(fname,"%s/GoodTracksTPC.root",dir);
396    TFile *tpcFile=TFile::Open(fname);
397    if ((!tpcFile)||(!tpcFile->IsOpen())) {
398        ::Error("GoodTracksITS","Can't open the GoodTracksTPC.root !");
399        delete rl;
400        return 5; 
401    }
402    TClonesArray dum("AliTrackReference",1000), *tpcRefs=&dum;
403    TTree *tpcTree=(TTree*)tpcFile->Get("tpcTree");
404    if (!tpcTree) {
405        ::Error("GoodTracksITS","Can't get the TPC reference tree !");
406        delete rl;
407        return 6;
408    }
409    TBranch *tpcBranch=tpcTree->GetBranch("TPC");
410    if (!tpcBranch) {
411       ::Error("GoodTracksITS","Can't get the TPC reference branch !");
412       delete rl;
413       return 7;
414    }
415    tpcBranch->SetAddress(&tpcRefs);
416
417    sprintf(fname,"%s/GoodTracksITS.root",dir);
418    TFile *itsFile=TFile::Open(fname,"recreate");
419    TClonesArray dummy2("AliTrackReference",1000), *itsRefs=&dummy2;
420    TTree itsTree("itsTree","Tree with info about the reconstructable ITS tracks");
421    itsTree.Branch("ITS",&itsRefs);
422
423    //********  Loop over generated events 
424    for (Int_t e=0; e<nev; e++) {
425      Int_t k;
426
427      rl->GetEvent(e);  itsFile->cd();
428
429      Int_t np = rl->GetHeader()->GetNtrack();
430      cout<<"Event "<<e<<" Number of particles: "<<np<<endl;
431
432      //******** Fill the "good" masks
433      Int_t *good=new Int_t[np]; for (k=0; k<np; k++) good[k]=0;
434
435      TTree *cTree=itsl->TreeR();
436      if (!cTree) {
437         ::Error("GoodTracksITS","Can't get the cluster tree !"); 
438         delete rl;
439         return 8;
440      }
441      TBranch *branch=cTree->GetBranch("ITSRecPoints");
442      if (!branch) {
443         ::Error("GoodTracksITS","Can't get the clusters branch !"); 
444         delete rl;
445         return 9;
446      }
447      TClonesArray dummy("AliITSRecPoint",10000), *clusters=&dummy;
448      branch->SetAddress(&clusters);
449
450      Int_t entr=(Int_t)cTree->GetEntries();
451      for (k=0; k<entr; k++) {
452          cTree->GetEvent(k);
453          Int_t ncl=clusters->GetEntriesFast(); if (ncl==0) continue;
454          while (ncl--) {
455             AliITSRecPoint *pnt=(AliITSRecPoint*)clusters->UncheckedAt(ncl);
456
457             Int_t lay=pnt->GetLayer();
458             if (lay<0 || lay>5) {
459                ::Error("GoodTracksITS","Wrong layer !");
460                delete rl;
461                return 10;
462             }
463
464             Int_t l0=pnt->GetLabel(0);
465                if (l0>=np) {
466 //               cerr<<"Wrong label: "<<l0<<endl;
467                  continue;
468                }
469             Int_t l1=pnt->GetLabel(1);
470                if (l1>=np) {
471 //               cerr<<"Wrong label: "<<l1<<endl;
472                  continue;
473                }
474             Int_t l2=pnt->GetLabel(2);
475                if (l2>=np) {
476 //               cerr<<"Wrong label: "<<l2<<endl;
477                  continue;
478                }
479             Int_t mask=1<<lay;
480             if (l0>=0) good[l0]|=mask; 
481             if (l1>=0) good[l1]|=mask; 
482             if (l2>=0) good[l2]|=mask;
483          }
484          clusters->Clear();
485      }
486    
487
488      //****** select tracks which are "good" enough
489      AliStack* stack = rl->Stack();
490
491      tpcTree->GetEvent(e);
492      Int_t nk=tpcRefs->GetEntriesFast();
493      Int_t nt=0;
494      for (k=0; k<nk; k++) {
495         AliTrackReference *tpcRef=(AliTrackReference *)tpcRefs->UncheckedAt(k);
496         Int_t lab=tpcRef->Label();
497         if (good[lab] != 0x3F) continue;
498         TParticle *p = (TParticle*)stack->Particle(lab);
499         if (p == 0x0) {
500            cerr<<"Can not get particle "<<lab<<endl;
501            continue;
502         }
503
504         AliTrackReference *ref=new((*itsRefs)[nt]) AliTrackReference(*tpcRef);
505         ref->SetMomentum(p->Px(),p->Py(),p->Pz());
506         ref->SetPosition(p->Vx(),p->Vy(),p->Vz());
507         nt++;
508      }
509      tpcRefs->Clear();
510
511      itsTree.Fill();
512      itsRefs->Clear();
513
514      delete[] good;
515
516    } //*** end of the loop over generated events
517
518    itsTree.Write();
519    itsFile->Close();
520
521    delete tpcTree;
522    tpcFile->Close();
523
524    delete rl;
525    return 0;
526 }
527
528