source: trunk/Mars/mjoptim/MJOptimizeBase.h@ 9872

Last change on this file since 9872 was 9867, checked in by tbretz, 15 years ago
Improved comments in MJOptimizeBase.
File size: 3.0 KB
Line 
1#ifndef MARS_MJOptimizeBase
2#define MARS_MJOptimizeBase
3
4#ifndef MARS_MJob
5#include "MJob.h"
6#endif
7
8class MTask;
9class MFilter;
10
11class MJOptimizeBase : public MJob
12{
13protected:
14 Int_t fDebug;
15 Bool_t fEnableWeights; // Enable using weights
16
17 TList fRules; // Contains the parameters which can be accessed by matrix column
18 TList fTrainParameters; // Parameters in the last columns
19
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 at the end of the testing tasklist
26
27 void AddCut(TList &l, const char *rule);
28 void AddPar(TList &l, const char *rule, const char *name);
29 void Add(TList &l, MTask *f);
30
31public:
32 MJOptimizeBase() : fDebug(-1), fEnableWeights(kFALSE)
33 {
34 }
35
36 // MJOptimizeBase
37 void SetDebug(Bool_t b=kTRUE) { fDebug = b; }
38
39 // Add a parameter to the list of parameters
40 Int_t AddParameter(const char *rule);
41
42 // Tasks which are executed after reading (training and testing if available)
43 void AddPreTask(MTask *t) { Add(fPreTasks, t); }
44 void AddPreTask(const char *rule,
45 const char *name="MWeight") { AddPar(fPreTasks, rule, name); }
46
47 // Cuts which are executed after the pre-tasks (training and testing if available)
48 void AddPreCut(const char *rule) { AddCut(fPreCuts, rule); }
49 void AddPreCut(MFilter *f) { Add(fPreCuts, (MTask*)(f)); }
50
51 // Same as pre-cuts but only executed in taining or testing
52 void AddTrainCut(const char *rule) { AddCut(fTrainCuts, rule); }
53 void AddTrainCut(MFilter *f) { Add(fTrainCuts, (MTask*)(f)); }
54
55 void AddTestCut(const char *rule) { AddCut(fTestCuts, rule); }
56 void AddTestCut(MFilter *f) { Add(fTestCuts, (MTask*)(f)); }
57
58 // Tasks which are excuted after event selection (training and testing if available)
59 void AddPostTask(MTask *t) { Add(fPostTasks, t); }
60 void AddPostTask(const char *rule,
61 const char *name="MWeight") { AddPar(fPostTasks, rule, name); }
62
63 // Tasks executed at the end of the testing tasklist
64 void AddTestTask(MTask *t) { Add(fTestTasks, t); }
65 void AddTestTask(const char *rule,
66 const char *name="MWeight") { AddPar(fTestTasks, rule, name); }
67
68 // Add calculation of weights to list of post tasks. Set fEnableWeights
69 void SetWeights(const char *rule) { if (fEnableWeights) return; fEnableWeights=kTRUE; AddPostTask(rule); }
70 void SetWeights(MTask *t) { if (fEnableWeights) return; fEnableWeights=kTRUE; AddPostTask(t); }
71
72 ClassDef(MJOptimizeBase, 0)//Base class for all optimizations and trainings
73};
74
75#endif
Note: See TracBrowser for help on using the repository browser.