source: trunk/MagicSoft/Mars/mfileio/MRead.h@ 2134

Last change on this file since 2134 was 2117, checked in by tbretz, 21 years ago
*** empty log message ***
File size: 581 bytes
Line 
1#ifndef MARS_MRead
2#define MARS_MRead
3
4#ifndef MARS_MTask
5#include "MTask.h"
6#endif
7
8class MFilter;
9
10class MRead : public MTask
11{
12private:
13 MFilter *fSelector;
14
15public:
16 MRead() : fSelector(NULL) {}
17
18 virtual UInt_t GetEntries() = 0;
19 virtual Bool_t Rewind();
20
21 void SetSelector(MFilter *f) { fSelector = f; }
22 MFilter *GetSelector() { return fSelector; }
23
24 Int_t AddFile(const char *fname, Int_t entries=-1) { return -1; }
25
26 Bool_t ReadEnv(const TEnv &env, TString prefix, Bool_t print);
27
28 ClassDef(MRead, 0) // Base class for a reading task
29};
30
31#endif
Note: See TracBrowser for help on using the repository browser.