Changeset 1866 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 03/24/03 15:13:14 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MHRanForest.cc
r1859 r1866 214 214 } 215 215 } 216 void MHRanForest::Print(Option_t *) const217 {218 return;219 } -
trunk/MagicSoft/Mars/mhist/MHRanForest.h
r1859 r1866 6 6 #endif 7 7 8 #ifndef TArrayF9 #include "TArrayF.h"8 #ifndef ROOT_TArrayF 9 #include <TArrayF.h> 10 10 #endif 11 11 … … 19 19 { 20 20 private: 21 const MMcEvt *fMcEvt; 22 const MRanForest *fRanForest; 21 const MMcEvt *fMcEvt; //! 22 const MRanForest *fRanForest; //! 23 23 24 TArrayF fSigma; 25 Int_t fNumEvent; 26 TGraph *fGraphSigma; 24 TArrayF fSigma; //! 25 Int_t fNumEvent; //! 26 TGraph *fGraphSigma; //-> 27 27 28 28 public: … … 30 30 ~MHRanForest(); 31 31 32 TGraph *GetGr phSigma() const { return fGraphSigma; }32 TGraph *GetGraphSigma() const { return fGraphSigma; } 33 33 34 34 Bool_t SetupFill(const MParList *plist); 35 35 Bool_t Fill(const MParContainer *par); 36 36 Bool_t Finalize(); 37 38 void Print(Option_t *option="") const;39 37 40 38 void Draw(Option_t *opt=""); -
trunk/MagicSoft/Mars/mhist/MHRanForestGini.cc
r1859 r1866 202 202 } 203 203 } 204 void MHRanForestGini::Print(Option_t *) const205 {206 return;207 } -
trunk/MagicSoft/Mars/mhist/MHRanForestGini.h
r1859 r1866 6 6 #endif 7 7 8 #ifndef TArrayF9 #include "TArrayF.h"8 #ifndef ROOT_TArrayF 9 #include <TArrayF.h> 10 10 #endif 11 11 … … 19 19 { 20 20 private: 21 const MMcEvt *fMcEvt; 22 const MRanForest *fRanForest; 21 const MMcEvt *fMcEvt; //! 22 const MRanForest *fRanForest; //! 23 23 24 TArrayF fGini; 25 TGraph *fGraphGini; 24 TArrayF fGini; //! 25 TGraph *fGraphGini; //-> 26 26 27 27 public: … … 29 29 ~MHRanForestGini(); 30 30 31 TGraph *GetGr phGini() const { return fGraphGini; }31 TGraph *GetGraphGini() const { return fGraphGini; } 32 32 33 33 Bool_t SetupFill(const MParList *plist); 34 34 Bool_t Fill(const MParContainer *par); 35 35 Bool_t Finalize(); 36 37 void Print(Option_t *option="") const;38 36 39 37 void Draw(Option_t *opt="");
Note:
See TracChangeset
for help on using the changeset viewer.