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 |
|
---|
18 | class MEvtLoop
|
---|
19 | {
|
---|
20 | private:
|
---|
21 | MParList *fParlist;
|
---|
22 |
|
---|
23 | public:
|
---|
24 | MEvtLoop();
|
---|
25 | virtual ~MEvtLoop();
|
---|
26 |
|
---|
27 | void SetParList(MParList *p);
|
---|
28 |
|
---|
29 | void Eventloop(Int_t maxcnt=-1, const char *tlist="MTaskList");
|
---|
30 |
|
---|
31 | ClassDef(MEvtLoop, 1) // Class to execute the tasks in a tasklist
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.