source: trunk/MagicSoft/Mars/manalysis/MReadCT1Ascii.h@ 592

Last change on this file since 592 was 592, checked in by harald, 24 years ago
Introduced a Task to read in the data from CT1 files to study the behaviour of different analysis methods. Also the macro "macros/readCT1.C" was added that reads in the CT1 data files and puts the content in the MNphotEvent container. Then you can access that representation of this event.
File size: 582 bytes
Line 
1#ifndef MREADCT1ASCII_H
2#define MREADCT1ASCII_H
3
4#ifndef MTASK_H
5#include "MTask.h"
6#endif
7
8class MNphotEvent ;
9
10class 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 public:
20 MReadCT1Ascii(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(MReadCT1Ascii, 1) // Reads the CT1 data file
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.