Last change
on this file since 691 was 653, checked in by tbretz, 24 years ago |
*** empty log message ***
|
-
Property svn:executable
set to
*
|
File size:
709 bytes
|
Line | |
---|
1 | #ifndef MCT1READASCII_H
|
---|
2 | #define MCT1READASCII_H
|
---|
3 |
|
---|
4 | #ifndef MTASK_H
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MCerPhotEvt;
|
---|
9 | class MCT1Pedestals;
|
---|
10 |
|
---|
11 | class MCT1ReadAscii : public MTask
|
---|
12 | {
|
---|
13 | private:
|
---|
14 | TString fFileName; //! the file name of the string
|
---|
15 | ifstream *fIn; //! the inputfile
|
---|
16 | MCerPhotEvt *fNphot; //! the data container for all data.
|
---|
17 | MCT1Pedestals *fPedest; //! ct1 pedestals
|
---|
18 |
|
---|
19 | public:
|
---|
20 | MCT1ReadAscii(const char *filename,
|
---|
21 | const char *name=NULL,
|
---|
22 | const char *title=NULL);
|
---|
23 |
|
---|
24 | Bool_t PreProcess(MParList *pList);
|
---|
25 | Bool_t Process();
|
---|
26 | Bool_t PostProcess();
|
---|
27 |
|
---|
28 | ClassDef(MCT1ReadAscii, 1) // Reads the CT1 data file
|
---|
29 | };
|
---|
30 |
|
---|
31 | #endif
|
---|
32 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.