CMS 3D CMS Logo

hltPrimaryVertexAssociation_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltPrimaryVertexAssociation = cms.EDProducer("PFCandidatePrimaryVertexSorter",
4  assignment = cms.PSet(
5  DzCutForChargedFromPUVtxs = cms.double(0.2),
6  EtaMinUseDz = cms.double(-1),
7  NumOfPUVtxsForCharged = cms.uint32(0),
8  OnlyUseFirstDz = cms.bool(False),
9  PtMaxCharged = cms.double(-1),
10  maxDistanceToJetAxis = cms.double(0.07),
11  maxDtSigForPrimaryAssignment = cms.double(3.0),
12  maxDxyForJetAxisAssigment = cms.double(0.1),
13  maxDxyForNotReconstructedPrimary = cms.double(0.01),
14  maxDxySigForNotReconstructedPrimary = cms.double(2),
15  maxDzErrorForPrimaryAssignment = cms.double(0.05),
16  maxDzForJetAxisAssigment = cms.double(0.1),
17  maxDzForPrimaryAssignment = cms.double(0.1),
18  maxDzSigForPrimaryAssignment = cms.double(5.0),
19  maxJetDeltaR = cms.double(0.5),
20  minJetPt = cms.double(25),
21  preferHighRanked = cms.bool(False),
22  useTiming = cms.bool(False),
23  useVertexFit = cms.bool(True)
24  ),
25  jets = cms.InputTag("hltAK4PFPuppiJets"),
26  particles = cms.InputTag("hltParticleFlowTmp"),
27  produceAssociationToOriginalVertices = cms.bool(True),
28  produceNoPileUpCollection = cms.bool(False),
29  producePileUpCollection = cms.bool(False),
30  produceSortedVertices = cms.bool(False),
31  qualityForPrimary = cms.int32(2),
32  sorting = cms.PSet(
33 
34  ),
35  usePVMET = cms.bool(True),
36  vertices = cms.InputTag("hltOfflinePrimaryVertices")
37 )