CMS 3D CMS Logo

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
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Private Member Functions

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

Private Attributes

double dzCut
 
double neutralEtThreshold
 
edm::EDGetTokenT< PFCandidateCollectionpfCandidatesToken
 
edm::InputTag pfCollectionLabel
 
edm::InputTag pvCollectionLabel
 
edm::EDGetTokenT< VertexCollectionpvCollectionToken
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 

Detailed Description

Definition at line 19 of file ParticleFlowForChargedMETProducer.h.

Constructor & Destructor Documentation

◆ ParticleFlowForChargedMETProducer()

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

Definition at line 10 of file ParticleFlowForChargedMETProducer.cc.

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 }

References TrackSplittingMonitor_cfi::dzCut, edm::ParameterSet::getParameter(), and pfChMet_cfi::neutralEtThreshold.

◆ ~ParticleFlowForChargedMETProducer()

ParticleFlowForChargedMETProducer::~ParticleFlowForChargedMETProducer ( )
override

Definition at line 58 of file ParticleFlowForChargedMETProducer.cc.

58 {}

Member Function Documentation

◆ produce()

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

Definition at line 23 of file ParticleFlowForChargedMETProducer.cc.

23  {
24  //Get the PV collection
27  VertexCollection::const_iterator vertex = pvCollection->begin();
28 
29  //Get 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 }

References PFRecoTauChargedHadronBuilderPlugins_cfi::chargedPFCandidates, TrackSplittingMonitor_cfi::dzCut, mps_fire::i, iEvent, edm::Ref< C, T, F >::isNonnull(), eostools::move(), pfChMet_cfi::neutralEtThreshold, zmumugammaAnalyzer_cfi::pfCandidates, reco::LeafCandidate::pt(), anotherprimaryvertexanalyzer_cfi::pvCollection, reco::PFCandidate::trackRef(), and bphysicsOniaDQM_cfi::vertex.

Member Data Documentation

◆ dzCut

double reco::ParticleFlowForChargedMETProducer::dzCut
private

Definition at line 33 of file ParticleFlowForChargedMETProducer.h.

◆ neutralEtThreshold

double reco::ParticleFlowForChargedMETProducer::neutralEtThreshold
private

Definition at line 34 of file ParticleFlowForChargedMETProducer.h.

◆ pfCandidatesToken

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

Definition at line 31 of file ParticleFlowForChargedMETProducer.h.

◆ pfCollectionLabel

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

Definition at line 27 of file ParticleFlowForChargedMETProducer.h.

◆ pvCollectionLabel

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

Definition at line 28 of file ParticleFlowForChargedMETProducer.h.

◆ pvCollectionToken

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

Definition at line 30 of file ParticleFlowForChargedMETProducer.h.

reco::ParticleFlowForChargedMETProducer::pvCollectionToken
edm::EDGetTokenT< VertexCollection > pvCollectionToken
Definition: ParticleFlowForChargedMETProducer.h:30
PFRecoTauChargedHadronBuilderPlugins_cfi.chargedPFCandidates
chargedPFCandidates
Definition: PFRecoTauChargedHadronBuilderPlugins_cfi.py:15
zmumugammaAnalyzer_cfi.pfCandidates
pfCandidates
Definition: zmumugammaAnalyzer_cfi.py:11
mps_fire.i
i
Definition: mps_fire.py:428
reco::ParticleFlowForChargedMETProducer::neutralEtThreshold
double neutralEtThreshold
Definition: ParticleFlowForChargedMETProducer.h:34
edm::Handle< VertexCollection >
anotherprimaryvertexanalyzer_cfi.pvCollection
pvCollection
Definition: anotherprimaryvertexanalyzer_cfi.py:4
reco::ParticleFlowForChargedMETProducer::dzCut
double dzCut
Definition: ParticleFlowForChargedMETProducer.h:33
bphysicsOniaDQM_cfi.vertex
vertex
Definition: bphysicsOniaDQM_cfi.py:7
iEvent
int iEvent
Definition: GenABIO.cc:224
edm::Ptr< PFCandidate >
reco::ParticleFlowForChargedMETProducer::pfCandidatesToken
edm::EDGetTokenT< PFCandidateCollection > pfCandidatesToken
Definition: ParticleFlowForChargedMETProducer.h:31
eostools.move
def move(src, dest)
Definition: eostools.py:511
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::PFCandidate
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:41
reco::ParticleFlowForChargedMETProducer::pfCollectionLabel
edm::InputTag pfCollectionLabel
Definition: ParticleFlowForChargedMETProducer.h:27
reco::ParticleFlowForChargedMETProducer::pvCollectionLabel
edm::InputTag pvCollectionLabel
Definition: ParticleFlowForChargedMETProducer.h:28
edm::InputTag
Definition: InputTag.h:15