| Line |  | 
|---|
| 1 | #ifndef MARS_MHRanForestGini | 
|---|
| 2 | #define MARS_MHRanForestGini | 
|---|
| 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 MRanForest; | 
|---|
| 16 | class MRanTree; | 
|---|
| 17 |  | 
|---|
| 18 | class MHRanForestGini : public MH | 
|---|
| 19 | { | 
|---|
| 20 | private: | 
|---|
| 21 | MRanForest *fRanForest;  //! | 
|---|
| 22 |  | 
|---|
| 23 | TArrayF fGini;           //! | 
|---|
| 24 | TGraph *fGraphGini;      //-> | 
|---|
| 25 |  | 
|---|
| 26 | public: | 
|---|
| 27 | MHRanForestGini(Int_t nbins=100, const char *name=NULL, const char *title=NULL); | 
|---|
| 28 | ~MHRanForestGini(); | 
|---|
| 29 |  | 
|---|
| 30 | TGraph *GetGraphGini() const  { return fGraphGini; } | 
|---|
| 31 |  | 
|---|
| 32 | Bool_t SetupFill(const MParList *plist); | 
|---|
| 33 | Bool_t Fill(const MParContainer *par, const Stat_t w=1); | 
|---|
| 34 | Bool_t Finalize(); | 
|---|
| 35 |  | 
|---|
| 36 | void Draw(Option_t *opt=""); | 
|---|
| 37 |  | 
|---|
| 38 | ClassDef(MHRanForestGini, 1) | 
|---|
| 39 | }; | 
|---|
| 40 |  | 
|---|
| 41 | #endif | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.