00001
00002
00003
00004
00005 <<<<<<< HistoFile.h
00007 =======
00009 >>>>>>> 1.2
00012 #ifndef JOBC_HISTOFILE_H
00013 #define JOBC_HISTOFILE_H
00014 #include "TFile.h"
00015
00016 namespace jobc {
00018 class HistoFile {
00019 public:
00020 static void SetFileName(const char* name);
00021 static const char* FileName();
00022 static TFile* File();
00023 static void StepIn(const char* dir=0);
00024 static void StepOut();
00025 static bool SaveHistos();
00026 private:
00027 HistoFile() { }
00028 };
00029 }
00030
00031
00032 #endif
00033
00034