]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PWG3/hfe/AliHFEpid.h
Major update of the HFE package (comments inside the code
[u/mrichter/AliRoot.git] / PWG3 / 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
33 class AliAODpidUtil;
34 class AliESDpid;
35 class AliHFEcontainer;
36 class AliHFEpidBase;
37 class AliHFEpidQAmanager;
38 class AliHFEvarManager;
39 class AliVParticle;
40 class AliMCParticle;
41
42 class TList;
43
44 class AliHFEpid : public TNamed{
45  public:
46     enum{
47       kUndefined = UINT_MAX 
48     };
49     enum EDETtype_t {
50       kMCpid = 0,
51       kESDpid = 1,
52       kITSpid = 2,
53       kTPCpid = 3,
54       kTRDpid = 4,
55       kTOFpid = 5,
56       kNdetectorPID = 6
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();
66     Bool_t IsSelected(AliHFEpidObject *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 SetESDpid(AliESDpid *pid);
72     void SetAODpid(AliAODpidUtil *pid);
73     void SetVarManager(AliHFEvarManager *vm) { fVarManager = vm; }
74     void SetHasMCData(Bool_t hasMCdata = kTRUE) { SetBit(kHasMCData, hasMCdata); };
75
76     UInt_t GetNumberOfPIDdetectors() const { return fNPIDdetectors; }
77     Bool_t HasDetector(EDETtype_t det) const { return IsDetectorOn(det); }
78     AliHFEpidBase *GetDetPID(EDETtype_t det) const { return det < kNdetectorPID ? fDetectorPID[det] : NULL; }
79
80     void PrintStatus() const;
81     const Char_t *SortedDetectorName(Int_t det) const {
82       if(det < kNdetectorPID) return fgkDetectorName[fSortedOrder[det]]; 
83       else return fgkDetectorName[kNdetectorPID + 1];
84     }    
85     //-----Configure PID detectors with predefined stettings------
86     void ConfigureTPCasymmetric(Double_t pmin = 0.1, Double_t pmax = 20., Double_t sigmamin = -0.2, Double_t sigmamax = 5.);
87     void ConfigureTPCrejectionSimple();
88     void ConfigureTPCrejection();
89     void ConfigureTPCstrategyParis();
90     //------------------------------------------------------------
91
92   protected:
93     Bool_t MakePidTpcTof(AliHFEpidObject *track);
94
95   private:
96     enum{
97       kHasMCData = BIT(14)
98     };
99     enum{
100       kCombinedTPCTRD=0
101     };
102     enum{
103       kTRDSignal = 0,
104       kITSSignal = 1
105     };
106
107     void AddCommonObject(TObject * const o);
108     void ClearCommonObjects();
109     //-----Switch on/off detectors in PID sequence------
110     void SwitchOnDetector(UInt_t det){ 
111       if(det < kNdetectorPID) SETBIT(fEnabledDetectors, det);
112     }
113     void SwitchOffDetector(UInt_t det){
114       if(det < kNdetectorPID) CLRBIT(fEnabledDetectors, det);
115     }
116     Bool_t IsDetectorOn(UInt_t det) const {
117       return det < kNdetectorPID ? TESTBIT(fEnabledDetectors, det): kFALSE;
118     }
119     //--------------------------------------------------
120
121     static const Char_t *fgkDetectorName[kNdetectorPID + 1]; // PID Detector Names
122     AliHFEpidBase *fDetectorPID[kNdetectorPID];     //   Detector PID classes
123     UInt_t fDetectorOrder[kNdetectorPID];           //   Position requested by the user
124     UInt_t fSortedOrder[kNdetectorPID];             //   Sorted array of detectorIDs
125     UInt_t fEnabledDetectors;                       //   Enabled Detectors
126     UInt_t fNPIDdetectors;                          //   Number of PID detectors
127     AliHFEvarManager *fVarManager;                  //!  HFE Var Manager
128     TObjArray *fCommonObjects;                      //   Garbage Collector
129
130   ClassDef(AliHFEpid, 1)      // Steering class for Electron ID
131 };
132
133 #endif