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

#include <TopInitSubset.h>

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

Public Member Functions

void fillOutput (const reco::GenParticleCollection &, reco::GenParticleCollection &)
 
virtual void produce (edm::Event &, const edm::EventSetup &)
 
 TopInitSubset (const edm::ParameterSet &)
 
 ~TopInitSubset ()
 
- 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

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 13 of file TopInitSubset.h.

Constructor & Destructor Documentation

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

Definition at line 3 of file TopInitSubset.cc.

3  :
4  src_ ( cfg.getParameter<edm::InputTag>( "src" ) )
5 {
6  produces<reco::GenParticleCollection>();
7 }
T getParameter(std::string const &) const
edm::InputTag src_
Definition: TopInitSubset.h:25
TopInitSubset::~TopInitSubset ( )

Definition at line 9 of file TopInitSubset.cc.

10 {
11 }

Member Function Documentation

void TopInitSubset::fillOutput ( const reco::GenParticleCollection src,
reco::GenParticleCollection sel 
)

Definition at line 28 of file TopInitSubset.cc.

References abs, funct::false, configurableAnalysis::GenParticle, TopInitID::status, matplotRender::t, and TopInitID::tID.

Referenced by produce().

29 {
30  for(reco::GenParticleCollection::const_iterator t=src.begin(); t!=src.end(); ++t){
31  if( t->status()==TopInitID::status && std::abs(t->pdgId())==TopInitID::tID ){ //is top
32  for(int idx=0; idx<(int)t->numberOfMothers(); ++idx){
33  reco::GenParticle* cand = new reco::GenParticle( t->mother(idx)->threeCharge(), t->mother(idx)->p4(),
34  t->mother(idx)->vertex(), t->mother(idx)->pdgId(),
35  t->mother(idx)->status(), false );
36  std::auto_ptr<reco::GenParticle> ptr( cand );
37  sel.push_back( *ptr );
38  }
39  break;
40  }
41  }
42 }
#define abs(x)
Definition: mlp_lapack.h:159
static const int tID
Definition: TopInitSubset.h:10
static const int status
Definition: TopInitSubset.h:9
tuple src
Definition: align_tpl.py:87
void TopInitSubset::produce ( edm::Event evt,
const edm::EventSetup setup 
)
virtual

Implements edm::EDProducer.

Definition at line 14 of file TopInitSubset.cc.

References fillOutput(), edm::Event::getByLabel(), edm::Event::getRefBeforePut(), edm::Event::put(), runTheMatrix::sel, align_tpl::src, and src_.

15 {
17  evt.getByLabel(src_, src);
18 
20  std::auto_ptr<reco::GenParticleCollection> sel( new reco::GenParticleCollection );
21 
22  //fill output collection
23  fillOutput( *src, *sel );
24 
25  evt.put( sel );
26 }
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
void fillOutput(const reco::GenParticleCollection &, reco::GenParticleCollection &)
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
RefProd< PROD > getRefBeforePut()
Definition: Event.h:96
edm::InputTag src_
Definition: TopInitSubset.h:25
tuple src
Definition: align_tpl.py:87

Member Data Documentation

edm::InputTag TopInitSubset::src_
private

Definition at line 25 of file TopInitSubset.h.

Referenced by produce().