]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWGDQ/dielectron/AliDielectronMC.h
including add task macro and link/builder changes for libPWGGAEMCALTask
[u/mrichter/AliRoot.git] / PWGDQ / dielectron / AliDielectronMC.h
CommitLineData
b2a297fa 1#ifndef ALIDIELECTRONMC_H
2#define ALIDIELECTRONMC_H
3/* Copyright(c) 1998-2009, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//#####################################################
7//# #
8//# Class AliDielectronMC #
9//# Cut Class for Jpsi->e+e- analysis #
10//# #
11//# by WooJin J. Park, GSI / W.J.Park@gsi.de #
12//# #
13//#####################################################
14
15#ifndef ROOT_TObject
16#include <TObject.h>
17#endif
18class AliESDEvent;
19class AliHFEpid;
20class AliStack;
21class AliMCEvent;
22class AliESDtrack;
fb7d2d99 23class AliAODTrack;
b2a297fa 24class TParticle;
25class AliMCParticle;
26class AliAODMCParticle;
27
ba15fdfb 28#include "AliDielectronSignalMC.h"
b2a297fa 29#include "AliDielectronPair.h"
30
31class AliDielectronMC : public TObject{
32
33public:
34 enum AnalysisType {kUNSET=0, kESD, kAOD};
35
36 AliDielectronMC(AnalysisType type=kUNSET);
37 virtual ~AliDielectronMC();
38
572b0139 39 void SetHasMC(Bool_t hasMC) { fHasMC=hasMC; }
40 Bool_t HasMC() const { return fHasMC; }
41
b2a297fa 42 static AliDielectronMC* Instance();
43
44 void Initialize(); // initialization
45 Int_t GetNMCTracks(); // return number of generated tracks
46 Int_t GetNMCTracksFromStack(); // return number of generated tracks from stack
c8f0f810 47 Int_t GetNPrimary() const; // return number of primary tracks
2a14a7b1 48 Int_t GetNPrimaryFromStack(); // return number of primary tracks from stack
8df8e382 49 Int_t GetMCPID(const AliESDtrack* _track); // return MC PID
fb7d2d99 50 Int_t GetMCPID(const AliAODTrack* _track); // return MC PID for AODtrack
8df8e382 51 Int_t GetMCPIDFromStack(const AliESDtrack* _track); // return MC PID
52 Int_t GetMotherPDG(const AliESDtrack* _track); // return mother PID from the MC stack
fb7d2d99 53 Int_t GetMotherPDG(const AliAODTrack* _track); // return mother PID from the MC stack
8df8e382 54 Int_t GetMotherPDGFromStack(const AliESDtrack* _track); // return mother PID from the MC stack
55 Int_t GetMCProcess(const AliESDtrack* _track); // return process number
56 Int_t GetMCProcessFromStack(const AliESDtrack* _track); // return process number
57 Int_t GetMCProcessMother(const AliESDtrack* _track); // return process number of the mother track
58 Int_t GetMCProcessMotherFromStack(const AliESDtrack* _track); // return process number of the mother track
b2a297fa 59
60 Bool_t ConnectMCEvent();
61 Bool_t UpdateStack();
62
a655b716 63 Bool_t IsMotherPdg(const AliDielectronPair* pair, Int_t pdgMother);
b2a297fa 64 Bool_t IsMotherPdg(const AliVParticle *particle1, const AliVParticle *particle2, Int_t pdgMother);
65 Bool_t IsMCMotherToEE(const AliVParticle *particle, Int_t pdgMother);
c8f0f810 66 Bool_t IsMCTruth(const AliDielectronPair* pair, const AliDielectronSignalMC* signalMC) const;
ba15fdfb 67 Bool_t IsMCTruth(Int_t ipart, AliDielectronSignalMC* signalMC, Int_t branch);
c8f0f810 68 Int_t GetMothersLabel(Int_t daughterLabel) const;
69 Int_t GetPdgFromLabel(Int_t label) const;
8df8e382 70
c8f0f810 71 Bool_t HaveSameMother(const AliDielectronPair *pair) const;
b2a297fa 72
a655b716 73 Int_t GetLabelMotherWithPdg(const AliDielectronPair* pair, Int_t pdgMother);
74 Int_t GetLabelMotherWithPdg(const AliVParticle *particle1, const AliVParticle *particle2, Int_t pdgMother);
75
b2a297fa 76 AliVParticle* GetMCTrackFromMCEvent(AliVParticle *track); // return MC track directly from MC event
c8f0f810 77 AliVParticle* GetMCTrackFromMCEvent(Int_t itrk) const; // return MC track directly from MC event
8df8e382 78 TParticle* GetMCTrackFromStack(const AliESDtrack* _track); // return MC track from stack
79 AliMCParticle* GetMCTrack(const AliESDtrack* _track); // return MC track associated with reco track
fb7d2d99 80 AliAODMCParticle* GetMCTrack( const AliAODTrack* _track); // return MC track associated with reco AOD track
8df8e382 81
82 TParticle* GetMCTrackMotherFromStack(const AliESDtrack* _track); // return MC mother track from stack
83 AliMCParticle* GetMCTrackMother(const AliESDtrack* _track); // return MC mother track from stack
fb7d2d99 84 AliAODMCParticle* GetMCTrackMother(const AliAODTrack* _track); // return MC mother fot track AODTrack
8df8e382 85 AliMCParticle* GetMCTrackMother(const AliMCParticle* _particle); // return MC mother track from stack
86 AliAODMCParticle* GetMCTrackMother(const AliAODMCParticle* _particle); // return MC mother track from stack
87
88 Int_t NumberOfDaughters(const AliESDtrack* track); // return number of daughters
fb7d2d99 89 Int_t NumberOfDaughters(const AliAODTrack* track); // return number of daughters for AOD track
8df8e382 90 Int_t NumberOfDaughters(const AliMCParticle* particle); // return number of daughters
91 Int_t NumberOfDaughters(const AliAODMCParticle* particle); // return number of daughters
6551594b 92
93 void GetDaughters(const TObject *mother, AliVParticle* &d1, AliVParticle* &d2);
fb7d2d99 94 Int_t IsJpsiPrimary(const AliDielectronPair * pair);
95 Int_t IsJpsiPrimary(const AliVParticle * pair);
ba15fdfb 96
97 AliMCEvent* GetMCEvent() { return fMCEvent; } // return the AliMCEvent
b2a297fa 98
99private:
100 AliMCEvent *fMCEvent; // MC event object
101 AliStack *fStack; // MC stack
102
103 AnalysisType fAnaType; // Analysis type
572b0139 104 Bool_t fHasMC; // Do we have an MC handler?
b2a297fa 105
106 static AliDielectronMC* fgInstance; //! singleton pointer
fb7d2d99 107 TClonesArray* fMcArray; //mcArray for AOD MC particles
108
109
b2a297fa 110 AliDielectronMC(const AliDielectronMC &c);
111 AliDielectronMC &operator=(const AliDielectronMC &c);
112
113 Bool_t IsMCMotherToEEesd(const AliMCParticle *particle, Int_t pdgMother);
114 Bool_t IsMCMotherToEEaod(const AliAODMCParticle *particle, Int_t pdgMother);
115
a655b716 116 Int_t GetLabelMotherWithPdgESD(const AliVParticle *particle1, const AliVParticle *particle2, Int_t pdgMother);
117 Int_t GetLabelMotherWithPdgAOD(const AliVParticle *particle1, const AliVParticle *particle2, Int_t pdgMother);
b2a297fa 118
ba15fdfb 119 Bool_t ComparePDG(Int_t particlePDG, Int_t requiredPDG, Bool_t checkBothCharges) const;
c8f0f810 120 Bool_t CheckParticleSource(Int_t label, AliDielectronSignalMC::ESource source) const;
b2a297fa 121 ClassDef(AliDielectronMC, 0)
122};
123
a655b716 124//
125// inline functions
126//
127inline Bool_t AliDielectronMC::IsMotherPdg(const AliDielectronPair* pair, Int_t pdgMother)
b2a297fa 128{
b2a297fa 129 return IsMotherPdg(pair->GetFirstDaughter(),pair->GetSecondDaughter(),pdgMother);
130}
a655b716 131//___________________________________________________________
132inline Bool_t AliDielectronMC::IsMotherPdg(const AliVParticle *particle1, const AliVParticle *particle2, Int_t pdgMother){
133 return GetLabelMotherWithPdg(particle1,particle2,pdgMother)>=0;
134}
135//___________________________________________________________
136inline Int_t AliDielectronMC::GetLabelMotherWithPdg(const AliDielectronPair* pair, Int_t pdgMother){
137 return GetLabelMotherWithPdg(pair->GetFirstDaughter(),pair->GetSecondDaughter(),pdgMother);
138}
b2a297fa 139
fb7d2d99 140#endif
141