CMS 3D CMS Logo

hltDeepInclusiveVertexFinderPF_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 hltDeepInclusiveVertexFinderPF = cms.EDProducer("InclusiveCandidateVertexFinder",
4  beamSpot = cms.InputTag("hltOnlineBeamSpot"),
5  clusterizer = cms.PSet(
6  clusterMaxDistance = cms.double(0.05),
7  clusterMaxSignificance = cms.double(4.5),
8  clusterMinAngleCosine = cms.double(0.5),
9  distanceRatio = cms.double(20),
10  maxTimeSignificance = cms.double(3.5),
11  seedMax3DIPSignificance = cms.double(9999),
12  seedMax3DIPValue = cms.double(9999),
13  seedMin3DIPSignificance = cms.double(1.2),
14  seedMin3DIPValue = cms.double(0.005)
15  ),
16  fitterRatio = cms.double(0.25),
17  fitterSigmacut = cms.double(3),
18  fitterTini = cms.double(256),
19  maxNTracks = cms.uint32(15),
20  maximumLongitudinalImpactParameter = cms.double(0.2),
21  maximumTimeSignificance = cms.double(3),
22  mightGet = cms.optional.untracked.vstring,
23  minHits = cms.uint32(8),
24  minPt = cms.double(1.4),
25  primaryVertices = cms.InputTag("hltOfflinePrimaryVertices"),
26  tracks = cms.InputTag("hltParticleFlowTmp"),
27  useDirectVertexFitter = cms.bool(True),
28  useVertexReco = cms.bool(True),
29  vertexMinAngleCosine = cms.double(0.95),
30  vertexMinDLen2DSig = cms.double(2.5),
31  vertexMinDLenSig = cms.double(0.5),
32  vertexReco = cms.PSet(
33  finder = cms.string('avr'),
34  primcut = cms.double(1),
35  seccut = cms.double(3),
36  smoothing = cms.bool(True)
37  )
38 )