source: trunk/MagicSoft/Mars/mfileio/MReadCurrents.h@ 2367

Last change on this file since 2367 was 2206, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 770 bytes
Line 
1#ifndef MARS_MReadCurrents
2#define MARS_MReadCurrents
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class TList;
9class MTime;
10class MCurrents;
11
12class MReadCurrents : public MTask
13{
14private:
15 ifstream *fIn; // the inputfile
16 MTime *fTime; //
17 MCurrents *fCurrents; //
18 TList *fFileNames; // Array which stores the \0-terminated filenames
19
20 Bool_t OpenNextFile();
21
22public:
23 MReadCurrents(const char *filename=NULL,
24 const char *name=NULL,
25 const char *title=NULL);
26
27 ~MReadCurrents();
28
29 Int_t AddFile(const char *fname, Int_t dummy=-1);
30
31 Int_t PreProcess(MParList *pList);
32 Int_t Process();
33
34 ClassDef(MReadCurrents, 0) // Reads a Central Control currents file
35};
36
37#endif
38
Note: See TracBrowser for help on using the repository browser.