Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 pixelVertices = cms.EDProducer("PrimaryVertexProducer",
00004 PVSelParameters = cms.PSet(
00005 maxDistanceToBeam = cms.double(2),
00006 ),
00007 verbose = cms.untracked.bool(False),
00008 algorithm = cms.string('AdaptiveVertexFitter'),
00009 useBeamConstraint = cms.bool(False),
00010 minNdof = cms.double(2.0),
00011 TkFilterParameters = cms.PSet(
00012 algorithm=cms.string('filter'),
00013 maxNormalizedChi2 = cms.double(100.0),
00014 maxD0Significance = cms.double(100.0),
00015 minPt = cms.double(0.0),
00016 minPixelLayersWithHits = cms.int32(3),
00017 minSiliconLayersWithHits = cms.int32(3),
00018 trackQuality = cms.string("any")
00019 ),
00020 beamSpotLabel = cms.InputTag("offlineBeamSpot"),
00021 TrackLabel = cms.InputTag("pixelTracks"),
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 TkClusParameters = cms.PSet(
00033 algorithm = cms.string("gap"),
00034 TkGapClusParameters = cms.PSet(
00035 zSeparation = cms.double(0.1)
00036 )
00037 )
00038
00039 )
00040
00041