]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWGHF/hfe/AliHFEpid.h
Fix for par file creation on lion with clang (Dario Berzano)
[u/mrichter/AliRoot.git] / PWGHF / hfe / AliHFEpid.h
1 /**************************************************************************
2 * Copyright(c) 1998-1999, 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 // Steering class for electron identification
17 // Combines detector PID objects
18 // For more information please check the implementation file
19 //
20 #ifndef ALIHFEPID_H
21 #define ALIHFEPID_H
22
23 #ifndef ROOT_TNamed
24 #include <TNamed.h>
25 #endif
26
27 #ifndef ALIHFEPIDBASE_H
28 #include "AliHFEpidBase.h"
29 #endif
30
31 #include <climits>
32 //#include "AliPIDResponse.h"
33
34 class AliHFEcontainer;
35 class AliHFEvarManager;
36 class AliPIDResponse;
37 class AliHFEpidBase;
38 class AliVParticle;
39 class AliMCParticle;
40
41 class TList;
42
43 class AliHFEpid : public TNamed{
44  public:
45     enum{
46       kUndefined = UINT_MAX 
47     };
48     enum EDETtype_t {
49       kMCpid = 0,
50       kBAYESpid = 1,
51       kITSpid = 2,
52       kTPCpid = 3,
53       kTRDpid = 4,
54       kTOFpid = 5,
55       kEMCALpid = 6,
56       kNdetectorPID = 7
57     };
58     AliHFEpid();
59     AliHFEpid(const Char_t *name);
60     AliHFEpid(const AliHFEpid &c);
61     AliHFEpid &operator=(const AliHFEpid &c);
62     void Copy(TObject &o) const;
63     ~AliHFEpid();
64     
65     Bool_t InitializePID(Int_t run = 0);
66     Bool_t IsSelected(const AliHFEpidObject * const track, AliHFEcontainer *cont = NULL, const Char_t *contname = "trackContainer", AliHFEpidQAmanager *qa = NULL);
67
68     Bool_t HasMCData() const { return TestBit(kHasMCData); };
69
70     void AddDetector(TString detector, UInt_t position);
71     void SetPIDResponse(const AliPIDResponse * const pid);
72     void SetVarManager(AliHFEvarManager *vm) { fVarManager = vm; }
73     void SetHasMCData(Bool_t hasMCdata = kTRUE) { SetBit(kHasMCData, hasMCdata); };
74
75     const AliPIDResponse *GetPIDResponse() const;
76     UInt_t GetNumberOfPIDdetectors() const { return fNPIDdetectors; }
77     Bool_t HasDetector(EDETtype_t det) const { return IsDetectorOn(det); }
78     Bool_t IsInitialized() const { return TestBit(kIsInit); }
79     void SortDetectors();
80     AliHFEpidBase *GetDetPID(EDETtype_t det) const { return det < kNdetectorPID ? fDetectorPID[det] : NULL; }
81
82     void PrintStatus() const;
83     const Char_t *SortedDetectorName(Int_t det) {
84       if(!TestBit(kDetectorsSorted)) SortDetectors();
85       if(det < kNdetectorPID) return fgkDetectorName[fSortedOrder[det]]; 
86       else return fgkDetectorName[kNdetectorPID];
87     }    
88     //-----Configure PID detectors with predefined stettings------
89     void ConfigureTOF(Float_t TOFcut = 3.);
90     void ConfigureTPCasymmetric(Double_t pmin = 0.1, Double_t pmax = 20., Double_t sigmamin = -0.2, Double_t sigmamax = 5.);
91     void ConfigureTPCrejectionSimple();
92     void ConfigureTPCcentralityCut(Int_t centralityBin, const char *lowerCutParam = NULL, const Double_t * const params = NULL, Float_t upperTPCCut=3.0);
93     void ConfigureTPCdefaultCut(const char *lowerCutParam = NULL, const Double_t * const params = NULL, Float_t upperTPCCut=3.0);
94     void ConfigureBayesDetectorMask(Int_t detmask = 10);
95     void ConfigureBayesPIDThreshold(Float_t pidthres = 0.9);
96     //------------------------------------------------------------
97
98   protected:
99     Bool_t MakePidTpcTof(AliHFEpidObject *track);
100   private:
101     enum{
102       kHasMCData = BIT(14),
103       kIsInit = BIT(15),
104       kDetectorsSorted = BIT(16)
105     };
106     enum{
107       kCombinedTPCTRD=0
108     };
109     enum{
110       kTRDSignal = 0,
111       kITSSignal = 1
112     };
113
114     void AddCommonObject(TObject * const o);
115     void ClearCommonObjects();
116     //-----Switch on/off detectors in PID sequence------
117     void SwitchOnDetector(UInt_t det){ 
118       if(det < kNdetectorPID) SETBIT(fEnabledDetectors, det);
119     }
120     void SwitchOffDetector(UInt_t det){
121       if(det < kNdetectorPID) CLRBIT(fEnabledDetectors, det);
122     }
123     Bool_t IsDetectorOn(UInt_t det) const {
124       return det < kNdetectorPID ? TESTBIT(fEnabledDetectors, det): kFALSE;
125     }
126     //--------------------------------------------------
127     void ConfigureTPCcut(Int_t centralityBin, const char *lowerCutParam, const Double_t * const params, Float_t upperTPCCut);
128
129     static const Char_t *fgkDetectorName[kNdetectorPID + 1]; // PID Detector Names
130     AliHFEpidBase *fDetectorPID[kNdetectorPID];     //   Detector PID classes
131     UInt_t fDetectorOrder[kNdetectorPID];           //   Position requested by the user
132     UInt_t fSortedOrder[kNdetectorPID];             //   Sorted array of detectorIDs
133     UInt_t fEnabledDetectors;                       //   Enabled Detectors
134     UInt_t fNPIDdetectors;                          //   Number of PID detectors
135     AliHFEvarManager *fVarManager;                  //!  HFE Var Manager
136     TObjArray *fCommonObjects;                      //   Garbage Collector
137
138   ClassDef(AliHFEpid, 1)      // Steering class for Electron ID
139 };
140
141 #endif