source: trunk/MagicSoft/Mars/mbase/MEvtLoop.h@ 585

Last change on this file since 585 was 458, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 933 bytes
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
16class MParList;
17
18class MEvtLoop
19{
20private:
21 MParList *fParlist;
22
23public:
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.