Ignore:
Timestamp:
08/23/07 11:26:38 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjoptim/MJOptimizeBase.h

    r8643 r8698  
    1313protected:
    1414    Int_t  fDebug;
    15     Bool_t fEnableWeights;
     15    Bool_t fEnableWeights;  // Enable using weights
    1616
    17     TList fRules;
     17    TList fRules;           // Contains the parameters which can be accessed by matrix column
     18    TList fTrainParameters; // Parameters in the last columns
    1819
    19     TList fPreCuts;
    20     TList fTrainCuts;
    21     TList fTestCuts;
    22     TList fPreTasks;
    23     TList fPostTasks;
     20    TList fPreCuts;         // Cuts executed for training and testing
     21    TList fTrainCuts;       // Cuts executed only in training
     22    TList fTestCuts;        // Cuts executed only in testing
     23    TList fPreTasks;        // Tasks executed before cut execution
     24    TList fPostTasks;       // Tasks executed after cut execution
     25    TList fTestTasks;       // Tasks executed after cut execution for testing
    2426
    2527    void AddCut(TList &l, const char *rule);
     
    3941    void AddPostTask(const char *rule,
    4042                     const char *name="MWeight") { AddPar(fPostTasks, rule, name); }
     43
     44    void AddTestTask(MTask *t)                   { Add(fTestTasks, t); }
     45    void AddTestTask(const char *rule,
     46                     const char *name="MWeight") { AddPar(fTestTasks, rule, name); }
    4147
    4248    void SetDebug(Bool_t b=kTRUE)      { fDebug = b; }
Note: See TracChangeset for help on using the changeset viewer.