CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
PathTimerInserter Class Reference

#include <PathTimerInserter.h>

Inheritance diagram for PathTimerInserter:
edm::EDProducer edm::ProducerBase edm::ProductRegistryHelper

Public Member Functions

 PathTimerInserter (edm::ParameterSet const &ps)
 
virtual void produce (edm::Event &e, edm::EventSetup const &c)
 
virtual ~PathTimerInserter ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
boost::function< void(const
BranchDescription &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
template<class TProducer , class TMethod >
void callWhenNewProductsRegistered (TProducer *iProd, TMethod iMethod)
 

Detailed Description

Definition at line 14 of file PathTimerInserter.h.

Constructor & Destructor Documentation

PathTimerInserter::PathTimerInserter ( edm::ParameterSet const &  ps)
explicit

Definition at line 9 of file PathTimerInserter.cc.

10 {
11  produces<HLTPerformanceInfo>();
12 }
PathTimerInserter::~PathTimerInserter ( )
virtual

Definition at line 14 of file PathTimerInserter.cc.

15 {
16 }

Member Function Documentation

void PathTimerInserter::produce ( edm::Event e,
edm::EventSetup const &  c 
)
virtual

Implements edm::EDProducer.

Definition at line 19 of file PathTimerInserter.cc.

References edm::service::PathTimerService::getInfo(), parseEventContent::prod, RPCpg::pts, and edm::Event::put().

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

20 {
21 
22  // warning: the trigger results will be cleared as a result of inserting
23  // this object into the event
24 
26  std::auto_ptr<HLTPerformanceInfo> prod=pts->getInfo();
27 
28  e.put(prod);
29 }
static const double pts[33]
Definition: Constants.h:31
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:85
std::auto_ptr< HLTPerformanceInfo > getInfo()