Changeset 6530 for trunk/MagicSoft/Mars/mranforest
- Timestamp:
- 02/16/05 16:17:24 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mranforest
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mranforest/MRFEnergyEst.cc
r6527 r6530 31 31 #include "MRFEnergyEst.h" 32 32 33 #include <TFile.h> 34 #include <TList.h> 35 36 #include <TH1F.h> 37 #include <TH2F.h> 38 #include <TStyle.h> 39 #include <TCanvas.h> 40 #include <TVector.h> 41 42 #include "MHMatrix.h" 43 33 44 #include "MLog.h" 34 45 #include "MLogManip.h" … … 42 53 #include "MRanForestGrow.h" 43 54 #include "MData.h" 44 #include "TFile.h" 45 #include "TList.h" 46 47 #include "TH1F.h" 48 #include "TH2F.h" 49 #include "TStyle.h" 50 #include "TCanvas.h" 51 #include "TVector.h" 55 #include "MEnergyEst.h" 52 56 53 57 ClassImp(MRFEnergyEst); -
trunk/MagicSoft/Mars/mranforest/MRFEnergyEst.h
r6479 r6530 4 4 #ifndef MARS_MTask 5 5 #include "MTask.h" 6 #endif7 8 #ifndef MARS_MDataArray9 #include "MDataArray.h"10 #endif11 12 #ifndef MARS_MEnergyEst13 #include "MEnergyEst.h"14 #endif15 16 #ifndef MARS_MHMatrix17 #include "MHMatrix.h"18 #endif19 20 #ifndef ROOT_TArrayF21 #include <TArrayF.h>22 6 #endif 23 7 … … 30 14 #endif 31 15 32 #ifndef ROOT_TRandom 33 #include <TRandom.h> 34 #endif 35 36 //class MRanTree; 37 //class MRanForest; 38 //class MParList; 39 //class MDataArray; 16 class MHMatrix; 17 class MDataArray; 18 class MEnergyEst; 40 19 41 20 class MRFEnergyEst : public MTask 42 21 { 43 22 private: 44 // MRanTree *fRanTree;45 // MRanForest *fRanForest;46 // MDataArray *fData;47 23 Int_t fNumTrees; 48 24 Int_t fNumTry; -
trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc
r5832 r6530 273 273 tname.ReplaceAll("\015", ""); 274 274 275 *fLog << dbginf << "Reading " << num << " trees " << tname << " from file " << fname << endl;275 *fLog << inf << dbginf << "Reading " << num << " trees " << tname << " from file " << fname << endl; 276 276 277 277 gLog.SetNullOutput(!debug);
Note:
See TracChangeset
for help on using the changeset viewer.