00001 #ifndef DTDigiForNoiseTask_H 00002 #define DTDigiForNoiseTask_H 00003 00004 /* 00005 * \file DTDigiForNoiseTask.h 00006 * 00007 * $Date: 2010/01/05 10:14:40 $ 00008 * $Revision: 1.6 $ 00009 * \author G. Mila - INFN Torino 00010 * 00011 */ 00012 00013 #include "FWCore/Framework/interface/Frameworkfwd.h" 00014 #include <FWCore/Framework/interface/EDAnalyzer.h> 00015 #include <DataFormats/Common/interface/Handle.h> 00016 #include <FWCore/Framework/interface/ESHandle.h> 00017 #include <FWCore/Framework/interface/Event.h> 00018 #include <FWCore/Framework/interface/MakerMacros.h> 00019 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00020 00021 #include "DQMServices/Core/interface/DQMStore.h" 00022 #include "DQMServices/Core/interface/MonitorElement.h" 00023 #include "FWCore/ServiceRegistry/interface/Service.h" 00024 #include <FWCore/Framework/interface/LuminosityBlock.h> 00025 00026 #include <memory> 00027 #include <iostream> 00028 #include <fstream> 00029 #include <string> 00030 #include <vector> 00031 #include <map> 00032 00033 class DTGeometry; 00034 class DTSuperLayerId; 00035 class DTLayerId; 00036 class DTChamberId; 00037 00038 00039 class DTDigiForNoiseTask: public edm::EDAnalyzer{ 00040 00041 public: 00042 00044 DTDigiForNoiseTask(const edm::ParameterSet& ps); 00045 00047 virtual ~DTDigiForNoiseTask(); 00048 00049 protected: 00050 00052 void beginJob(); 00053 00055 void beginRun(const edm::Run&, const edm::EventSetup&); 00056 00058 void bookHistos(const DTLayerId& dtSL); 00059 00061 void beginLuminosityBlock(edm::LuminosityBlock const& lumiSeg, edm::EventSetup const& context) ; 00062 00064 void analyze(const edm::Event& e, const edm::EventSetup& c); 00065 00067 void endJob(); 00068 00069 private: 00070 00071 bool debug; 00072 int nevents; 00073 00074 DQMStore* dbe; 00075 00076 edm::ParameterSet parameters; 00077 00078 edm::ESHandle<DTGeometry> muonGeom; 00079 00080 std::map< DTLayerId, MonitorElement* > digiHistos; 00081 00082 00083 }; 00084 00085 #endif