source: trunk/MagicSoft/Mars/mhist/MHCerPhotEvt.h@ 1978

Last change on this file since 1978 was 1965, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 959 bytes
Line 
1#ifndef MARS_MHCerPhotEvt
2#define MARS_MHCerPhotEvt
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8#ifndef MARS_MCerPhotEvt
9#include "MCerPhotEvt.h"
10#endif
11
12class TH1D;
13class MGeamCam;
14class MCamDisplay;
15
16class MHCerPhotEvt : public MH
17{
18private:
19 MCerPhotEvt fSum;
20 Int_t fEntries;
21 MCerPhotEvt *fEvt; //!
22 MGeomCam *fCam;
23 MCamDisplay *fDispl; //!
24
25public:
26 MHCerPhotEvt(const char *name=NULL, const char *title=NULL);
27 ~MHCerPhotEvt();
28
29 // TObject *Clone(const char *newname="") const;
30
31 void Clear();
32
33 Bool_t SetupFill(const MParList *pList);
34 Bool_t Fill(const MParContainer *par);
35 Bool_t Finalize();
36
37 TH1 *GetHistByName(const TString name) { return NULL; }
38
39 const MCerPhotEvt &GetSum() const { return fSum; }
40
41 TObject *DrawClone(Option_t *opt) const;
42 void Draw(Option_t *);
43 void Paint(Option_t *option="");
44
45 ClassDef(MHCerPhotEvt, 1) // Histogram to sum camera events
46};
47
48#endif
Note: See TracBrowser for help on using the repository browser.