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 Member Functions | Private Attributes
StGenEventReco Class Reference

#include <StGenEventReco.h>

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

Public Member Functions

virtual void produce (edm::Event &, const edm::EventSetup &)
 
 StGenEventReco (const edm::ParameterSet &)
 
 ~StGenEventReco ()
 
- 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 Member Functions

void fillInitialPartons (const reco::GenParticle *, std::vector< const reco::GenParticle * > &)
 

Private Attributes

edm::InputTag init_
 
edm::InputTag src_
 

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

Definition at line 15 of file StGenEventReco.h.

Constructor & Destructor Documentation

StGenEventReco::StGenEventReco ( const edm::ParameterSet cfg)
explicit

Definition at line 8 of file StGenEventReco.cc.

8  :
9  src_ ( cfg.getParameter<edm::InputTag>( "src" ) ),
10  init_( cfg.getParameter<edm::InputTag>( "init" ) )
11 {
12  produces<StGenEvent>();
13 }
T getParameter(std::string const &) const
edm::InputTag src_
edm::InputTag init_
StGenEventReco::~StGenEventReco ( )

Definition at line 15 of file StGenEventReco.cc.

16 {
17 }

Member Function Documentation

void StGenEventReco::fillInitialPartons ( const reco::GenParticle ,
std::vector< const reco::GenParticle * > &   
)
private
void StGenEventReco::produce ( edm::Event evt,
const edm::EventSetup setup 
)
virtual

Implements edm::EDProducer.

Definition at line 20 of file StGenEventReco.cc.

References TtGenEvtProducer_cfi::genEvt, edm::Event::getByLabel(), init_, CfgNavigationSchool_cfi::parts, edm::Event::put(), and src_.

21 {
23  evt.getByLabel(src_, parts);
24 
26  evt.getByLabel(init_, inits);
27 
28  //add TopDecayTree
29  reco::GenParticleRefProd cands( parts );
30 
31  //add InitialStatePartons
32  reco::GenParticleRefProd initParts( inits );
33 
34  //add genEvt to the output stream
35  StGenEvent* genEvt = new StGenEvent( cands, initParts );
36  std::auto_ptr<StGenEvent> gen( genEvt );
37  evt.put( gen );
38 }
Class derived from the TopGenEvent for single-top events.
Definition: StGenEvent.h:17
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
edm::InputTag src_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
edm::InputTag init_

Member Data Documentation

edm::InputTag StGenEventReco::init_
private

Definition at line 28 of file StGenEventReco.h.

Referenced by produce().

edm::InputTag StGenEventReco::src_
private

Definition at line 28 of file StGenEventReco.h.

Referenced by produce().