Changeset 7423 for trunk/MagicSoft/Mars
- Timestamp:
- 11/22/05 12:19:28 (19 years ago)
- Location:
- trunk/MagicSoft/Mars/mranforest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc
r7422 r7423 376 376 } 377 377 378 void MRanForest ::Print(Option_t *o) const378 void MRanForestCalc::Print(Option_t *o) const 379 379 { 380 380 *fLog << all; -
trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h
r7420 r7423 33 33 static const TString gsNameOutput; //! Default Output name 34 34 35 Bool_t fDebug; // Debugging of eventloop while training on/off 35 MDataArray *fData; //! Used to store the MDataChains to get the event values 36 MParameterD *fRFOut; //! Used to store result 37 MHMatrix *fTestMatrix; //! Test Matrix used in Process (together with MMatrixLoop) 36 38 37 TString fFileName; // File name to forest 38 TObjArray fEForests; // List of forests 39 TObjArray fEForests; //! List of forests read or to be written 39 40 40 TString fNameOutput; // Name of output container 41 Int_t fNumTrees; //! Training parameters 42 Int_t fNumTry; //! Training parameters 43 Int_t fNdSize; //! Training parameters 41 44 42 MDataArray *fData; //! Used to store the MDataChains to get the event values 43 MParameterD *fRFOut; //! Used to store result 45 Int_t fNumObsoleteVariables; //! Training parameters 44 46 45 Int_t fNumTrees; //! Training parameters 46 Int_t fNumTry; //! Training parameters 47 Int_t fNdSize; //! Training parameters 47 TString fFileName; // File name to forest 48 TString fNameOutput; // Name of output container 48 49 49 Int_t fNumObsoleteVariables;50 Bool_t fDebug; // Debugging of eventloop while training on/off 50 51 51 MHMatrix *fTestMatrix; //! Test Matrix used in Process (together with MMatrixLoop) 52 53 EstimationMode_t fEstimationMode; 52 EstimationMode_t fEstimationMode; // Mode of estimation in case of multi random forest regression 54 53 55 54 private: … … 70 69 MRanForestCalc(const char *name=NULL, const char *title=NULL); 71 70 ~MRanForestCalc(); 71 72 // TObject 73 void Print(Option_t *o="") const; 72 74 73 75 // Setter for estimation … … 106 108 void InitMapping(MHMatrix *m=0) { fTestMatrix=m; } 107 109 108 ClassDef(MRanForestCalc, 0) // Task to calculate RF output and for RF training110 ClassDef(MRanForestCalc, 1) // Task to calculate RF output and for RF training 109 111 }; 110 112
Note:
See TracChangeset
for help on using the changeset viewer.