00001 #ifndef DTScalerInfoTask_H 00002 #define DTScalerInfoTask_H 00003 00004 /* 00005 * \file DTScalerInfoTask.h 00006 * 00007 * $Date: 2011/10/19 10:05:54 $ 00008 * $Revision: 1.1 $ 00009 * \author C. Battilana - CIEMAT 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/LuminosityBlock.h> 00018 00019 #include "FWCore/Framework/interface/Event.h" 00020 #include "FWCore/Framework/interface/MakerMacros.h" 00021 00022 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00023 00024 #include "DQMServices/Core/interface/DQMStore.h" 00025 #include "DQMServices/Core/interface/MonitorElement.h" 00026 #include "FWCore/ServiceRegistry/interface/Service.h" 00027 00028 #include "DataFormats/DTDigi/interface/DTLocalTriggerCollection.h" 00029 00030 #include <vector> 00031 #include <string> 00032 #include <map> 00033 00034 class DTTimeEvolutionHisto; 00035 00036 class DTScalerInfoTask: public edm::EDAnalyzer{ 00037 00038 friend class DTMonitorModule; 00039 00040 public: 00041 00043 DTScalerInfoTask(const edm::ParameterSet& ps ); 00044 00046 virtual ~DTScalerInfoTask(); 00047 00048 protected: 00049 00050 // BeginJob 00051 void beginJob(); 00052 00054 void beginRun(const edm::Run& , const edm::EventSetup&); 00055 00057 void analyze(const edm::Event& e, const edm::EventSetup& c); 00058 00060 void beginLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& context) ; 00061 00063 void endLuminosityBlock(const edm::LuminosityBlock& lumiSeg, const edm::EventSetup& context) ; 00064 00066 void endJob(void); 00067 00068 private: 00069 00071 void bookHistos(); 00072 00073 int nEvents; 00074 int nEventsInLS; 00075 00076 DQMStore* theDQMStore; 00077 edm::ParameterSet theParams; 00078 00079 edm::InputTag theScalerTag; 00080 00081 std::map<std::string ,DTTimeEvolutionHisto* > trendHistos; 00082 MonitorElement* nEventMonitor; 00083 00084 }; 00085 00086 #endif