CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Attributes
PFConcretePFCandidateProducer Class Reference
Inheritance diagram for PFConcretePFCandidateProducer:
edm::stream::EDProducer<>

Public Member Functions

 PFConcretePFCandidateProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~PFConcretePFCandidateProducer () 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

edm::InputTag inputColl_
 

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

Definition at line 11 of file PFConcretePFCandidateProducer.cc.

Constructor & Destructor Documentation

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

Definition at line 24 of file PFConcretePFCandidateProducer.cc.

References edm::ParameterSet::getParameter(), and inputColl_.

24  {
25  inputColl_ = iConfig.getParameter<edm::InputTag>("src");
26  // register products
27  produces<reco::PFCandidateCollection>();
28 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
PFConcretePFCandidateProducer::~PFConcretePFCandidateProducer ( )
override

Definition at line 30 of file PFConcretePFCandidateProducer.cc.

30 {}

Member Function Documentation

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

Definition at line 32 of file PFConcretePFCandidateProducer.cc.

References edm::Event::getByLabel(), inputColl_, eostools::move(), HLT_FULL_cff::outputColl, edm::Event::put(), reco::LeafCandidate::setVertex(), and reco::PFCandidate::vertex().

32  {
34  bool inputOk = iEvent.getByLabel(inputColl_, inputColl);
35 
36  if (!inputOk) {
37  // nothing ... I guess we prefer to send an exception in the next lines
38  }
39 
40  auto outputColl = std::make_unique<reco::PFCandidateCollection>();
41  outputColl->resize(inputColl->size());
42 
43  for (unsigned int iCopy = 0; iCopy != inputColl->size(); ++iCopy) {
44  const reco::PFCandidate& pf = (*inputColl)[iCopy];
45  (*outputColl)[iCopy] = pf;
46  //dereferenced internally the ref and hardcopy the value
47  (*outputColl)[iCopy].setVertex(pf.vertex());
48  //math::XYZPoint(pf.vx(),pf.vy(),pf.vz()));
49  }
50 
51  iEvent.put(std::move(outputColl));
52 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
void setVertex(const Point &vertex) override
set vertex
def move
Definition: eostools.py:511
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
const Point & vertex() const override
vertex position (overwritten by PF...)
Definition: PFCandidate.cc:60
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41

Member Data Documentation

edm::InputTag PFConcretePFCandidateProducer::inputColl_
private

Definition at line 19 of file PFConcretePFCandidateProducer.cc.

Referenced by PFConcretePFCandidateProducer(), and produce().