00001 #ifndef PathTimerInserter_h 00002 #define PathTimerInserter_h 00003 00004 /* 00005 Author: David Lange, LLNL 00006 00007 */ 00008 00009 #include "FWCore/Framework/interface/Frameworkfwd.h" 00010 #include "FWCore/Framework/interface/EDProducer.h" 00011 #include "FWCore/ParameterSet/interface/ParameterSet.h" 00012 00013 00014 class PathTimerInserter : public edm::EDProducer 00015 { 00016 public: 00017 00018 explicit PathTimerInserter(edm::ParameterSet const& ps); 00019 00020 virtual ~PathTimerInserter(); 00021 00022 virtual void produce(edm::Event& e, edm::EventSetup const& c); 00023 00024 private: 00025 }; 00026 00027 // --------------------- 00028 00029 #endif