]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG3/vertexingHF/AliAnalysisTaskSED0Mass.cxx
Adding class to merge calibration objects generated chunk by chunk
[u/mrichter/AliRoot.git] / PWG3 / vertexingHF / AliAnalysisTaskSED0Mass.cxx
CommitLineData
49061176 1/**************************************************************************
2 * Copyright(c) 1998-2009, 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/////////////////////////////////////////////////////////////
17//
18// AliAnalysisTaskSE for D0 candidates invariant mass histogram
a41f6fad 19// and comparison with the MC truth and cut variables distributions.
49061176 20//
21// Authors: A.Dainese, andrea.dainese@lnl.infn.it
feb73eca 22// Chiara Bianchin, chiara.bianchin@pd.infn.it (invariant mass)
23// Carmelo Di Giglio, carmelo.digiglio@ba.infn.it (like sign)
49061176 24/////////////////////////////////////////////////////////////
25
26#include <Riostream.h>
27#include <TClonesArray.h>
527f330b 28#include <TCanvas.h>
49061176 29#include <TNtuple.h>
30#include <TList.h>
31#include <TH1F.h>
a41f6fad 32#include <TH2F.h>
33#include <TDatabasePDG.h>
49061176 34
5b2e5fae 35#include <AliAnalysisDataSlot.h>
36#include <AliAnalysisDataContainer.h>
b557eb43 37#include "AliAnalysisManager.h"
34137226 38#include "AliESDtrack.h"
b557eb43 39#include "AliAODHandler.h"
49061176 40#include "AliAODEvent.h"
41#include "AliAODVertex.h"
42#include "AliAODTrack.h"
43#include "AliAODMCHeader.h"
44#include "AliAODMCParticle.h"
45#include "AliAODRecoDecayHF2Prong.h"
46#include "AliAODRecoCascadeHF.h"
47#include "AliAnalysisVertexingHF.h"
48#include "AliAnalysisTaskSE.h"
49#include "AliAnalysisTaskSED0Mass.h"
50
b557eb43 51
49061176 52ClassImp(AliAnalysisTaskSED0Mass)
53
54
55//________________________________________________________________________
56AliAnalysisTaskSED0Mass::AliAnalysisTaskSED0Mass():
57AliAnalysisTaskSE(),
ea0d8716 58fOutputMass(0),
59fDistr(0),
60fNentries(0),
34137226 61fChecks(0),
ea0d8716 62fCutList(0),
63fCuts(0),
feb73eca 64fArray(0),
ce39f0ac 65fReadMC(0),
40445ada 66fCutOnDistr(0),
feb73eca 67fLsNormalization(1.)
68
ea0d8716 69
49061176 70{
71 // Default constructor
9de8c723 72 for(Int_t i=0;i<5;i++) {fTotPosPairs[i]=0; fTotNegPairs[i]=0;}
49061176 73}
74
75//________________________________________________________________________
ea0d8716 76AliAnalysisTaskSED0Mass::AliAnalysisTaskSED0Mass(const char *name,AliRDHFCutsD0toKpi* cuts):
49061176 77AliAnalysisTaskSE(name),
ea0d8716 78fOutputMass(0),
34137226 79fDistr(0),
ea0d8716 80fNentries(0),
34137226 81fChecks(0),
ea0d8716 82fCutList(0),
83fCuts(0),
feb73eca 84fArray(0),
ce39f0ac 85fReadMC(0),
40445ada 86fCutOnDistr(0),
feb73eca 87fLsNormalization(1.)
6321ee46 88
ea0d8716 89
49061176 90{
91 // Default constructor
9de8c723 92 for(Int_t i=0;i<5;i++) {fTotPosPairs[i]=0; fTotNegPairs[i]=0;}
49061176 93
ea0d8716 94 //fCuts=new AliRDHFCutsD0toKpi(*cuts);
95 fCuts=cuts;
96
97 // Output slot #1 writes into a TList container (mass with cuts)
49061176 98 DefineOutput(1,TList::Class()); //My private output
ea0d8716 99 // Output slot #2 writes into a TList container (distributions)
a4ae02cd 100 DefineOutput(2,TList::Class()); //My private output
ea0d8716 101 // Output slot #3 writes into a TH1F container (number of events)
a4ae02cd 102 DefineOutput(3,TH1F::Class()); //My private output
ea0d8716 103 // Output slot #4 writes into a TList container (quality check)
a41f6fad 104 DefineOutput(4,TList::Class()); //My private output
ea0d8716 105 // Output slot #5 writes into a TList container (cuts)
106 DefineOutput(5,AliRDHFCutsD0toKpi::Class()); //My private output
107 //DefineOutput(5,TList::Class()); //My private output
108
49061176 109}
110
111//________________________________________________________________________
112AliAnalysisTaskSED0Mass::~AliAnalysisTaskSED0Mass()
113{
ea0d8716 114 if (fOutputMass) {
115 delete fOutputMass;
116 fOutputMass = 0;
a4ae02cd 117 }
a41f6fad 118 if (fDistr) {
119 delete fDistr;
120 fDistr = 0;
121 }
34137226 122 if (fChecks) {
123 delete fChecks;
124 fChecks = 0;
125 }
ea0d8716 126 if (fCuts) {
127 delete fCuts;
128 fCuts = 0;
49061176 129 }
46c96ce5 130 if (fNentries){
131 delete fNentries;
132 fNentries = 0;
133 }
ea0d8716 134
135 if(fCutList){
136 delete fCutList;
137 fCutList=0;
138 }
139
49061176 140}
141
142//________________________________________________________________________
143void AliAnalysisTaskSED0Mass::Init()
144{
145 // Initialization
146
147 if(fDebug > 1) printf("AnalysisTaskSED0Mass::Init() \n");
148
ea0d8716 149
150 fCutList=new TList();
151 fCutList->SetOwner();
152 fCutList->SetName("listofCutsObj");
153 fCutList->Add(fCuts);
154
155 AliRDHFCutsD0toKpi* copyfCuts=new AliRDHFCutsD0toKpi(*fCuts);
156 // Post the data
157 PostData(5,copyfCuts);
158 //PostData(5,fCutList);
49061176 159
49061176 160 return;
161}
162
163//________________________________________________________________________
164void AliAnalysisTaskSED0Mass::UserCreateOutputObjects()
165{
166
167 // Create the output container
168 //
169 if(fDebug > 1) printf("AnalysisTaskSED0Mass::UserCreateOutputObjects() \n");
170
171 // Several histograms are more conveniently managed in a TList
ea0d8716 172 fOutputMass = new TList();
173 fOutputMass->SetOwner();
174 fOutputMass->SetName("listMass");
49061176 175
a41f6fad 176 fDistr = new TList();
177 fDistr->SetOwner();
178 fDistr->SetName("distributionslist");
179
34137226 180 fChecks = new TList();
181 fChecks->SetOwner();
182 fChecks->SetName("checkHistograms");
183
0108fa62 184 TString nameMass=" ",nameSgn27=" ",nameSgn=" ", nameBkg=" ", nameRfl=" ",nameMassNocutsS =" ",nameMassNocutsB =" ", namedistr=" ";
49061176 185
ea0d8716 186 for(Int_t i=0;i<fCuts->GetNPtBins();i++){
b272aebf 187
7646d6da 188 nameMass="histMass_";
ea0d8716 189 nameMass+=i;
9de8c723 190 nameSgn27="histSgn27_";
ea0d8716 191 nameSgn27+=i;
7646d6da 192 nameSgn="histSgn_";
ea0d8716 193 nameSgn+=i;
7646d6da 194 nameBkg="histBkg_";
ea0d8716 195 nameBkg+=i;
a4ae02cd 196 nameRfl="histRfl_";
ea0d8716 197 nameRfl+=i;
0108fa62 198 nameMassNocutsS="hMassS_";
ea0d8716 199 nameMassNocutsS+=i;
0108fa62 200 nameMassNocutsB="hMassB_";
ea0d8716 201 nameMassNocutsB+=i;
7646d6da 202
b272aebf 203 //histograms of cut variable distributions
204
205 // pT
206 namedistr="hptpiS_";
ea0d8716 207 namedistr+=i;
b272aebf 208 TH1F *hptpiS = new TH1F(namedistr.Data(), "P_{T} distribution (pions);p_{T} [GeV/c]",200,0.,8.);
209
210 namedistr="hptKS_";
ea0d8716 211 namedistr+=i;
b272aebf 212 TH1F *hptKS = new TH1F(namedistr.Data(), "P_{T} distribution (kaons);p_{T} [GeV/c]",200,0.,8.);
213
214 namedistr="hptB_";
ea0d8716 215 namedistr+=i;
b272aebf 216 TH1F *hptB = new TH1F(namedistr.Data(), "P_{T} distribution;p_{T} [GeV/c]",200,0.,8.);
217
218 // pT no mass cut
219 namedistr="hptpiSnoMcut_";
ea0d8716 220 namedistr+=i;
b272aebf 221 TH1F *hptpiSnoMcut = new TH1F(namedistr.Data(), "P_{T} distribution (pions);p_{T} [GeV/c]",200,0.,8.);
222
223 namedistr="hptKSnoMcut_";
ea0d8716 224 namedistr+=i;
b272aebf 225 TH1F *hptKSnoMcut = new TH1F(namedistr.Data(), "P_{T} distribution (kaons);p_{T} [GeV/c]",200,0.,8.);
226
227 namedistr="hptB1prongnoMcut_";
ea0d8716 228 namedistr+=i;
b272aebf 229 TH1F *hptB1pnoMcut = new TH1F(namedistr.Data(), "P_{T} distribution;p_{T} [GeV/c]",200,0.,8.);
230
231 namedistr="hptB2prongsnoMcut_";
ea0d8716 232 namedistr+=i;
b272aebf 233 TH1F *hptB2pnoMcut = new TH1F(namedistr.Data(), "P_{T} distribution;p_{T} [GeV/c]",200,0.,8.);
234
235
236 // dca
237 namedistr="hdcaS_";
ea0d8716 238 namedistr+=i;
b272aebf 239 TH1F *hdcaS = new TH1F(namedistr.Data(), "DCA distribution;dca [cm]",200,0.,0.1);
240 namedistr="hdcaB_";
ea0d8716 241 namedistr+=i;
b272aebf 242 TH1F *hdcaB = new TH1F(namedistr.Data(), "DCA distribution;dca [cm]",200,0.,0.1);
243
244 // costhetastar
245 namedistr="hcosthetastarS_";
ea0d8716 246 namedistr+=i;
b272aebf 247 TH1F *hcosthetastarS = new TH1F(namedistr.Data(), "cos#theta* distribution;cos#theta*",200,-1.,1.);
248 namedistr="hcosthetastarB_";
ea0d8716 249 namedistr+=i;
b272aebf 250 TH1F *hcosthetastarB = new TH1F(namedistr.Data(), "cos#theta* distribution;cos#theta*",200,-1.,1.);
251
252 // impact parameter
253 namedistr="hd0piS_";
ea0d8716 254 namedistr+=i;
b272aebf 255 TH1F *hd0piS = new TH1F(namedistr.Data(), "Impact parameter distribution (pions);d0(#pi) [cm]",200,-0.1,0.1);
256
257 namedistr="hd0KS_";
ea0d8716 258 namedistr+=i;
b272aebf 259 TH1F *hd0KS = new TH1F(namedistr.Data(), "Impact parameter distribution (kaons);d0(K) [cm]",200,-0.1,0.1);
260 namedistr="hd0B_";
ea0d8716 261 namedistr+=i;
b272aebf 262 TH1F *hd0B = new TH1F(namedistr.Data(), "Impact parameter distribution;d0 [cm]",200,-0.1,0.1);
263
264 namedistr="hd0d0S_";
ea0d8716 265 namedistr+=i;
b272aebf 266 TH1F *hd0d0S = new TH1F(namedistr.Data(), "d_{0}#timesd_{0} distribution;d_{0}#timesd_{0} [cm^{2}]",200,-0.001,0.001);
267 namedistr="hd0d0B_";
ea0d8716 268 namedistr+=i;
b272aebf 269 TH1F *hd0d0B = new TH1F(namedistr.Data(), "d_{0}#timesd_{0} distribution;d_{0}#timesd_{0} [cm^{2}]",200,-0.001,0.001);
270
271 // costhetapoint
272 namedistr="hcosthetapointS_";
ea0d8716 273 namedistr+=i;
b272aebf 274 TH1F *hcosthetapointS = new TH1F(namedistr.Data(), "cos#theta_{Point} distribution;cos#theta_{Point}",200,0,1.);
275 namedistr="hcosthetapointB_";
ea0d8716 276 namedistr+=i;
b272aebf 277 TH1F *hcosthetapointB = new TH1F(namedistr.Data(), "cos#theta_{Point} distribution;cos#theta_{Point}",200,0,1.);
278
279 namedistr="hcosthpointd0d0S_";
ea0d8716 280 namedistr+=i;
b272aebf 281 TH2F *hcosthpointd0d0S= new TH2F(namedistr.Data(),"Correlation cos#theta_{Point}-d_{0}#timesd_{0};cos#theta_{Point};d_{0}#timesd_{0} [cm^{2}]",200,0,1.,200,-0.001,0.001);
282 namedistr="hcosthpointd0d0B_";
ea0d8716 283 namedistr+=i;
b272aebf 284 TH2F *hcosthpointd0d0B= new TH2F(namedistr.Data(),"Correlation cos#theta_{Point}-d_{0}#timesd_{0};cos#theta_{Point};d_{0}#timesd_{0} [cm^{2}]",200,0,1.,200,-0.001,0.001);
285
286 fDistr->Add(hptpiS);
287 fDistr->Add(hptKS);
288 fDistr->Add(hptB);
289
290 fDistr->Add(hptpiSnoMcut);
291 fDistr->Add(hptKSnoMcut);
292 fDistr->Add(hptB1pnoMcut);
293 fDistr->Add(hptB2pnoMcut);
294
295 fDistr->Add(hdcaS);
296 fDistr->Add(hdcaB);
297
298 fDistr->Add(hd0piS);
299 fDistr->Add(hd0KS);
300 fDistr->Add(hd0B);
301
302 fDistr->Add(hd0d0S);
303 fDistr->Add(hd0d0B);
304
305 fDistr->Add(hcosthetastarS);
306 fDistr->Add(hcosthetastarB);
307
308 fDistr->Add(hcosthetapointS);
309 fDistr->Add(hcosthetapointB);
310
311 fDistr->Add(hcosthpointd0d0S);
312 fDistr->Add(hcosthpointd0d0B);
313
314
a41f6fad 315 //histograms of invariant mass distributions
316
46c96ce5 317 TH1F* tmpMt = new TH1F(nameMass.Data(),"D^{0} invariant mass; M [GeV]; Entries",200,1.765,1.965);
318 TH1F *tmpMl=(TH1F*)tmpMt->Clone();
319 tmpMt->Sumw2();
320 tmpMl->Sumw2();
a4ae02cd 321
9de8c723 322 //to compare with AliAnalysisTaskCharmFraction
323 TH1F* tmpS27t = new TH1F(nameSgn27.Data(),"D^{0} invariant mass in M(D^{0}) +/- 27 MeV - MC; M [GeV]; Entries",200,1.765,1.965);
324 TH1F *tmpS27l=(TH1F*)tmpS27t->Clone();
325 tmpS27t->Sumw2();
326 tmpS27l->Sumw2();
0108fa62 327
328 //distribution w/o cuts
6321ee46 329 // TH1F* tmpMS = new TH1F(nameMassNocutsS.Data(),"D^{0} invariant mass; M [GeV]; Entries",300,0.7,3.);
330 TH1F* tmpMS = new TH1F(nameMassNocutsS.Data(),"D^{0} invariant mass; M [GeV]; Entries",300,1.56484,2.16484); //range (MD0-300MeV, mD0 + 300MeV)
331 TH1F *tmpMB=(TH1F*)tmpMS->Clone();
0108fa62 332 tmpMB->SetName(nameMassNocutsB.Data());
333 tmpMS->Sumw2();
334 tmpMB->Sumw2();
335
336 //MC signal and background
46c96ce5 337 TH1F* tmpSt = new TH1F(nameSgn.Data(), "D^{0} invariant mass - MC; M [GeV]; Entries",200,1.765,1.965);
338 TH1F *tmpSl=(TH1F*)tmpSt->Clone();
339 tmpSt->Sumw2();
340 tmpSl->Sumw2();
a4ae02cd 341
46c96ce5 342 TH1F* tmpBt = new TH1F(nameBkg.Data(), "Background invariant mass - MC; M [GeV]; Entries",200,1.765,1.965);
343 TH1F *tmpBl=(TH1F*)tmpBt->Clone();
344 tmpBt->Sumw2();
345 tmpBl->Sumw2();
a4ae02cd 346
feb73eca 347 //Reflection: histo filled with D0Mass which pass the cut (also) as D0bar and with D0bar which pass (also) the cut as D0
46c96ce5 348 TH1F* tmpRt = new TH1F(nameRfl.Data(), "Reflected signal invariant mass - MC; M [GeV]; Entries",200,1.765,1.965);
349 TH1F *tmpRl=(TH1F*)tmpRt->Clone();
350 tmpRt->Sumw2();
351 tmpRl->Sumw2();
a4ae02cd 352 // printf("Created histograms %s\t%s\t%s\t%s\n",tmpM->GetName(),tmpS->GetName(),tmpB->GetName(),tmpR->GetName());
353
ea0d8716 354 fOutputMass->Add(tmpMt);
355 fOutputMass->Add(tmpSt);
356 fOutputMass->Add(tmpS27t);
357 fOutputMass->Add(tmpBt);
358 fOutputMass->Add(tmpRt);
359
0108fa62 360 fDistr->Add(tmpMS);
361 fDistr->Add(tmpMB);
362
34137226 363
7646d6da 364 }
a4ae02cd 365
34137226 366 //histograms for vertex checking
367 TString checkname="hptGoodTr";
368
369 TH1F* hptGoodTr=new TH1F(checkname.Data(),"Pt distribution of 'good' tracks;p_{t}[GeV];Number",200,0.,8.);
370 hptGoodTr->SetTitleOffset(1.3,"Y");
371 checkname="hdistrGoodTr";
a41f6fad 372
34137226 373 TH1F* hdistrGoodTr=new TH1F(checkname.Data(),"Distribution of number of good tracks per event;no.good-tracks/ev;Entries",31,0,31);
374 hdistrGoodTr->SetTitleOffset(1.3,"Y");
375
376 //conta gli eventi con vertice buoni e almeno due tracce utilizzabili
377 fChecks->Add(hptGoodTr);
378 fChecks->Add(hdistrGoodTr);
379
5b2e5fae 380 const char* nameoutput=GetOutputSlot(3)->GetContainer()->GetName();
381 cout<<nameoutput<<endl;
382 fNentries=new TH1F(nameoutput, "nentriesD0->Integral(1,2) = number of AODs *** nentriesD0->Integral(3,4) = number of candidates selected with cuts *** nentriesD0->Integral(5,6) = number of D0 selected with cuts *** nentriesD0->Integral(7,8) = events with good vertex", 5,0.,5.);
34137226 383
384 fNentries->GetXaxis()->SetBinLabel(1,"nEventsAnal");
385 fNentries->GetXaxis()->SetBinLabel(2,"nCandidatesSelected");
386 fNentries->GetXaxis()->SetBinLabel(3,"nD0Selected");
387 fNentries->GetXaxis()->SetBinLabel(4,"nEventsGoodVtx");
388 fNentries->GetXaxis()->SetBinLabel(5,"nEventsGoodVtx+>2tracks");
389 fNentries->GetXaxis()->SetNdivisions(1,kFALSE);
a4ae02cd 390
ea0d8716 391
40445ada 392 // Post the data
ea0d8716 393 PostData(1,fOutputMass);
5b2e5fae 394 PostData(2,fDistr);
40445ada 395 PostData(3,fNentries);
5b2e5fae 396 PostData(4,fChecks);
ea0d8716 397
49061176 398 return;
399}
400
401//________________________________________________________________________
402void AliAnalysisTaskSED0Mass::UserExec(Option_t */*option*/)
403{
404 // Execute analysis for current event:
405 // heavy flavor candidates association to MC truth
a4ae02cd 406 //cout<<"I'm in UserExec"<<endl;
ea0d8716 407
408
409 //cuts order
410 // printf(" |M-MD0| [GeV] < %f\n",fD0toKpiCuts[0]);
411 // printf(" dca [cm] < %f\n",fD0toKpiCuts[1]);
412 // printf(" cosThetaStar < %f\n",fD0toKpiCuts[2]);
413 // printf(" pTK [GeV/c] > %f\n",fD0toKpiCuts[3]);
414 // printf(" pTpi [GeV/c] > %f\n",fD0toKpiCuts[4]);
415 // printf(" |d0K| [cm] < %f\n",fD0toKpiCuts[5]);
416 // printf(" |d0pi| [cm] < %f\n",fD0toKpiCuts[6]);
417 // printf(" d0d0 [cm^2] < %f\n",fD0toKpiCuts[7]);
418 // printf(" cosThetaPoint > %f\n",fD0toKpiCuts[8]);
419
420
49061176 421 AliAODEvent *aod = dynamic_cast<AliAODEvent*> (InputEvent());
feb73eca 422
b557eb43 423 TString bname;
feb73eca 424 if(fArray==0){ //D0 candidates
b557eb43 425 // load D0->Kpi candidates
feb73eca 426 //cout<<"D0 candidates"<<endl;
b557eb43 427 bname="D0toKpi";
feb73eca 428 } else { //LikeSign candidates
feb73eca 429 // load like sign candidates
b557eb43 430 //cout<<"LS candidates"<<endl;
431 bname="LikeSign2Prong";
432 }
433
434 TClonesArray *inputArray=0;
34137226 435
b557eb43 436 if(!aod && AODEvent() && IsStandardAOD()) {
437 // In case there is an AOD handler writing a standard AOD, use the AOD
438 // event in memory rather than the input (ESD) event.
439 aod = dynamic_cast<AliAODEvent*> (AODEvent());
440 // in this case the braches in the deltaAOD (AliAOD.VertexingHF.root)
441 // have to taken from the AOD event hold by the AliAODExtension
442 AliAODHandler* aodHandler = (AliAODHandler*)
443 ((AliAnalysisManager::GetAnalysisManager())->GetOutputEventHandler());
34137226 444
b557eb43 445 if(aodHandler->GetExtensions()) {
446 AliAODExtension *ext = (AliAODExtension*)aodHandler->GetExtensions()->FindObject("AliAOD.VertexingHF.root");
34137226 447 AliAODEvent* aodFromExt = ext->GetAOD();
b557eb43 448 inputArray=(TClonesArray*)aodFromExt->GetList()->FindObject(bname.Data());
feb73eca 449 }
b557eb43 450 } else {
451 inputArray=(TClonesArray*)aod->GetList()->FindObject(bname.Data());
452 }
feb73eca 453
b557eb43 454
455 if(!inputArray) {
456 printf("AliAnalysisTaskSED0Mass::UserExec: input branch not found!\n");
457 return;
49061176 458 }
459
34137226 460
ce39f0ac 461 TClonesArray *mcArray = 0;
462 AliAODMCHeader *mcHeader = 0;
463
464 if(fReadMC) {
465 // load MC particles
466 mcArray = (TClonesArray*)aod->GetList()->FindObject(AliAODMCParticle::StdBranchName());
467 if(!mcArray) {
468 printf("AliAnalysisTaskSED0Mass::UserExec: MC particles branch not found!\n");
469 return;
470 }
40445ada 471
ce39f0ac 472 // load MC header
473 mcHeader = (AliAODMCHeader*)aod->GetList()->FindObject(AliAODMCHeader::StdBranchName());
474 if(!mcHeader) {
475 printf("AliAnalysisTaskSED0Mass::UserExec: MC header branch not found!\n");
476 return;
477 }
49061176 478 }
479
b557eb43 480 //printf("VERTEX Z %f %f\n",vtx1->GetZ(),mcHeader->GetVtxZ());
40445ada 481
a4ae02cd 482 //histogram filled with 1 for every AOD
34137226 483 fNentries->Fill(0);
49061176 484
0108fa62 485
40445ada 486
487 // AOD primary vertex
488 AliAODVertex *vtx1 = (AliAODVertex*)aod->GetPrimaryVertex();
b272aebf 489
40445ada 490 Bool_t isGoodVtx=kFALSE;
b272aebf 491
40445ada 492 //vtx1->Print();
493 TString primTitle = vtx1->GetTitle();
494 if(primTitle.Contains("VertexerTracks") && vtx1->GetNContributors()>0) {
495 isGoodVtx=kTRUE;
496 fNentries->Fill(3);
497 }
498
499 //cout<<"Start checks"<<endl;
500 Int_t ntracks=0,isGoodTrack=0;
501
502 if(aod) ntracks=aod->GetNTracks();
503
75638da0 504 //cout<<"ntracks = "<<ntracks<<endl;
ea0d8716 505
75638da0 506 //loop on tracks in the event
507 for (Int_t k=0;k<ntracks;k++){
508 AliAODTrack* track=aod->GetTrack(k);
509 //cout<<"in loop"<<endl;
510 //check clusters of the tracks
511 Int_t nclsTot=0,nclsSPD=0;
40445ada 512
75638da0 513 for(Int_t l=0;l<6;l++) {
514 if(TESTBIT(track->GetITSClusterMap(),l)) {
515 nclsTot++; if(l<2) nclsSPD++;
b272aebf 516 }
75638da0 517 }
40445ada 518
75638da0 519 if (track->Pt()>0.3 &&
520 track->GetStatus()&AliESDtrack::kTPCrefit &&
521 track->GetStatus()&AliESDtrack::kITSrefit &&
522 nclsTot>3 &&
523 nclsSPD>0) {//fill hist good tracks
524 //cout<<"in if"<<endl;
525 ((TH1F*)fChecks->FindObject("hptGoodTr"))->Fill(track->Pt());
526 isGoodTrack++;
40445ada 527 }
75638da0 528 //cout<<"isGoodTrack = "<<isGoodTrack<<endl;
529 ((TH1F*)fChecks->FindObject("hdistrGoodTr"))->Fill(isGoodTrack);
530 }
531 //number of events with good vertex and at least 2 good tracks
532 if (isGoodTrack>=2 && isGoodVtx) fNentries->Fill(4);
ea0d8716 533
534
75638da0 535 // loop over candidates
536 Int_t nInD0toKpi = inputArray->GetEntriesFast();
537 if(fDebug>1) printf("Number of D0->Kpi: %d\n",nInD0toKpi);
538
75638da0 539 for (Int_t iD0toKpi = 0; iD0toKpi < nInD0toKpi; iD0toKpi++) {
540 //Int_t nPosPairs=0, nNegPairs=0;
541 //cout<<"inside the loop"<<endl;
542 AliAODRecoDecayHF2Prong *d = (AliAODRecoDecayHF2Prong*)inputArray->UncheckedAt(iD0toKpi);
543 Bool_t unsetvtx=kFALSE;
544 if(!d->GetOwnPrimaryVtx()) {
545 d->SetOwnPrimaryVtx(vtx1); // needed to compute all variables
546 unsetvtx=kTRUE;
547 }
ea0d8716 548
75638da0 549 //check reco daughter in acceptance
550 Double_t eta0=d->EtaProng(0);
551 Double_t eta1=d->EtaProng(1);
ea0d8716 552
553 if (TMath::Abs(eta0) < 0.9 && TMath::Abs(eta1) < 0.9) {
554 FillVarHists(d,mcArray,fCuts,fDistr);
555 FillMassHists(d,mcArray,fCuts,fOutputMass);
75638da0 556 }
ea0d8716 557
75638da0 558 if(unsetvtx) d->UnsetOwnPrimaryVtx();
559 } //end for prongs
560
ea0d8716 561
40445ada 562 // Post the data
ea0d8716 563 PostData(1,fOutputMass);
564 PostData(2,fDistr);
40445ada 565 PostData(3,fNentries);
ea0d8716 566 PostData(4,fChecks);
567
40445ada 568 cout<<"Other PostData"<<endl;
569 return;
570}
b272aebf 571
40445ada 572//____________________________________________________________________________
ea0d8716 573void AliAnalysisTaskSED0Mass::FillVarHists(AliAODRecoDecayHF2Prong *part, TClonesArray *arrMC, AliRDHFCutsD0toKpi *cuts, TList *listout){
40445ada 574 //
575 // function used in UserExec to fill variable histograms:
576 //
b272aebf 577
40445ada 578 //add distr here
579 UInt_t pdgs[2];
580
581 Double_t mPDG=TDatabasePDG::Instance()->GetParticle(421)->Mass();
582 pdgs[0]=211;
583 pdgs[1]=321;
584 Double_t minvD0 = part->InvMassD0();
585 pdgs[1]=211;
586 pdgs[0]=321;
587 Double_t minvD0bar = part->InvMassD0bar();
588 //cout<<"inside mass cut"<<endl;
b272aebf 589
40445ada 590 Int_t pdgDgD0toKpi[2]={321,211};
591 Int_t lab=-9999;
592 if(fReadMC) lab=part->MatchToMC(421,arrMC,2,pdgDgD0toKpi); //return MC particle label if the array corresponds to a D0, -1 if not (cf. AliAODRecoDecay.cxx)
593 //Double_t pt = d->Pt(); //mother pt
594 Bool_t isSelected=kFALSE;
b272aebf 595
ea0d8716 596 if(fCutOnDistr){
597 isSelected = cuts->IsSelected(part,AliRDHFCuts::kAll);
598 if (!isSelected){
599 //cout<<"Not Selected"<<endl;
600 return;
601 }
602 }
0108fa62 603
40445ada 604 TString fillthispi="",fillthisK="",fillthis="";
b272aebf 605
ea0d8716 606 Int_t ptbin=cuts->PtBin(part->Pt());
40445ada 607 if(!fCutOnDistr || (fCutOnDistr && isSelected)){ //if no cuts or cuts passed
ea0d8716 608 //printf("\nif no cuts or cuts passed\n");
40445ada 609 if(lab>=0 && fReadMC){ //signal
0108fa62 610
40445ada 611 //check pdg of the prongs
612 AliAODTrack *prong0=(AliAODTrack*)part->GetDaughter(0);
613 AliAODTrack *prong1=(AliAODTrack*)part->GetDaughter(1);
614 Int_t labprong[2];
615 labprong[0]=prong0->GetLabel();
616 labprong[1]=prong1->GetLabel();
617 AliAODMCParticle *mcprong=0;
618 Int_t pdgProng[2]={0,0};
619 for (Int_t iprong=0;iprong<2;iprong++){
620 if(labprong[iprong]>=0) mcprong= (AliAODMCParticle*)arrMC->At(labprong[iprong]);
621 pdgProng[iprong]=mcprong->GetPdgCode();
0108fa62 622 }
623
40445ada 624 //no mass cut ditributions: ptbis
625
626 fillthispi="hptpiSnoMcut_";
627 fillthispi+=ptbin;
628
629 fillthisK="hptKSnoMcut_";
630 fillthisK+=ptbin;
631
632 if (TMath::Abs(pdgProng[0]) == 211 && TMath::Abs(pdgProng[1]) == 321){
633 ((TH1F*)listout->FindObject(fillthispi))->Fill(part->PtProng(0));
634 ((TH1F*)listout->FindObject(fillthisK))->Fill(part->PtProng(1));
635 }else {
636 if (TMath::Abs(pdgProng[0]) == 321 && TMath::Abs(pdgProng[1]) == 211){
637 ((TH1F*)listout->FindObject(fillthisK))->Fill(part->PtProng(0));
638 ((TH1F*)listout->FindObject(fillthispi))->Fill(part->PtProng(1));
639 }
640 }
641
642 //no mass cut ditributions: mass
643 fillthis="hMassS_";
644 fillthis+=ptbin;
645
646 if (((AliAODMCParticle*)arrMC->At(lab))->GetPdgCode() == 421){//D0
647 ((TH1F*)listout->FindObject(fillthis))->Fill(minvD0);
648 }
649 else { //D0bar
650 ((TH1F*)listout->FindObject(fillthis))->Fill(minvD0bar);
651 }
652
0108fa62 653 //apply cut on invariant mass on the pair
654 if(TMath::Abs(minvD0-mPDG)<0.03 || TMath::Abs(minvD0bar-mPDG)<0.03){
40445ada 655
0108fa62 656 if(fArray==1) cout<<"LS signal: ERROR"<<endl;
657 for (Int_t iprong=0; iprong<2; iprong++){
40445ada 658 AliAODTrack *prong=(AliAODTrack*)part->GetDaughter(iprong);
04e09ffc 659 labprong[iprong]=prong->GetLabel();
40445ada 660
0108fa62 661 //cout<<"prong name = "<<prong->GetName()<<" label = "<<prong->GetLabel()<<endl;
40445ada 662 if(labprong[iprong]>=0) mcprong= (AliAODMCParticle*)arrMC->At(labprong[iprong]);
0108fa62 663 Int_t pdgprong=mcprong->GetPdgCode();
40445ada 664
0108fa62 665 if(TMath::Abs(pdgprong)==211) {
666 //cout<<"pi"<<endl;
40445ada 667
668 fillthispi="hptpiS_";
669 fillthispi+=ptbin;
670 ((TH1F*)listout->FindObject(fillthispi))->Fill(part->PtProng(iprong));
671
672 fillthisK="hd0KS_";
673 fillthisK+=ptbin;
674 ((TH1F*)listout->FindObject(fillthisK))->Fill(part->Getd0Prong(iprong));
b272aebf 675 }
40445ada 676
677 if(TMath::Abs(pdgprong)==321) {
678 //cout<<"kappa"<<endl;
679
680 fillthisK="hptKS_";
681 fillthisK+=ptbin;
682 ((TH1F*)listout->FindObject(fillthisK))->Fill(part->PtProng(iprong));
683
684 fillthisK="hd0KS_";
685 fillthisK+=ptbin;
686 ((TH1F*)listout->FindObject(fillthisK))->Fill(part->Getd0Prong(iprong));
b272aebf 687 }
b272aebf 688
40445ada 689 fillthis="hdcaS_";
690 fillthis+=ptbin;
691 ((TH1F*)listout->FindObject(fillthis))->Fill(part->GetDCA());
b272aebf 692
40445ada 693 fillthis="hcosthetapointS_";
694 fillthis+=ptbin;
695 ((TH1F*)listout->FindObject(fillthis))->Fill(part->CosPointingAngle());
b272aebf 696
40445ada 697 fillthis="hcosthpointd0d0S_";
698 fillthis+=ptbin;
699 ((TH2F*)listout->FindObject(fillthis))->Fill(part->CosPointingAngle(),part->Prodd0d0());
b272aebf 700
40445ada 701 fillthis="hcosthetastarS_";
702 fillthis+=ptbin;
703 if (((AliAODMCParticle*)arrMC->At(lab))->GetPdgCode() == 421)((TH1F*)listout->FindObject(fillthis))->Fill(part->CosThetaStarD0());
704 else ((TH1F*)listout->FindObject(fillthis))->Fill(part->CosThetaStarD0bar());
0108fa62 705
40445ada 706 fillthis="hd0d0S_";
707 fillthis+=ptbin;
708 ((TH1F*)listout->FindObject(fillthis))->Fill(part->Prodd0d0());
709
b272aebf 710 }
40445ada 711 }
0108fa62 712 } else{ //Background or LS
713 //cout<<"is background"<<endl;
40445ada 714
b272aebf 715 //no mass cut distributions: mass, ptbis
40445ada 716 fillthis="hMassB_";
717 fillthis+=ptbin;
ea0d8716 718
719 if (!fCutOnDistr || (fCutOnDistr && (isSelected==1 || isSelected==3))) ((TH1F*)listout->FindObject(fillthis))->Fill(minvD0);
720 if (!fCutOnDistr || (fCutOnDistr && isSelected>1)) ((TH1F*)listout->FindObject(fillthis))->Fill(minvD0bar);
b272aebf 721
40445ada 722 fillthis="hptB1prongnoMcut_";
723 fillthis+=ptbin;
724
725 ((TH1F*)listout->FindObject(fillthis))->Fill(part->PtProng(0));
726
727 fillthis="hptB2prongsnoMcut_";
728 fillthis+=ptbin;
729 ((TH1F*)listout->FindObject(fillthis))->Fill(part->PtProng(0));
730 ((TH1F*)listout->FindObject(fillthis))->Fill(part->PtProng(1));
0108fa62 731
732 //apply cut on invariant mass on the pair
733 if(TMath::Abs(minvD0-mPDG)<0.03 || TMath::Abs(minvD0bar-mPDG)<0.03){
734
735
40445ada 736 AliAODTrack *prong=(AliAODTrack*)part->GetDaughter(0);
0108fa62 737 if(!prong) cout<<"No daughter found";
738 else{
739 if(prong->Charge()==1) {fTotPosPairs[4]++;} else {fTotNegPairs[4]++;}
740 }
40445ada 741
742 //normalise pt distr to half afterwards
743 fillthis="hptB_";
744 fillthis+=ptbin;
0108fa62 745
40445ada 746 ((TH1F*)listout->FindObject(fillthis))->Fill(part->PtProng(0));((TH1F*)listout->FindObject("hptB_1"))->Fill(part->PtProng(1));
0108fa62 747
40445ada 748 fillthis="hd0B_";
749 fillthis+=ptbin;
750 ((TH1F*)listout->FindObject(fillthis))->Fill(part->Getd0Prong(0));
ce39f0ac 751
40445ada 752 fillthis="hdcaB_";
753 fillthis+=ptbin;
754 ((TH1F*)listout->FindObject(fillthis))->Fill(part->GetDCA());
34137226 755
40445ada 756 fillthis="hcosthetastarB_";
757 fillthis+=ptbin;
ea0d8716 758 if (!fCutOnDistr || (fCutOnDistr && (isSelected==1 || isSelected==3)))((TH1F*)listout->FindObject(fillthis))->Fill(part->CosThetaStarD0());
759 if (!fCutOnDistr || (fCutOnDistr && isSelected>1))((TH1F*)listout->FindObject(fillthis))->Fill(part->CosThetaStarD0bar());
40445ada 760
761 fillthis="hd0d0B_";
762 fillthis+=ptbin;
763 ((TH1F*)listout->FindObject(fillthis))->Fill(part->Prodd0d0());
764
765 fillthis="hcosthetapointB_";
766 fillthis+=ptbin;
767 ((TH1F*)listout->FindObject(fillthis))->Fill(part->CosPointingAngle());
768
769 fillthis="hcosthpointd0d0B_";
770 fillthis+=ptbin;
771 ((TH2F*)listout->FindObject(fillthis))->Fill(part->CosPointingAngle(),part->Prodd0d0());
772
773 }
774 }
775 }
49061176 776 return;
777}
ea0d8716 778//____________________________________________________________________________
779
780void AliAnalysisTaskSED0Mass::FillMassHists(AliAODRecoDecayHF2Prong *part, TClonesArray *arrMC, AliRDHFCutsD0toKpi* cuts, TList *listout){
49061176 781 //
40445ada 782 // function used in UserExec to fill mass histograms:
49061176 783 //
9de8c723 784
785
786 Double_t mPDG=TDatabasePDG::Instance()->GetParticle(421)->Mass();
787
ea0d8716 788 Int_t isSelected=cuts->IsSelected(part,AliRDHFCuts::kAll); //selected
789 //cout<<"is selected = "<<isSelected<<endl;
feb73eca 790
ea0d8716 791 //cout<<"check cuts = "<<endl;
792 //cuts->PrintAll();
793 if (!isSelected){
794 //cout<<"Not Selected"<<endl;
795 return;
796 }
9de8c723 797
ea0d8716 798 cout<<"Candidate selected"<<endl;
a41f6fad 799
ea0d8716 800 Double_t invmassD0 = part->InvMassD0(), invmassD0bar = part->InvMassD0bar();
801 //printf("SELECTED\n");
802 Int_t ptbin=cuts->PtBin(part->Pt());
9de8c723 803
ea0d8716 804 AliAODTrack *prong=(AliAODTrack*)part->GetDaughter(0);
805 if(!prong) cout<<"No daughter found";
806 else{
807 if(prong->Charge()==1) {fTotPosPairs[ptbin-1]++;} else {fTotNegPairs[ptbin-1]++;}
808 }
7646d6da 809
ea0d8716 810 TString fillthis="";
811 Int_t pdgDgD0toKpi[2]={321,211};
812 Int_t labD0=-1;
813 if (fReadMC) labD0 = part->MatchToMC(421,arrMC,2,pdgDgD0toKpi); //return MC particle label if the array corresponds to a D0, -1 if not (cf. AliAODRecoDecay.cxx)
814
815 //count candidates selected by cuts
816 fNentries->Fill(1);
817 //count true D0 selected by cuts
818 if (fReadMC && labD0>=0) fNentries->Fill(2);
819 //PostData(3,fNentries);
820
821 if (isSelected==1 || isSelected==3) { //D0
822 fillthis="histMass_";
823 fillthis+=ptbin;
824 //cout<<"Filling "<<fillthis<<endl;
825
826 //printf("Fill mass with D0");
827 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0);
feb73eca 828
ea0d8716 829 if(labD0>=0) {
830 if(fArray==1) cout<<"LS signal ERROR"<<endl;
831
832 AliAODMCParticle *partD0 = (AliAODMCParticle*)arrMC->At(labD0);
833 Int_t pdgD0 = partD0->GetPdgCode();
834 //cout<<"pdg = "<<pdgD0<<endl;
835 if (pdgD0==421){ //D0
836 //cout<<"Fill S with D0"<<endl;
837 fillthis="histSgn_";
838 fillthis+=ptbin;
839 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0);
840 if(TMath::Abs(invmassD0 - mPDG) < 0.027){
841 fillthis="histSgn27_";
46c96ce5 842 fillthis+=ptbin;
843 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0);
a4ae02cd 844 }
ea0d8716 845 } else{ //it was a D0bar
846 fillthis="histRfl_";
a4ae02cd 847 fillthis+=ptbin;
848 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0);
849 }
ea0d8716 850 } else {//background
851 fillthis="histBkg_";
a4ae02cd 852 fillthis+=ptbin;
ea0d8716 853 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0);
854 }
855
856 }
857 if (isSelected>1) { //D0bar
858 fillthis="histMass_";
859 fillthis+=ptbin;
860 //printf("Fill mass with D0bar");
861 ((TH1F*)listout->FindObject(fillthis))->Fill(invmassD0bar);
feb73eca 862
ea0d8716 863 if(labD0>=0) {
864 if(fArray==1) cout<<"LS signal ERROR"<<endl;
865 AliAODMCParticle *partD0 = (AliAODMCParticle*)arrMC->At(labD0);
866 Int_t pdgD0 = partD0->GetPdgCode();
867 //cout<<" pdg = "<<pdgD0<<endl;
868 if (pdgD0==-421){ //D0bar
869 fillthis="histSgn_";
870 fillthis+=ptbin;
871 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0bar);
872 if (TMath::Abs(invmassD0bar - mPDG) < 0.027){
873 fillthis="histSgn27_";
a4ae02cd 874 fillthis+=ptbin;
875 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0bar);
ea0d8716 876 }
9de8c723 877
a4ae02cd 878
ea0d8716 879 } else{
880 fillthis="histRfl_";
a4ae02cd 881 fillthis+=ptbin;
882 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0bar);
883 }
ea0d8716 884 } else {//background or LS
885 fillthis="histBkg_";
886 fillthis+=ptbin;
887 ((TH1F*)(listout->FindObject(fillthis)))->Fill(invmassD0bar);
a4ae02cd 888 }
ea0d8716 889 }
a4ae02cd 890
40445ada 891 return;
49061176 892}
893//________________________________________________________________________
894void AliAnalysisTaskSED0Mass::Terminate(Option_t */*option*/)
895{
896 // Terminate analysis
897 //
898 if(fDebug > 1) printf("AnalysisTaskSED0Mass: Terminate() \n");
899
6321ee46 900
ea0d8716 901 fOutputMass = dynamic_cast<TList*> (GetOutputData(1));
902 if (!fOutputMass) {
903 printf("ERROR: fOutputMass not available\n");
a4ae02cd 904 return;
905 }
ea0d8716 906 fDistr = dynamic_cast<TList*> (GetOutputData(2));
907 if (!fDistr) {
908 printf("ERROR: fDistr not available\n");
a41f6fad 909 return;
910 }
5b2e5fae 911
912// fNentries = dynamic_cast<TH1F*>(GetOutputData(3));
913// if(!fNentries){
914// printf("ERROR: fNEntries not available\n");
915// return;
916// }
917
40445ada 918 fNentries = dynamic_cast<TH1F*>(GetOutputData(3));
5b2e5fae 919
40445ada 920 if(!fNentries){
921 printf("ERROR: fNEntries not available\n");
922 return;
923 }
5b2e5fae 924
ea0d8716 925 fChecks = dynamic_cast<TList*> (GetOutputData(4));
34137226 926 if (!fChecks) {
927 printf("ERROR: fChecks not available\n");
928 return;
929 }
ea0d8716 930
feb73eca 931 if(fArray==1){
40445ada 932 for(Int_t ipt=0;ipt<5;ipt++){
feb73eca 933 fLsNormalization = 2.*TMath::Sqrt(fTotPosPairs[ipt]*fTotNegPairs[ipt]);
934
935
ea0d8716 936 if(fLsNormalization>1e-6) {
9de8c723 937
feb73eca 938 TString massName="histMass_";
ea0d8716 939 massName+=ipt;
940 ((TH1F*)fOutputMass->FindObject(massName))->Scale((1/fLsNormalization)*((TH1F*)fOutputMass->FindObject(massName))->GetEntries());
941
feb73eca 942 }
40445ada 943
feb73eca 944
40445ada 945 fLsNormalization = 2.*TMath::Sqrt(fTotPosPairs[4]*fTotNegPairs[4]);
946
ea0d8716 947 if(fLsNormalization>1e-6) {
40445ada 948
949 TString nameDistr="hptB_";
ea0d8716 950 nameDistr+=ipt;
40445ada 951 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
952 nameDistr="hdcaB_";
ea0d8716 953 nameDistr+=ipt;
40445ada 954 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
955 nameDistr="hcosthetastarB_";
ea0d8716 956 nameDistr+=ipt;
40445ada 957 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
958 nameDistr="hd0B_";
ea0d8716 959 nameDistr+=ipt;
40445ada 960 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
961 nameDistr="hd0d0B_";
ea0d8716 962 nameDistr+=ipt;
40445ada 963 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
964 nameDistr="hcosthetapointB_";
ea0d8716 965 nameDistr+=ipt;
40445ada 966 ((TH1F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH1F*)fDistr->FindObject(nameDistr))->GetEntries());
967 nameDistr="hcosthpointd0d0B_";
ea0d8716 968 nameDistr+=ipt;
40445ada 969 ((TH2F*)fDistr->FindObject(nameDistr))->Scale((1/fLsNormalization)*((TH2F*)fDistr->FindObject(nameDistr))->GetEntries());
feb73eca 970
40445ada 971 }
feb73eca 972 }
973 }
527f330b 974 TString cvname;
975
976 if (fArray==0){
977 cvname="D0invmass";
978 } else cvname="LSinvmass";
979
34137226 980 TCanvas *cMass=new TCanvas(cvname,cvname);
981 cMass->cd();
ea0d8716 982 ((TH1F*)fOutputMass->FindObject("histMass_3"))->Draw();
527f330b 983
34137226 984 TCanvas* cStat=new TCanvas("cstat","Stat");
985 cStat->cd();
986 cStat->SetGridy();
ea0d8716 987 //((TH1F*)fDistr->FindObject("nEntriesD0"))->Draw("htext0");
34137226 988 fNentries->Draw("htext0");
527f330b 989
49061176 990 return;
991}
992
5b2e5fae 993