// ESAF : Euso Simulation and Analysis Framework // $Id: EDetectorPhotonAdder.hh,v 1.2 2004/09/13 16:43:35 thea Exp $ // Author: A.Thea created Oct, 24 2003 #ifndef __EDETECTORPHOTONADDER_HH_ #define __EDETECTORPHOTONADDER_HH_ #include "euso.hh" #include "EFiller.hh" class Photon; class PmtSignal; class EDetectorPhotonAdder : public EFiller { public: // ctor EDetectorPhotonAdder(Photon*, PmtSignal*, Bool_t newph = false); // dtor virtual ~EDetectorPhotonAdder(); virtual void Fill( EFillable *); private: Photon *fPhoton; PmtSignal *fSignal; Bool_t fNewPh; ClassDef(EDetectorPhotonAdder,0) }; #endif /* __EDETECTORPHOTONADDER_HH_ */