source: trunk/MagicSoft/Mars/mbase/MReadMarsFile.h@ 1205

Last change on this file since 1205 was 1114, checked in by tbretz, 23 years ago
*** empty log message ***
  • Property svn:executable set to *
File size: 580 bytes
Line 
1#ifndef MARS_MReadMarsFile
2#define MARS_MReadMarsFile
3
4#ifndef MARS_MReadTree
5#include "MReadTree.h"
6#endif
7
8class MTaskList;
9
10class MReadMarsFile : public MReadTree
11{
12private:
13 MReadTree *fRun;
14 MTaskList *fTaskList; //! Tasklist for reinitialization
15
16 Bool_t Notify();
17
18 Bool_t PreProcess(MParList *pList);
19
20public:
21 MReadMarsFile(const char *treename, const char *filename=NULL, const char *name=NULL, const char *title=NULL);
22 ~MReadMarsFile();
23
24 Int_t AddFile(const char *fname);
25
26 ClassDef(MReadMarsFile, 0) // Reads a tree from file(s)
27};
28
29#endif
Note: See TracBrowser for help on using the repository browser.