]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/MUONefficiency.C
Getting rid of warnings.
[u/mrichter/AliRoot.git] / MUON / MUONefficiency.C
CommitLineData
d949b15e 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
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 **************************************************************************/
15
16/* $Id$ */
17
e54bf126 18/// \ingroup macros
19/// \file MUONefficiency.C
20/// \brief add brief description
21///
22/// Macro (upgraded version of MUONmassPlot_ESD.C, better handling of Jpsi) to make :
23/// - Ntuple (Ktuple) containing Upsilon kinematics variables (from kinematics.root files)
24/// - Ntuple (ESDtuple) containing Upsilon kinematics variables from reconstruction and
25/// combinations of 2 muons with opposite charges (ESDtupleBck will be used later)
26/// - Some QA histograms
27/// Ntuple are stored in the file MUONefficiency.root and ESD tree and QA histograms in AliESDs.root
28///
29/// \author Christophe Suire, IPN Orsay
d949b15e 30
d949b15e 31
d949b15e 32
33#if !defined(__CINT__) || defined(__MAKECINT__)
5f72cf5b 34
35// MUON includes
36#include "AliMUONTrackParam.h"
37#include "AliMUONTrackExtrap.h"
103e6575 38#include "AliMUONESDInterface.h"
5f72cf5b 39
40// STEER includes
41#include "AliRun.h"
42#include "AliRunLoader.h"
43#include "AliHeader.h"
44#include "AliLoader.h"
45#include "AliStack.h"
46#include "AliMagFMaps.h"
47#include "AliESDEvent.h"
48#include "AliESDVertex.h"
49#include "AliTracker.h"
50#include "AliCDBManager.h"
103e6575 51#include "AliESDMuonTrack.h"
5f72cf5b 52
d949b15e 53// ROOT includes
54#include "TTree.h"
53399039 55#include "TNtuple.h"
d949b15e 56#include "TBranch.h"
57#include "TClonesArray.h"
58#include "TLorentzVector.h"
59#include "TFile.h"
60#include "TH1.h"
61#include "TH2.h"
62#include "TParticle.h"
63#include "TTree.h"
64#include "TString.h"
65#include <Riostream.h>
8cde4af5 66#include <TGeoManager.h>
da79ec88 67#include <TROOT.h>
9bf6860b 68#include <TF1.h>
d949b15e 69
d949b15e 70#endif
71
6b092dfc 72Bool_t MUONefficiency( char* filename = "galice.root", char* geoFilename = "geometry.root", char* esdFileName = "AliESDs.root",
73 Int_t ExtrapToVertex = -1, Int_t ResType = 553, Int_t FirstEvent = 0, Int_t LastEvent = 1000000 )
e54bf126 74{
75/// \param ExtrapToVertex (default -1)
76/// - <0: no extrapolation;
77/// - =0: extrapolation to (0,0,0);
78/// - >0: extrapolation to ESDVertex if available, else to (0,0,0)
79/// \param ResType 553 for Upsilon, 443 for J/Psi (default 553)
80/// \param FirstEvent (default 0)
81/// \param LastEvent (default 1.e6)
82/// \param Chi2Cut to keep only tracks with chi2 per d.o.f. < Chi2Cut (default 100)
83
84
85 // MUONefficiency starts
d949b15e 86
15381c8b 87 // Set default CDB storage
88 AliCDBManager* man = AliCDBManager::Instance();
89 man->SetDefaultStorage("local://$ALICE_ROOT");
90
53399039 91 Double_t MUON_MASS = 0.105658369;
92 Double_t UPSILON_MASS = 9.4603 ;
93 Double_t JPSI_MASS = 3.097;
94
95 // Upper and lower bound for counting entries in the mass peak
96 // +/- 300 MeV/c^2 in this case.
97 Float_t countingRange = 0.300 ;
98
99 Float_t massResonance = 5.;
100 Float_t invMassMinInPeak = 0. ;
101 Float_t invMassMaxInPeak = 0. ;
102
103 Float_t nBinsPerGev = 40 ;
104 Float_t invMassMin = 0; Float_t invMassMax = 20;
105 Float_t ptMinResonance = 0 ; Float_t ptMaxResonance = 20 ; Int_t ptBinsResonance = 100;
106
107 if (ResType==443) {
108 massResonance = JPSI_MASS ;
109 invMassMinInPeak = JPSI_MASS - countingRange ; invMassMaxInPeak = JPSI_MASS + countingRange ;
110 //limits for histograms
111 invMassMin = 0 ; invMassMax = 6.;
112 ptMinResonance = 0 ; ptMaxResonance = 20 ; ptBinsResonance = 100;
113 }
114 if (ResType==553) {
115 massResonance = UPSILON_MASS;
116 invMassMinInPeak = UPSILON_MASS - countingRange ; invMassMaxInPeak = UPSILON_MASS + countingRange;
117 //limits for histograms
118 invMassMin = 0 ; invMassMax = 12.;
119 ptMinResonance = 0 ; ptMaxResonance = 20 ; ptBinsResonance = 100;
120 }
121
122 // Single Tracks muon cuts
123 Float_t Chi2Cut = 100.;
124 Float_t PtCutMin = 0. ;
125 Float_t PtCutMax = 10000. ;
126
127
128 // Limits for histograms
129 Float_t ptMinMuon = 0. ; Float_t ptMaxMuon = 20.; Int_t ptBinsMuon = 100 ;
130 Float_t pMinMuon = 0. ; Float_t pMaxMuon = 200.; Int_t pBinsMuon = 100 ;
d949b15e 131
53399039 132
d949b15e 133 //Reset ROOT and connect tree file
134 gROOT->Reset();
135
136 // Printing Level
137 Int_t PRINTLEVEL = 0 ;
d949b15e 138
139 //for kinematic, i.e. reference tracks
140 TNtuple *Ktuple = new TNtuple("Ktuple","Kinematics NTuple","ev:npart:id:idmo:idgdmo:p:pt:y:theta:pseudorap:vx:vy:vz");
141
53399039 142 //for reconstruction
143 TH1F *hPtMuon = new TH1F("hPtMuon", "Muon Pt (GeV/c)", ptBinsMuon, ptMinMuon, ptMaxMuon);
144 TH1F *hPtMuonPlus = new TH1F("hPtMuonPlus", "Muon+ Pt (GeV/c)", ptBinsMuon, ptMinMuon, ptMaxMuon);
145 TH1F *hPtMuonMinus = new TH1F("hPtMuonMinus", "Muon- Pt (GeV/c)", ptBinsMuon, ptMinMuon, ptMaxMuon);
146 TH1F *hPMuon = new TH1F("hPMuon", "Muon P (GeV/c)", pBinsMuon, pMinMuon, pMaxMuon);
147
148 TH1F *hInvMassAll;
149 TH1F *hInvMassBg;
150 TH2F *hInvMassAll_vs_Pt;
151 TH2F *hInvMassBgk_vs_Pt;
d949b15e 152 TH1F *hInvMassRes;
d949b15e 153
53399039 154
155 hInvMassAll = new TH1F("hInvMassAll", "Mu+Mu- invariant mass (GeV/c2)", (Int_t) (nBinsPerGev*(invMassMax - invMassMin)), invMassMin, invMassMax);
156 hInvMassBg = new TH1F("hInvMassBg", "Mu+Mu- invariant mass BG(GeV/c2)", (Int_t) (nBinsPerGev*(invMassMax- invMassMin)), invMassMin, invMassMax);
157 hInvMassAll_vs_Pt = new TH2F("hInvMassAll_vs_Pt","hInvMassAll_vs_Pt",(Int_t) (nBinsPerGev*(invMassMax- invMassMin)), invMassMin, invMassMax,ptBinsResonance,ptMinResonance,ptMaxResonance);
158 hInvMassBgk_vs_Pt = new TH2F("hInvMassBgk_vs_Pt","hInvMassBgk_vs_Pt",(Int_t) (nBinsPerGev*(invMassMax- invMassMin)), invMassMin, invMassMax,ptBinsResonance,ptMinResonance,ptMaxResonance);
159
160 hInvMassRes = new TH1F("hInvMassRes", "Mu+Mu- invariant mass (GeV/c2) around Resonance",(Int_t) (nBinsPerGev*3*countingRange*2),massResonance-3*countingRange,massResonance+3*countingRange);
161
cfc3191e 162 TH1F *hPrimaryVertex = new TH1F("hPrimaryVertex","SPD reconstructed Z vertex",150,-15,15);
53399039 163 TH1F *hChi2PerDof = new TH1F("hChi2PerDof", "Muon track chi2/d.o.f.", 100, 0., 20.);
d949b15e 164 TH1F *hNumberOfTrack = new TH1F("hNumberOfTrack","nb of track /evt ",20,-0.5,19.5);
165 TH1F *hRapMuon = new TH1F("hRapMuon"," Muon Rapidity",50,-4.5,-2);
166 TH1F *hRapResonance = new TH1F("hRapResonance"," Resonance Rapidity",50,-4.5,-2);
167 TH1F *hPtResonance = new TH1F("hPtResonance", "Resonance Pt (GeV/c)", 100, 0., 20.);
168 TH2F *hThetaPhiPlus = new TH2F("hThetaPhiPlus", "Theta vs Phi +", 760, -190., 190., 400, 160., 180.);
169 TH2F *hThetaPhiMinus = new TH2F("hThetaPhiMinus", "Theta vs Phi -", 760, -190., 190., 400, 160., 180.);
53399039 170
d949b15e 171 TNtuple *ESDtuple = new TNtuple("ESDtuple","Reconstructed Mu+Mu- pairs and Upsilon","ev:tw:pt:y:theta:minv:pt1:y1:theta1:q1:trig1:pt2:y2:theta2:q2:trig2");
172 TNtuple *ESDtupleBck = new TNtuple("ESDtupleBck","Reconstructed Mu+Mu- pairs for Background","ev:pt:y:theta:minv:pt1:y1:theta1:pt2:y2:theta2");
173
174
53399039 175 // Variables
d949b15e 176 Int_t EventInMass = 0;
53399039 177 Int_t EventInMassMatch = 0;
178 Int_t NbTrigger = 0;
179 Int_t ptTrig = 0;
d949b15e 180
cfc3191e 181 Double_t fXVertex=0;
182 Double_t fYVertex=0;
183 Double_t fZVertex=0;
690d2205 184 Double_t errXVtx=0;
185 Double_t errYVtx=0;
cfc3191e 186
d949b15e 187 Double_t fPxRec1, fPyRec1, fPzRec1, fE1;
188 Double_t fPxRec2, fPyRec2, fPzRec2, fE2;
189 Int_t fCharge1, fCharge2;
190
53399039 191 Int_t ntrackhits, nevents;
192 Int_t nprocessedevents = 0 ;
d949b15e 193 Double_t fitfmin;
194
195 TLorentzVector fV1, fV2, fVtot;
196
8cde4af5 197 // Import TGeo geometry (needed by AliMUONTrackExtrap::ExtrapToVertex)
198 if (!gGeoManager) {
199 TGeoManager::Import(geoFilename);
200 if (!gGeoManager) {
201 Error("MUONmass_ESD", "getting geometry from file %s failed", filename);
202 return kFALSE;
203 }
204 }
205
3f6289e9 206 // set mag field
207 // waiting for mag field in CDB
208 printf("Loading field map...\n");
b97b210c 209 AliMagFMaps* field = new AliMagFMaps("Maps","Maps", 1, 1., 10., AliMagFMaps::k5kG);
3f6289e9 210 AliTracker::SetFieldMap(field, kFALSE);
d949b15e 211
212 // open run loader and load gAlice, kinematics and header
213 AliRunLoader* runLoader = AliRunLoader::Open(filename);
214 if (!runLoader) {
215 Error("MUONefficiency", "getting run loader from file %s failed", filename);
216 return kFALSE;
217 }
218
219 runLoader->LoadgAlice();
220 gAlice = runLoader->GetAliRun();
221 if (!gAlice) {
222 Error("MUONefficiency", "no galice object found");
223 return kFALSE;
224 }
225
226 // open the ESD file
227 TFile* esdFile = TFile::Open(esdFileName);
228 if (!esdFile || !esdFile->IsOpen()) {
229 Error("MUONefficiency", "opening ESD file %s failed", esdFileName);
230 return kFALSE;
231 }
232
1c2bdf00 233 AliESDEvent* esd = new AliESDEvent();
d949b15e 234 TTree* tree = (TTree*) esdFile->Get("esdTree");
235 if (!tree) {
236 Error("CheckESD", "no ESD tree found");
237 return kFALSE;
db3b303f 238 }
239 esd->ReadFromTree(tree);
d949b15e 240
241 runLoader->LoadHeader();
5f72cf5b 242 Int_t runNumber = runLoader->GetHeader()->GetRun();
243 AliCDBManager::Instance()->SetRun(runNumber);
244
d949b15e 245 nevents = runLoader->GetNumberOfEvents();
cfc3191e 246 AliMUONTrackParam trackParam;
247
d949b15e 248 // to access the particle Stack
249 runLoader->LoadKinematics("READ");
250
53399039 251 Int_t numberOfGeneratedResonances = 0 ;
252
d949b15e 253 TParticle *particle;
53399039 254
d949b15e 255 Int_t track1Trigger = 0 ;
256 Float_t track1TriggerChi2 = 0 ;
d949b15e 257 Int_t track2Trigger = 0 ;
258 Float_t track2TriggerChi2 = 0 ;
259
260
261 // Loop over events
262 for (Int_t iEvent = FirstEvent; iEvent <= TMath::Min(LastEvent, nevents - 1); iEvent++) { // Start event loop
263
264 if (iEvent%1000 == 0 )
265 printf("\n Nb of events analysed: %d \n",iEvent);
266
267 // get current event
268 runLoader->GetEvent(iEvent);
53399039 269 nprocessedevents++;
270
d949b15e 271 // get the stack and fill the kine tree
272 AliStack *theStack = runLoader->Stack();
273 if (PRINTLEVEL > 0) theStack->DumpPStack ();
274
275 Int_t nparticles = (Int_t)runLoader->TreeK()->GetEntries();
276 Int_t nprimarypart = theStack->GetNprimary();
277 Int_t ntracks = theStack->GetNtrack();
53399039 278
d949b15e 279 if (PRINTLEVEL || (iEvent%100==0)) printf("\n >>> Event %d \n",iEvent);
cfc3191e 280 if (PRINTLEVEL) cout << nprimarypart << " Particles generated (total is " << ntracks << ")"<< endl ;
d949b15e 281
282 for(Int_t iparticle=0; iparticle<nparticles; iparticle++) { // Start loop over particles
283 particle = theStack->Particle(iparticle);
284
285 Int_t muId = particle->GetPdgCode();
286 Int_t muM = particle->GetFirstMother();
287 Int_t muGM = 0;
288 Float_t muP = particle->P();
289 Float_t muPt = TMath::Sqrt(particle->Px()*particle->Px()+particle->Py()*particle->Py());
290 Float_t muY = 0.5*TMath::Log((particle->Energy()+particle->Pz()+1.e-13)/(particle->Energy()-particle->Pz()+1.e-13));
291 if (muM >= 0) {
d949b15e 292 TParticle *theMum = theStack->Particle(muM);
293 muM = theMum->GetPdgCode();
d949b15e 294 muGM = theMum->GetFirstMother() ;
295 if (muGM >= 0){
296 TParticle *grandMa = theStack->Particle(muGM);
297 muGM = grandMa->GetPdgCode();
298 }
299 else muGM=0;
300 }
301 else muM=0;
53399039 302
303 if (muId==ResType) numberOfGeneratedResonances++;
304
305
d949b15e 306 Float_t muT = particle->Theta()*180/TMath::Pi();
307 Float_t muE = particle->Eta();
308
309 Float_t muVx = particle->Vx();
310 Float_t muVy = particle->Vy();
311 Float_t muVz = particle->Vz();
312
313 // If a write error occurs, the number of bytes returned is -1.
314 // If no data are written, because e.g. the branch is disabled,
315 // the number of bytes returned is 0.
316 Int_t errCode = Ktuple->Fill(iEvent,nparticles,muId,muM,muGM,muP,muPt,muY,muT,muE,muVx,muVy,muVz);
317 if (PRINTLEVEL || errCode < 1) printf("iEvent %d,nparticles %d,muId %d,muM %d,muGM %d,muP %.2f,muPt %.2f,muY %.2f,muT %.2f,muE %.2f,muVx %.2f,muVy %.2f,muVz %.2f \n", iEvent,nparticles,muId,muM,muGM,muP,muPt,muY,muT,muE,muVx,muVy,muVz);
318
319 } // End loop over particles
320
321
322
323 // get the event summary data
324 tree->GetEvent(iEvent);
325 if (!esd) {
326 Error("CheckESD", "no ESD object found for event %d", iEvent);
327 return kFALSE;
328 }
cfc3191e 329
330 // get the SPD reconstructed vertex (vertexer) and fill the histogram
43939bd8 331 AliESDVertex* Vertex = (AliESDVertex*) esd->GetVertex();
332 if (Vertex->GetNContributors()) {
cfc3191e 333 fZVertex = Vertex->GetZv();
334 fYVertex = Vertex->GetYv();
335 fXVertex = Vertex->GetXv();
690d2205 336 errXVtx = Vertex->GetXRes();
337 errYVtx = Vertex->GetYRes();
cfc3191e 338 }
339 hPrimaryVertex->Fill(fZVertex);
340
f57d136a 341 Int_t triggerWord = esd->GetTriggerMask();
d949b15e 342 Int_t nTracks = (Int_t)esd->GetNumberOfMuonTracks() ;
343
344 if (PRINTLEVEL > 0){
345 printf("\n Nb of events analysed: %d \n",iEvent);
346 cout << " number of tracks: " << nTracks <<endl;
347 }
348
37827b29 349 // set the magnetic field for track extrapolations
350 AliMUONTrackExtrap::SetField(AliTracker::GetFieldMap());
d949b15e 351 // loop over all reconstructed tracks (also first track of combination)
352 for (Int_t iTrack = 0; iTrack < nTracks; iTrack++) {
353
8cde4af5 354 AliESDMuonTrack* muonTrack = new AliESDMuonTrack(*(esd->GetMuonTrack(iTrack)));
d949b15e 355
8cde4af5 356 // extrapolate to vertex if required and available
357 if (ExtrapToVertex > 0 && Vertex->GetNContributors()) {
103e6575 358 AliMUONESDInterface::GetParamAtFirstCluster(*muonTrack, trackParam);
690d2205 359 AliMUONTrackExtrap::ExtrapToVertex(&trackParam, fXVertex, fYVertex, fZVertex, errXVtx, errYVtx);
103e6575 360 AliMUONESDInterface::SetParamAtVertex(trackParam, *muonTrack); // put the new parameters in this copy of AliESDMuonTrack
8cde4af5 361 } else if ((ExtrapToVertex > 0 && !Vertex->GetNContributors()) || ExtrapToVertex == 0){
103e6575 362 AliMUONESDInterface::GetParamAtFirstCluster(*muonTrack, trackParam);
690d2205 363 AliMUONTrackExtrap::ExtrapToVertex(&trackParam, 0., 0., 0., 0., 0.);
103e6575 364 AliMUONESDInterface::SetParamAtVertex(trackParam, *muonTrack); // put the new parameters in this copy of AliESDMuonTrack
d949b15e 365 }
366
367 // Trigger
368 if (PRINTLEVEL > 5) cout << "MatchTrigger " << muonTrack->GetMatchTrigger() << " and Chi2 of matching tracks " << track1TriggerChi2 << endl ;
369 track1Trigger = muonTrack->GetMatchTrigger();
370 if (track1Trigger)
371 track1TriggerChi2 = muonTrack->GetChi2MatchTrigger();
372 else
373 track1TriggerChi2 = 0. ;
374
d949b15e 375 fCharge1 = Int_t(TMath::Sign(1.,muonTrack->GetInverseBendingMomentum()));
376
22ccc301 377 muonTrack->LorentzP(fV1);
d949b15e 378
379 ntrackhits = muonTrack->GetNHit();
380 fitfmin = muonTrack->GetChi2();
381
382 // transverse momentum
383 Float_t pt1 = fV1.Pt();
384
385 // total momentum
386 Float_t p1 = fV1.P();
387
388 // Rapidity
389 Float_t rapMuon1 = fV1.Rapidity();
390
391 // chi2 per d.o.f.
392
393 Float_t ch1 = fitfmin / (2.0 * ntrackhits - 5);
22ccc301 394 if (PRINTLEVEL > 5 ) printf(" px %f py %f pz %f pt %f NHits %d Norm.chi2 %f charge %d\n",fV1.Px(), fV1.Py(), fV1.Pz(), pt1, ntrackhits, ch1, fCharge1);
d949b15e 395
396
397 if ((ch1 < Chi2Cut) && (pt1 > PtCutMin) && (pt1 < PtCutMax)) { // condition for good track (Chi2Cut and PtCut)
398 if (PRINTLEVEL > 8) cout << "inside pt and chi2 cuts " << endl ;
399
400 // fill histos hPtMuon and hChi2PerDof
401 hPtMuon->Fill(pt1);
402 hPMuon->Fill(p1);
403 hChi2PerDof->Fill(ch1);
404 hRapMuon->Fill(rapMuon1);
405
406 if (fCharge1 > 0) {
407 hPtMuonPlus->Fill(pt1);
22ccc301 408 hThetaPhiPlus->Fill(fV1.Phi()*180./TMath::Pi(),fV1.Theta()*180./TMath::Pi());
d949b15e 409 } else {
410 hPtMuonMinus->Fill(pt1);
22ccc301 411 hThetaPhiMinus->Fill(fV1.Phi()*180./TMath::Pi(),fV1.Theta()*180./TMath::Pi());
d949b15e 412 }
413
414 // loop over second track of combination
415 for (Int_t iTrack2 = iTrack + 1; iTrack2 < nTracks; iTrack2++) {
416
8cde4af5 417 AliESDMuonTrack* muonTrack2 = new AliESDMuonTrack(*(esd->GetMuonTrack(iTrack2)));
cfc3191e 418
8cde4af5 419 // extrapolate to vertex if required and available
420 if (ExtrapToVertex > 0 && Vertex->GetNContributors()) {
103e6575 421 AliMUONESDInterface::GetParamAtFirstCluster(*muonTrack2, trackParam);
690d2205 422 AliMUONTrackExtrap::ExtrapToVertex(&trackParam, fXVertex, fYVertex, fZVertex, errXVtx, errYVtx);
103e6575 423 AliMUONESDInterface::SetParamAtVertex(trackParam, *muonTrack2); // put the new parameters in this copy of AliESDMuonTrack
8cde4af5 424 } else if ((ExtrapToVertex > 0 && !Vertex->GetNContributors()) || ExtrapToVertex == 0){
103e6575 425 AliMUONESDInterface::GetParamAtFirstCluster(*muonTrack2, trackParam);
690d2205 426 AliMUONTrackExtrap::ExtrapToVertex(&trackParam, 0., 0., 0., 0., 0.);
103e6575 427 AliMUONESDInterface::SetParamAtVertex(trackParam, *muonTrack2); // put the new parameters in this copy of AliESDMuonTrack
d949b15e 428 }
429
8cde4af5 430 track2Trigger = muonTrack2->GetMatchTrigger();
d949b15e 431 if (track2Trigger)
8cde4af5 432 track2TriggerChi2 = muonTrack2->GetChi2MatchTrigger();
d949b15e 433 else
434 track2TriggerChi2 = 0. ;
435
8cde4af5 436 fCharge2 = Int_t(TMath::Sign(1.,muonTrack2->GetInverseBendingMomentum()));
d949b15e 437
22ccc301 438 muonTrack2->LorentzP(fV2);
d949b15e 439
8cde4af5 440 ntrackhits = muonTrack2->GetNHit();
441 fitfmin = muonTrack2->GetChi2();
d949b15e 442
443 // transverse momentum
444 Float_t pt2 = fV2.Pt();
445
446 // chi2 per d.o.f.
447 Float_t ch2 = fitfmin / (2.0 * ntrackhits - 5);
448
d949b15e 449
cfc3191e 450 // condition for good track (Chi2Cut and PtCut)
451 if ((ch2 < Chi2Cut) && (pt2 > PtCutMin) && (pt2 < PtCutMax)) {
d949b15e 452
cfc3191e 453 // condition for opposite charges
454 if ((fCharge1 * fCharge2) == -1) {
455
456 if (PRINTLEVEL > 8) cout << "---------> Now filling the Ntuple " << endl ;
457
458 // invariant mass
459 fVtot = fV1 + fV2;
460 Float_t invMass = fVtot.M();
461
462 if (fCharge1 < 0){ //mu_minus is index 1 in the ntuple
463 Float_t ESDFill[16] = {iEvent,triggerWord,fVtot.Pt(),fVtot.Rapidity(),fVtot.Theta()/TMath::Pi()*180,invMass,fV1.Pt(),fV1.Rapidity(),fV1.Theta()/TMath::Pi()*180,fCharge1,track1TriggerChi2,fV2.Pt(),fV2.Rapidity(),fV2.Theta()/TMath::Pi()*180,fCharge2,track2TriggerChi2};
464 ESDtuple->Fill(ESDFill);
465 }
466 else{
467 Float_t ESDFill[16] = {iEvent,triggerWord,fVtot.Pt(),fVtot.Rapidity(),fVtot.Theta()/TMath::Pi()*180,invMass,fV2.Pt(),fV2.Rapidity(),fV2.Theta()/TMath::Pi()*180,fCharge2,track2TriggerChi2,fV1.Pt(),fV1.Rapidity(),fV1.Theta()/TMath::Pi()*180,fCharge1,track1TriggerChi2};
468 ESDtuple->Fill(ESDFill);
469 }
470
471 // fill histos hInvMassAll and hInvMassRes
472 hInvMassAll->Fill(invMass);
473 hInvMassRes->Fill(invMass);
474 hInvMassAll_vs_Pt->Fill(invMass,fVtot.Pt());
475
476 //trigger info
477 if (ResType == 553)
5c83829b 478 ptTrig = 0x08;// mask for Hpt unlike sign pair
cfc3191e 479 else if (ResType == 443)
5c83829b 480 ptTrig = 0x04;// mask for Lpt unlike sign pair
cfc3191e 481
482
483 if (esd->GetTriggerMask() & ptTrig) NbTrigger++;
484
485 if (invMass > invMassMinInPeak && invMass < invMassMaxInPeak) {
486 EventInMass++;
487 hRapResonance->Fill(fVtot.Rapidity());
488 hPtResonance->Fill(fVtot.Pt());
53399039 489
cfc3191e 490 // match with trigger
8b4a9b89 491 if (muonTrack2->GetMatchTrigger()>=0 && (esd->GetTriggerMask() & ptTrig)) EventInMassMatch++;
53399039 492
cfc3191e 493 }
494
495 } // if (fCharge1 * fCharge2) == -1)
496 } // if ((ch2 < Chi2Cut) && (pt2 > PtCutMin) && (pt2 < PtCutMax))
8cde4af5 497 delete muonTrack2;
d949b15e 498 } // for (Int_t iTrack2 = iTrack + 1; iTrack2 < iTrack; iTrack2++)
499 } // if (ch1 < Chi2Cut) && (pt1 > PtCutMin)&& (pt1 < PtCutMax) )
8cde4af5 500 delete muonTrack;
d949b15e 501 } // for (Int_t iTrack = 0; iTrack < nrectracks; iTrack++)
502
503 hNumberOfTrack->Fill(nTracks);
504 // esdFile->Delete();
505
506 } // End of event loop
507
508
509 // Loop over events for bg event
510
511 Double_t thetaPlus, phiPlus;
512 Double_t thetaMinus, phiMinus;
513 Float_t PtMinus, PtPlus;
514
515 for (Int_t iEvent = 0; iEvent < hInvMassAll->Integral(); iEvent++) { // Loop over events for bg event
53399039 516 // according to Christian a 3d phi-theta-pt random pick would take better care
d949b15e 517 // of all correlations
518
519 hThetaPhiPlus->GetRandom2(phiPlus, thetaPlus);
520 hThetaPhiMinus->GetRandom2(phiMinus,thetaMinus);
521 PtPlus = hPtMuonPlus->GetRandom();
522 PtMinus = hPtMuonMinus->GetRandom();
523
524 fPxRec1 = PtPlus * TMath::Cos(TMath::Pi()/180.*phiPlus);
525 fPyRec1 = PtPlus * TMath::Sin(TMath::Pi()/180.*phiPlus);
526 fPzRec1 = PtPlus / TMath::Tan(TMath::Pi()/180.*thetaPlus);
527
53399039 528 fE1 = TMath::Sqrt(MUON_MASS * MUON_MASS + fPxRec1 * fPxRec1 + fPyRec1 * fPyRec1 + fPzRec1 * fPzRec1);
d949b15e 529 fV1.SetPxPyPzE(fPxRec1, fPyRec1, fPzRec1, fE1);
530
531 fPxRec2 = PtMinus * TMath::Cos(TMath::Pi()/180.*phiMinus);
532 fPyRec2 = PtMinus * TMath::Sin(TMath::Pi()/180.*phiMinus);
533 fPzRec2 = PtMinus / TMath::Tan(TMath::Pi()/180.*thetaMinus);
534
53399039 535 fE2 = TMath::Sqrt(MUON_MASS * MUON_MASS + fPxRec2 * fPxRec2 + fPyRec2 * fPyRec2 + fPzRec2 * fPzRec2);
d949b15e 536 fV2.SetPxPyPzE(fPxRec2, fPyRec2, fPzRec2, fE2);
537
538 // invariant mass
539 fVtot = fV1 + fV2;
540
541 // fill histos hInvMassAll and hInvMassRes
542 hInvMassBg->Fill(fVtot.M());
543 hInvMassBgk_vs_Pt->Fill( fVtot.M(), fVtot.Pt() );
544
545 // Ntuple for background... more convenient
546 ESDtupleBck->Fill(iEvent,fVtot.Pt(),fVtot.Rapidity(),fVtot.Theta()/TMath::Pi()*180,fVtot.M(),fV2.Pt(),fV2.Rapidity(),fV2.Theta()/TMath::Pi()*180,fV1.Pt(),fV1.Rapidity(),fV1.Theta()/TMath::Pi()*180);
547
548 } // End loop over events for background
549
550
551 // File for histograms and histogram booking
552 TString outfilename = "MUONefficiency.root";
53399039 553 TFile *ntupleFile = new TFile(outfilename.Data(), "RECREATE");
d949b15e 554
555 Ktuple->Write();
556 ESDtuple->Write();
53399039 557 ESDtupleBck->Write();
558
559 ntupleFile->Close();
d949b15e 560
53399039 561 TFile *histoFile = new TFile("MUONhistos.root", "RECREATE");
cfc3191e 562 hPrimaryVertex->Write();
53399039 563 hPtMuon->Write();
564 hPtMuonPlus->Write();
565 hPtMuonMinus->Write();
566 hPMuon->Write();
567 hChi2PerDof->Write();
568 hInvMassAll->Write();
569 hInvMassBg->Write();
570 hInvMassAll_vs_Pt ->Write();
571 hInvMassBgk_vs_Pt->Write();
572 hInvMassRes->Write();
573 hNumberOfTrack->Write();
574 hRapMuon ->Write();
575 hRapResonance ->Write();
576 hPtResonance ->Write();
577 hThetaPhiPlus ->Write();
578 hThetaPhiMinus ->Write();
d949b15e 579 histoFile->Close();
53399039 580
581 cout << "" << endl ;
582 cout << "*************************************************" << endl;
583
584 cout << "MUONefficiency : " << nprocessedevents << " events processed" << endl;
585 if (ResType==443)
586 cout << "Number of generated J/Psi (443) : " << numberOfGeneratedResonances << endl ;
587 if (ResType==553)
588 cout << "Number of generated Upsilon (553) :" << numberOfGeneratedResonances << endl ;
589 cout << "Chi2Cut for muon tracks = " << Chi2Cut << endl;
590 cout << "PtCutMin for muon tracks = " << PtCutMin << endl;
591 cout << "PtCutMax for muon tracks = " << PtCutMax << endl;
9bf6860b 592
593 hInvMassAll->Fit("gaus","q0");
594
595 TF1* f1 = hInvMassAll->GetFunction("gaus");
596
597 cout << "Entries (unlike sign dimuons) : " << hInvMassAll->GetEntries()
598 << Form(". Rough sigma = %7.2f MeV/c2",f1->GetParameter(2)*1000.0) << endl;
599
53399039 600 cout << "Entries (unlike sign dimuons) in the mass range ["<<invMassMinInPeak<<";"<<invMassMaxInPeak<<"] : " << EventInMass <<endl;
9bf6860b 601
53399039 602 if (ptTrig==0x800) cout << "Unlike Pair - All Pt" ;
603 if (ptTrig==0x400) cout << "Unlike Pair - High Pt" ;
604 if (ptTrig==0x200) cout << "Unlike Pair - Low Pt" ;
605 cout << " triggers : " << NbTrigger << endl;
d949b15e 606
53399039 607 cout << "Entries in the mass range with matching between reconstructed tracks and trigger tracks " << EventInMassMatch << endl;
608
d949b15e 609
610 return kTRUE;
611}