|
Last change
on this file since 618 was 601, checked in by harald, 25 years ago |
|
At the Barcelona workshop we decided to rename the class MNphotEvent to
MCerPhotEvt. This is done now.
|
|
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 MCerPhotEvt ;
|
|---|
| 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 | MCerPhotEvt *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.