Last change
on this file since 597 was 597, checked in by harald, 24 years ago |
Adding the first version of an Image Cleaning. Therefore a first version
of Class MCamNeigbor was implemented.
The Image cleaning is done in class MNphotEvent.
|
File size:
637 bytes
|
Line | |
---|
1 | #ifndef MREADCT1ASCII_H
|
---|
2 | #define MREADCT1ASCII_H
|
---|
3 |
|
---|
4 | #ifndef MTASK_H
|
---|
5 | #include "MTask.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MNphotEvent ;
|
---|
9 |
|
---|
10 | class MReadCT1Ascii : public MTask
|
---|
11 | {
|
---|
12 | private:
|
---|
13 | TString fFileName; //! the file name of the string
|
---|
14 |
|
---|
15 | FILE* fInputfile ; //! the inputfile
|
---|
16 |
|
---|
17 | MNphotEvent *fNphot ; //! the data container for all data.
|
---|
18 |
|
---|
19 | Float_t fPedest[127] ; //!
|
---|
20 |
|
---|
21 | public:
|
---|
22 | MReadCT1Ascii(const char *filename,
|
---|
23 | const char *name=NULL,
|
---|
24 | const char *title=NULL);
|
---|
25 |
|
---|
26 | Bool_t PreProcess(MParList *pList);
|
---|
27 | Bool_t Process();
|
---|
28 | Bool_t PostProcess();
|
---|
29 |
|
---|
30 | void ReadPedestal() ;
|
---|
31 |
|
---|
32 | ClassDef(MReadCT1Ascii, 1) // Reads the CT1 data file
|
---|
33 | };
|
---|
34 |
|
---|
35 | #endif
|
---|
36 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.