| Line | |
|---|
| 1 | #ifndef MARS_MHRanForest
|
|---|
| 2 | #define MARS_MHRanForest
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MH
|
|---|
| 5 | #include "MH.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ROOT_TArrayF
|
|---|
| 9 | #include <TArrayF.h>
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | class TH1D;
|
|---|
| 13 | class TGraph;
|
|---|
| 14 | class MParList;
|
|---|
| 15 | class MMcEvt;
|
|---|
| 16 | class MRanForest;
|
|---|
| 17 |
|
|---|
| 18 | class MHRanForest : public MH
|
|---|
| 19 | {
|
|---|
| 20 | private:
|
|---|
| 21 | const MMcEvt *fMcEvt; //!
|
|---|
| 22 | const MRanForest *fRanForest; //!
|
|---|
| 23 |
|
|---|
| 24 | TArrayF fSigma; //!
|
|---|
| 25 | Int_t fNumEvent; //!
|
|---|
| 26 | TGraph *fGraphSigma; //->
|
|---|
| 27 |
|
|---|
| 28 | public:
|
|---|
| 29 | MHRanForest(Int_t nbins=100, const char *name=NULL, const char *title=NULL);
|
|---|
| 30 | ~MHRanForest();
|
|---|
| 31 |
|
|---|
| 32 | TGraph *GetGraphSigma() const { return fGraphSigma; }
|
|---|
| 33 |
|
|---|
| 34 | Bool_t SetupFill(const MParList *plist);
|
|---|
| 35 | Int_t Fill(const MParContainer *par, const Stat_t w=1);
|
|---|
| 36 | Bool_t Finalize();
|
|---|
| 37 |
|
|---|
| 38 | void Draw(Option_t *opt="");
|
|---|
| 39 |
|
|---|
| 40 | ClassDef(MHRanForest, 1) // Histogram showing variance of estimated Hadronness
|
|---|
| 41 | };
|
|---|
| 42 |
|
|---|
| 43 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.