Changeset 1864 for trunk/MagicSoft/Mars/manalysis/MRanForest.cc
- Timestamp:
- 03/24/03 14:26:49 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MRanForest.cc
r1859 r1864 38 38 // namely bootstrap aggregating (which is done in GrowForest()) and random // 39 39 // split selection (which is subject to MRanTree::GrowTree()) // 40 // // 40 41 ///////////////////////////////////////////////////////////////////////////// 41 42 #include "MRanForest.h" 42 #include <iostream.h> 43 #include <fstream.h> 44 45 #include <TFile.h> // gFile 43 44 #include <TMatrix.h> 45 46 #include "MHMatrix.h" 47 #include "MRanTree.h" 46 48 47 49 #include "MLog.h" 48 50 #include "MLogManip.h" 49 51 50 51 52 ClassImp(MRanForest); 53 52 54 // -------------------------------------------------------------------------- 53 55 // … … 66 68 fTreeHad.Set(fNumTrees); 67 69 fTreeHad.Reset(); 68 69 return;70 70 } 71 71 … … 83 83 84 84 fUsePriors=kTRUE; 85 86 return;87 85 } 88 86 … … 106 104 fForest=new TObjArray(); 107 105 fForest->SetOwner(kTRUE); 108 109 return;110 106 } 111 107 … … 115 111 // ndsize + numtry are set in MRanForestGrow!! 116 112 fRanTree=rantree; 117 118 return;119 113 } 120 114
Note:
See TracChangeset
for help on using the changeset viewer.