Changeset 7142 for trunk/MagicSoft/Mars/mranforest/MRFEnergyEst.h
- Timestamp:
- 06/10/05 13:10:09 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mranforest/MRFEnergyEst.h
r7134 r7142 23 23 Int_t fNdSize; // Training parameters 24 24 25 Bool_t fDebug; // Debugging of eventloop while training on/off 26 25 27 TString fFileName; 26 28 TObjArray fEForests; … … 34 36 Int_t Process(); 35 37 36 Int_t ReadForests(MParList *plist=NULL); 38 Int_t ReadForests(MParList &plist); 39 40 Int_t ReadEnv(const TEnv &env, TString prefix, Bool_t print); 37 41 38 42 public: … … 41 45 void SetFileName(TString str) { fFileName = str; } 42 46 43 void SetNumTrees(Int_t n=-1) { fNumTrees = n; }44 void SetNdSize(Int_t n=-1) { fNdSize = n; }45 void SetNumTry(Int_t n=-1) { fNumTry = n; }47 void SetNumTrees(Int_t n=-1) { fNumTrees = n; } 48 void SetNdSize(Int_t n=-1) { fNdSize = n; } 49 void SetNumTry(Int_t n=-1) { fNumTry = n; } 46 50 47 51 void SetTestMatrix(MHMatrix *m=0) { fTestMatrix=m; } 48 52 void InitMapping(MHMatrix *m=0) { fTestMatrix=m; } 53 54 void SetDebug(Bool_t b=kTRUE) { fDebug = b; } 49 55 50 56 Int_t Train(const MHMatrix &n, const TArrayD &grid);
Note:
See TracChangeset
for help on using the changeset viewer.