Line Code
1 2 3 4 5 6 7 8 9 10 11 12
import FWCore.ParameterSet.Config as cms

hltPfPileUpJME = cms.EDProducer("PFPileUp",
    PFCandidates = cms.InputTag("hltParticleFlowPtrs"),
    Vertices = cms.InputTag("hltGoodOfflinePrimaryVertices"),
    checkClosestZVertex = cms.bool(False),
    enable = cms.bool(True),
    useVertexAssociation = cms.bool(False),
    verbose = cms.untracked.bool(False),
    vertexAssociation = cms.InputTag(""),
    vertexAssociationQuality = cms.int32(7)
)