Line | |
---|
1 | #ifndef MARS_MRawFileRead
|
---|
2 | #define MARS_MRawFileRead
|
---|
3 |
|
---|
4 | #ifndef MARS_MRawRead
|
---|
5 | #include "MRawRead.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MRawFileRead : public MRawRead
|
---|
9 | {
|
---|
10 | private:
|
---|
11 | TString fFileName;
|
---|
12 | ifstream *fIn; //! buffered input stream (file to read from)
|
---|
13 |
|
---|
14 | Int_t PreProcess(MParList *pList);
|
---|
15 | Int_t Process();
|
---|
16 | Int_t PostProcess();
|
---|
17 |
|
---|
18 | public:
|
---|
19 | MRawFileRead(const char *filename, const char *name=NULL, const char *title=NULL);
|
---|
20 | ~MRawFileRead();
|
---|
21 |
|
---|
22 | ClassDef(MRawFileRead, 0) // Task to read the raw data binary file
|
---|
23 | };
|
---|
24 |
|
---|
25 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.