Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:57

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