00001 #ifndef EcalDQMonitor_H 00002 #define EcalDQMonitor_H 00003 00004 #include <string> 00005 #include <vector> 00006 00007 #include "FWCore/Framework/interface/EDAnalyzer.h" 00008 00009 namespace edm{ 00010 class ParameterSet; 00011 } 00012 namespace ecaldqm{ 00013 class DQWorker; 00014 } 00015 00016 class EcalDQMonitor : public edm::EDAnalyzer { 00017 public: 00018 EcalDQMonitor(const edm::ParameterSet &); 00019 virtual ~EcalDQMonitor(); 00020 00021 protected: 00022 std::string moduleName_; 00023 const bool mergeRuns_; 00024 const int verbosity_; 00025 bool initialized_; 00026 }; 00027 00028 #endif