CMS 3D CMS Logo

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

#include <EgammaHLTPixelMatchElectronProducers.h>

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

Public Member Functions

virtual void beginJob (void)
 
 EgammaHLTPixelMatchElectronProducers (const edm::ParameterSet &conf)
 
virtual void produce (edm::Event &e, const edm::EventSetup &c)
 
virtual ~EgammaHLTPixelMatchElectronProducers ()
 
- 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 ()
 

Private Attributes

EgammaHLTPixelMatchElectronAlgoalgo_
 
const edm::ParameterSet conf_
 
std::string seedProducer_
 

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)
 
- 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

Description: EDProducer of HLT Electron objects

Definition at line 24 of file EgammaHLTPixelMatchElectronProducers.h.

Constructor & Destructor Documentation

EgammaHLTPixelMatchElectronProducers::EgammaHLTPixelMatchElectronProducers ( const edm::ParameterSet conf)
explicit

Definition at line 43 of file EgammaHLTPixelMatchElectronProducers.cc.

References algo_, and conf_.

43  : conf_(iConfig)
44 {
45  //register your products
46  produces<ElectronCollection>();
47 
48  //create algo
50 
51 }
EgammaHLTPixelMatchElectronProducers::~EgammaHLTPixelMatchElectronProducers ( )
virtual

Definition at line 54 of file EgammaHLTPixelMatchElectronProducers.cc.

References algo_.

55 {
56  delete algo_;
57 }

Member Function Documentation

void EgammaHLTPixelMatchElectronProducers::beginJob ( void  )
virtual

Reimplemented from edm::EDProducer.

Definition at line 59 of file EgammaHLTPixelMatchElectronProducers.cc.

60 {
61 }
void EgammaHLTPixelMatchElectronProducers::produce ( edm::Event e,
const edm::EventSetup c 
)
virtual

Implements edm::EDProducer.

Definition at line 64 of file EgammaHLTPixelMatchElectronProducers.cc.

References algo_, edm::Event::put(), EgammaHLTPixelMatchElectronAlgo::run(), and EgammaHLTPixelMatchElectronAlgo::setupES().

65 {
66  // Update the algorithm conditions
67  algo_->setupES(iSetup);
68 
69  // Create the output collections
70  std::auto_ptr<ElectronCollection> pOutEle(new ElectronCollection);
71 
72  // invoke algorithm
73  algo_->run(e,*pOutEle);
74 
75  // put result into the Event
76  e.put(pOutEle);
77 
78 }
void run(edm::Event &, reco::ElectronCollection &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
void setupES(const edm::EventSetup &setup)
std::vector< Electron > ElectronCollection
collectin of Electron objects
Definition: ElectronFwd.h:9

Member Data Documentation

EgammaHLTPixelMatchElectronAlgo* EgammaHLTPixelMatchElectronProducers::algo_
private
const edm::ParameterSet EgammaHLTPixelMatchElectronProducers::conf_
private
std::string EgammaHLTPixelMatchElectronProducers::seedProducer_
private

Definition at line 40 of file EgammaHLTPixelMatchElectronProducers.h.