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 Member Functions | Private Attributes
reco::ParticleFlowForChargedMETProducer Class Reference

#include <ParticleFlowForChargedMETProducer.h>

Inheritance diagram for reco::ParticleFlowForChargedMETProducer:
edm::stream::EDProducer<>

Public Member Functions

 ParticleFlowForChargedMETProducer (const edm::ParameterSet &)
 
 ~ParticleFlowForChargedMETProducer () 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 Member Functions

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

Private Attributes

double dzCut
 
double neutralEtThreshold
 
edm::EDGetTokenT
< PFCandidateCollection
pfCandidatesToken
 
edm::InputTag pfCollectionLabel
 
edm::InputTag pvCollectionLabel
 
edm::EDGetTokenT
< VertexCollection
pvCollectionToken
 

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 19 of file ParticleFlowForChargedMETProducer.h.

Constructor & Destructor Documentation

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

Definition at line 10 of file ParticleFlowForChargedMETProducer.cc.

References edm::ParameterSet::getParameter().

10  {
11  pfCollectionLabel = iConfig.getParameter<edm::InputTag>("PFCollectionLabel");
12  pvCollectionLabel = iConfig.getParameter<edm::InputTag>("PVCollectionLabel");
13 
14  pfCandidatesToken = consumes<PFCandidateCollection>(pfCollectionLabel);
15  pvCollectionToken = consumes<VertexCollection>(pvCollectionLabel);
16 
17  dzCut = iConfig.getParameter<double>("dzCut");
18  neutralEtThreshold = iConfig.getParameter<double>("neutralEtThreshold");
19 
20  produces<PFCandidateCollection>();
21 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::EDGetTokenT< VertexCollection > pvCollectionToken
edm::EDGetTokenT< PFCandidateCollection > pfCandidatesToken
ParticleFlowForChargedMETProducer::~ParticleFlowForChargedMETProducer ( )
override

Definition at line 58 of file ParticleFlowForChargedMETProducer.cc.

58 {}

Member Function Documentation

void ParticleFlowForChargedMETProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 23 of file ParticleFlowForChargedMETProducer.cc.

References PFRecoTauChargedHadronBuilderPlugins_cfi::chargedPFCandidates, edm::Event::getByToken(), mps_fire::i, edm::Ptr< T >::isNonnull(), eostools::move(), slimmedMuons_cfi::pfCandidates, and edm::Event::put().

23  {
24  //Get the PV collection
25  Handle<VertexCollection> pvCollection;
26  iEvent.getByToken(pvCollectionToken, pvCollection);
27  VertexCollection::const_iterator vertex = pvCollection->begin();
28 
29  //Get pfCandidates
31  iEvent.getByToken(pfCandidatesToken, pfCandidates);
32 
33  // the output collection
34  auto chargedPFCandidates = std::make_unique<PFCandidateCollection>();
35  if (!pvCollection->empty()) {
36  for (unsigned i = 0; i < pfCandidates->size(); i++) {
37  const PFCandidate& pfCand = (*pfCandidates)[i];
38  PFCandidatePtr pfCandPtr(pfCandidates, i);
39 
40  if (pfCandPtr->trackRef().isNonnull()) {
41  if (pfCandPtr->trackRef()->dz((*vertex).position()) < dzCut) {
42  chargedPFCandidates->push_back(pfCand);
43  chargedPFCandidates->back().setSourceCandidatePtr(pfCandPtr);
44  }
45 
46  } else if (neutralEtThreshold > 0 and pfCandPtr->pt() > neutralEtThreshold) {
47  chargedPFCandidates->push_back(pfCand);
48  chargedPFCandidates->back().setSourceCandidatePtr(pfCandPtr);
49  }
50  }
51  }
52 
54 
55  return;
56 }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:133
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:539
def move
Definition: eostools.py:511
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41
edm::EDGetTokenT< VertexCollection > pvCollectionToken
edm::EDGetTokenT< PFCandidateCollection > pfCandidatesToken

Member Data Documentation

double reco::ParticleFlowForChargedMETProducer::dzCut
private

Definition at line 33 of file ParticleFlowForChargedMETProducer.h.

double reco::ParticleFlowForChargedMETProducer::neutralEtThreshold
private

Definition at line 34 of file ParticleFlowForChargedMETProducer.h.

edm::EDGetTokenT<PFCandidateCollection> reco::ParticleFlowForChargedMETProducer::pfCandidatesToken
private

Definition at line 31 of file ParticleFlowForChargedMETProducer.h.

edm::InputTag reco::ParticleFlowForChargedMETProducer::pfCollectionLabel
private

Definition at line 27 of file ParticleFlowForChargedMETProducer.h.

edm::InputTag reco::ParticleFlowForChargedMETProducer::pvCollectionLabel
private

Definition at line 28 of file ParticleFlowForChargedMETProducer.h.

edm::EDGetTokenT<VertexCollection> reco::ParticleFlowForChargedMETProducer::pvCollectionToken
private

Definition at line 30 of file ParticleFlowForChargedMETProducer.h.