// ESAF : Euso Simulation and Analysis Framework // $Id: EShowerFiller.hh,v 1.2 2004/09/13 16:43:52 thea Exp $ // A.Thea, created Jun, 22 2004 #ifndef __ESHOWERFILLER_HH_ #define __ESHOWERFILLER_HH_ #include "euso.hh" #include "EFiller.hh" class PhysicsData; class ShowerTrack; class EShowerFiller : public EFiller { public: // ctor EShowerFiller( const PhysicsData *track ); // dtor virtual ~EShowerFiller(); // fill the root file virtual void Fill( EFillable* ); private: const ShowerTrack *fTrack; ClassDef(EShowerFiller,0); }; #endif /* __ESHOWERFILLER_HH_ */