CMS 3D CMS Logo

pfChMet_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from RecoMET.METProducers.pfMet_cfi import pfMet
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 pfChMet = pfMet.clone(
15  src = "particleFlowForChargedMET",
16  alias = 'pfChMet',
17  )
18 
19