StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IO.h
1 /*
2  just chains root files
3 
4 
5  */
6 #ifndef IO_H
7 #define IO_H
8 
9 #include "TString.h"
10 #include "TObject.h"
11 class TChain;
12 
13 class IO : public TObject{
14  public:
15  IO(const char* dir="./", const char* ext=".root");
16  ~IO();
17 
18  void setNFile(int n) { mNFile = n; }
19  void chain(TChain* chain);
20 
21  private:
22  int mNFile;
23  TString mDir;
24  TString mExt;
25 
26  ClassDef(IO,1)
27 
28 };
29 
30 #endif
Definition: IO.h:20