CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 ParticleFlowForChargedMETProducer (const edm::ParameterSet &)
 
 ~ParticleFlowForChargedMETProducer ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducer ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

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

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::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

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 edm::ParameterSet::getParameter().

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 ( )

Definition at line 66 of file ParticleFlowForChargedMETProducer.cc.

66 {}

Member Function Documentation

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

Implements edm::EDProducer.

Definition at line 24 of file ParticleFlowForChargedMETProducer.cc.

References PFRecoTauChargedHadronBuilderPlugins_cfi::chargedPFCandidates, edm::Event::getByToken(), i, edm::Ptr< T >::isNonnull(), reco::tau::pfCandidates(), and edm::Event::put().

25 {
26 
27  //Get the PV collection
28  Handle<VertexCollection> pvCollection;
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_ptr<PFCandidateCollection> chargedPFCandidates( new PFCandidateCollection ) ;
38  if (pvCollection->size()>0) {
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 
61  iEvent.put(chargedPFCandidates);
62 
63  return;
64 }
int i
Definition: DBlmapReader.cc:9
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
std::vector< PFCandidatePtr > pfCandidates(const PFJet &jet, int particleId, bool sort=true)
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:113
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
edm::EDGetTokenT< VertexCollection > pvCollectionToken
edm::EDGetTokenT< PFCandidateCollection > pfCandidatesToken

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.