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