CMS 3D CMS Logo

offlinePrimaryVertices_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 offlinePrimaryVertices = cms.EDProducer("RecoChargedRefCandidatePrimaryVertexSorter",
4  assignment = cms.PSet(
5  maxDistanceToJetAxis = cms.double(0.07),
6  maxDtSigForPrimaryAssignment = cms.double(4.0),
7  maxDxyForJetAxisAssigment = cms.double(0.1),
8  maxDxyForNotReconstructedPrimary = cms.double(0.01),
9  maxDxySigForNotReconstructedPrimary = cms.double(2),
10  maxDzErrorForPrimaryAssignment = cms.double(0.05),
11  maxDzForJetAxisAssigment = cms.double(0.1),
12  maxDzForPrimaryAssignment = cms.double(0.1),
13  maxDzSigForPrimaryAssignment = cms.double(5.0),
14  maxJetDeltaR = cms.double(0.5),
15  minJetPt = cms.double(25),
16  preferHighRanked = cms.bool(False),
17  useTiming = cms.bool(False)
18  ),
19  jets = cms.InputTag("ak4CaloJetsForTrk"),
20  particles = cms.InputTag("trackRefsForJetsBeforeSorting"),
21  produceAssociationToOriginalVertices = cms.bool(False),
22  produceNoPileUpCollection = cms.bool(False),
23  producePileUpCollection = cms.bool(False),
24  produceSortedVertices = cms.bool(True),
25  qualityForPrimary = cms.int32(3),
26  sorting = cms.PSet(
27 
28  ),
29  trackTimeResoTag = cms.InputTag(""),
30  trackTimeTag = cms.InputTag(""),
31  usePVMET = cms.bool(True),
32  vertices = cms.InputTag("unsortedOfflinePrimaryVertices")
33 )