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 **************************************************************************/
16 //----------------------------------------------------------------------------
17 // Implementation of the D0toKpi reconstruction and analysis class
19 // Note: the two decay tracks are labelled: 0 (positive track)
22 // Origin: A. Dainese andrea.dainese@pd.infn.it
23 //----------------------------------------------------------------------------
24 #include <Riostream.h>
32 #include <TParticle.h>
35 #include "AliRunLoader.h"
36 #include "AliITStrackV2.h"
37 #include "AliITSVertexerTracks.h"
38 #include "AliITSVertex.h"
39 #include "AliV0vertexer.h"
40 #include "AliV0vertex.h"
41 #include "AliD0toKpi.h"
42 #include "AliD0toKpiAnalysis.h"
53 ClassImp(AliD0toKpiAnalysis)
55 //----------------------------------------------------------------------------
56 AliD0toKpiAnalysis::AliD0toKpiAnalysis() {
57 // Default constructor
66 fVertexOnTheFly = kFALSE;
71 //----------------------------------------------------------------------------
72 AliD0toKpiAnalysis::~AliD0toKpiAnalysis() {}
73 //----------------------------------------------------------------------------
74 void AliD0toKpiAnalysis::ApplySelection(const Char_t *inName,const Char_t *outName) const {
75 // select candidates that pass fD0Cuts and write them to a new file
77 TFile *inFile = TFile::Open(inName);
79 TTree *treeD0in=(TTree*)inFile->Get("TreeD0");
80 AliD0toKpiAnalysis *inAnalysis = (AliD0toKpiAnalysis*)inFile->Get("D0toKpiAnalysis");
81 printf("+++\n+++ I N P U T S T A T U S:\n+++\n");
82 inAnalysis->PrintStatus();
86 treeD0in->SetBranchAddress("D0toKpi",&d);
87 Int_t entries = (Int_t)treeD0in->GetEntries();
89 printf("+++\n+++ Number of D0 in input tree: %d\n+++\n",entries);
91 TTree *treeD0out = new TTree("TreeD0","Tree with selected D0 candidates");
92 treeD0out->Branch("D0toKpi","AliD0toKpi",&d,200000,0);
95 Int_t okD0=0,okD0bar=0;
98 for(Int_t i=0; i<entries; i++) {
99 // get event from tree
100 treeD0in->GetEvent(i);
102 if(fSim && fOnlySignal && !d->IsSignal()) continue;
104 // check if candidate passes selection (as D0 or D0bar)
105 if(d->Select(fD0Cuts,okD0,okD0bar)) {
112 AliD0toKpiAnalysis *outAnalysis = (AliD0toKpiAnalysis*)inAnalysis->Clone("D0toKpiAnalysis");
113 outAnalysis->SetD0Cuts(fD0Cuts);
114 printf("------------------------------------------\n");
115 printf("+++\n+++ O U T P U T S T A T U S:\n+++\n");
116 outAnalysis->PrintStatus();
118 printf("+++\n+++ Number of D0 in output tree: %d\n+++\n",nSel);
120 TFile* outFile = new TFile(outName,"recreate");
122 outAnalysis->Write();
127 //----------------------------------------------------------------------------
128 Double_t AliD0toKpiAnalysis::CalculateTOFmass(Double_t mom,Double_t length,
129 Double_t time) const {
130 // calculated the mass from momentum, track length from vertex to TOF
131 // and time measured by the TOF
132 if(length==0.) return -1000.;
133 Double_t a = time*time/length/length;
135 a = TMath::Sqrt(a-1.);
137 a = -TMath::Sqrt(1.-a);
142 //----------------------------------------------------------------------------
143 void AliD0toKpiAnalysis::FindCandidates(Int_t evFirst,Int_t evLast,
144 const Char_t *outName) {
145 // Find D0 candidates and calculate parameters
148 printf("AliD0toKpiAnalysis::FindCandidates(): Set B!\n");
151 AliKalmanTrack::SetConvConst(100/0.299792458/fBz);
153 TString trkName("AliITStracksV2.root");
154 if(gSystem->AccessPathName(trkName.Data(),kFileExists)) {
155 printf("AliD0toKpiAnalysis::FindCandidates(): No tracks file found!\n");
159 TString outName1=outName;
160 TString outName2("nTotEvents.dat");
163 Int_t nTotEv=0,nD0rec=0,nD0rec1ev=0;
165 Double_t v2[3],mom[6],d0[2];
166 Double_t alphaP,alphaN,ptP,ptN,phiP,phiN;
167 Int_t iTrkP,iTrkN,trkEntries;
168 Int_t nTrksP=0,nTrksN=0;
170 Int_t okD0=0,okD0bar=0;
171 Char_t trkTreeName[100],vtxName[100];
172 AliITStrackV2 *postrack = 0;
173 AliITStrackV2 *negtrack = 0;
175 // create the AliITSVertexerTracks object
176 // (it will be used only if fVertexOnTheFly=kTrue)
177 AliITSVertexerTracks *vertexer1 = new AliITSVertexerTracks;
178 vertexer1->SetMinTracks(2);
179 vertexer1->SetDebug(0);
184 // define the cuts for vertexing
185 Double_t vtxcuts[]={50., // max. allowed chi2
186 0.0, // min. allowed negative daughter's impact param
187 0.0, // min. allowed positive daughter's impact param
188 1.0, // max. allowed DCA between the daughter tracks
189 -1.0, // min. allowed cosine of pointing angle
190 0.0, // min. radius of the fiducial volume
191 2.9};// max. radius of the fiducial volume
193 // create the AliV0vertexer object
194 AliV0vertexer *vertexer2 = new AliV0vertexer(vtxcuts);
196 // create tree for reconstructed D0s
197 AliD0toKpi *ioD0toKpi=0;
198 TTree *treeD0 = new TTree("TreeD0","Tree with D0 candidates");
199 treeD0->Branch("D0toKpi","AliD0toKpi",&ioD0toKpi,200000,0);
201 // open file with tracks
202 TFile *trkFile = TFile::Open(trkName.Data());
204 // loop on events in file
205 for(ev=evFirst; ev<=evLast; ev++) {
206 printf(" --- Looking for D0->Kpi in event %d ---\n",ev);
208 // retrieve primary vertex from file
209 sprintf(vtxName,"VertexTracks_%d",ev);
210 AliITSVertex *vertex1stored = (AliITSVertex*)trkFile->Get(vtxName);
211 vertex1stored->GetXYZ(fV1);
212 delete vertex1stored;
214 // retrieve tracks from file
215 sprintf(trkTreeName,"TreeT_ITS_%d",ev);
216 TTree *trkTree=(TTree*)trkFile->Get(trkTreeName);
218 printf("AliD0toKpiAnalysis::FindCandidates():\n tracks tree not found for evet %d\n",ev);
221 trkEntries = (Int_t)trkTree->GetEntries();
222 printf(" Number of tracks: %d\n",trkEntries);
224 // count the total number of events
227 // call function which applies sigle-track selection and
228 // separetes positives and negatives
229 TObjArray trksP(trkEntries/2);
230 Int_t *trkEntryP = new Int_t[trkEntries];
231 TObjArray trksN(trkEntries/2);
232 Int_t *trkEntryN = new Int_t[trkEntries];
233 SelectTracks(*trkTree,trksP,trkEntryP,nTrksP,trksN,trkEntryN,nTrksN);
237 // loop on positive tracks
238 for(iTrkP=0; iTrkP<nTrksP; iTrkP++) {
239 if(iTrkP%10==0) printf(" Processing positive track number %d of %d\n",iTrkP,nTrksP);
241 // get track from track array
242 postrack = (AliITStrackV2*)trksP.At(iTrkP);
243 trkNum[0] = trkEntryP[iTrkP];
245 // loop on negative tracks
246 for(iTrkN=0; iTrkN<nTrksN; iTrkN++) {
247 // get track from tracks array
248 negtrack = (AliITStrackV2*)trksN.At(iTrkN);
249 trkNum[1] = trkEntryN[iTrkN];
251 AliITStrackV2 nt(*negtrack), pt(*postrack), *pnt=&nt, *ppt=&pt;
254 // ----------- DCA MINIMIZATION ------------------
256 // find the DCA and propagate the tracks to the DCA
257 dca = vertexer2->PropagateToDCA(pnt,ppt);
259 // define the AliV0vertex object
260 AliV0vertex *vertex2 = new AliV0vertex(*pnt,*ppt);
262 // get position of the secondary vertex
263 vertex2->GetXYZ(v2[0],v2[1],v2[2]);
267 // momenta of the tracks at the vertex
268 ptP = 1./TMath::Abs(ppt->Get1Pt());
269 alphaP = ppt->GetAlpha();
270 phiP = alphaP+TMath::ASin(ppt->GetSnp());
271 mom[0] = ptP*TMath::Cos(phiP);
272 mom[1] = ptP*TMath::Sin(phiP);
273 mom[2] = ptP*ppt->GetTgl();
275 ptN = 1./TMath::Abs(pnt->Get1Pt());
276 alphaN = pnt->GetAlpha();
277 phiN = alphaN+TMath::ASin(pnt->GetSnp());
278 mom[3] = ptN*TMath::Cos(phiN);
279 mom[4] = ptN*TMath::Sin(phiN);
280 mom[5] = ptN*pnt->GetTgl();
283 // no vertexing if DeltaMass > fMassCut
284 if(fVertexOnTheFly) {
286 if(SelectInvMass(mom)) {
287 // primary vertex from *other* tracks in event
288 vertexer1->SetVtxStart(fV1[0],fV1[1]);
289 skipped[0] = trkEntryP[iTrkP];
290 skipped[1] = trkEntryN[iTrkN];
291 vertexer1->SetSkipTracks(2,skipped);
292 AliITSVertex *vertex1onfly =
293 (AliITSVertex*)vertexer1->VertexOnTheFly(*trkTree);
294 if(vertex1onfly->GetNContributors()>0) goodVtx1 = kTRUE;
295 vertex1onfly->GetXYZ(fV1);
296 //vertex1onfly->PrintStatus();
301 // impact parameters of the tracks w.r.t. the primary vertex
302 d0[0] = 10000.*ppt->GetD(fV1[0],fV1[1]);
303 d0[1] = -10000.*pnt->GetD(fV1[0],fV1[1]);
305 // create the object AliD0toKpi
306 AliD0toKpi theD0(ev,trkNum,fV1,v2,dca,mom,d0);
309 if(goodVtx1 && theD0.Select(fD0Cuts,okD0,okD0bar)) {
315 nD0rec++; nD0rec1ev++;
320 } // loop on negative tracks
322 } // loop on positive tracks
330 printf(" Number of D0 candidates: %d\n",nD0rec1ev);
331 } // loop on events in file
334 printf("\n+++\n+++ Total number of events: %d\n+++\n",nTotEv);
335 printf("\n+++\n+++ Total number of D0 candidates: %d\n+++\n",nD0rec);
342 // create a copy of this class to be written to output file
343 AliD0toKpiAnalysis *copy = (AliD0toKpiAnalysis*)this->Clone("D0toKpiAnalysis");
346 // add PDG codes to decay tracks in found candidates (in simulation mode)
347 // and store tree in the output file
349 TFile *outroot = new TFile(outName1.Data(),"recreate");
355 printf(" Now adding information from simulation (PDG codes) ...\n");
356 TTree *treeD0sim = new TTree("TreeD0","Tree with D0 candidates");
357 MakeTracksRefFile(evFirst,evLast);
358 SimulationInfo(treeD0,treeD0sim);
360 TFile *outroot = new TFile(outName1.Data(),"recreate");
367 // write to a file the total number of events
368 FILE *outdat = fopen(outName2.Data(),"w");
369 fprintf(outdat,"%d\n",nTotEv);
374 //----------------------------------------------------------------------------
375 void AliD0toKpiAnalysis::FindCandidatesESD(Int_t evFirst,Int_t evLast,
376 const Char_t *outName) {
377 // Find D0 candidates and calculate parameters
380 printf("AliD0toKpiAnalysis::FindCandidatesESD(): Set B!\n");
383 AliKalmanTrack::SetConvConst(100/0.299792458/fBz);
385 TString esdName("AliESDs.root");
386 if(gSystem->AccessPathName(esdName.Data(),kFileExists)) {
387 printf("AliD0toKpiAnalysis::FindCandidatesESD(): No ESDs file found!\n");
391 TString outName1=outName;
392 TString outName2("nTotEvents.dat");
395 Int_t nTotEv=0,nD0rec=0,nD0rec1ev=0;
397 Double_t v2[3],mom[6],d0[2];
398 Double_t alphaP,alphaN,ptP,ptN,phiP,phiN;
399 Int_t iTrkP,iTrkN,trkEntries;
400 Int_t nTrksP=0,nTrksN=0;
403 Int_t okD0=0,okD0bar=0;
404 AliITStrackV2 *postrack = 0;
405 AliITStrackV2 *negtrack = 0;
407 // create the AliITSVertexerTracks object
408 // (it will be used only if fVertexOnTheFly=kTrue)
409 AliITSVertexerTracks *vertexer1 = new AliITSVertexerTracks;
410 vertexer1->SetMinTracks(2);
411 vertexer1->SetDebug(0);
416 // define the cuts for vertexing
417 Double_t vtxcuts[]={50., // max. allowed chi2
418 0.0, // min. allowed negative daughter's impact param
419 0.0, // min. allowed positive daughter's impact param
420 1.0, // max. allowed DCA between the daughter tracks
421 -1.0, // min. allowed cosine of pointing angle
422 0.0, // min. radius of the fiducial volume
423 2.9};// max. radius of the fiducial volume
425 // create the AliV0vertexer object
426 AliV0vertexer *vertexer2 = new AliV0vertexer(vtxcuts);
428 // create tree for reconstructed D0s
429 AliD0toKpi *ioD0toKpi=0;
430 TTree *treeD0 = new TTree("TreeD0","Tree with D0 candidates");
431 treeD0->Branch("D0toKpi","AliD0toKpi",&ioD0toKpi,200000,0);
433 // open file with tracks
434 TFile *esdFile = TFile::Open(esdName.Data());
437 TIter next(esdFile->GetListOfKeys());
438 // loop on events in file
439 while ((key=(TKey*)next())!=0) {
440 AliESD *event=(AliESD*)key->ReadObj();
441 Int_t ev = (Int_t)event->GetEventNumber();
442 if(ev<evFirst || ev>evLast) { delete event; continue; }
443 printf("--- Finding D0 -> Kpi in event %d\n",ev);
445 // retrieve primary vertex from file
446 //sprintf(vtxName,"Vertex_%d",ev);
447 //AliITSVertex *vertex1stored = (AliITSVertex*)trkFile->Get(vtxName);
448 //vertex1stored->GetXYZ(fV1);
449 //delete vertex1stored;
450 event->GetVertex(fV1,covV1);
452 trkEntries = event->GetNumberOfTracks();
453 printf(" Number of tracks: %d\n",trkEntries);
455 // count the total number of events
458 // call function which applies sigle-track selection and
459 // separetes positives and negatives
460 TObjArray trksP(trkEntries/2);
461 Int_t *trkEntryP = new Int_t[trkEntries];
462 TObjArray trksN(trkEntries/2);
463 Int_t *trkEntryN = new Int_t[trkEntries];
464 TTree *trkTree = new TTree();
465 if(fVertexOnTheFly) {
466 SelectTracksESDvtx(*event,trkTree,trksP,trkEntryP,nTrksP,
467 trksN,trkEntryN,nTrksN);
469 SelectTracksESD(*event,trksP,trkEntryP,nTrksP,
470 trksN,trkEntryN,nTrksN);
473 if(fDebug) printf(" pos. tracks: %d neg .tracks: %d\n",nTrksP,nTrksN);
477 // loop on positive tracks
478 for(iTrkP=0; iTrkP<nTrksP; iTrkP++) {
479 if((iTrkP%10==0) || fDebug) printf(" Processing positive track number %d of %d\n",iTrkP,nTrksP);
481 // get track from track array
482 postrack = (AliITStrackV2*)trksP.UncheckedAt(iTrkP);
483 trkNum[0] = trkEntryP[iTrkP];
485 // loop on negative tracks
486 for(iTrkN=0; iTrkN<nTrksN; iTrkN++) {
488 // get track from tracks array
489 negtrack = (AliITStrackV2*)trksN.UncheckedAt(iTrkN);
490 trkNum[1] = trkEntryN[iTrkN];
492 AliITStrackV2 nt(*negtrack), pt(*postrack), *pnt=&nt, *ppt=&pt;
495 // ----------- DCA MINIMIZATION ------------------
497 // find the DCA and propagate the tracks to the DCA
498 dca = vertexer2->PropagateToDCA(pnt,ppt);
500 // define the AliV0vertex object
501 AliV0vertex *vertex2 = new AliV0vertex(*pnt,*ppt);
503 // get position of the secondary vertex
504 vertex2->GetXYZ(v2[0],v2[1],v2[2]);
508 // momenta of the tracks at the vertex
509 ptP = 1./TMath::Abs(ppt->Get1Pt());
510 alphaP = ppt->GetAlpha();
511 phiP = alphaP+TMath::ASin(ppt->GetSnp());
512 mom[0] = ptP*TMath::Cos(phiP);
513 mom[1] = ptP*TMath::Sin(phiP);
514 mom[2] = ptP*ppt->GetTgl();
516 ptN = 1./TMath::Abs(pnt->Get1Pt());
517 alphaN = pnt->GetAlpha();
518 phiN = alphaN+TMath::ASin(pnt->GetSnp());
519 mom[3] = ptN*TMath::Cos(phiN);
520 mom[4] = ptN*TMath::Sin(phiN);
521 mom[5] = ptN*pnt->GetTgl();
524 // no vertexing if DeltaMass > fMassCut
525 if(fVertexOnTheFly) {
527 if(SelectInvMass(mom)) {
528 // primary vertex from *other* tracks in event
529 vertexer1->SetVtxStart(fV1[0],fV1[1]);
530 skipped[0] = trkEntryP[iTrkP];
531 skipped[1] = trkEntryN[iTrkN];
532 vertexer1->SetSkipTracks(2,skipped);
533 AliITSVertex *vertex1onfly =
534 (AliITSVertex*)vertexer1->VertexOnTheFly(*trkTree);
535 if(vertex1onfly->GetNContributors()>0) goodVtx1 = kTRUE;
536 vertex1onfly->GetXYZ(fV1);
537 //vertex1onfly->PrintStatus();
542 // impact parameters of the tracks w.r.t. the primary vertex
543 d0[0] = 10000.*ppt->GetD(fV1[0],fV1[1]);
544 d0[1] = -10000.*pnt->GetD(fV1[0],fV1[1]);
546 // create the object AliD0toKpi
547 AliD0toKpi theD0(ev,trkNum,fV1,v2,dca,mom,d0);
550 if(goodVtx1 && theD0.Select(fD0Cuts,okD0,okD0bar)) {
552 // get PID info from ESD
553 AliESDtrack *t0 = (AliESDtrack*)event->GetTrack(trkNum[0]);
555 t0->GetESDpid(esdpid0);
556 if(t0->GetStatus()&AliESDtrack::kTOFpid) {
557 tofmass[0] = CalculateTOFmass(t0->GetP(),
558 t0->GetIntegratedLength(),
563 AliESDtrack *t1 = (AliESDtrack*)event->GetTrack(trkNum[1]);
565 t1->GetESDpid(esdpid1);
566 if(t1->GetStatus()&AliESDtrack::kTOFpid) {
567 tofmass[1] = CalculateTOFmass(t1->GetP(),
568 t1->GetIntegratedLength(),
574 theD0.SetPIDresponse(esdpid0,esdpid1);
575 theD0.SetTOFmasses(tofmass);
581 nD0rec++; nD0rec1ev++;
586 } // loop on negative tracks
588 } // loop on positive tracks
598 printf(" Number of D0 candidates: %d\n",nD0rec1ev);
599 } // loop on events in file
602 printf("\n+++\n+++ Total number of events: %d\n+++\n",nTotEv);
603 printf("\n+++\n+++ Total number of D0 candidates: %d\n+++\n",nD0rec);
610 // create a copy of this class to be written to output file
611 AliD0toKpiAnalysis *copy = (AliD0toKpiAnalysis*)this->Clone("D0toKpiAnalysis");
613 // add PDG codes to decay tracks in found candidates (in simulation mode)
614 // and store tree in the output file
616 TFile *outroot = new TFile(outName1.Data(),"recreate");
622 printf(" Now adding information from simulation (PDG codes) ...\n");
623 TTree *treeD0sim = new TTree("TreeD0","Tree with D0 candidates");
624 MakeTracksRefFileESD();
625 SimulationInfo(treeD0,treeD0sim);
627 TFile *outroot = new TFile(outName1.Data(),"recreate");
634 // write to a file the total number of events
635 FILE *outdat = fopen(outName2.Data(),"w");
636 fprintf(outdat,"%d\n",nTotEv);
641 //-----------------------------------------------------------------------------
642 void AliD0toKpiAnalysis::PrintStatus() const {
643 // Print parameters being used
645 printf(" fBz = %f T\n",fBz);
646 printf("Preselections:\n");
647 printf(" fPtCut = %f GeV\n",fPtCut);
648 printf(" fd0Cut = %f micron\n",fd0Cut);
649 printf(" fMassCut = %f GeV\n",fMassCut);
650 if(fVertexOnTheFly) printf("Primary vertex on the fly\n");
652 printf("Simulation mode\n");
653 if(fOnlySignal) printf(" Only signal goes to file\n");
655 printf("Cuts on candidates:\n");
656 printf(" |M-MD0| [GeV] < %f\n",fD0Cuts[0]);
657 printf(" dca [micron] < %f\n",fD0Cuts[1]);
658 printf(" cosThetaStar < %f\n",fD0Cuts[2]);
659 printf(" pTK [GeV] > %f\n",fD0Cuts[3]);
660 printf(" pTpi [GeV] > %f\n",fD0Cuts[4]);
661 printf(" |d0K| [micron] < %f\n",fD0Cuts[5]);
662 printf(" |d0pi| [micron] < %f\n",fD0Cuts[6]);
663 printf(" d0d0 [micron^2] < %f\n",fD0Cuts[7]);
664 printf(" cosThetaPoint > %f\n",fD0Cuts[8]);
668 //-----------------------------------------------------------------------------
669 Bool_t AliD0toKpiAnalysis::SelectInvMass(const Double_t p[6]) const {
670 // Apply preselection in the invariant mass of the pair
672 Double_t mD0 = 1.8645;
673 Double_t mPi = 0.13957;
674 Double_t mKa = 0.49368;
677 Double_t mom2[2],momTot2;
679 mom2[0] = p[0]*p[0] + p[1]*p[1] + p[2]*p[2];
680 mom2[1] = p[3]*p[3] + p[4]*p[4] + p[5]*p[5];
682 momTot2 = (p[0]+p[3])*(p[0]+p[3])+
683 (p[1]+p[4])*(p[1]+p[4])+
684 (p[2]+p[5])*(p[2]+p[5]);
687 energy[1] = TMath::Sqrt(mKa*mKa+mom2[1]);
688 energy[0] = TMath::Sqrt(mPi*mPi+mom2[0]);
690 Double_t minvD0 = TMath::Sqrt((energy[0]+energy[1])*(energy[0]+energy[1])-momTot2);
693 energy[0] = TMath::Sqrt(mKa*mKa+mom2[0]);
694 energy[1] = TMath::Sqrt(mPi*mPi+mom2[1]);
696 Double_t minvD0bar = TMath::Sqrt((energy[0]+energy[1])*(energy[0]+energy[1])-momTot2);
698 if(TMath::Abs(minvD0-mD0) < fMassCut) return kTRUE;
699 if(TMath::Abs(minvD0bar-mD0) < fMassCut) return kTRUE;
702 //-----------------------------------------------------------------------------
703 void AliD0toKpiAnalysis::SelectTracks(TTree &trkTree,
704 TObjArray &trksP,Int_t *trkEntryP,Int_t &nTrksP,
705 TObjArray &trksN,Int_t *trkEntryN,Int_t &nTrksN) const {
706 // Create two TObjArrays with positive and negative tracks and
707 // apply single-track preselection
711 Int_t entr = (Int_t)trkTree.GetEntries();
713 // trasfer tracks from tree to arrays
714 for(Int_t i=0; i<entr; i++) {
716 AliITStrackV2 *track = new AliITStrackV2;
717 trkTree.SetBranchAddress("tracks",&track);
721 // single track selection
722 if(!SingleTrkCuts(*track)) { delete track; continue; }
724 if(track->Get1Pt()>0.) { // negative track
725 trksN.AddLast(track);
726 trkEntryN[nTrksN] = i;
728 } else { // positive track
729 trksP.AddLast(track);
730 trkEntryP[nTrksP] = i;
738 //-----------------------------------------------------------------------------
739 void AliD0toKpiAnalysis::SelectTracksESD(AliESD &event,
740 TObjArray &trksP,Int_t *trkEntryP,Int_t &nTrksP,
741 TObjArray &trksN,Int_t *trkEntryN,Int_t &nTrksN) const {
742 // Create two TObjArrays with positive and negative tracks and
743 // apply single-track preselection
747 Int_t entr = event.GetNumberOfTracks();
749 // transfer ITS tracks from ESD to arrays and to a tree
750 for(Int_t i=0; i<entr; i++) {
751 //if(fDebug) printf(" SelectTracksESD: %d/%d\n",i,entr);
753 AliESDtrack *esdtrack = (AliESDtrack*)event.GetTrack(i);
754 UInt_t status = esdtrack->GetStatus();
756 if(!(status&AliESDtrack::kITSrefit)) continue;
758 AliITStrackV2 *itstrack = new AliITStrackV2(*esdtrack);
760 // single track selection
761 if(!SingleTrkCuts(*itstrack))
762 { delete itstrack; continue; }
764 if(itstrack->Get1Pt()>0.) { // negative track
765 trksN.AddLast(itstrack);
766 trkEntryN[nTrksN] = i;
768 } else { // positive track
769 trksP.AddLast(itstrack);
770 trkEntryP[nTrksP] = i;
774 } // loop on ESD tracks
778 //-----------------------------------------------------------------------------
779 void AliD0toKpiAnalysis::SelectTracksESDvtx(AliESD &event,TTree *trkTree,
780 TObjArray &trksP,Int_t *trkEntryP,Int_t &nTrksP,
781 TObjArray &trksN,Int_t *trkEntryN,Int_t &nTrksN) const {
782 // Create two TObjArrays with positive and negative tracks and
783 // apply single-track preselection
787 Int_t entr = event.GetNumberOfTracks();
789 AliITStrackV2 *itstrackfortree = 0;
790 trkTree->Branch("tracks","AliITStrackV2",&itstrackfortree,entr,0);
793 // transfer ITS tracks from ESD to arrays and to a tree
794 for(Int_t i=0; i<entr; i++) {
796 AliESDtrack *esdtrack = (AliESDtrack*)event.GetTrack(i);
797 UInt_t status = esdtrack->GetStatus();
799 if(!(status&AliESDtrack::kITSrefit)) continue;
801 AliITStrackV2 *itstrack = new AliITStrackV2(*esdtrack);
803 // store track in the tree to be used for primary vertex finding
804 itstrackfortree = new AliITStrackV2(*esdtrack);
808 // single track selection
809 if(!SingleTrkCuts(*itstrack))
810 { delete itstrack; continue; }
812 if(itstrack->Get1Pt()>0.) { // negative track
813 trksN.AddLast(itstrack);
814 trkEntryN[nTrksN] = i;
816 } else { // positive track
817 trksP.AddLast(itstrack);
818 trkEntryP[nTrksP] = i;
822 } // loop on esd tracks
824 delete itstrackfortree;
828 //-----------------------------------------------------------------------------
829 void AliD0toKpiAnalysis::SetD0Cuts(Double_t cut0,Double_t cut1,
830 Double_t cut2,Double_t cut3,Double_t cut4,
831 Double_t cut5,Double_t cut6,
832 Double_t cut7,Double_t cut8) {
833 // Set the cuts for D0 selection
846 //-----------------------------------------------------------------------------
847 void AliD0toKpiAnalysis::SetD0Cuts(const Double_t cuts[9]) {
848 // Set the cuts for D0 selection
850 for(Int_t i=0; i<9; i++) fD0Cuts[i] = cuts[i];
854 //-----------------------------------------------------------------------------
855 Bool_t AliD0toKpiAnalysis::SingleTrkCuts(const AliITStrackV2& trk) const {
856 // Check if track passes some kinematical cuts
858 if(TMath::Abs(1./trk.Get1Pt()) < fPtCut)
860 if(TMath::Abs(10000.*trk.GetD(fV1[0],fV1[1])) < fd0Cut)
865 //----------------------------------------------------------------------------
866 void AliD0toKpiAnalysis::MakeTracksRefFile(Int_t evFirst,Int_t evLast)
868 // Create a file with simulation info for the reconstructed tracks
870 TFile *out = TFile::Open("ITStracksRefFile.root","recreate");
871 TFile *trk = TFile::Open("AliITStracksV2.root");
872 AliRunLoader *rl = AliRunLoader::Open("galice.root");
875 rl->LoadKinematics();
882 for(Int_t ev=evFirst; ev<=evLast; ev++){
884 AliStack *stack = rl->Stack();
890 sprintf(tname,"TreeT_ITS_%d",ev);
892 TTree *tracktree=(TTree*)trk->Get(tname);
893 if(!tracktree) continue;
894 AliITStrackV2 *track = new AliITStrackV2;
895 tracktree->SetBranchAddress("tracks",&track);
896 Int_t nentr=(Int_t)tracktree->GetEntries();
898 // Tree for true track parameters
900 sprintf(ttname,"Tree_Ref_%d",ev);
901 TTree *reftree = new TTree(ttname,"Tree with true track params");
902 reftree->Branch("rectracks",&reftrk,"lab/I:pdg:mumlab:mumpdg:Vx/F:Vy:Vz:Px:Py:Pz");
904 for(Int_t i=0; i<nentr; i++) {
905 tracktree->GetEvent(i);
906 label = TMath::Abs(track->GetLabel());
908 part = (TParticle*)stack->Particle(label);
910 reftrk.pdg = part->GetPdgCode();
911 reftrk.mumlab = part->GetFirstMother();
912 if(part->GetFirstMother()>=0) {
913 mumpart = (TParticle*)stack->Particle(part->GetFirstMother());
914 reftrk.mumpdg = mumpart->GetPdgCode();
918 reftrk.Vx = part->Vx();
919 reftrk.Vy = part->Vy();
920 reftrk.Vz = part->Vz();
921 reftrk.Px = part->Px();
922 reftrk.Py = part->Py();
923 reftrk.Pz = part->Pz();
942 //----------------------------------------------------------------------------
943 void AliD0toKpiAnalysis::MakeTracksRefFileESD() const {
944 // Create a file with simulation info for the reconstructed tracks
946 TFile *outFile = TFile::Open("ITStracksRefFile.root","recreate");
947 TFile *esdFile = TFile::Open("AliESDs.root");
948 AliRunLoader *rl = AliRunLoader::Open("galice.root");
951 rl->LoadKinematics();
959 TIter next(esdFile->GetListOfKeys());
960 // loop on events in file
961 while ((key=(TKey*)next())!=0) {
962 AliESD *event=(AliESD*)key->ReadObj();
963 Int_t ev = (Int_t)event->GetEventNumber();
966 AliStack *stack = rl->Stack();
968 Int_t nentr=(Int_t)event->GetNumberOfTracks();
970 // Tree for true track parameters
972 sprintf(ttname,"Tree_Ref_%d",ev);
973 TTree *reftree = new TTree(ttname,"Tree with true track params");
974 reftree->Branch("rectracks",&reftrk,"lab/I:pdg:mumlab:mumpdg:Vx/F:Vy:Vz:Px:Py:Pz");
976 for(Int_t i=0; i<nentr; i++) {
977 AliESDtrack *esdtrack = (AliESDtrack*)event->GetTrack(i);
978 label = TMath::Abs(esdtrack->GetLabel());
980 part = (TParticle*)stack->Particle(label);
982 reftrk.pdg = part->GetPdgCode();
983 reftrk.mumlab = part->GetFirstMother();
984 if(part->GetFirstMother()>=0) {
985 mumpart = (TParticle*)stack->Particle(part->GetFirstMother());
986 reftrk.mumpdg = mumpart->GetPdgCode();
990 reftrk.Vx = part->Vx();
991 reftrk.Vy = part->Vy();
992 reftrk.Vz = part->Vz();
993 reftrk.Px = part->Px();
994 reftrk.Py = part->Py();
995 reftrk.Pz = part->Pz();
1014 //-----------------------------------------------------------------------------
1015 void AliD0toKpiAnalysis::SimulationInfo(TTree *treeD0in,TTree *treeD0out) const {
1016 // add pdg codes to candidate decay tracks (for sim)
1018 TString refFileName("ITStracksRefFile.root");
1019 if(fSim && gSystem->AccessPathName(refFileName.Data(),kFileExists)) {
1020 printf("AliD0toKpiAnalysis::SimulationInfo: no reference file found!\n");
1023 TFile *refFile = TFile::Open(refFileName.Data());
1025 Char_t refTreeName[100];
1027 Int_t pdg[2],mumpdg[2],mumlab[2];
1030 // read-in reference tree for event 0 (the only event for Pb-Pb)
1031 sprintf(refTreeName,"Tree_Ref_%d",0);
1032 TTree *refTree0 = (TTree*)refFile->Get(refTreeName);
1033 refTree0->SetBranchAddress("rectracks",&reftrk);
1035 AliD0toKpi *theD0 = 0;
1036 treeD0in->SetBranchAddress("D0toKpi",&theD0);
1037 treeD0out->Branch("D0toKpi","AliD0toKpi",&theD0,200000,0);
1039 Int_t entries = (Int_t)treeD0in->GetEntries();
1041 for(Int_t i=0; i<entries; i++) {
1042 if(i%100==0) printf(" done %d candidates of %d\n",i,entries);
1044 treeD0in->GetEvent(i);
1045 event = theD0->EventNo();
1047 if(event==0) { // always true for Pb-Pb (avoid to read-in tree every time)
1048 refTree0->GetEvent(theD0->GetTrkNum(0));
1049 pdg[0] = reftrk.pdg;
1050 mumpdg[0] = reftrk.mumpdg;
1051 mumlab[0] = reftrk.mumlab;
1052 refTree0->GetEvent(theD0->GetTrkNum(1));
1053 pdg[1] = reftrk.pdg;
1054 mumpdg[1] = reftrk.mumpdg;
1055 mumlab[1] = reftrk.mumlab;
1057 sprintf(refTreeName,"Tree_Ref_%d",event);
1058 TTree *refTree = (TTree*)refFile->Get(refTreeName);
1059 refTree->SetBranchAddress("rectracks",&reftrk);
1060 refTree->GetEvent(theD0->GetTrkNum(0));
1061 pdg[0] = reftrk.pdg;
1062 mumpdg[0] = reftrk.mumpdg;
1063 mumlab[0] = reftrk.mumlab;
1064 refTree->GetEvent(theD0->GetTrkNum(1));
1065 pdg[1] = reftrk.pdg;
1066 mumpdg[1] = reftrk.mumpdg;
1067 mumlab[1] = reftrk.mumlab;
1071 theD0->SetPdgCodes(pdg);
1072 theD0->SetMumPdgCodes(mumpdg);
1074 if(TMath::Abs(mumpdg[0])==421 && TMath::Abs(mumpdg[1])==421
1075 && mumlab[0]==mumlab[1]) theD0->SetSignal();
1077 if(!fOnlySignal || theD0->IsSignal()) treeD0out->Fill();