CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OfflinePrimaryVerticesFromCosmicTracks_cfi.py
Go to the documentation of this file.
2 
3 offlinePrimaryVerticesFromCosmicTracks = cms.EDProducer("PrimaryVertexProducer",
4 
5  verbose = cms.untracked.bool(False),
6  TrackLabel = cms.InputTag("ctfWithMaterialTracksP5"),
7  beamSpotLabel = cms.InputTag("offlineBeamSpot"),
8 
9  TkFilterParameters = cms.PSet(
10  algorithm=cms.string('filter'),
11  maxNormalizedChi2 = cms.double(5.0),
12  minSiliconLayersWithHits = cms.int32(7), ## hits > 7
13  maxD0Significance = cms.double(5.0), ## keep most primary tracks
14  minPt = cms.double(0.0), ## better for softish events
15  minPixelLayersWithHits = cms.int32(2), ## hits > 2
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. clusters
23  )
24  ),
25 
26  vertexCollections = cms.VPSet(
27  [cms.PSet(label=cms.string(""),
28  algorithm=cms.string("AdaptiveVertexFitter"),
29  minNdof=cms.double(0.0),
30  useBeamConstraint = cms.bool(False),
31  maxDistanceToBeam = cms.double(1.0)
32  )
33  ]
34  )
35 
36 
37 
38 )
39 
40