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 # $Id: pfChargedMET_cfi.py,v 1.2 2013/03/27 22:50:50 sakuma Exp $
3 
4 ##____________________________________________________________________________||
5 particleFlowForChargedMET = cms.EDProducer(
6  "ParticleFlowForChargedMETProducer",
7  PFCollectionLabel = cms.InputTag("particleFlow"),
8  PVCollectionLabel = cms.InputTag("offlinePrimaryVertices"),
9  dzCut = cms.double(0.2),
10  neutralEtThreshold = cms.double(-1.0)
11  )
12 
13 ##____________________________________________________________________________||
14 pfChargedMET = cms.EDProducer(
15  "METProducer",
16  src = cms.InputTag("particleFlowForChargedMET"),
17  METType = cms.string('PFMET'),
18  alias = cms.string('PFMET'),
19  globalThreshold = cms.double(0.0),
20  InputType = cms.string('PFCandidateCollection'),
21  calculateSignificance = cms.bool(False),
22  )
23 
24 ##____________________________________________________________________________||