source: trunk/MagicSoft/Mars/mbase/MTask.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
File size: 368 bytes
Line 
1#ifndef MTASK_H
2#define MTASK_H
3
4#ifndef MINPUTSTREAMID_H
5#include "MInputStreamID.h"
6#endif
7
8class MParList;
9
10class MTask : public MInputStreamID
11{
12
13public:
14 ~MTask()
15 {
16 }
17
18 virtual Bool_t PreProcess(MParList *pList);
19 virtual Bool_t Process();
20 virtual Bool_t PostProcess();
21
22 ClassDef(MTask, 1) // Base (abstract) class for a task
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.