Line | |
---|
1 | #ifndef MEVTLOOP_H
|
---|
2 | #define MEVTLOOP_H
|
---|
3 |
|
---|
4 | /////////////////////////////////////////////////////////////////////////////
|
---|
5 | // //
|
---|
6 | // MEvtLoop //
|
---|
7 | // //
|
---|
8 | // Class to execute the tasks in a tasklist //
|
---|
9 | // //
|
---|
10 | /////////////////////////////////////////////////////////////////////////////
|
---|
11 |
|
---|
12 | #ifndef MAGIC_H
|
---|
13 | #include "MAGIC.h"
|
---|
14 | #endif
|
---|
15 |
|
---|
16 | class MParList;
|
---|
17 | class MTaskList;
|
---|
18 |
|
---|
19 | class MEvtLoop
|
---|
20 | {
|
---|
21 | private:
|
---|
22 | MParList *fParlist;
|
---|
23 | MTaskList *fTaskList;
|
---|
24 |
|
---|
25 | public:
|
---|
26 | MEvtLoop();
|
---|
27 | virtual ~MEvtLoop();
|
---|
28 |
|
---|
29 | void SetParList(MParList *p);
|
---|
30 |
|
---|
31 | Bool_t PreProcess(const char *tlist="MTaskList");
|
---|
32 | void Process(Int_t maxcnt) const;
|
---|
33 | void PostProcess() const;
|
---|
34 |
|
---|
35 | void Eventloop(Int_t maxcnt=-1, const char *tlist="MTaskList");
|
---|
36 |
|
---|
37 | ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist
|
---|
38 | };
|
---|
39 |
|
---|
40 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.