source: trunk/MagicSoft/Mars/mhist/MHMcEnergyMigration.h@ 1572

Last change on this file since 1572 was 1322, checked in by wittek, 22 years ago
*** empty log message ***
File size: 823 bytes
Line 
1#ifndef MARS_MHMcEnergyMigration
2#define MARS_MHMcEnergyMigration
3
4#ifndef MARS_MH
5#include "MH.h"
6#endif
7
8#ifndef ROOT_TH3
9#include "TH3.h"
10#endif
11
12#ifndef ROOT_TH2
13#include "TH2.h"
14#endif
15
16class MMcEvt;
17class MEnergyEst;
18class MParList;
19
20class MHMcEnergyMigration : public MH
21{
22private:
23 MMcEvt *fMcEvt;
24 MEnergyEst *fEnergy;
25 TH3D fHist;
26
27public:
28 MHMcEnergyMigration(const char *name=NULL, const char *title=NULL);
29
30 virtual Bool_t SetupFill(const MParList *pList);
31 virtual Bool_t Fill(const MParContainer *par);
32
33 const TH3D *GetHist() { return &fHist; }
34 const TH3D *GetHist() const { return &fHist; }
35
36 void Draw(Option_t *option="");
37 TObject *DrawClone(Option_t *option="") const;
38
39 ClassDef(MHMcEnergyMigration, 1) //3D-histogram E-true E-est Theta
40
41};
42
43#endif
44
45
46
Note: See TracBrowser for help on using the repository browser.