source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/generators/showers/include/EShowerFiller.hh @ 114

Last change on this file since 114 was 114, checked in by moretto, 11 years ago

actual version of ESAF at CCin2p3

File size: 604 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EShowerFiller.hh 1002 2004-09-13 16:44:02Z thea $
3// A.Thea, created Jun, 22 2004
4
5#ifndef __ESHOWERFILLER_HH_
6#define __ESHOWERFILLER_HH_
7
8#include "euso.hh"
9#include "EFiller.hh"
10
11class PhysicsData;
12class ShowerTrack;
13
14class EShowerFiller : public EFiller {
15public:
16    // ctor
17    EShowerFiller( const PhysicsData *track );
18
19    // dtor
20    virtual ~EShowerFiller();
21
22    // fill the root file
23    virtual void Fill( EFillable* );
24
25private:
26
27    const ShowerTrack *fTrack;
28
29    ClassDef(EShowerFiller,0);
30};
31
32#endif  /* __ESHOWERFILLER_HH_ */
33
Note: See TracBrowser for help on using the repository browser.