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

Last change on this file since 701 was 698, 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
8class MCerPhotEvt;
9class MCT1Pedestals;
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 MCT1Pedestals *fPedest; //! ct1 pedestals
18
19public:
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, 0) // Reads the CT1 data file
29};
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.