00001 #ifndef EEBeamHodoClient_H 00002 #define EEBeamHodoClient_H 00003 00004 /* 00005 * \file EEBeamHodoClient.h 00006 * 00007 * $Date: 2010/01/25 21:12:25 $ 00008 * $Revision: 1.26 $ 00009 * \author G. Della Ricca 00010 * \author G. Franzoni 00011 * 00012 */ 00013 00014 #include <vector> 00015 #include <string> 00016 00017 #include "TROOT.h" 00018 #include "TProfile2D.h" 00019 #include "TH1F.h" 00020 00021 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00022 00023 #include "DQM/EcalEndcapMonitorClient/interface/EEClient.h" 00024 00025 class MonitorElement; 00026 class DQMStore; 00027 #ifdef WITH_ECAL_COND_DB 00028 class EcalCondDBInterface; 00029 class RunIOV; 00030 class MonRunIOV; 00031 #endif 00032 00033 class EEBeamHodoClient : public EEClient { 00034 00035 public: 00036 00038 EEBeamHodoClient(const edm::ParameterSet& ps); 00039 00041 virtual ~EEBeamHodoClient(); 00042 00044 void analyze(void); 00045 00047 void beginJob(void); 00048 00050 void endJob(void); 00051 00053 void beginRun(void); 00054 00056 void endRun(void); 00057 00059 void setup(void); 00060 00062 void cleanup(void); 00063 00064 #ifdef WITH_ECAL_COND_DB 00065 00066 bool writeDb(EcalCondDBInterface* econn, RunIOV* runiov, MonRunIOV* moniov, bool& status); 00067 #endif 00068 00070 inline int getEvtPerJob() { return ievt_; } 00071 inline int getEvtPerRun() { return jevt_; } 00072 00073 private: 00074 00075 int ievt_; 00076 int jevt_; 00077 00078 bool cloneME_; 00079 00080 bool verbose_; 00081 bool debug_; 00082 00083 std::string prefixME_; 00084 00085 bool enableCleanup_; 00086 00087 std::vector<int> superModules_; 00088 00089 DQMStore* dqmStore_; 00090 00091 TH1F* ho01_[4]; 00092 TH1F* hr01_[4]; 00093 00094 TH1F* hp01_[2]; 00095 TH2F* hp02_; 00096 00097 TH1F* hs01_[2]; 00098 00099 TH1F* hq01_[2]; 00100 00101 TH1F* ht01_; 00102 00103 TH1F* hc01_[3]; 00104 00105 TH1F* hm01_; 00106 00107 TProfile* he01_[2]; 00108 TH2F* he02_[2]; 00109 00110 TH1F* he03_[3]; 00111 00112 }; 00113 00114 #endif