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 ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 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
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (std::string const &iProcessName, std::string const &iModuleLabel, bool iPrint, std::vector< char const * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

edm::EDGetTokenT
< reco::GenParticleCollection
srcToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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::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  srcToken_ ( consumes<reco::GenParticleCollection>(cfg.getParameter<edm::InputTag>( "src" ) ) )
5 {
6  produces<reco::GenParticleCollection>();
7 }
T getParameter(std::string const &) const
edm::EDGetTokenT< reco::GenParticleCollection > srcToken_
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 funct::abs(), edm::false, GenParticle::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 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
static const int tID
Definition: TopInitSubset.h:10
volatile std::atomic< bool > shutdown_flag false
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::getByToken(), edm::Event::getRefBeforePut(), edm::Event::put(), EgammaValidation_Wenu_cff::sel, alcazmumu_cfi::src, and srcToken_.

15 {
17  evt.getByToken(srcToken_, 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
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
void fillOutput(const reco::GenParticleCollection &, reco::GenParticleCollection &)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:121
RefProd< PROD > getRefBeforePut()
Definition: Event.h:141
edm::EDGetTokenT< reco::GenParticleCollection > srcToken_
Definition: TopInitSubset.h:25

Member Data Documentation

edm::EDGetTokenT<reco::GenParticleCollection> TopInitSubset::srcToken_
private

Definition at line 25 of file TopInitSubset.h.

Referenced by produce().