source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/packages/simulation/detector/electronics/include/EEventFrontEndDataAdder.hh @ 117

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

ESAF version compilable on mac OS

File size: 689 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EEventFrontEndDataAdder.hh 2238 2005-10-20 12:44:18Z pesce $
3// A.Thea created Oct, 26 2003
4
5#ifndef __EUSOEVENTFRONTENDDATAADDER_HH_
6#define __EUSOEVENTFRONTENDDATAADDER_HH_
7
8#include "euso.hh"
9#include "EFiller.hh"
10#include "EsafMsgSource.hh"
11
12class ChipGtuData;
13
14class EEventFrontEndDataAdder : public EFiller, public EsafMsgSource {
15public:
16    // ctor
17    EEventFrontEndDataAdder( ChipGtuData *);
18
19    //dtor
20    virtual ~EEventFrontEndDataAdder();
21
22    // filler
23    virtual void Fill( EFillable *);
24private:
25    ChipGtuData *fChip;
26
27    ClassDef(EEventFrontEndDataAdder,0)
28};
29
30#endif  /* __EUSOEVENTFRONTENDDATAADDER_HH_ */
31
Note: See TracBrowser for help on using the repository browser.