Changeset 7423 for trunk


Ignore:
Timestamp:
11/22/05 12:19:28 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mranforest
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mranforest/MRanForestCalc.cc

    r7422 r7423  
    376376}
    377377
    378 void MRanForest::Print(Option_t *o) const
     378void MRanForestCalc::Print(Option_t *o) const
    379379{
    380380    *fLog << all;
  • trunk/MagicSoft/Mars/mranforest/MRanForestCalc.h

    r7420 r7423  
    3333    static const TString gsNameOutput;  //! Default Output name
    3434
    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)
    3638
    37     TString      fFileName;   // File name to forest
    38     TObjArray    fEForests;   // List of forests
     39    TObjArray    fEForests;             //! List of forests read or to be written
    3940
    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
    4144
    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
    4446
    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
    4849
    49     Int_t        fNumObsoleteVariables;
     50    Bool_t       fDebug;                // Debugging of eventloop while training on/off
    5051
    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
    5453
    5554private:
     
    7069    MRanForestCalc(const char *name=NULL, const char *title=NULL);
    7170    ~MRanForestCalc();
     71
     72    // TObject
     73    void Print(Option_t *o="") const;
    7274
    7375    // Setter for estimation
     
    106108    void  InitMapping(MHMatrix *m=0)   { fTestMatrix=m; }
    107109
    108     ClassDef(MRanForestCalc, 0) // Task to calculate RF output and for RF training
     110    ClassDef(MRanForestCalc, 1) // Task to calculate RF output and for RF training
    109111};
    110112
Note: See TracChangeset for help on using the changeset viewer.