00001 #ifndef EBPedestalTask_H 00002 #define EBPedestalTask_H 00003 00004 /* 00005 * \file EBPedestalTask.h 00006 * 00007 * $Date: 2009/10/26 17:33:47 $ 00008 * $Revision: 1.32 $ 00009 * \author G. Della Ricca 00010 * 00011 */ 00012 00013 #include "FWCore/Framework/interface/EDAnalyzer.h" 00014 #include "FWCore/Framework/interface/Event.h" 00015 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00016 00017 class MonitorElement; 00018 class DQMStore; 00019 00020 class EBPedestalTask: public edm::EDAnalyzer{ 00021 00022 public: 00023 00025 EBPedestalTask(const edm::ParameterSet& ps); 00026 00028 virtual ~EBPedestalTask(); 00029 00030 protected: 00031 00033 void analyze(const edm::Event& e, const edm::EventSetup& c); 00034 00036 void beginJob(void); 00037 00039 void endJob(void); 00040 00042 void beginRun(const edm::Run & r, const edm::EventSetup & c); 00043 00045 void endRun(const edm::Run & r, const edm::EventSetup & c); 00046 00048 void reset(void); 00049 00051 void setup(void); 00052 00054 void cleanup(void); 00055 00056 private: 00057 00058 int ievt_; 00059 00060 DQMStore* dqmStore_; 00061 00062 std::string prefixME_; 00063 00064 bool enableCleanup_; 00065 00066 bool mergeRuns_; 00067 00068 edm::InputTag EcalRawDataCollection_; 00069 edm::InputTag EBDigiCollection_; 00070 edm::InputTag EcalPnDiodeDigiCollection_; 00071 std::vector<int> MGPAGains_; 00072 std::vector<int> MGPAGainsPN_; 00073 00074 MonitorElement* mePedMapG01_[36]; 00075 MonitorElement* mePedMapG06_[36]; 00076 MonitorElement* mePedMapG12_[36]; 00077 00078 MonitorElement* mePed3SumMapG01_[36]; 00079 MonitorElement* mePed3SumMapG06_[36]; 00080 MonitorElement* mePed3SumMapG12_[36]; 00081 00082 MonitorElement* mePed5SumMapG01_[36]; 00083 MonitorElement* mePed5SumMapG06_[36]; 00084 MonitorElement* mePed5SumMapG12_[36]; 00085 00086 MonitorElement* mePnPedMapG01_[36]; 00087 MonitorElement* mePnPedMapG16_[36]; 00088 00089 bool init_; 00090 00091 }; 00092 00093 #endif