source: trunk/MagicSoft/Mars/mranforest/MRanForestFill.h@ 2827

Last change on this file since 2827 was 2207, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 625 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
22 Int_t PreProcess(MParList *plist);
23 Int_t Process();
24 Int_t PostProcess();
25
26public:
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.