CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
pat::PATCompositeCandidateProducer Class Reference

Produces the pat::CompositeCandidate. More...

Inheritance diagram for pat::PATCompositeCandidateProducer:
edm::stream::EDProducer<>

Public Member Functions

 PATCompositeCandidateProducer (const edm::ParameterSet &iConfig)
 
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 ~PATCompositeCandidateProducer () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Attributes

const bool addEfficiencies_
 
const bool addResolutions_
 
pat::helper::EfficiencyLoader efficiencyLoader_
 
pat::helper::KinResolutionsLoader resolutionLoader_
 
const edm::EDGetTokenT< edm::View< reco::CompositeCandidate > > srcToken_
 
pat::PATUserDataHelper< pat::CompositeCandidateuserDataHelper_
 
const bool useUserData_
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
using CacheTypes = CacheContexts< T... >
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T... >
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Detailed Description

Produces the pat::CompositeCandidate.

The PATCompositeCandidateProducer produces the analysis-level pat::CompositeCandidate starting from any collection of Candidates

Author
Salvatore Rappoccio
Version
Id
PATCompositeCandidateProducer.h,v 1.3 2009/06/25 23:49:35 gpetrucc Exp

Definition at line 34 of file PATCompositeCandidateProducer.cc.

Constructor & Destructor Documentation

◆ PATCompositeCandidateProducer()

PATCompositeCandidateProducer::PATCompositeCandidateProducer ( const edm::ParameterSet iConfig)
explicit

Definition at line 61 of file PATCompositeCandidateProducer.cc.

63  useUserData_(iConfig.exists("userData")),
64  userDataHelper_(iConfig.getParameter<edm::ParameterSet>("userData"), consumesCollector()),
65  addEfficiencies_(iConfig.getParameter<bool>("addEfficiencies")),
66  addResolutions_(iConfig.getParameter<bool>("addResolutions")) {
67  // Efficiency configurables
68  if (addEfficiencies_) {
70  pat::helper::EfficiencyLoader(iConfig.getParameter<edm::ParameterSet>("efficiencies"), consumesCollector());
71  }
72 
73  // Resolution configurables
74  if (addResolutions_) {
76  }
77 
78  // produces vector of particles
79  produces<vector<pat::CompositeCandidate> >();
80 }

References addEfficiencies_, addResolutions_, efficiencyLoader_, edm::ParameterSet::getParameter(), and resolutionLoader_.

◆ ~PATCompositeCandidateProducer()

PATCompositeCandidateProducer::~PATCompositeCandidateProducer ( )
override

Definition at line 82 of file PATCompositeCandidateProducer.cc.

82 {}

Member Function Documentation

◆ produce()

void PATCompositeCandidateProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 84 of file PATCompositeCandidateProducer.cc.

84  {
85  // Get the vector of CompositeCandidate's from the event
87  iEvent.getByToken(srcToken_, cands);
88 
93 
94  auto myCompositeCandidates = std::make_unique<vector<pat::CompositeCandidate> >();
95 
96  if (cands.isValid()) {
97  View<reco::CompositeCandidate>::const_iterator ibegin = cands->begin(), iend = cands->end(), i = ibegin;
98  for (; i != iend; ++i) {
100 
101  if (useUserData_) {
102  userDataHelper_.add(cand, iEvent, iSetup);
103  }
104 
106  efficiencyLoader_.setEfficiencies(cand, cands->refAt(i - cands->begin()));
109 
110  myCompositeCandidates->push_back(std::move(cand));
111  }
112 
113  } // end if the two handles are valid
114 
115  iEvent.put(std::move(myCompositeCandidates));
116 }

References pat::PATUserDataHelper< ObjectType >::add(), HLT_FULL_cff::cands, efficiencyLoader_, pat::helper::EfficiencyLoader::enabled(), pat::helper::KinResolutionsLoader::enabled(), mps_fire::i, iEvent, eostools::move(), pat::helper::EfficiencyLoader::newEvent(), pat::helper::KinResolutionsLoader::newEvent(), resolutionLoader_, pat::helper::EfficiencyLoader::setEfficiencies(), pat::helper::KinResolutionsLoader::setResolutions(), srcToken_, userDataHelper_, and useUserData_.

Member Data Documentation

◆ addEfficiencies_

const bool pat::PATCompositeCandidateProducer::addEfficiencies_
private

Definition at line 48 of file PATCompositeCandidateProducer.cc.

Referenced by PATCompositeCandidateProducer().

◆ addResolutions_

const bool pat::PATCompositeCandidateProducer::addResolutions_
private

Definition at line 51 of file PATCompositeCandidateProducer.cc.

Referenced by PATCompositeCandidateProducer().

◆ efficiencyLoader_

pat::helper::EfficiencyLoader pat::PATCompositeCandidateProducer::efficiencyLoader_
private

Definition at line 49 of file PATCompositeCandidateProducer.cc.

Referenced by PATCompositeCandidateProducer(), and produce().

◆ resolutionLoader_

pat::helper::KinResolutionsLoader pat::PATCompositeCandidateProducer::resolutionLoader_
private

Definition at line 52 of file PATCompositeCandidateProducer.cc.

Referenced by PATCompositeCandidateProducer(), and produce().

◆ srcToken_

const edm::EDGetTokenT<edm::View<reco::CompositeCandidate> > pat::PATCompositeCandidateProducer::srcToken_
private

Definition at line 43 of file PATCompositeCandidateProducer.cc.

Referenced by produce().

◆ userDataHelper_

pat::PATUserDataHelper<pat::CompositeCandidate> pat::PATCompositeCandidateProducer::userDataHelper_
private

Definition at line 46 of file PATCompositeCandidateProducer.cc.

Referenced by produce().

◆ useUserData_

const bool pat::PATCompositeCandidateProducer::useUserData_
private

Definition at line 45 of file PATCompositeCandidateProducer.cc.

Referenced by produce().

pat::PATCompositeCandidateProducer::useUserData_
const bool useUserData_
Definition: PATCompositeCandidateProducer.cc:45
mps_fire.i
i
Definition: mps_fire.py:428
pat::PATCompositeCandidateProducer::addResolutions_
const bool addResolutions_
Definition: PATCompositeCandidateProducer.cc:51
pat::helper::EfficiencyLoader
Definition: EfficiencyLoader.h:16
pat::CompositeCandidate
Analysis-level particle class.
Definition: CompositeCandidate.h:31
pat::helper::EfficiencyLoader::enabled
bool enabled() const
'true' if this there is at least one efficiency configured
Definition: EfficiencyLoader.h:25
pat::PATCompositeCandidateProducer::efficiencyLoader_
pat::helper::EfficiencyLoader efficiencyLoader_
Definition: PATCompositeCandidateProducer.cc:49
edm::Handle
Definition: AssociativeIterator.h:50
pat::helper::KinResolutionsLoader::enabled
bool enabled() const
'true' if this there is at least one efficiency configured
Definition: KinResolutionsLoader.h:27
pat::PATUserDataHelper::add
void add(ObjectType &patObject, edm::Event const &iEvent, edm::EventSetup const &iSetup)
Definition: PATUserDataHelper.h:114
pat::helper::EfficiencyLoader::newEvent
void newEvent(const edm::Event &event)
To be called for each new event, reads in the ValueMaps for efficiencies.
Definition: EfficiencyLoader.cc:21
pat::helper::KinResolutionsLoader
Definition: KinResolutionsLoader.h:18
pat::PATCompositeCandidateProducer::addEfficiencies_
const bool addEfficiencies_
Definition: PATCompositeCandidateProducer.cc:48
pat::helper::KinResolutionsLoader::setResolutions
void setResolutions(pat::PATObject< T > &obj) const
Sets the efficiencies for this object, using the reference to the original objects.
Definition: KinResolutionsLoader.h:49
edm::ParameterSet::exists
bool exists(std::string const &parameterName) const
checks if a parameter exists
Definition: ParameterSet.cc:681
edm::View
Definition: CaloClusterFwd.h:14
HLT_FULL_cff.cands
cands
Definition: HLT_FULL_cff.py:15161
edm::ParameterSet
Definition: ParameterSet.h:47
cand
Definition: decayParser.h:32
iEvent
int iEvent
Definition: GenABIO.cc:224
pat::helper::KinResolutionsLoader::newEvent
void newEvent(const edm::Event &event, const edm::EventSetup &setup)
To be called for each new event, reads in the EventSetup object.
Definition: KinResolutionsLoader.cc:27
pat::PATCompositeCandidateProducer::resolutionLoader_
pat::helper::KinResolutionsLoader resolutionLoader_
Definition: PATCompositeCandidateProducer.cc:52
eostools.move
def move(src, dest)
Definition: eostools.py:511
pat::helper::EfficiencyLoader::setEfficiencies
void setEfficiencies(pat::PATObject< T > &obj, const R &originalRef) const
Sets the efficiencies for this object, using the reference to the original objects.
Definition: EfficiencyLoader.h:41
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::View::const_iterator
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
edm::InputTag
Definition: InputTag.h:15
pat::PATCompositeCandidateProducer::srcToken_
const edm::EDGetTokenT< edm::View< reco::CompositeCandidate > > srcToken_
Definition: PATCompositeCandidateProducer.cc:43
pat::PATCompositeCandidateProducer::userDataHelper_
pat::PATUserDataHelper< pat::CompositeCandidate > userDataHelper_
Definition: PATCompositeCandidateProducer.cc:46