CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
PFConcretePFCandidateProducer.cc
Go to the documentation of this file.
6 
7 namespace edm {
8  class EventSetup;
9 } // namespace edm
10 
12 public:
15 
16  void produce(edm::Event&, const edm::EventSetup&) override;
17 
18 private:
20 };
21 
23 
25  inputColl_ = iConfig.getParameter<edm::InputTag>("src");
26  // register products
27  produces<reco::PFCandidateCollection>();
28 }
29 
31 
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
PFConcretePFCandidateProducer(const edm::ParameterSet &)
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
void setVertex(const Point &vertex) override
set vertex
int iEvent
Definition: GenABIO.cc:224
void produce(edm::Event &, const edm::EventSetup &) override
def move
Definition: eostools.py:511
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:500
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
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