CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
pfChargedMET_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 pfChargedMET = cms.EDProducer(
14  "PFMETProducer",
15  src = cms.InputTag("particleFlowForChargedMET"),
16  METType = cms.string('PFMET'),
17  alias = cms.string('PFMET'),
18  globalThreshold = cms.double(0.0),
19  InputType = cms.string('PFCandidateCollection'),
20  calculateSignificance = cms.bool(False),
21  )
22 
23 ##____________________________________________________________________________||