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::EDConsumerBase 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 &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

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)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

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, customizeTrackingMonitorSeedNumber::idx, lumiQTWidget::t, and TopInitID::tID.

Referenced by produce().

29 {
30  for(reco::GenParticleCollection::const_iterator t=src.begin(); t!=src.end(); ++t){
31  if( std::abs(t->pdgId())==TopInitID::tID ){
32  bool hasTopMother = false;
33  for(unsigned idx=0; idx<t->numberOfMothers(); ++idx)
34  if( std::abs(t->mother(idx)->pdgId())==TopInitID::tID )
35  hasTopMother = true;
36  if(hasTopMother)
37  continue;
38  for(unsigned idx=0; idx<t->numberOfMothers(); ++idx){
39  reco::GenParticle* cand = new reco::GenParticle( t->mother(idx)->threeCharge(), t->mother(idx)->p4(),
40  t->mother(idx)->vertex(), t->mother(idx)->pdgId(),
41  t->mother(idx)->status(), false );
42  std::auto_ptr<reco::GenParticle> ptr( cand );
43  sel.push_back( *ptr );
44  }
45  break;
46  }
47  }
48 }
#define abs(x)
Definition: mlp_lapack.h:159
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
static const int tID
Definition: TopInitSubset.h:10
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(), EgammaValidation_Wenu_cff::sel, alcazmumu_cfi::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:94
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
RefProd< PROD > getRefBeforePut()
Definition: Event.h:106
edm::InputTag src_
Definition: TopInitSubset.h:25

Member Data Documentation

edm::InputTag TopInitSubset::src_
private

Definition at line 25 of file TopInitSubset.h.

Referenced by produce().