File indexing completed on 2023-07-18 22:33:52
0001 import FWCore.ParameterSet.Config as cms
0002
0003 sortedPFPrimaryVertices = cms.EDProducer('PFCandidatePrimaryVertexSorter',
0004 sorting = cms.PSet(),
0005 assignment = cms.PSet(
0006 maxDzSigForPrimaryAssignment = cms.double(5),
0007 maxDzForPrimaryAssignment = cms.double(0.1),
0008 maxDzErrorForPrimaryAssignment = cms.double(0.05),
0009 maxDtSigForPrimaryAssignment = cms.double(3),
0010 maxJetDeltaR = cms.double(0.5),
0011 minJetPt = cms.double(25),
0012 maxDistanceToJetAxis = cms.double(0.07),
0013 maxDzForJetAxisAssigment = cms.double(0.1),
0014 maxDxyForJetAxisAssigment = cms.double(0.1),
0015 maxDxySigForNotReconstructedPrimary = cms.double(2),
0016 maxDxyForNotReconstructedPrimary = cms.double(0.01),
0017 useTiming = cms.bool(False),
0018 useVertexFit = cms.bool(True),
0019 preferHighRanked = cms.bool(False),
0020 NumOfPUVtxsForCharged = cms.uint32(0),
0021 DzCutForChargedFromPUVtxs = cms.double(0.2),
0022 PtMaxCharged = cms.double(-1),
0023 EtaMinUseDz = cms.double(-1),
0024 OnlyUseFirstDz = cms.bool(False)
0025 ),
0026 qualityForPrimary = cms.int32(3),
0027 usePVMET = cms.bool(True),
0028 particles = cms.InputTag('particleFlow'),
0029 vertices = cms.InputTag('offlinePrimaryVertices'),
0030 jets = cms.InputTag('ak4PFJets'),
0031 produceAssociationToOriginalVertices = cms.bool(True),
0032 produceSortedVertices = cms.bool(True),
0033 producePileUpCollection = cms.bool(True),
0034 produceNoPileUpCollection = cms.bool(True),
0035 mightGet = cms.optional.untracked.vstring
0036 )