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 MParList;
|
---|
20 | class MInputStreamID;
|
---|
21 |
|
---|
22 | class MTaskList : public MTask
|
---|
23 | {
|
---|
24 | private:
|
---|
25 | TOrdCollection fTasks; // Container for the ordered list of different tasks
|
---|
26 |
|
---|
27 |
|
---|
28 | public:
|
---|
29 | MTaskList(const char *title=NULL);
|
---|
30 |
|
---|
31 | MTaskList(MTaskList &ts);
|
---|
32 |
|
---|
33 | Bool_t AddToList(MTask *task, const char *tType="All", MTask *where = NULL);
|
---|
34 |
|
---|
35 | Bool_t PreProcess(MParList *pList);
|
---|
36 | Bool_t Process();
|
---|
37 | Bool_t PostProcess();
|
---|
38 |
|
---|
39 | void Print(Option_t *t = NULL);
|
---|
40 |
|
---|
41 | ClassDef(MTaskList, 1) //collection of tasks to be performed in the eventloop
|
---|
42 | };
|
---|
43 |
|
---|
44 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.