source: JEM-EUSO/esaf_lal/tags/v1_r0/esaf/packages/simulation/detector/electronics/include/EEventCellStatisticsAdder.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: 770 bytes
Line 
1// ESAF : Euso Simulation and Analysis Framework
2// $Id: EEventCellStatisticsAdder.hh 1112 2004-09-28 12:10:53Z thea $
3// A.Thea created Oct, 28 2003
4
5#ifndef __EUSOEVENTCELLSTATISTICSADDER_HH_
6#define __EUSOEVENTCELLSTATISTICSADDER_HH_
7
8#include "euso.hh"
9#include "EFiller.hh"
10
11class MacroCellData;
12
13class EEventCellStatisticsAdder : public EFiller {
14public:
15    // ctor
16    EEventCellStatisticsAdder(Int_t, Int_t, Int_t, Int_t, MacroCellData*);
17
18    // dtor
19    virtual ~EEventCellStatisticsAdder();
20
21    // filler
22    virtual void Fill( EFillable *);
23
24private:
25    Int_t fCell;
26    Int_t fNumChips;
27    Int_t fNumPixels;
28    Int_t fNumCounts;
29    MacroCellData *fData;
30
31    ClassDef(EEventCellStatisticsAdder,0)
32};
33
34#endif  /* __EUSOEVENTCELLSTATISTICSADDER_HH_ */
35
Note: See TracBrowser for help on using the repository browser.