Last change
on this file since 8593 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 |
|
---|
8 | class MTaskList;
|
---|
9 | class MParList;
|
---|
10 |
|
---|
11 | class MLoopEvt
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | MTaskList *fTasks;
|
---|
15 | MParList *fParlist;
|
---|
16 |
|
---|
17 | public:
|
---|
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.