]>
Commit | Line | Data |
---|---|---|
1 | #ifndef ALIEMCALPID_H | |
2 | #define ALIEMCALPID_H | |
3 | ||
4 | /* $Id$ */ | |
5 | ||
6 | /////////////////////////////////////////////////////////////////////////////// | |
7 | // Class AliEMCALPID | |
8 | // Compute PID weights for all the clusters | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | //Root includes | |
12 | class TArrayD ; | |
13 | ||
14 | //AliRoot includes | |
15 | class AliESDEvent ; | |
16 | #include "AliEMCALPIDUtils.h" | |
17 | ||
18 | class AliEMCALPID : public AliEMCALPIDUtils { | |
19 | ||
20 | public: | |
21 | ||
22 | AliEMCALPID(); | |
23 | AliEMCALPID(Bool_t reconstructor); | |
24 | //virtual ~AliEMCALPID() { } | |
25 | ||
26 | void RunPID(AliESDEvent *esd); | |
27 | void InitParameters(); | |
28 | void SetReconstructor(Bool_t yesno) {fReconstructor = yesno;} | |
29 | ||
30 | private: | |
31 | ||
32 | Bool_t fReconstructor; // Fill esdcalocluster when called from EMCALReconstructor | |
33 | ||
34 | ClassDef(AliEMCALPID, 5) | |
35 | ||
36 | }; | |
37 | ||
38 | ||
39 | #endif // ALIEMCALPID_H | |
40 | ||
41 |