]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG4/PartCorrBase/AliCaloPID.h
Correct the way the standard AOD are cleaned, when used as temporary containers.
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliCaloPID.h
1 #ifndef ALICALOPID_H
2 #define ALICALOPID_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5 /* $Id:  $ */
6
7 //_________________________________________________________________________
8 // Class for PID selection with calorimeters
9 // The Output of the 2 main methods GetPdg is a PDG number identifying the cluster, 
10 // being kPhoton, kElectron, kPi0 ... as defined in the header file
11 //   - GetPdg(const TString calo, const Double_t * pid, const Float_t energy)
12 //      Reads the PID weights array of the ESDs and depending on its magnitude identifies the particle
13 //   - GetPdg(const TString calo,const TLorentzVector mom, const AliAODCaloCluster * cluster)
14 //      Recalcultes PID, the bayesian or any new one to be implemented in the future
15 //      Right now only the possibility to recalculate EMCAL with bayesian and simple PID.
16 //      In order to recalculate Bayesian, it is necessary to load the EMCALUtils library
17 //      and do SwitchOnBayesianRecalculation().
18 //      To change the PID parameters from Low to High like the ones by default, use the constructor 
19 //      AliCaloPID(flux)
20 //      where flux is AliCaloPID::kLow or AliCaloPID::kHigh
21 //      If it is necessary to change the parameters use the constructor 
22 //      AliCaloPID(AliEMCALPIDUtils *utils) and set the parameters before.
23 //   - SetPIDBits: Simple PID, depending on the thresholds fDispCut fTOFCut and even the
24 //     result of the PID bayesian a different PID bit is set. 
25 //
26 //  All these methods can be called in the analysis you are interested.
27 //
28 //*-- Author: Gustavo Conesa (INFN-LNF)
29
30 // --- ROOT system ---
31 #include <TObject.h> 
32 class TString ;
33 class TLorentzVector ;
34 class TFormula ;
35 class TTask;
36
37 //--- AliRoot system ---
38 class AliAODCaloCluster;
39 class AliAODPWG4Particle;
40 class AliEMCALPIDUtils;
41
42 class AliCaloPID : public TObject {
43         
44  public: 
45   
46   AliCaloPID() ; // ctor
47   AliCaloPID(const Int_t particleFlux) ; // ctor, to be used when recalculating bayesian PID
48   AliCaloPID(const TTask * emcalpid) ; // ctor, to be used when recalculating bayesian PID and need different parameters
49   AliCaloPID(const AliCaloPID & g) ; // cpy ctor
50   AliCaloPID & operator = (const AliCaloPID & g) ;//cpy assignment
51   virtual ~AliCaloPID() ;//virtual dtor
52   
53   enum PidType {
54     kPhoton = 22,
55     kPi0 = 111,
56     kEta = 221, 
57     kElectron = 11, 
58     kEleCon = -11, 
59     kNeutralHadron = 2112, 
60     kChargedHadron = 211, 
61     kNeutralUnknown = 130, 
62     kChargedUnknown=321
63   };
64   
65   enum TagType {kPi0Decay, kEtaDecay, kOtherDecay, kConversion, kNoTag = -1};
66   
67   void InitParameters();
68   
69   Int_t GetPdg(const TString calo, const Double_t * pid, const Float_t energy) const ;
70   
71   Int_t GetPdg(const TString calo,const TLorentzVector mom, const AliAODCaloCluster * cluster) const ;
72   
73   TString       GetPIDParametersList();
74   
75   void SetPIDBits(const TString calo,  const AliAODCaloCluster * cluster, AliAODPWG4Particle *aodph);
76   
77   void Print(const Option_t * opt)const;
78   
79   //Weight getters
80   Float_t  GetEMCALPhotonWeight() const  { return  fEMCALPhotonWeight  ; }
81   Float_t  GetEMCALPi0Weight() const     {  return fEMCALPi0Weight  ; }
82   Float_t  GetEMCALElectronWeight() const  { return  fEMCALElectronWeight  ; }
83   Float_t  GetEMCALChargeWeight() const     {  return fEMCALChargeWeight  ; }
84   Float_t  GetEMCALNeutralWeight() const     {  return fEMCALNeutralWeight  ; }
85   Float_t  GetPHOSPhotonWeight() const   {  return fPHOSPhotonWeight  ; }
86   Float_t  GetPHOSPi0Weight() const   {  return fPHOSPi0Weight  ; }
87   Float_t  GetPHOSElectronWeight() const   {  return fPHOSElectronWeight  ; }
88   Float_t  GetPHOSChargeWeight() const   {  return fPHOSChargeWeight  ; }
89   Float_t  GetPHOSNeutralWeight() const   {  return fPHOSNeutralWeight  ; }
90   
91   Bool_t  IsPHOSPIDWeightFormulaOn() const   {  return fPHOSWeightFormula  ; } 
92   TFormula * GetPHOSPhotonWeightFormula() const     {  return fPHOSPhotonWeightFormula  ; } 
93   TFormula * GetPHOSPi0WeightFormula() const    {  return fPHOSPi0WeightFormula  ; }
94   
95   //Weight setters
96   void SetEMCALPhotonWeight(Float_t  w){  fEMCALPhotonWeight = w ; }
97   void SetEMCALPi0Weight(Float_t  w){  fEMCALPi0Weight = w ; }
98   void SetEMCALElectronWeight(Float_t  w){  fEMCALElectronWeight = w ; }
99   void SetEMCALChargeWeight(Float_t  w){  fEMCALChargeWeight = w ; }
100   void SetEMCALNeutralWeight(Float_t  w){  fEMCALNeutralWeight = w ; }
101   void SetPHOSPhotonWeight(Float_t  w){  fPHOSPhotonWeight = w ; }
102   void SetPHOSPi0Weight(Float_t  w){  fPHOSPi0Weight = w ; }
103   void SetPHOSElectronWeight(Float_t  w){  fPHOSElectronWeight = w ; }
104   void SetPHOSChargeWeight(Float_t  w){  fPHOSChargeWeight = w ; }
105   void SetPHOSNeutralWeight(Float_t  w){  fPHOSNeutralWeight = w ; }
106   
107   void UsePHOSPIDWeightFormula(Bool_t par)  { fPHOSWeightFormula  = par; } 
108   void SetPHOSPhotonWeightFormula(TFormula * const photon)    {  fPHOSPhotonWeightFormula  = photon; } 
109   void SetPHOSPi0WeightFormula(TFormula * const pi0)   {  fPHOSPi0WeightFormula  = pi0; }
110   
111   //PID bits setters and getters
112   void SetDispersionCut(Float_t dcut ) {fDispCut = dcut; }
113   Float_t GetDispersionCut() const {return fDispCut ;}   
114   
115   void SetTOFCut(Float_t tcut ) {fTOFCut = tcut; }
116   Float_t GetTOFCut() const {return fTOFCut ;}   
117   
118   void SetDebug(Int_t deb) {fDebug=deb;}
119   Int_t GetDebug() const {return fDebug;}       
120   
121   void SwitchOnBayesianRecalculation()  {fRecalculateBayesian = kTRUE ; }
122   void SwitchOffBayesianRecalculation() {fRecalculateBayesian = kFALSE; }
123   enum eventType{kLow,kHigh};
124   void SetLowParticleFlux()  {fParticleFlux = kLow;}
125   void SetHighParticleFlux() {fParticleFlux = kHigh;}
126
127  private:
128   
129   Float_t      fEMCALPhotonWeight; //Bayesian PID weight for photons in EMCAL 
130   Float_t      fEMCALPi0Weight;  //Bayesian PID weight for pi0 in EMCAL 
131   Float_t      fEMCALElectronWeight; //Bayesian PID weight for electrons in EMCAL 
132   Float_t      fEMCALChargeWeight;  //Bayesian PID weight for charged hadrons in EMCAL 
133   Float_t      fEMCALNeutralWeight;  //Bayesian PID weight for neutral hadrons in EMCAL 
134   Float_t      fPHOSPhotonWeight; //Bayesian PID weight for photons in PHOS 
135   Float_t      fPHOSPi0Weight; //Bayesian PID weight for pi0 in PHOS 
136   Float_t      fPHOSElectronWeight; //Bayesian PID weight for electrons in PHOS 
137   Float_t      fPHOSChargeWeight; //Bayesian PID weight for charged hadrons in PHOS 
138   Float_t      fPHOSNeutralWeight; //Bayesian PID weight for neutral hadrons in PHOS 
139   
140   Bool_t  fPHOSWeightFormula ; //Use parametrized weight threshold, function of energy
141   TFormula * fPHOSPhotonWeightFormula ; //Formula for photon weight
142   TFormula * fPHOSPi0WeightFormula ; //Formula for pi0 weight
143   
144   Float_t fDispCut;    //Cut on dispersion, used in PID evaluation
145   Float_t fTOFCut;     //Cut on TOF, used in PID evaluation
146   
147   Int_t  fDebug; //Debug level
148         
149   Bool_t fRecalculateBayesian; // Recalculate PID bayesian or use simple PID?
150   Int_t  fParticleFlux;        // Particle flux for setting PID parameters
151   AliEMCALPIDUtils * fEMCALPIDUtils; //Pointer to EMCALPID to redo the PID Bayesian calculation
152         
153         
154   ClassDef(AliCaloPID,4)
155 } ;
156
157
158 #endif //ALICALOPID_H
159
160
161