CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfChMet_cfi.py
Go to the documentation of this file.
2 
3 ##____________________________________________________________________________||
4 particleFlowForChargedMET = cms.EDProducer(
5  "ParticleFlowForChargedMETProducer",
6  PFCollectionLabel = cms.InputTag("particleFlow"),
7  PVCollectionLabel = cms.InputTag("offlinePrimaryVertices"),
8  dzCut = cms.double(0.2),
9  neutralEtThreshold = cms.double(-1.0)
10  )
11 
12 ##____________________________________________________________________________||
13 pfChMet = cms.EDProducer(
14  "PFMETProducer",
15  src = cms.InputTag("particleFlowForChargedMET"),
16  alias = cms.string('PFCHMET'),
17  globalThreshold = cms.double(0.0),
18  calculateSignificance = cms.bool(False),
19  )
20 
21 ##____________________________________________________________________________||