File indexing completed on 2023-03-17 11:06:06
0001 import FWCore.ParameterSet.Config as cms
0002
0003 pfPileUpJME = cms.EDProducer("PFPileUp",
0004 enable = cms.bool(True),
0005 PFCandidates = cms.InputTag("particleFlowPtrs"),
0006 Vertices = cms.InputTag("goodOfflinePrimaryVertices"),
0007 checkClosestZVertex = cms.bool(False),
0008 verbose = cms.untracked.bool(False),
0009 useVertexAssociation = cms.bool(False),
0010 vertexAssociation = cms.InputTag(""),
0011 vertexAssociationQuality = cms.int32(7)
0012 )