Changeset 8698 for trunk/MagicSoft/Mars/mjoptim
- Timestamp:
- 08/23/07 11:26:38 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjoptim/MJOptimizeBase.h
r8643 r8698 13 13 protected: 14 14 Int_t fDebug; 15 Bool_t fEnableWeights; 15 Bool_t fEnableWeights; // Enable using weights 16 16 17 TList fRules; 17 TList fRules; // Contains the parameters which can be accessed by matrix column 18 TList fTrainParameters; // Parameters in the last columns 18 19 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 24 26 25 27 void AddCut(TList &l, const char *rule); … … 39 41 void AddPostTask(const char *rule, 40 42 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); } 41 47 42 48 void SetDebug(Bool_t b=kTRUE) { fDebug = b; }
Note:
See TracChangeset
for help on using the changeset viewer.