CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
inclusiveVertexFinder_cfi.py
Go to the documentation of this file.
2 
3 inclusiveVertexFinder = cms.EDProducer("InclusiveVertexFinder",
4  beamSpot = cms.InputTag("offlineBeamSpot"),
5  primaryVertices = cms.InputTag("offlinePrimaryVertices"),
6  tracks = cms.InputTag("generalTracks"),
7  minHits = cms.uint32(8),
8  maximumLongitudinalImpactParameter = cms.double(0.3),
9  minPt = cms.double(0.8),
10  maxNTracks = cms.uint32(30),
11 
12  clusterizer = cms.PSet(
13  seedMin3DIPSignificance = cms.double(1.2),
14  seedMin3DIPValue = cms.double(0.005),
15  clusterMaxDistance = cms.double(0.05), #500um
16  clusterMaxSignificance = cms.double(4.5), #4.5 sigma
17  clusterScale = cms.double(1),
18  clusterMinAngleCosine = cms.double(0.5), # only forward decays
19  ),
20 
21  vertexMinAngleCosine = cms.double(0.95), # scalar prod direction of tracks and flight dir
22  vertexMinDLen2DSig = cms.double(2.5), #2.5 sigma
23  vertexMinDLenSig = cms.double(0.5), #0.5 sigma
24  vertexReco = cms.PSet(
25  finder = cms.string('avr'),
26  primcut = cms.double(1.0),
27  seccut = cms.double(3),
28  smoothing = cms.bool(True)
29  )
30 
31 
32 )
33 
34