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 |
|
---|
12 | class TH1D;
|
---|
13 |
|
---|
14 | class MHCerPhotEvt : public MH
|
---|
15 | {
|
---|
16 | private:
|
---|
17 | MCerPhotEvt fSum;
|
---|
18 | MCerPhotEvt *fEvt; //!
|
---|
19 |
|
---|
20 | public:
|
---|
21 | MHCerPhotEvt(const char *name=NULL, const char *title=NULL);
|
---|
22 |
|
---|
23 | Bool_t SetupFill(const MParList *pList);
|
---|
24 | Bool_t Fill(const MParContainer *par);
|
---|
25 |
|
---|
26 | TH1 *GetHistByName(const TString name) { return NULL; }
|
---|
27 |
|
---|
28 | const MCerPhotEvt &GetSum() const { return fSum; }
|
---|
29 |
|
---|
30 | ClassDef(MHCerPhotEvt, 1) // Container which holds histograms for the source independent image parameters
|
---|
31 | };
|
---|
32 |
|
---|
33 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.