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
TtGenEventReco Class Reference

#include <TtGenEventReco.h>

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

Public Member Functions

virtual void produce (edm::Event &, const edm::EventSetup &)
 
 TtGenEventReco (const edm::ParameterSet &)
 
 ~TtGenEventReco ()
 
- 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 TtGenEventReco.h.

Constructor & Destructor Documentation

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

Definition at line 8 of file TtGenEventReco.cc.

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

Definition at line 15 of file TtGenEventReco.cc.

16 {
17 }

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 20 of file TtGenEventReco.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  TtGenEvent* genEvt = new TtGenEvent( cands, initParts );
36  std::auto_ptr<TtGenEvent> gen( genEvt );
37  evt.put( gen );
38 }
edm::InputTag src_
Class derived from the TopGenEvent for ttbar events.
Definition: TtGenEvent.h:18
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:84
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:355
edm::InputTag init_

Member Data Documentation

edm::InputTag TtGenEventReco::init_
private

Definition at line 29 of file TtGenEventReco.h.

Referenced by produce().

edm::InputTag TtGenEventReco::src_
private

Definition at line 29 of file TtGenEventReco.h.

Referenced by produce().