CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OfflinePixel3DPrimaryVertices_cfi.py
Go to the documentation of this file.
2 
3 pixelVertices = cms.EDProducer("PrimaryVertexProducer",
4 
5  verbose = cms.untracked.bool(False),
6  TrackLabel = cms.InputTag("pixelTracks"),
7  beamSpotLabel = cms.InputTag("offlineBeamSpot"),
8 
9  TkFilterParameters = cms.PSet(
10  algorithm=cms.string('filter'),
11  maxNormalizedChi2 = cms.double(100.0),
12  minPixelLayersWithHits=cms.int32(3),
13  minSiliconLayersWithHits = cms.int32(3),
14  maxD0Significance = cms.double(100.0),
15  minPt = cms.double(0.0),
16  trackQuality = cms.string("any")
17  ),
18 
19  TkClusParameters = cms.PSet(
20  algorithm = cms.string("gap"),
21  TkGapClusParameters = cms.PSet(
22  zSeparation = cms.double(0.1) # 1 mm max separation betw.tracks inside clusters
23  )
24  ),
25 
26  vertexCollections = cms.VPSet(
27  [cms.PSet(label=cms.string(""),
28  algorithm=cms.string("AdaptiveVertexFitter"),
29  minNdof=cms.double(2.0),
30  useBeamConstraint = cms.bool(False),
31  maxDistanceToBeam = cms.double(2.0)
32  )
33  ]
34  )
35 
36 
37 
38 )
39 
40