Index: /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc
===================================================================
--- /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc	(revision 7422)
+++ /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc	(revision 7423)
@@ -376,5 +376,5 @@
 }
 
-void MRanForest::Print(Option_t *o) const
+void MRanForestCalc::Print(Option_t *o) const
 {
     *fLog << all;
Index: /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h
===================================================================
--- /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h	(revision 7422)
+++ /trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h	(revision 7423)
@@ -33,23 +33,22 @@
     static const TString gsNameOutput;  //! Default Output name
 
-    Bool_t       fDebug;      // Debugging of eventloop while training on/off
+    MDataArray  *fData;                 //! Used to store the MDataChains to get the event values
+    MParameterD *fRFOut;                //! Used to store result
+    MHMatrix    *fTestMatrix;           //! Test Matrix used in Process (together with MMatrixLoop)
 
-    TString      fFileName;   // File name to forest
-    TObjArray    fEForests;   // List of forests
+    TObjArray    fEForests;             //! List of forests read or to be written
 
-    TString      fNameOutput; // Name of output container
+    Int_t        fNumTrees;             //! Training parameters
+    Int_t        fNumTry;               //! Training parameters
+    Int_t        fNdSize;               //! Training parameters
 
-    MDataArray  *fData;       //! Used to store the MDataChains to get the event values
-    MParameterD *fRFOut;      //! Used to store result
+    Int_t        fNumObsoleteVariables; //! Training parameters
 
-    Int_t        fNumTrees;   //! Training parameters
-    Int_t        fNumTry;     //! Training parameters
-    Int_t        fNdSize;     //! Training parameters
+    TString      fFileName;             // File name to forest
+    TString      fNameOutput;           // Name of output container
 
-    Int_t        fNumObsoleteVariables;
+    Bool_t       fDebug;                // Debugging of eventloop while training on/off
 
-    MHMatrix    *fTestMatrix; //! Test Matrix used in Process (together with MMatrixLoop)
-
-    EstimationMode_t fEstimationMode;
+    EstimationMode_t fEstimationMode;   // Mode of estimation in case of multi random forest regression
 
 private:
@@ -70,4 +69,7 @@
     MRanForestCalc(const char *name=NULL, const char *title=NULL);
     ~MRanForestCalc();
+
+    // TObject
+    void Print(Option_t *o="") const;
 
     // Setter for estimation
@@ -106,5 +108,5 @@
     void  InitMapping(MHMatrix *m=0)   { fTestMatrix=m; }
 
-    ClassDef(MRanForestCalc, 0) // Task to calculate RF output and for RF training
+    ClassDef(MRanForestCalc, 1) // Task to calculate RF output and for RF training
 };
 
