]> git.uio.no Git - u/mrichter/AliRoot.git/blame - START/AliSTARThitPhoton.h
Step size region by region.
[u/mrichter/AliRoot.git] / START / AliSTARThitPhoton.h
CommitLineData
2fa82489 1#ifndef ALISTARTHITPHOTON_H
2#define ALISTARTHITPHOTON_H
3
4
5#include "AliHit.h"
6//------------------------------------------------
7// Cerenkov's photon object
8//------------------------------------------------
9
10class AliSTARThitPhoton: 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 AliSTARThitPhoton() {}
24 AliSTARThitPhoton(Int_t fIshunt, Int_t track, Int_t *vol, Float_t *hit);
25 virtual ~AliSTARThitPhoton() {}
26
27 ClassDef(AliSTARThitPhoton,1) //Cerenkov's photons object for set:START
28};
29#endif