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

Last change on this file since 956 was 956, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 529 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 MParList;
15
16class MDumpEvtHeader : public MTask
17{
18private:
19 MRawEvtHeader *fRawEvtHeader;
20 MRawEvtData *fRawEvtData;
21
22public:
23 MDumpEvtHeader () : fRawEvtHeader(NULL) { };
24
25 Bool_t PreProcess(MParList *pList);
26 Bool_t Process();
27
28 ClassDef(MDumpEvtHeader, 0) // Class to dump the pixel ids of a raw evt to the screen
29
30};
31
32#endif
Note: See TracBrowser for help on using the repository browser.