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

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