Line | |
---|
1 | #ifndef MTASKLIST_H
|
---|
2 | #define MTASKLIST_H
|
---|
3 |
|
---|
4 | ///////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MTaskList //
|
---|
7 | // //
|
---|
8 | // Collection of tasks to be processed in the eventloop //
|
---|
9 | // //
|
---|
10 | ///////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #ifndef ROOT_TOrdCollection
|
---|
13 | #include <TOrdCollection.h>
|
---|
14 | #endif
|
---|
15 | #ifndef MTASK_H
|
---|
16 | #include "MTask.h"
|
---|
17 | #endif
|
---|
18 |
|
---|
19 | class MLog;
|
---|
20 | class MParList;
|
---|
21 | class MInputStreamID;
|
---|
22 |
|
---|
23 | class MTaskList : public MTask
|
---|
24 | {
|
---|
25 | private:
|
---|
26 | TOrdCollection fTasks; // Container for the ordered list of different tasks
|
---|
27 | MParList *fParList;
|
---|
28 |
|
---|
29 | enum { kIsOwner = BIT(14) };
|
---|
30 |
|
---|
31 | public:
|
---|
32 | MTaskList(const char *name=NULL, const char *title=NULL);
|
---|
33 | MTaskList(MTaskList &ts);
|
---|
34 |
|
---|
35 | ~MTaskList();
|
---|
36 |
|
---|
37 | void SetLogStream(MLog *log);
|
---|
38 |
|
---|
39 | Bool_t AddToList(MTask *task, const char *tType="All", MTask *where = NULL);
|
---|
40 |
|
---|
41 | TObject *FindObject(const char *name) const;
|
---|
42 | TObject *FindObject(TObject *obj) const;
|
---|
43 |
|
---|
44 | Bool_t PreProcess(MParList *pList);
|
---|
45 | Bool_t Process();
|
---|
46 | Bool_t PostProcess();
|
---|
47 |
|
---|
48 | void Print(Option_t *opt = "");
|
---|
49 | void SetOwner(Bool_t enable=kTRUE);
|
---|
50 |
|
---|
51 | ClassDef(MTaskList, 0) //collection of tasks to be performed in the eventloop
|
---|
52 | };
|
---|
53 |
|
---|
54 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.