source: trunk/MagicSoft/Mars/mhist/MHRanForestGini.h@ 1870

Last change on this file since 1870 was 1870, checked in by hengsteb, 22 years ago
*** empty log message ***
File size: 757 bytes
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
12class TH1D;
13class TGraph;
14class MParList;
15class MRanForest;
16class MRanTree;
17
18class MHRanForestGini : public MH
19{
20private:
21 MRanForest *fRanForest;
22
23 TArrayF fGini;
24 TGraph *fGraphGini;
25
26public:
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);
34 Bool_t Finalize();
35
36 void Draw(Option_t *opt="");
37 TObject *DrawClone(Option_t *opt="") const;
38
39 ClassDef(MHRanForestGini, 1)
40};
41
42#endif
Note: See TracBrowser for help on using the repository browser.