00001 /* 00002 just chains root files 00003 00004 00005 */ 00006 #ifndef IO_H 00007 #define IO_H 00008 00009 #include "TString.h" 00010 #include "TObject.h" 00011 class TChain; 00012 00013 class IO : public TObject{ 00014 public: 00015 IO(const char* dir="./", const char* ext=".root"); 00016 ~IO(); 00017 00018 void setNFile(int n) { mNFile = n; } 00019 void chain(TChain* chain); 00020 00021 private: 00022 int mNFile; 00023 TString mDir; 00024 TString mExt; 00025 00026 ClassDef(IO,1) 00027 00028 }; 00029 00030 #endif
1.5.9