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

#include <ElectronMatchedCandidateProducer.h>

Inheritance diagram for ElectronMatchedCandidateProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ElectronMatchedCandidateProducer (const edm::ParameterSet &)
 
 ~ElectronMatchedCandidateProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
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 ()
 
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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void beginJob ()
 
virtual void endJob ()
 
virtual void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

double delRMatchingCut_
 
edm::EDGetTokenT< edm::View
< reco::GsfElectron > > 
electronCollectionToken_
 
edm::EDGetTokenT< edm::View
< reco::Candidate > > 
scCollectionToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- 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::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 18 of file ElectronMatchedCandidateProducer.h.

Constructor & Destructor Documentation

ElectronMatchedCandidateProducer::ElectronMatchedCandidateProducer ( const edm::ParameterSet params)
explicit

Definition at line 8 of file ElectronMatchedCandidateProducer.cc.

References delRMatchingCut_, electronCollectionToken_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), and scCollectionToken_.

9 {
10 
11  const edm::InputTag allelectrons("gsfElectrons");
13  consumes<edm::View<reco::GsfElectron> >(params.getUntrackedParameter<edm::InputTag>("ReferenceElectronCollection",
14  allelectrons));
16  consumes<edm::View<reco::Candidate> >(params.getParameter<edm::InputTag>("src"));
17 
18  delRMatchingCut_ = params.getUntrackedParameter<double>("deltaR",
19  0.30);
20 
21  produces< edm::PtrVector<reco::Candidate> >();
22  produces< edm::RefToBaseVector<reco::Candidate> >();
23 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< edm::View< reco::Candidate > > scCollectionToken_
edm::EDGetTokenT< edm::View< reco::GsfElectron > > electronCollectionToken_
ElectronMatchedCandidateProducer::~ElectronMatchedCandidateProducer ( )

Definition at line 28 of file ElectronMatchedCandidateProducer.cc.

29 {
30 
31 }

Member Function Documentation

void ElectronMatchedCandidateProducer::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 98 of file ElectronMatchedCandidateProducer.cc.

98 {}
void ElectronMatchedCandidateProducer::endJob ( void  )
privatevirtual

Reimplemented from edm::EDProducer.

Definition at line 102 of file ElectronMatchedCandidateProducer.cc.

102 {}
void ElectronMatchedCandidateProducer::produce ( edm::Event event,
const edm::EventSetup eventSetup 
)
overrideprivatevirtual

Implements edm::EDProducer.

Definition at line 41 of file ElectronMatchedCandidateProducer.cc.

References counter, delRMatchingCut_, reco::deltaR(), electronCollectionToken_, HI_PhotonSkim_cff::electrons, and scCollectionToken_.

43 {
44  // Create the output collection
45  std::auto_ptr< edm::RefToBaseVector<reco::Candidate> >
47  std::auto_ptr< edm::PtrVector<reco::Candidate> >
48  outColPtr( new edm::PtrVector<reco::Candidate> );
49 
50 
51  // Read electrons
53  event.getByToken(electronCollectionToken_, electrons);
54 
55 
56 
57  //Read candidates
59  event.getByToken( scCollectionToken_ , recoCandColl);
60 
61 
62  const edm::PtrVector<reco::Candidate>& ptrVect = recoCandColl->ptrVector();
63  const edm::RefToBaseVector<reco::Candidate>& refs = recoCandColl->refVector();
64  unsigned int counter=0;
65 
66  // Loop over candidates
67  for(edm::View<reco::Candidate>::const_iterator scIt = recoCandColl->begin();
68  scIt != recoCandColl->end(); ++scIt, ++counter){
69  // Now loop over electrons
70  for(edm::View<reco::GsfElectron>::const_iterator elec = electrons->begin();
71  elec != electrons->end(); ++elec) {
72 
73  reco::SuperClusterRef eSC = elec->superCluster();
74 
75  double dRval = reco::deltaR((float)eSC->eta(), (float)eSC->phi(),
76  scIt->eta(), scIt->phi());
77 
78  if( dRval < delRMatchingCut_ ) {
79  //outCol->push_back( *scIt );
80  outColRef->push_back( refs[counter] );
81  outColPtr->push_back( ptrVect[counter] );
82  } // end if loop
83  } // end electron loop
84 
85  } // end candidate loop
86 
87  event.put(outColRef);
88  event.put(outColPtr);
89 }
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:81
auto deltaR(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:30
edm::EDGetTokenT< edm::View< reco::Candidate > > scCollectionToken_
static std::atomic< unsigned int > counter
edm::EDGetTokenT< edm::View< reco::GsfElectron > > electronCollectionToken_

Member Data Documentation

double ElectronMatchedCandidateProducer::delRMatchingCut_
private

Definition at line 33 of file ElectronMatchedCandidateProducer.h.

Referenced by ElectronMatchedCandidateProducer(), and produce().

edm::EDGetTokenT<edm::View<reco::GsfElectron> > ElectronMatchedCandidateProducer::electronCollectionToken_
private

Definition at line 31 of file ElectronMatchedCandidateProducer.h.

Referenced by ElectronMatchedCandidateProducer(), and produce().

edm::EDGetTokenT<edm::View<reco::Candidate> > ElectronMatchedCandidateProducer::scCollectionToken_
private

Definition at line 32 of file ElectronMatchedCandidateProducer.h.

Referenced by ElectronMatchedCandidateProducer(), and produce().