// ESAF : Euso Simulation and Analysis Framework // $Id: RecoCellHit.hh,v 1.5 2004/09/14 12:40:16 naumov Exp $ // Marco Pallavicini created Nov, 18 2003 // simple macrocell hit // #ifndef __RECOCELLHIT_HH_ #define __RECOCELLHIT_HH_ #include "euso.hh" class RecoCellHit { public: // ctor RecoCellHit(Int_t,Int_t,Int_t); // dtor virtual ~RecoCellHit(); // get pixel id inline Int_t GetPixelId() const { return fPixelId; } // number of photoelectrons detected inline Int_t GetCounts() const { return fCounts; } // get gtu inline Int_t GetGtu() const { return fGtu; } private: // absolute pixel id Int_t fPixelId; // number of detected photo-electrons Int_t fCounts; // gtu number Int_t fGtu; ClassDef(RecoCellHit,0) }; #endif /* __RECOCELLHIT_HH_ */