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 hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () 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 20 of file ParticleFlowForChargedMETProducer.h.

Constructor & Destructor Documentation

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

Definition at line 10 of file ParticleFlowForChargedMETProducer.cc.

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

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

Definition at line 66 of file ParticleFlowForChargedMETProducer.cc.

66 {}

Member Function Documentation

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

Definition at line 24 of file ParticleFlowForChargedMETProducer.cc.

References PFRecoTauChargedHadronBuilderPlugins_cfi::chargedPFCandidates, pfChMet_cfi::dzCut, edm::Event::getByToken(), mps_fire::i, edm::Ref< C, T, F >::isNonnull(), eostools::move(), pfChMet_cfi::neutralEtThreshold, slimmedMuons_cfi::pfCandidates, reco::LeafCandidate::pt(), edm::Event::put(), anotherprimaryvertexanalyzer_cfi::pvCollection, and reco::PFCandidate::trackRef().

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

Member Data Documentation

double reco::ParticleFlowForChargedMETProducer::dzCut
private

Definition at line 36 of file ParticleFlowForChargedMETProducer.h.

double reco::ParticleFlowForChargedMETProducer::neutralEtThreshold
private

Definition at line 37 of file ParticleFlowForChargedMETProducer.h.

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

Definition at line 34 of file ParticleFlowForChargedMETProducer.h.

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

Definition at line 30 of file ParticleFlowForChargedMETProducer.h.

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

Definition at line 31 of file ParticleFlowForChargedMETProducer.h.

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

Definition at line 33 of file ParticleFlowForChargedMETProducer.h.