Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:46

0001 import FWCore.ParameterSet.Config as cms
0002 from RecoMET.METProducers.pfMet_cfi import pfMet
0003 
0004 ##____________________________________________________________________________||
0005 particleFlowForChargedMET = cms.EDProducer(
0006     "ParticleFlowForChargedMETProducer",
0007     PFCollectionLabel = cms.InputTag("particleFlow"),
0008     PVCollectionLabel = cms.InputTag("offlinePrimaryVertices"),
0009     dzCut = cms.double(0.2),
0010     neutralEtThreshold = cms.double(-1.0)
0011     )
0012 
0013 ##____________________________________________________________________________||
0014 pfChMet = pfMet.clone(
0015     src = "particleFlowForChargedMET",
0016     alias = 'pfChMet',
0017     )
0018 
0019 ##____________________________________________________________________________||