| 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 |
|
|---|
| 16 | class MMcEvt;
|
|---|
| 17 | class MEnergyEst;
|
|---|
| 18 | class MParList;
|
|---|
| 19 |
|
|---|
| 20 | class MHMcEnergyMigration : public MH
|
|---|
| 21 | {
|
|---|
| 22 | private:
|
|---|
| 23 | MMcEvt *fMcEvt;
|
|---|
| 24 | MEnergyEst *fEnergy;
|
|---|
| 25 | TH3D fHist;
|
|---|
| 26 |
|
|---|
| 27 | public:
|
|---|
| 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.