]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EMCAL/AliEMCALPID.h
New PID Classes
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALPID.h
... / ...
CommitLineData
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
12class TArrayD ;
13
14//AliRoot includes
15class AliESDEvent ;
16#include "AliEMCALPIDUtils.h"
17
18class AliEMCALPID : public AliEMCALPIDUtils {
19
20public:
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