source: trunk/MagicSoft/Mars/mdatacheck/MDumpEvtHeader.h@ 527

Last change on this file since 527 was 466, checked in by tbretz, 24 years ago
see Changelog
File size: 595 bytes
Line 
1#ifndef MDUMPEVTHEADER_H
2#define MDUMPEVTHEADER_H
3
4#ifndef MAGIC_h
5#include "MAGIC.h"
6#endif
7
8#ifndef MTASK_H
9#include "MTask.h"
10#endif
11
12class MRawEvtHeader;
13class MRawEvtData;
14class MRawEvtPixelIter;
15class MParList;
16
17class MDumpEvtHeader : public MTask {
18 private:
19 MRawEvtHeader *fRawEvtHeader;
20
21 MRawEvtData *fRawEvtData;
22
23 MRawEvtPixelIter *fPixelIter ;
24
25 public:
26 MDumpEvtHeader () {
27 fRawEvtHeader = NULL ;
28 } ;
29
30 Bool_t PreProcess(MParList *pList);
31 Bool_t Process() ;
32
33 // ClassDef(MDumpEvtHeader, 1) // Task to read the raw data binary file
34
35};
36
37#endif
Note: See TracBrowser for help on using the repository browser.