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