CMS 3D CMS Logo

OfflinePixel3DPrimaryVertices_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
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  maxEta = cms.double(100.),
17  trackQuality = cms.string("any")
18  ),
19 
20  TkClusParameters = cms.PSet(
21  algorithm = cms.string('DA_vect'),
22  TkDAClusParameters = cms.PSet(
23  dzCutOff = cms.double(4.0),
24  d0CutOff = cms.double(3.0),
25  Tmin = cms.double(2.4),
26  Tpurge = cms.double(2.0),
27  Tstop = cms.double(0.5),
28  coolingFactor = cms.double(0.6),
29  vertexSize = cms.double(0.01),
30  zmerge = cms.double(0.01),
31  uniquetrkweight = cms.double(0.9)
32  )
33  ),
34 
35  vertexCollections = cms.VPSet(
36  [cms.PSet(label=cms.string(""),
37  algorithm=cms.string("AdaptiveVertexFitter"),
38  chi2cutoff = cms.double(3.0),
39  minNdof=cms.double(2.0),
40  useBeamConstraint = cms.bool(False),
41  maxDistanceToBeam = cms.double(2.0)
42  )
43  ]
44  )
45 
46 
47 
48 )
49 
50