source: trunk/MagicSoft/Mars/manalysis/MRanForestFill.h@ 1870

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