source: trunk/MagicSoft/MarsOctober/mbase/MEvtLoop.h@ 8190

Last change on this file since 8190 was 447, checked in by harald, 24 years ago
Bringing the sources for the octobertest under CVS controll. (november, 3rd, 2000)
  • Property svn:executable set to *
File size: 329 bytes
Line 
1#ifndef MEVTLOOP_H
2#define MEVTLOOP_H
3
4#include "Magic.h"
5
6class MTaskList;
7class MParList;
8
9class MEvtLoop
10{
11private:
12 MTaskList *fTasks;
13 MParList *fParlist;
14
15public:
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.