source: JEM-EUSO/esaf_cc_at_lal/packages/simulation/generators/genbase/include/EEventTruthAdder.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: 577 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EEventTruthAdder.hh 1112 2004-09-28 12:10:53Z thea $
3// Alessandro Thea created Nov, 23 2003
4
5#ifndef __EUSOEVENTTRUTHADDER_HH_
6#define __EUSOEVENTTRUTHADDER_HH_
7
8#include "euso.hh"
9#include "EFiller.hh"
10
11class MCTruth;
12
13class EEventTruthAdder : public EFiller {
14public:
15    // ctor
16    EEventTruthAdder( MCTruth *);
17
18    // dtor
19    virtual ~EEventTruthAdder();
20
21        // filler
22    virtual void Fill( EFillable* );
23private:
24       
25        MCTruth *fTruth;
26
27    ClassDef(EEventTruthAdder,0)
28};
29
30#endif  /* __EUSOEVENTTRUTHADDER_HH_ */
31
Note: See TracBrowser for help on using the repository browser.