source: trunk/MagicSoft/Mars/mfileio/MReadMarsFile.h@ 1381

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