| Line |  | 
|---|
| 1 | #ifndef MARS_MHSigmabarTheta | 
|---|
| 2 | #define MARS_MHSigmabarTheta | 
|---|
| 3 |  | 
|---|
| 4 | #ifndef MARS_MH | 
|---|
| 5 | #include "MH.h" | 
|---|
| 6 | #endif | 
|---|
| 7 |  | 
|---|
| 8 | #ifndef ROOT_TH2 | 
|---|
| 9 | #include <TH2.h> | 
|---|
| 10 | #endif | 
|---|
| 11 |  | 
|---|
| 12 | class MMcEvt; | 
|---|
| 13 | class MSigmabar; | 
|---|
| 14 | class TH2D; | 
|---|
| 15 | class MParList; | 
|---|
| 16 |  | 
|---|
| 17 |  | 
|---|
| 18 | class MHSigmabarTheta : public MH | 
|---|
| 19 | { | 
|---|
| 20 | private: | 
|---|
| 21 | MMcEvt    *fMcEvt;        //! | 
|---|
| 22 | MSigmabar *fSigmabar;     //! | 
|---|
| 23 |  | 
|---|
| 24 | TH2D fHist; | 
|---|
| 25 |  | 
|---|
| 26 | public: | 
|---|
| 27 | MHSigmabarTheta(const char *name=NULL, const char *title=NULL); | 
|---|
| 28 |  | 
|---|
| 29 | Bool_t SetupFill(const MParList *pList); | 
|---|
| 30 | Bool_t Fill(const MParContainer *par, const Stat_t w=1); | 
|---|
| 31 |  | 
|---|
| 32 | const TH2D *GetHist()       { return &fHist; } | 
|---|
| 33 | const TH2D *GetHist() const { return &fHist; } | 
|---|
| 34 |  | 
|---|
| 35 | TH1 *GetHistByName(const TString name) { return &fHist; } | 
|---|
| 36 |  | 
|---|
| 37 | void Draw(Option_t *option=""); | 
|---|
| 38 |  | 
|---|
| 39 | ClassDef(MHSigmabarTheta, 1) //3D-histogram in alpha, Energy and theta | 
|---|
| 40 | }; | 
|---|
| 41 |  | 
|---|
| 42 | #endif | 
|---|
| 43 |  | 
|---|
| 44 |  | 
|---|
| 45 |  | 
|---|
| 46 |  | 
|---|
| 47 |  | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.