00001 #ifndef TMB_TREE_TMBHISTORY_HPP__ 00002 #define TMB_TREE_TMBHISTORY_HPP__ 00003 00005 // // 00006 // TMBHistory class // 00007 // // 00009 00010 #ifndef ROOT_TObject 00011 #include "TObject.h" 00012 #endif 00013 00014 #include "TString.h" 00015 00024 class TMBHistory : public TObject { 00025 00026 private: 00027 00028 Int_t _NHists; 00029 TString _progname, _versname; 00030 00031 public: 00032 00033 TMBHistory(); 00034 TMBHistory(const char* progname, const char* versname); 00035 ~TMBHistory(); 00036 00038 const char* program()const { return _progname; } 00039 00041 const char* version()const { return _versname; } 00042 00043 ClassDef(TMBHistory, 1); 00044 }; 00045 00046 #endif // TMB_TREE_TMBHISTORY_HPP__
1.3.4