source:
trunk/MagicSoft/MarsOctober/mbase/MEvtLoop.h@
1868
Last change on this file since 1868 was 447, checked in by , 24 years ago | |
---|---|
|
|
File size: 329 bytes |
Line | |
---|---|
1 | #ifndef MEVTLOOP_H |
2 | #define MEVTLOOP_H |
3 | |
4 | #include "Magic.h" |
5 | |
6 | class MTaskList; |
7 | class MParList; |
8 | |
9 | class MEvtLoop |
10 | { |
11 | private: |
12 | MTaskList *fTasks; |
13 | MParList *fParlist; |
14 | |
15 | public: |
16 | MEvtLoop(); |
17 | ~MEvtLoop(); |
18 | |
19 | void SetTaskList(MTaskList *t); |
20 | void SetParList(MParList *p); |
21 | |
22 | void Eventloop(Int_t maxcnt=-1); |
23 | }; |
24 | |
25 | #endif |
Note:
See TracBrowser
for help on using the repository browser.