CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
OfflinePrimaryVerticesGap_cfi.py
Go to the documentation of this file.
2 
3 offlinePrimaryVerticesGap = cms.EDProducer("PrimaryVertexProducer",
4  PVSelParameters = cms.PSet(
5  maxDistanceToBeam = cms.double(2) ## 0.1
6  ),
7  verbose = cms.untracked.bool(False),
8  algorithm = cms.string('AdaptiveVertexFitter'),
9  minNdof = cms.double(0.0),
10  TkFilterParameters = cms.PSet(
11  algorithm=cms.string('filter'),
12  maxNormalizedChi2 = cms.double(20.0), #
13  minSiliconLayersWithHits = cms.int32(5), # >= 5
14  minPixelLayersWithHits = cms.int32(2), # >= 2
15  maxD0Significance = cms.double(100.0), # keep most primary tracks
16  minPt = cms.double(0.0), # better for softish events
17  trackQuality = cms.string("any")
18  ),
19  beamSpotLabel = cms.InputTag("offlineBeamSpot"),
20  # label of tracks to be used
21  TrackLabel = cms.InputTag("generalTracks"),
22  useBeamConstraint = cms.bool(False),
23 
24 
25  # clustering
26  TkClusParameters = cms.PSet(
27  algorithm = cms.string('gap'),
28  TkGapClusParameters = cms.PSet(
29  zSeparation = cms.double(0.2)
30  )
31  )
32 )
33 
34