source: trunk/MagicSoft/Mars/manalysis/MCT1ReadAscii.h@ 713

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