Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-05-05 02:46:43

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 pfPileUp = cms.EDProducer('PFPileUp',
0004   PFCandidates = cms.InputTag('particleFlowTmpPtrs'),
0005   Vertices = cms.InputTag('offlinePrimaryVertices'),
0006   enable = cms.bool(True),
0007   verbose = cms.untracked.bool(False),
0008   checkClosestZVertex = cms.bool(True),
0009   useVertexAssociation = cms.bool(False),
0010   vertexAssociationQuality = cms.int32(0),
0011   vertexAssociation = cms.InputTag(''),
0012   NumOfPUVtxsForCharged = cms.uint32(0),
0013   DzCutForChargedFromPUVtxs = cms.double(0.2),
0014   mightGet = cms.optional.untracked.vstring
0015 )