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

Last change on this file since 1889 was 1715, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 658 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;
13
14class MHCerPhotEvt : public MH
15{
16private:
17 MCerPhotEvt fSum;
18 MCerPhotEvt *fEvt; //!
19
20public:
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.