]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0hitPhoton.h
remove leg eff protection
[u/mrichter/AliRoot.git] / T0 / AliT0hitPhoton.h
1 #ifndef ALIT0HITPHOTON_H
2 #define ALIT0HITPHOTON_H
3  
4
5 #include "AliHit.h"
6 //------------------------------------------------
7 // Cerenkov's photon  object
8 //------------------------------------------------
9
10 class AliT0hitPhoton: public AliHit {
11  public:
12  
13     Int_t       fArray;         // Array number
14     Int_t       fPmt;           // PMT number in the array
15     Float_t     fTime;          // Time convention in photoelectron
16     Float_t     fEtot;          // Energy photon
17     Float_t     fMomX;          // Local Momentum
18     Float_t     fMomY;          // Local Momentum
19     Float_t     fMomZ;          // Local Momentum
20     Float_t     fRadius;        // Distance from axis of radiatar
21  
22  public:
23     AliT0hitPhoton() {}
24     AliT0hitPhoton(Int_t fIshunt, Int_t track, Int_t *vol, Float_t *hit);
25     virtual ~AliT0hitPhoton() {}
26     
27     ClassDef(AliT0hitPhoton,1)  //Cerenkov's photons object for set:T0
28 };
29 #endif