]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/GammaConv/AliV0Reader.h
Coverity deffects fixed; MC event vertex rotated around beam axis with a random angle...
[u/mrichter/AliRoot.git] / PWG4 / GammaConv / AliV0Reader.h
CommitLineData
a0b94e5c 1#ifndef ALIV0READER_H
2#define ALIV0READER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6////////////////////////////////////////////////
7//---------------------------------------------
8// Class used to do analysis on conversion pairs
9//---------------------------------------------
10////////////////////////////////////////////////
11
12// --- ROOT system ---
13#include "TObject.h"
14#include "AliMCEvent.h" // for CF
15#include "AliESDv0.h"
16#include "AliESDEvent.h"
17#include "AliKFParticle.h"
18#include "TParticle.h"
19#include "AliGammaConversionHistograms.h"
20#include <vector>
21#include "AliCFManager.h"
5e55d806 22#include "AliGammaConversionBGHandler.h"
9c1cb6f7 23#include "AliESDpid.h"
a0b94e5c 24
25class TClonesArray;
26class TFormula;
27class Riostream;
28class TChain;
29
30//--- AliRoot system ---
31
32class AliStack;
33class AliMCEvent; // for CF
34class AliESDEvent;
35class AliMCEventHandler;
36class AliESDInputHandler;
37class AliESDVertex;
38class AliLog;
39class TChain;
40class TChain;
41class AliCFManager; // for CF
42class AliCFContainer; // for CF
9c1cb6f7 43//class AliESDpid; // for dEdx cut based on nSigma to particle lines
037dc2db 44class AliESDtrackCuts;
a0b94e5c 45
46class AliV0Reader : public TObject {
47
48 public:
49
50
51 // for CF
52 enum{
53 kStepGenerated = 0,
54 kStepReconstructable = 1,
ebcfaa7e 55 kStepGetOnFly = 2,
56 kStepLikeSign = 3,
57 kStepTPCRefit = 4,
58 kStepKinks = 5,
f14266e7 59 kStepdEdxElectronselection = 6,
60 kStepdEdxPionrejection = 7,
ebcfaa7e 61 kStepNContributors = 8,
62 kStepTPCPID = 9,
63 kStepR = 10,
64 kStepLine = 11,
65 kStepZ = 12,
48682642 66 kStepMinClsTPC = 13,
67 kStepSinglePt= 14,
68 kStepNDF = 15,
69 kStepChi2 = 16,
70 kStepEta = 17,
71 kStepPt = 18,
72 kStepTrueGamma = 19
a0b94e5c 73 };
74
a0b94e5c 75 AliV0Reader(); //constructor
76 AliV0Reader(const AliV0Reader & g); //copy constructor
77 AliV0Reader & operator = (const AliV0Reader & g); //assignment operator
9640a3d1 78 // virtual ~AliV0Reader() {;} //virtual destructor
79 virtual ~AliV0Reader(); //virtual destructor
a0b94e5c 80 /*
81 *Initialize the reader
82 */
83 void Initialize();
48682642 84 void SetInputAndMCEvent(AliVEvent* esd, AliMCEvent* mc) ;
85
86
87 virtual void SetInputEvent(AliVEvent* const input) {fESDEvent = dynamic_cast<AliESDEvent*>(input);}
88 virtual void SetMC(AliMCEvent* const mc) {fMCEvent = mc;}
89
a0b94e5c 90
91 // for CF
4a6157dc 92 void SetCFManager(AliCFManager * const io){fCFManager = io;};
a0b94e5c 93 AliCFManager *GetCFManager() const {return fCFManager;}
94
95
96
97
98 /*
99 * Returns AliESDEvent
100 */
101 AliESDEvent* GetESDEvent() const{return fESDEvent;}
102
103 /*
104 *Returns the number of v0s in the event, no cuts applied.
105 */
106 Int_t GetNumberOfV0s() const{return fESDEvent->GetNumberOfV0s();}
107
b5832f95 108 /*
109 *Returns the number of contributors to the vertex
110 */
c8206114 111 // Int_t GetNumberOfContributorsVtx() const{return fESDEvent->GetPrimaryVertex()->GetNContributors();}
112 Int_t GetNumberOfContributorsVtx();
b5832f95 113
a0b94e5c 114 /*
115 * Check if there are any more good v0s left in the v0 stack
116 * if so, fCurrent v0 is set to this v0 and can be retrieved
117 * by GetCurrentV0 function.
118 * returns kFALSE if there is no more good v0s in the v0 stack
119 */
120 Bool_t NextV0();
121
122 /*
123 * Returns the v0 at the given index, no checks are done on the v0.
124 */
125 AliESDv0* GetV0(Int_t index);
126
127 /*
128 * Returns the current v0
129 */
130 AliESDv0* GetCurrentV0() const{return fCurrentV0;}
131
132 /*
133 * Returns the negative ESD track which belongs to fCurrentV0
134 */
9c1cb6f7 135 // AliESDtrack* GetNegativeESDTrack(){return fESDEvent->GetTrack(fCurrentV0->GetNindex());}
136 AliESDtrack* GetNegativeESDTrack(){return fCurrentNegativeESDTrack;}
a0b94e5c 137
138 /*
139 * Returns the positive ESD track which belongs to fCurrentV0
140 */
9c1cb6f7 141 // AliESDtrack* GetPositiveESDTrack(){return fESDEvent->GetTrack(fCurrentV0->GetPindex());}
142 AliESDtrack* GetPositiveESDTrack(){return fCurrentPositiveESDTrack;}
a0b94e5c 143
144 /*
145 * Returns the negative KF particle which belongs to fCurrentV0
146 */
147 AliKFParticle* GetNegativeKFParticle() const{return fCurrentNegativeKFParticle;}
148
149 /*
150 * Returns the positive KF particle which belongs to fCurrentV0
151 */
152 AliKFParticle* GetPositiveKFParticle() const{return fCurrentPositiveKFParticle;}
153
154 /*
155 * Returns the KFParticle object of the 2 tracks.
156 */
157 AliKFParticle* GetMotherCandidateKFCombination() const{return fCurrentMotherKFCandidate;}
158
159 /*
160 * Checks the probablity that the PID of the particle is what we want it to be.
161 */
162 Bool_t CheckPIDProbability(Double_t negProbCut, Double_t posProbCut);
163
164 /*
165 * Checks if the PID of the two particles are within our cuts.
166 */
167 void GetPIDProbability(Double_t &negPIDProb, Double_t &posPIDProb);
9c1cb6f7 168
169 /*
170 * Checks if the PID of the two particles are within our cuts.
171 */
172 void GetPIDProbabilityMuonPion(Double_t &negPIDProb, Double_t &posPIDProb);
a0b94e5c 173
174 /*
175 *Get the negative MC TParticle from the stack
176 */
177 TParticle * GetNegativeMCParticle() const{return fNegativeMCParticle;}
178
179 /*
180 *Get the positive MC TParticle from the stack
181 */
182 TParticle * GetPositiveMCParticle() const{return fPositiveMCParticle;}
183
184 /*
185 *Get the mother MC TParticle from the stack
186 */
187 TParticle * GetMotherMCParticle() const{return fMotherMCParticle;}
188
189 /*
190 * Flag to see if the v0 particles share the same mother
191 */
192 Bool_t HasSameMCMother();
193
194
195 /*
196 *Get the PID of the MC mother particle
197 */
239a56d1 198 Int_t GetMotherMCParticlePDGCode() const{return fMotherMCParticle->GetPdgCode();}
a0b94e5c 199
200 /*
201 *Get the MC stack
202 */
203 AliStack* GetMCStack() const{return fMCStack;}
204
205
206 /*
207 * Setup AliMCEventHandler
208 */
48682642 209 // AliMCEventHandler* GetMCTruth() const{return fMCTruth;} // for CF
a0b94e5c 210
211
212 /*
213 *Get the MC stack
214 */
215 AliMCEvent* GetMCEvent() const{return fMCEvent;} // for CF
216
217
218 /*
219 *Get the magnetic field from the ESD event
220 */
221 Double_t GetMagneticField() const{return fESDEvent->GetMagneticField();}
222
223 /*
224 *Get the primary vertex from the esd event
225 */
226 const AliESDVertex *GetPrimaryVertex() const {return fESDEvent->GetPrimaryVertex();}
227
228 /*
229 * Set the PID of the negative track
230 */
231 void SetNegativeTrackPID(Int_t negTrackPID){fNegativeTrackPID=negTrackPID;}
232
233 /*
234 * Set the PID of the positive track
235 */
236 void SetPositiveTrackPID(Int_t posTrackPID){fPositiveTrackPID=posTrackPID;}
237
238 /*
239 * Set the flag to use the kfparticle class. Will also disable the use of esd tracks
240 */
241 void UseKFParticle(){fUseKFParticle = kTRUE; fUseESDTrack = kFALSE;}
242
243 /*
244 * Set the flag to use the esd track class. Will also disable the use of kf particles
245 */
246 void UseESDTrack(){fUseESDTrack = kTRUE; fUseKFParticle = kFALSE;}
247
248 /*
249 * Set the flag to use improved vertex or not
250 */
251 void SetUseImprovedVertex(Bool_t useImprovedVertex){fUseImprovedVertex=useImprovedVertex;}
252
253 /*
254 * Return the number in the species array belonging to the negative or positive track pid.
255 */
256 Int_t GetSpeciesIndex(Int_t chargeOfTrack);
257
258 /*
259 * Return the x coordinate of the v0
260 */
261 Double_t GetX() const{return fCurrentXValue;}
262
263 /*
264 * Return the y coordinate of the v0
265 */
266 Double_t GetY() const{return fCurrentYValue;}
267
268 /*
269 * Return the Z coordinate of the v0
270 */
271 Double_t GetZ() const{return fCurrentZValue;}
272
273 /*
274 * Return the radius of the v0
275 */
276 Double_t GetXYRadius() const{return sqrt((Double_t)(fCurrentXValue*fCurrentXValue + fCurrentYValue*fCurrentYValue));}
277
278 /*
279 * Get the opening angle between the two tracks
280 */
281 Double_t GetOpeningAngle(){return fNegativeTrackLorentzVector->Angle(fPositiveTrackLorentzVector->Vect());}
9640a3d1 282
283 /*
284 * Get the Cos Pointing angle between the two tracks
285 */
286 Double_t GetCosPointingAngle(){return fCurrentV0->GetV0CosineOfPointingAngle();}
287
288 /*
289 * Get the DCA between the two tracks
290 */
291 Double_t GetDcaDaughters(){return fCurrentV0->GetDcaV0Daughters();}
292
293 /*
294 * Get the Normalized DCA between the two tracks
295 */
296 Double_t GetNormDcaDistDaughters(){return fCurrentV0->GetDcaV0Daughters()/fCurrentV0->GetDistSigma();}
297
298 /*
299 * Get the Likelihood for a Conversion
300 */
301 Double_t GetLikelihoodAP(){return fCurrentV0->GetLikelihoodAP(0,0);}
302
a0b94e5c 303 /*
304 * Gets the Energy of the negative track.
305 */
306 Double_t GetNegativeTrackEnergy() const{return fCurrentNegativeKFParticle->E();}
307
308 /*
309 * Gets the Energy of the positive track.
310 */
311 Double_t GetPositiveTrackEnergy() const{return fCurrentPositiveKFParticle->E();}
312
313 /*
314 * Gets the Energy of the mother candidate.
315 */
316 Double_t GetMotherCandidateEnergy() const{return fCurrentMotherKFCandidate->E();}
317
318 /*
319 * Gets the Pt of the negative track.
320 */
321 Double_t GetNegativeTrackPt() const{return fNegativeTrackLorentzVector->Pt();}
322
323 /*
324 * Gets the Pt of the positive track.
325 */
326 Double_t GetPositiveTrackPt() const{return fPositiveTrackLorentzVector->Pt();}
327
9640a3d1 328
a0b94e5c 329 /*
330 * Gets the Pt of the mother candidate.
331 */
332 Double_t GetMotherCandidatePt() const{return fMotherCandidateLorentzVector->Pt();}
9640a3d1 333
334
335 /*
336 * Gets the P of the mother candidate.
337 */
338 Double_t GetMotherCandidateP() const{return fMotherCandidateLorentzVector->P();}
a0b94e5c 339
9640a3d1 340
a0b94e5c 341 /*
342 * Gets the Eta of the negative track.
343 */
344 Double_t GetNegativeTrackEta() const{return fNegativeTrackLorentzVector->Eta();}
345 /*
346 * Gets the Eta of the positive track.
347 */
348 Double_t GetPositiveTrackEta() const{return fPositiveTrackLorentzVector->Eta();}
349 /*
350 * Gets the Eta of the mother candidate.
351 */
352 Double_t GetMotherCandidateEta() const{return fMotherCandidateLorentzVector->Eta();}
353
354 /*
355 * Gets the NDF of the mother candidate.
356 */
357 Double_t GetMotherCandidateNDF() const{return fCurrentMotherKFCandidate->GetNDF();}
358
359 /*
360 * Gets the Chi2 of the mother candidate.
361 */
362 Double_t GetMotherCandidateChi2() const{return fCurrentMotherKFCandidate->GetChi2();}
363
364 /*
365 * Gets the Mass of the mother candidate.
366 */
367 Double_t GetMotherCandidateMass() const{return fMotherCandidateKFMass;}
368
369 /*
370 * Gets the Width of the mother candidate.
371 */
372 Double_t GetMotherCandidateWidth() const{return fMotherCandidateKFWidth;}
373
374 /*
375 * Gets the Phi of the negative track.
376 */
377 Double_t GetNegativeTrackPhi() const;
378
379 /*
380 * Gets the Phi of the positive track.
381 */
382 Double_t GetPositiveTrackPhi() const;
383
384 /*
385 * Gets the Phi of the mother candidate.
386 */
387 Double_t GetMotherCandidatePhi() const;
388
389 /*
390 * Gets the Rapidity of the mother candidate.
391 */
392 Double_t GetMotherCandidateRapidity() const;
393
9640a3d1 394
395 /*
396 * Gets the P of the negative track.
397 */
398 Double_t GetNegativeTrackP() const{return fNegativeTrackLorentzVector->P();}
399
400 /*
401 * Gets the P of the positive track.
402 */
403 Double_t GetPositiveTrackP() const{return fPositiveTrackLorentzVector->P();}
404
405 /*
406 * Gets the dE/dx in the TPC of the negative track.
407 */
408 Double_t GetNegativeTrackTPCdEdx() const{return fCurrentNegativeESDTrack->GetTPCsignal();}
409
410 /*
411 * Gets the dE/dx in the TPC of the positive track.
412 */
413 Double_t GetPositiveTrackTPCdEdx() const{return fCurrentPositiveESDTrack->GetTPCsignal();}
ebcfaa7e 414
415 /*
416 * Gets the Number of the TPC clusters of the negative track.
417 */
6f40a6d2 418 Int_t GetNegativeTracknTPCClusters() const{return fCurrentNegativeESDTrack->GetNcls(1);}
ebcfaa7e 419
420 /*
421 * Gets the Number of the TPC clusters of the positive track.
422 */
6f40a6d2 423 Int_t GetPositiveTracknTPCClusters() const{return fCurrentPositiveESDTrack->GetNcls(1);}
e0155998 424
425 /*
426 * Get the TOFsignal for negative/positive track. RRnewTOF
427 */
428 Double_t GetNegativeTrackTOFsignal() const{return fCurrentNegativeESDTrack->GetTOFsignal();}
429 Double_t GetPositiveTrackTOFsignal() const{return fCurrentPositiveESDTrack->GetTOFsignal();}
5ce758b0 430
431 /*
432 * Gets the Number of the TPC findable clusters of the negative track.
433 */
434 Int_t GetNegativeTracknTPCFClusters() const{return fCurrentNegativeESDTrack->GetTPCNclsF();}
435
436 /*
437 * Gets the Number of the TPC findable clusters of the positive track.
438 */
439 Int_t GetPositiveTracknTPCFClusters() const{return fCurrentPositiveESDTrack->GetTPCNclsF();}
440
ebcfaa7e 441 /*
442 * Gets the Number of the ITS clusters of the negative track.
443 */
6f40a6d2 444 Int_t GetNegativeTracknITSClusters() const{return fCurrentNegativeESDTrack->GetNcls(0);}
ebcfaa7e 445
446 /*
447 * Gets the Number of the ITS clusters of the positive track.
448 */
6f40a6d2 449 Int_t GetPositiveTracknITSClusters() const{return fCurrentPositiveESDTrack->GetNcls(0);}
5ce758b0 450
451 /*
452 * Gets the chi2 of the TPC negative track.
453 */
454 Double_t GetNegativeTrackTPCchi2() const{return fCurrentNegativeESDTrack->GetTPCchi2();}
455
456 /*
457 * Gets the chi2 of the TPC the positive track.
458 */
459 Double_t GetPositiveTrackTPCchi2() const{return fCurrentPositiveESDTrack->GetTPCchi2();}
a0b94e5c 460
461 /*
462 * Update data which need to be updated every event.
463 */
464 void UpdateEventByEventData();
10e3319b 465
466 /*
467 * Gets the MaxRCut value.
468 */
469 Double_t GetMaxVertexZ() const{return fMaxVertexZ;}
a0b94e5c 470
471 /*
472 * Gets the MaxRCut value.
473 */
474 Double_t GetMaxRCut() const{return fMaxR;}
bd6d9fa3 475
476 /*
477 * Gets the MinRCut value.
478 */
479 Double_t GetMinRCut() const{return fMinR;}
a0b94e5c 480
481 /*
482 * Gets the Eta cut value.
483 */
484 Double_t GetEtaCut() const{return fEtaCut;}
dc2883e4 485
486 /*
487 * Gets the Rapidity Meson cut value.
488 */
489 Double_t GetRapidityMesonCut() const{return fRapidityMesonCut;}
a0b94e5c 490
491 /*
492 * Gets the Pt cut value.
493 */
494 Double_t GetPtCut() const{return fPtCut;}
495
496
497 /*
498 * Gets the MaxZCut value.
499 */
500 Double_t GetMaxZCut() const{return fMaxZ;}
501
502
48682642 503 /*
504 * Gets the MinClsTPC value.
505 */
506 Double_t GetMinClsTPCCut() const{return fMinClsTPC;}
507
bd6d9fa3 508 /*
509 * Gets the MinClsTPC value.
510 */
511 Double_t GetMinClsTPCCutToF() const{return fMinClsTPCToF;}
512
513
48682642 514
a0b94e5c 515 /*
516 * Gets the line cut values.
517 */
518 Double_t GetLineCutZRSlope() const{return fLineCutZRSlope;}
519 Double_t GetLineCutZValue() const{return fLineCutZValue;}
520
521 /*
522 * Gets the Chi2 cut value for the conversions.
523 */
524 Double_t GetChi2CutConversion() const{return fChi2CutConversion;}
525
526 /*
527 * Gets the Chi2 cut value for the mesons.
528 */
529 Double_t GetChi2CutMeson() const{return fChi2CutMeson;}
530
9c1cb6f7 531 /*
532 * Gets the alpha cut value for the mesons.
533 */
534 Double_t GetAlphaCutMeson() const{return fAlphaCutMeson;}
535
67381a40 536 /*
537 * Gets the Minimum alpha cut value for the mesons.
538 */
539 Double_t GetAlphaMinCutMeson() const{return fAlphaMinCutMeson;}
9c1cb6f7 540
a0b94e5c 541 Double_t GetPositiveTrackLength() const{return fCurrentPositiveESDTrack->GetIntegratedLength();}
542 Double_t GetNegativeTrackLength() const{return fCurrentNegativeESDTrack->GetIntegratedLength();}
543
544 Double_t GetPositiveNTPCClusters() const{return fCurrentPositiveESDTrack->GetTPCNcls();}
545 Double_t GetNegativeNTPCClusters() const{return fCurrentNegativeESDTrack->GetTPCNcls();}
546
10e3319b 547 /*
548 * Sets the MaxVertexZ value.
549 */
550 void SetMaxVertexZ(Double_t maxVertexZ){fMaxVertexZ=maxVertexZ;}
551
a0b94e5c 552 /*
553 * Sets the MaxRCut value.
554 */
555 void SetMaxRCut(Double_t maxR){fMaxR=maxR;}
bd6d9fa3 556 /*
557 * Sets the MinRCut value.
558 */
559 void SetMinRCut(Double_t minR){fMinR=minR;}
560
a0b94e5c 561 /*
562 * Sets the EtaCut value.
563 */
564 void SetEtaCut(Double_t etaCut){fEtaCut=etaCut;}
dc2883e4 565
566 /*
567 * Sets the Rapidity Meson Cut value.
568 */
569 void SetRapidityMesonCut(Double_t RapidityMesonCut){fRapidityMesonCut=RapidityMesonCut;}
a0b94e5c 570
571 /*
572 * Sets the PtCut value.
573 */
574 void SetPtCut(Double_t ptCut){fPtCut=ptCut;}
575
48682642 576 /*
577 * Sets the PtCut value.
578 */
579 void SetSinglePtCut(Double_t singleptCut){fSinglePtCut=singleptCut;}
580
a0b94e5c 581
582 /*
583 * Sets the MaxZCut value.
584 */
585 void SetMaxZCut(Double_t maxZ){fMaxZ=maxZ;}
586
bd6d9fa3 587 /*
48682642 588 * Sets the MinClsTPC value.
589 */
590 void SetMinClsTPCCut(Double_t minClsTPC){fMinClsTPC=minClsTPC;}
bd6d9fa3 591
592 /*
593 * Sets the MinClsTPC value.
594 */
595 void SetMinClsTPCCutToF(Double_t minClsTPCToF){fMinClsTPCToF=minClsTPCToF;}
a0b94e5c 596
bd6d9fa3 597
a0b94e5c 598 /*
599 * Sets the LineCut values.
600 */
601 void SetLineCutZRSlope(Double_t LineCutZRSlope){fLineCutZRSlope=LineCutZRSlope;}
602 void SetLineCutZValue(Double_t LineCutZValue){fLineCutZValue=LineCutZValue;}
603
604 /*
605 * Sets the Chi2Cut value for conversions.
606 */
607 void SetChi2CutConversion(Double_t chi2){fChi2CutConversion=chi2;}
608
609 /*
610 * Sets the Chi2Cut for the mesons.
611 */
612 void SetChi2CutMeson(Double_t chi2){fChi2CutMeson=chi2;}
613
9c1cb6f7 614 /*
615 * Sets the AlphaCut for the mesons.
616 */
617 void SetAlphaCutMeson(Double_t alpha){fAlphaCutMeson=alpha;}
618
619
67381a40 620 /*
621 * Sets the AlphaCut for the mesons.
622 */
623 void SetAlphaMinCutMeson(Double_t alpha){fAlphaMinCutMeson=alpha;}
624
625
a0b94e5c 626 /*
627 * Sets the XVertexCut value.
628 */
629 void SetXVertexCut(Double_t xVtx){fCurrentXValue=xVtx;}
630
631 /*
632 * Sets the YVertexCut value.
633 */
634 void SetYVertexCut(Double_t yVtx){fCurrentYValue=yVtx;}
635
636 /*
637 * Sets the ZVertexCut value.
638 */
639 void SetZVertexCut(Double_t zVtx){fCurrentZValue=zVtx;}
640
641 /*
642 * Sets the PIDProbabilityCut value for track particles.
643 */
644 void SetPIDProbability(Double_t pidProb){fPIDProbabilityCutPositiveParticle=pidProb; fPIDProbabilityCutNegativeParticle=pidProb;}
645
646 /*
647 * Sets the PIDProbability cut value for the negative track.
648 */
649 void SetPIDProbabilityNegativeParticle(Double_t pidProb){fPIDProbabilityCutNegativeParticle=pidProb;}
650
651 /*
652 * Sets the PIDProbability cut value for the positive track.
653 */
654 void SetPIDProbabilityPositiveParticle(Double_t pidProb){fPIDProbabilityCutPositiveParticle=pidProb;}
9640a3d1 655
656 /*
657 * Sets the PIDnSigmaAboveElectron cut value for the tracks.
658 */
659 void SetPIDnSigmaAboveElectronLine(Double_t nSigmaAbove){fPIDnSigmaAboveElectronLine=nSigmaAbove;}
e0155998 660 void SetTofPIDnSigmaAboveElectronLine(Double_t nTofSigmaAbove){fTofPIDnSigmaAboveElectronLine=nTofSigmaAbove;} // RRnewTOF
9640a3d1 661
662 /*
663 * Sets the PIDnSigmaBelowElectron cut value for the tracks.
664 */
665 void SetPIDnSigmaBelowElectronLine(Double_t nSigmaBelow){fPIDnSigmaBelowElectronLine=nSigmaBelow;}
e0155998 666 void SetTofPIDnSigmaBelowElectronLine(Double_t nTofSigmaBelow){fTofPIDnSigmaBelowElectronLine=nTofSigmaBelow;} // RRnewTOF
a0b94e5c 667
9640a3d1 668 /*
669 * Sets the PIDnSigmaAbovePion cut value for the tracks.
670 */
671 void SetPIDnSigmaAbovePionLine(Double_t nSigmaAbovePion){fPIDnSigmaAbovePionLine=nSigmaAbovePion;}
672
673 /*
674 * Sets the PIDMinPnSigmaAbovePion cut value for the tracks.
675 */
676 void SetPIDMinPnSigmaAbovePionLine(Double_t MinPnSigmaAbovePion){fPIDMinPnSigmaAbovePionLine=MinPnSigmaAbovePion;}
677
10e3319b 678 /*
679 * Sets the PIDMinPnSigmaAbovePion cut value for the tracks.
680 */
681 void SetPIDMaxPnSigmaAbovePionLine(Double_t MaxPnSigmaAbovePion){fPIDMaxPnSigmaAbovePionLine=MaxPnSigmaAbovePion;}
682
a0b94e5c 683 /*
684 * Sets the SigmaMassCut value.
685 */
686 void SetSigmaMass(Double_t sigmaMass){fNSigmaMass=sigmaMass;}
687
688 /*
689 * Sets the flag to enable/disable the usage of MC information.
690 */
691 void SetDoMCTruth(Bool_t doMC){fDoMC = doMC;}
61374d97 692
693 /*
694 * Sets the flag to enable/disable the usage of MC information.
695 */
037dc2db 696 Bool_t GetDoMCTruth() const {return fDoMC;}
a0b94e5c 697
9640a3d1 698 /*
699 * Sets the flag to enable/disable the cut dedx N sigma
700 */
701
702 void SetDodEdxSigmaCut( Bool_t dodEdxSigmaCut){fDodEdxSigmaCut=dodEdxSigmaCut;}
e0155998 703 void SetDoTOFsigmaCut( Bool_t doTOFsigmaCut){fDoTOFsigmaCut=doTOFsigmaCut;} //RRnewTOF
9640a3d1 704
9c1cb6f7 705 /*
706 * Sets the flag to enable/disable the cut dedx N sigma for Kaon Rejection at low p
707 */
708 void SetDoKaonRejectionLowP( Bool_t doKaonRejectionLowP){fDoKaonRejectionLowP=doKaonRejectionLowP;}
709 /*
710 * Sets the flag to enable/disable the cut dedx N sigma for Proton Rejection at low p
711 */
712 void SetDoProtonRejectionLowP( Bool_t doProtonRejectionLowP){fDoProtonRejectionLowP=doProtonRejectionLowP;}
713
714 /*
715 * Sets the flag to enable/disable the cut dedx N sigma for Pion Rejection at low p
716 */
717 void SetDoPionRejectionLowP( Bool_t doPionRejectionLowP){fDoPionRejectionLowP=doPionRejectionLowP;}
718
719 /*
720 * Sets the PIDMinPnSigmaAroundKaon cut value for the tracks.
721 */
722 void SetPIDnSigmaAtLowPAroundKaonLine(Double_t nSigmaAtLowPAroundKaon){fPIDnSigmaAtLowPAroundKaonLine =nSigmaAtLowPAroundKaon;}
723
724 /*
725 * Sets the PIDMinPnSigmaAroundProton cut value for the tracks.
726 */
727 void SetPIDnSigmaAtLowPAroundProtonLine(Double_t nSigmaAtLowPAroundProton){fPIDnSigmaAtLowPAroundProtonLine =nSigmaAtLowPAroundProton;}
728
729 /*
730 * Sets the PIDMinPnSigmaAroundPion cut value for the tracks.
731 */
732 void SetPIDnSigmaAtLowPAroundPionLine(Double_t nSigmaAtLowPAroundPion){fPIDnSigmaAtLowPAroundPionLine =nSigmaAtLowPAroundPion;}
733
734 /*
735 * Sets the PIDMinPnSigmaAbovePion cut value for the tracks.
736 */
737 void SetPIDMinPKaonRejectionLowP(Double_t PIDMinPKaonRejectionLowP ){fPIDMinPKaonRejectionLowP=PIDMinPKaonRejectionLowP;}
738
739 /*
740 * Sets the PIDMinPnSigmaAbovePion cut value for the tracks.
741 */
742 void SetPIDMinPProtonRejectionLowP(Double_t PIDMinPProtonRejectionLowP ){fPIDMinPProtonRejectionLowP=PIDMinPProtonRejectionLowP;}
743 /*
744 * Sets the PIDMinPnSigmaAbovePion cut value for the tracks.
745 */
746 void SetPIDMinPPionRejectionLowP(Double_t PIDMinPPionRejectionLowP ){fPIDMinPPionRejectionLowP=PIDMinPPionRejectionLowP;}
9640a3d1 747
70ef88b5 748 /*
749 *Set if we want to use Gamma Selection based on Qt from Armenteros
750 */
751 void SetDoQtGammaSelection(Bool_t doQtGammaSelection){fDoQtGammaSelection=doQtGammaSelection;}
14d7f2f9 752 void SetDoHighPtQtGammaSelection(Bool_t doHighPtQtGammaSelection){fDoHighPtQtGammaSelection=doHighPtQtGammaSelection;} // RRnew
70ef88b5 753 /*
754 * Sets the MaxQtCut value.
755 */
756 void SetQtMax(Double_t qtMax){fQtMax=qtMax;}
14d7f2f9 757 void SetHighPtQtMax(Double_t qtMaxHighPt){fHighPtQtMax=qtMaxHighPt;} // RRnew
758 void SetPtBorderForQt(Double_t ptBorderForQt){fPtBorderForQt=ptBorderForQt;} // RRnew
70ef88b5 759
a0b94e5c 760 /*
761 * Updates the V0 information of the current V0.
762 */
763 Bool_t UpdateV0Information();
764
765 /*
766 * Resets the V0 index.
767 */
768 void ResetV0IndexNumber(){fCurrentV0IndexNumber=0;}
5ce758b0 769
770
771 /*
772 * Returns number of good v0s in the event
773 */
774 Int_t GetNGoodV0s() const {return fNumberOfGoodV0s;}
775
a0b94e5c 776 /*
777 * Sets the histograms.
778 */
4a6157dc 779 void SetHistograms(AliGammaConversionHistograms * const histograms){fHistograms=histograms;}
a0b94e5c 780
781 /*
782 * Check for primary vertex.
783 */
784 Bool_t CheckForPrimaryVertex();
785
10e3319b 786 /*
787 * Check for primary vertex Z.
788 */
789 Bool_t CheckForPrimaryVertexZ();
790
a0b94e5c 791 /*
792 * Gets a vector of good v0s.
793 */
5e55d806 794 TClonesArray* GetCurrentEventGoodV0s() const{return fCurrentEventGoodV0s;}
a0b94e5c 795
796 /*
797 * Gets the vector of previous events v0s (for bacground analysis)
798 */
f14266e7 799 AliGammaConversionKFVector* GetBGGoodV0s(Int_t event) const;
5e55d806 800 // vector<AliKFParticle> GetPreviousEventGoodV0s() const{return fPreviousEventGoodV0s;}
a0b94e5c 801
802 void SetUseOwnXYZCalculation(Bool_t flag){fUseOwnXYZCalculation=flag;}
803
5ce758b0 804 void SetUseConstructGamma(Bool_t flag){fUseConstructGamma=flag;}
805
a0b94e5c 806 Bool_t GetHelixCenter(AliESDtrack* track, Double_t b,Int_t charge, Double_t center[2]);
807
808 Bool_t GetConvPosXY(AliESDtrack* ptrack,AliESDtrack* ntrack, Double_t b, Double_t convpos[2]);
809
810 Double_t GetConvPosZ(AliESDtrack* ptrack,AliESDtrack* ntrack, Double_t b);
1e7846f4 811
f14266e7 812 Bool_t GetArmenterosQtAlfa(const AliKFParticle * posKFparticle, const AliKFParticle * negKFparticle, const AliKFParticle * gamKFparticle,Double_t armenterosQtAlfa[2]);
48682642 813
1e7846f4 814 void SetDoCF(Bool_t flag){fDoCF = flag;}
815
77880bd8 816 Bool_t CheckV0FinderStatus(Int_t index);
817
818 void SetOnFlyFlag(Bool_t flag){fUseOnFlyV0Finder = flag;}
87f6de3e 819
820 Int_t GetNBGEvents(){return fBGEventHandler->GetNBGEvents();}
77880bd8 821
87f6de3e 822 void SetCalculateBackground(Bool_t flag){fCalculateBackground=flag;}
77880bd8 823
037dc2db 824 AliGammaConversionBGHandler* GetBGHandler() const {return fBGEventHandler;}
825
826 Double_t GetVertexZ(){return fESDEvent->GetPrimaryVertex()->GetZ();}
827
828 Int_t GetMultiplicity(){return CountESDTracks();}
829
830 void SetESDtrackCuts(AliESDtrackCuts * const trackCuts){fEsdTrackCuts = trackCuts;}
831
f14266e7 832 void SetNEventsForBG(Int_t nev){fNEventsForBGCalculation = nev;}
70ef88b5 833
037dc2db 834 Int_t CountESDTracks();
835
836 Int_t GetCurrentV0IndexNumber() const {return fCurrentV0IndexNumber;}
837
838 Bool_t CheckIfPi0IsMother(Int_t label);
10e3319b 839 Bool_t CheckIfEtaIsMother(Int_t label);
037dc2db 840
9c1cb6f7 841 static void InitESDpid(Int_t type=0);
842 static void SetESDpid(AliESDpid * const pid) {fgESDpid=pid;}
843 static AliESDpid* GetESDpid() {return fgESDpid;}
7f3c7cc6 844
5ce758b0 845 void SetUseChargedTracksMultiplicityForBG(Bool_t flag){fUseChargedTrackMultiplicityForBG = flag;}
64f4118c 846 void SetIsHeavyIon(Int_t isHeavyIon) {fIsHeavyIon=isHeavyIon;}
847 Int_t GetIsHeavyIon() const { return fIsHeavyIon;}
848
7f3c7cc6 849 Int_t GetPindex(Int_t i) {return fV0Pindex.at(i);}
850 Int_t GetNindex(Int_t i) {return fV0Nindex.at(i);}
5ce758b0 851
852 void ResetNGoodV0s(){fNumberOfGoodV0s=0;}
40051a3e 853 Int_t GetFirstTPCRow(Double_t radius);
9c1cb6f7 854
40051a3e 855 void SetUseCorrectedTPCClsInfo(Bool_t flag){fUseCorrectedTPCClsInfo = flag;}
856 Bool_t GetUseCorrectedTPCClsInfo() const {return fUseCorrectedTPCClsInfo;}
9c1cb6f7 857
a0b94e5c 858 private:
859 AliStack * fMCStack; // pointer to MonteCarlo particle stack
48682642 860 // AliMCEventHandler* fMCTruth; // for CF pointer to the MC object
a0b94e5c 861 AliMCEvent *fMCEvent; // for CF pointer to MC event
862 TChain * fChain; // pointer to the TChain
863
48682642 864 // AliESDInputHandler* fESDHandler; //! pointer to esd object
a0b94e5c 865 AliESDEvent *fESDEvent; //! pointer to esd object
866
867
868 // for CF
4a6157dc 869 AliCFManager *fCFManager; // pointer to the cf manager
870 // AliCFContainer *container;
a0b94e5c 871
9640a3d1 872 // for dEdx cut based on nSigma to a particle line
9c1cb6f7 873 //AliESDpid * fESDpid; // esd pid
a0b94e5c 874
a81d2986 875 AliGammaConversionHistograms *fHistograms; // pointer to histogram handling class
a0b94e5c 876
4a6157dc 877 Int_t fCurrentV0IndexNumber; // the current v0 index number
a0b94e5c 878 AliESDv0 * fCurrentV0; //! pointer to the current v0
879 AliKFParticle * fCurrentNegativeKFParticle; //! pointer to the negative KF particle
880 AliKFParticle * fCurrentPositiveKFParticle; //! pointer to the positive KF particle
881 AliKFParticle * fCurrentMotherKFCandidate; //! pointer to the positive KF particle
882
883 AliESDtrack * fCurrentNegativeESDTrack; //! pointer to the negative ESD track
884 AliESDtrack * fCurrentPositiveESDTrack; //! pointer to the positive ESD track
885
886 TLorentzVector * fNegativeTrackLorentzVector; //! pointer to the negative Track Lorentz Vector
887 TLorentzVector * fPositiveTrackLorentzVector; //! pointer to the positive Track Lorentz Vector
888 TLorentzVector * fMotherCandidateLorentzVector; //! pointer to the mother candidate Track Lorentz Vector
889
890 Double_t fCurrentXValue; // current x value
891 Double_t fCurrentYValue; // current y value
892 Double_t fCurrentZValue; // current z value
893
894 Int_t fPositiveTrackPID; // positive track pid
895 Int_t fNegativeTrackPID; // negative track pid
896
897 TParticle *fNegativeMCParticle; //!
898 TParticle *fPositiveMCParticle; //!
899 TParticle *fMotherMCParticle; //!
900
901 Double_t fMotherCandidateKFMass; // mass of mother candidate KF particle
902 Double_t fMotherCandidateKFWidth; // width of mother candidate KF particle
903
904 Bool_t fUseKFParticle; // flag
905 Bool_t fUseESDTrack; // flag
906 Bool_t fDoMC; // flag
10e3319b 907
908 //Event Cuts
f14266e7 909 Double_t fMaxVertexZ; // max z vertex cut
a0b94e5c 910 //cuts
911 Double_t fMaxR; //r cut
bd6d9fa3 912 Double_t fMinR; //r cut
a0b94e5c 913 Double_t fEtaCut; //eta cut
dc2883e4 914 Double_t fRapidityMesonCut; //rapidity for meson cut
a0b94e5c 915 Double_t fPtCut; // pt cut
48682642 916 Double_t fSinglePtCut; // pt cut for electron/positron
917 Double_t fMaxZ; //z cut
f14266e7 918 Double_t fMinClsTPC; // minimum clusters in the TPC
919 Double_t fMinClsTPCToF; // minimum clusters to findable clusters
a0b94e5c 920 Double_t fLineCutZRSlope; //linecut
921 Double_t fLineCutZValue; //linecut
922 Double_t fChi2CutConversion; //chi2cut
923 Double_t fChi2CutMeson; //chi2cut
9c1cb6f7 924 Double_t fAlphaCutMeson; //alphacut
67381a40 925 Double_t fAlphaMinCutMeson; //alphacut
a0b94e5c 926 Double_t fPIDProbabilityCutNegativeParticle; //pid cut
927 Double_t fPIDProbabilityCutPositiveParticle; //pid cut
9640a3d1 928 Bool_t fDodEdxSigmaCut; // flag to use the dEdxCut based on sigmas
e0155998 929 Bool_t fDoTOFsigmaCut; // flag to use TOF pid cut RRnewTOF
037dc2db 930 Double_t fPIDnSigmaAboveElectronLine; // sigma cut
931 Double_t fPIDnSigmaBelowElectronLine; // sigma cut
e0155998 932 Double_t fTofPIDnSigmaAboveElectronLine; // sigma cut RRnewTOF
933 Double_t fTofPIDnSigmaBelowElectronLine; // sigma cut RRnewTOF
037dc2db 934 Double_t fPIDnSigmaAbovePionLine; // sigma cut
935 Double_t fPIDMinPnSigmaAbovePionLine; // sigma cut
10e3319b 936 Double_t fPIDMaxPnSigmaAbovePionLine; // sigma cut
9c1cb6f7 937 Double_t fDoKaonRejectionLowP; // Kaon rejection at low p
938 Double_t fDoProtonRejectionLowP; // Proton rejection at low p
939 Double_t fDoPionRejectionLowP; // Pion rejection at low p
940 Double_t fPIDnSigmaAtLowPAroundKaonLine; // sigma cut
941 Double_t fPIDnSigmaAtLowPAroundProtonLine; // sigma cut
942 Double_t fPIDnSigmaAtLowPAroundPionLine; // sigma cut
943 Double_t fPIDMinPKaonRejectionLowP; // Momentum limit to apply kaon rejection
944 Double_t fPIDMinPProtonRejectionLowP; // Momentum limit to apply proton rejection
945 Double_t fPIDMinPPionRejectionLowP; // Momentum limit to apply proton rejection
70ef88b5 946 Bool_t fDoQtGammaSelection; // Select gammas using qtMax
14d7f2f9 947 Bool_t fDoHighPtQtGammaSelection; // RRnew Select gammas using qtMax for high pT
70ef88b5 948 Double_t fQtMax; // Maximum Qt from Armenteros to select Gammas
14d7f2f9 949 Double_t fHighPtQtMax; // RRnew Maximum Qt for High pT from Armenteros to select Gammas
950 Double_t fPtBorderForQt; // RRnew
a0b94e5c 951 Double_t fXVertexCut; //vertex cut
952 Double_t fYVertexCut; //vertex cut
953 Double_t fZVertexCut; // vertexcut
954
955 Double_t fNSigmaMass; //nsigma cut
956
957 Bool_t fUseImprovedVertex; //flag
958
959 Bool_t fUseOwnXYZCalculation; //flag that determines if we use our own calculation of xyz (markus)
1e7846f4 960
5ce758b0 961 Bool_t fUseConstructGamma; //flag that determines if we use ConstructGamma method from AliKF
962
cb90a330 963 Bool_t fDoCF; //flag
964
037dc2db 965 Bool_t fUseOnFlyV0Finder; //flag
77880bd8 966
cb90a330 967 Bool_t fUpdateV0AlreadyCalled; //flag
a0b94e5c 968
5e55d806 969 TClonesArray* fCurrentEventGoodV0s; //vector of good v0s
7f3c7cc6 970
f14266e7 971 vector<Int_t> fV0Pindex; // index of positive track belonging to a V0
972 vector<Int_t> fV0Nindex; // index of positive track belonging to a V0
5e55d806 973 // vector<AliKFParticle> fPreviousEventGoodV0s; // vector of good v0s from prevous events
974
037dc2db 975 Bool_t fCalculateBackground; //flag
976 AliGammaConversionBGHandler *fBGEventHandler; // background handler
977 Bool_t fBGEventInitialized; //flag
a0b94e5c 978
037dc2db 979 AliESDtrackCuts *fEsdTrackCuts; // track cuts
980 Int_t fNumberOfESDTracks; //track counter
981
9c1cb6f7 982 static AliESDpid* fgESDpid; // ESD pid object
983
f14266e7 984 Int_t fNEventsForBGCalculation; // Number of events used for background calculation
5ce758b0 985
f14266e7 986 Bool_t fUseChargedTrackMultiplicityForBG; // flag
987 Int_t fNumberOfGoodV0s; // number of good V0s
988 Int_t fIsHeavyIon; // flag
40051a3e 989 Bool_t fUseCorrectedTPCClsInfo;
70ef88b5 990
e0155998 991 ClassDef(AliV0Reader,20) // RRnew
a0b94e5c 992};
9c1cb6f7 993
994inline void AliV0Reader::InitESDpid(Int_t type)
995{
996 //
997 // initialize PID parameters
998 // type=0 is simulation
999 // type=1 is data
1000
1001 if (!fgESDpid) fgESDpid=new AliESDpid;
1002 Double_t alephParameters[5];
1003 // simulation
1004 alephParameters[0] = 2.15898e+00/50.;
1005 alephParameters[1] = 1.75295e+01;
1006 alephParameters[2] = 3.40030e-09;
1007 alephParameters[3] = 1.96178e+00;
1008 alephParameters[4] = 3.91720e+00;
1009 fgESDpid->GetTOFResponse().SetTimeResolution(80.);
1010
1011 // data
1012 if (type==1){
c0d9051e 1013 alephParameters[0] = 0.0283086/0.97;
9c1cb6f7 1014 alephParameters[1] = 2.63394e+01;
1015 alephParameters[2] = 5.04114e-11;
1016 alephParameters[3] = 2.12543e+00;
1017 alephParameters[4] = 4.88663e+00;
1018 fgESDpid->GetTOFResponse().SetTimeResolution(130.);
c0d9051e 1019 fgESDpid->GetTPCResponse().SetMip(50.);
9c1cb6f7 1020 }
1021
1022 fgESDpid->GetTPCResponse().SetBetheBlochParameters(
1023 alephParameters[0],alephParameters[1],alephParameters[2],
1024 alephParameters[3],alephParameters[4]);
1025
1026 fgESDpid->GetTPCResponse().SetSigma(3.79301e-03, 2.21280e+04);
1027
1028}
1029
a0b94e5c 1030#endif
1031
1032
1033
9c1cb6f7 1034
1035