]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG/CaloTrackCorrBase/AliMCAnalysisUtils.h
add methods to get the MC particle daughter kinematics and other info independently...
[u/mrichter/AliRoot.git] / PWG / CaloTrackCorrBase / AliMCAnalysisUtils.h
CommitLineData
7cd4e982 1#ifndef ALIMCANALYSISUTILS_H
2#define ALIMCANALYSISUTILS_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
7cd4e982 5
6//_________________________________________________________________________
7// Class for analysis utils for MC data
8// stored in stack or event header.
9// Contains:
10// - method to check the origin of a given track/cluster
11// - method to obtain the generated jets
12//
13//*-- Author: Gustavo Conesa (INFN-LNF)
14
15// --- ROOT system ---
c3ab95b2 16#include <TObject.h>
17#include <TString.h>
7cd4e982 18class TList ;
c4a7d28a 19class TVector3;
7cd4e982 20
21//--- AliRoot system ---
22class AliCaloTrackReader ;
23class AliStack ;
24
25class AliMCAnalysisUtils : public TObject {
26
78219bac 27 public:
28 AliMCAnalysisUtils() ; // ctor
29 virtual ~AliMCAnalysisUtils() ;//virtual dtor
c5693f62 30
840124fe 31 //--------------------------------------
32 //Enum with tag for origin of particles
33 //--------------------------------------
3c75ddf7 34
35 //"Mostly" photon parent types on line 1,
36 //
bbb79e66 37 //then "mostly" electron parent types on line 3, (e.g. electrons can
3c75ddf7 38 //come from pi0 decay)
bbb79e66 39 //then charged particles on line 4,
40 //followed by other and unknown on line 5
c5693f62 41 enum mcTypes { kMCPhoton, kMCPrompt, kMCFragmentation, kMCISR,
42 kMCPi0Decay, kMCEtaDecay, kMCOtherDecay, kMCConversion,
43 kMCElectron, kMCEFromCFromB, kMCEFromC, kMCEFromB, kMCZDecay, kMCWDecay,
44 kMCMuon, kMCPion, kMCPi0, kMCKaon, kMCEta, kMCProton,
45 kMCAntiProton, kMCNeutron, kMCAntiNeutron,
46 kMCOther, kMCUnknown, kMCBadLabel } ;
3c75ddf7 47
840124fe 48 //--------------------------------------
3c75ddf7 49 // Methods to check origin of clusters
840124fe 50 //--------------------------------------
3c75ddf7 51
c5693f62 52 Int_t CheckCommonAncestor(const Int_t index1, const Int_t index2, const AliCaloTrackReader* reader,
3c75ddf7 53 Int_t & ancPDG, Int_t & ancStatus, TLorentzVector & momentum, TVector3 & v) ;
bbb79e66 54
2644ead9 55 Int_t CheckOrigin(const Int_t label, const AliCaloTrackReader * reader) ;
bbb79e66 56
3c75ddf7 57 //Check the label of the most significant particle but do checks on the rest of the contributing labels
2644ead9 58 Int_t CheckOrigin (const Int_t *label, const Int_t nlabels, const AliCaloTrackReader * reader) ;
bfc290d0 59 Int_t CheckOriginInStack(const Int_t *labels, const Int_t nlabels, AliStack * stack) ; // ESD
bbb79e66 60 Int_t CheckOriginInAOD (const Int_t *labels, const Int_t nlabels, const TClonesArray* mcparticles) ; // AOD
3c75ddf7 61
bbb79e66 62 void CheckOverlapped2GammaDecay(const Int_t *labels, const Int_t nlabels, const Int_t mesonIndex, AliStack * stack, Int_t & tag); // ESD
63 void CheckOverlapped2GammaDecay(const Int_t *labels, const Int_t nlabels, const Int_t mesonIndex, const TClonesArray* mcparticles, Int_t & tag); // AOD
840124fe 64
914b9fe7 65 TLorentzVector GetMother (const Int_t label,const AliCaloTrackReader* reader, Bool_t & ok);
66 TLorentzVector GetMother (const Int_t label,const AliCaloTrackReader* reader, Int_t & pdg, Int_t & status, Bool_t & ok);
64be16b4 67 TLorentzVector GetMother (const Int_t label,const AliCaloTrackReader* reader, Int_t & pdg, Int_t & status, Bool_t & ok, Int_t & momLabel);
914b9fe7 68 TLorentzVector GetGrandMother(const Int_t label,const AliCaloTrackReader* reader,
69 Int_t & pdg, Int_t & status, Bool_t & ok, Int_t & grandMomLabel, Int_t & greatMomLabel);
70
51a0ace5 71 TLorentzVector GetMotherWithPDG(const Int_t label, const Int_t pdg,const AliCaloTrackReader* reader, Bool_t & ok);
9036b2a6 72
8e81c2cf 73 Float_t GetMCDecayAsymmetryForPDG(const Int_t label, const Int_t pdg,const AliCaloTrackReader* reader, Bool_t & ok);
74
64be16b4 75 Int_t GetNDaughters(const Int_t label,const AliCaloTrackReader* reader, Bool_t & ok);
76 TLorentzVector GetDaughter (const Int_t daughter, const Int_t label,const AliCaloTrackReader* reader, Int_t & pdg, Int_t & status, Bool_t & ok, Int_t & daugLabel);
77
840124fe 78 //Check or set the bits produced in the above methods
3c75ddf7 79 void SetTagBit(Int_t &tag, const UInt_t set) const {
80 // Set bit of type set (mcTypes) in tag
81 tag |= (1<<set) ;
82 }
83
84 Bool_t CheckTagBit(const Int_t tag, const UInt_t test) const {
85 // Check if in tag the bit test (mcTypes) is set.
86 if (tag & (1<<test) ) return kTRUE ;
87 else return kFALSE ;
f8006433 88 }
3c75ddf7 89
840124fe 90 //--------------------------------------
91 // Other methods
92 //--------------------------------------
2644ead9 93
840124fe 94 // Method to recover MC jets stored in generator
c5693f62 95 TList * GetJets(const AliCaloTrackReader * reader) ;
3c75ddf7 96
97 void SetDebug(Int_t deb) { fDebug=deb ; }
98 Int_t GetDebug() const { return fDebug ; }
99
100 void SetMCGenerator(TString mcgen) { fMCGenerator = mcgen ; }
101 TString GetMCGenerator() const { return fMCGenerator ; }
840124fe 102
103 void Print(const Option_t * opt) const;
bbb79e66 104 void PrintMCTag(const Int_t tag) const;
105
3c75ddf7 106 private:
107 Int_t fCurrentEvent; // Current Event
108 Int_t fDebug; // Debug level
109 TList * fJetsList; // List of jets
110 TString fMCGenerator; // MC geneator used to generate data in simulation
111
bbb79e66 112 AliMCAnalysisUtils & operator = (const AliMCAnalysisUtils & mcu) ; // cpy assignment
113 AliMCAnalysisUtils( const AliMCAnalysisUtils & mcu) ; // cpy ctor
c5693f62 114
bbb79e66 115 ClassDef(AliMCAnalysisUtils,4)
7cd4e982 116
3c75ddf7 117} ;
7cd4e982 118
119#endif //ALIMCANALYSISUTILS_H
120
121
122