source: trunk/MagicSoft/Mars/mbase/MLoopEvt.h@ 457

Last change on this file since 457 was 454, checked in by harald, 24 years ago
Import the first sources of the MAGIC Analysis and Reconstruction Software. T. Bretz and H. Kornmayer 20.December 2000
  • Property svn:executable set to *
File size: 373 bytes
Line 
1#ifndef MLOOP_H
2#define MLOOP_H
3
4#ifndef MAGIC_H
5#include "MAGIC.h"
6#endif
7
8class MTaskList;
9class MParList;
10
11class MLoopEvt
12{
13private:
14 MTaskList *fTasks;
15 MParList *fParlist;
16
17public:
18 MLoopEvt();
19 ~MLoopEvt();
20
21 void SetTaskList(MTaskList *t);
22 void SetParList(MParList *p);
23
24 void Eventloop(Int_t maxcnt=-1);
25
26 ClassDef(MLoopEvt, 1)
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.