00001 #ifndef FARDETVARCERRORSDUMP_H 00002 #define FARDETVARCERRORSDUMP_H 00003 00004 #include "JobControl/JobCModule.h" 00005 00006 #include "TTree.h" 00007 #include "TFile.h" 00008 00009 class MomNavigator; 00010 00011 class FarDetVarcErrorsDump : public JobCModule 00012 { 00013 00014 public: 00015 FarDetVarcErrorsDump(); 00016 ~FarDetVarcErrorsDump(); 00017 void BeginJob(); 00018 JobCResult Ana(const MomNavigator *mom); 00019 void EndJob(); 00020 00021 private: 00022 00023 TFile* fVarcErrorsFile; 00024 TTree* fVarcErrorsTree; 00025 00026 Int_t date,time; 00027 Int_t run,timeframe,timeblock; 00028 Int_t sparserr,etcerr; 00029 Int_t crate,varc,etc; 00030 Int_t errcode; 00031 00032 }; 00033 00034 #endif
1.3.9.1