| Line | |
|---|
| 1 | #ifndef MARS_MRanForestFill
|
|---|
| 2 | #define MARS_MRanForestFill
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MTask
|
|---|
| 5 | #include "MTask.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | class MRanTree;
|
|---|
| 9 | class MRanForest;
|
|---|
| 10 | class MParList;
|
|---|
| 11 | class MDataArray;
|
|---|
| 12 |
|
|---|
| 13 | class MRanForestFill : public MTask
|
|---|
| 14 | {
|
|---|
| 15 | private:
|
|---|
| 16 | MRanTree *fRanTree;
|
|---|
| 17 | MRanForest *fRanForest;
|
|---|
| 18 | MDataArray *fData;
|
|---|
| 19 | Int_t fNumTrees;
|
|---|
| 20 | Int_t fNum;
|
|---|
| 21 |
|
|---|
| 22 | Int_t PreProcess(MParList *plist);
|
|---|
| 23 | Int_t Process();
|
|---|
| 24 | Int_t PostProcess();
|
|---|
| 25 |
|
|---|
| 26 | public:
|
|---|
| 27 | MRanForestFill(const char *name=NULL, const char *title=NULL);
|
|---|
| 28 | ~MRanForestFill();
|
|---|
| 29 |
|
|---|
| 30 | void SetNumTrees(UShort_t n=100) { fNumTrees = n; }
|
|---|
| 31 |
|
|---|
| 32 | ClassDef(MRanForestFill, 0) // Task
|
|---|
| 33 | };
|
|---|
| 34 |
|
|---|
| 35 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.