Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 offlinePrimaryVerticesGap = 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 minNdof = cms.double(0.0),
00010 TkFilterParameters = cms.PSet(
00011 algorithm=cms.string('filter'),
00012 maxNormalizedChi2 = cms.double(20.0),
00013 minSiliconLayersWithHits = cms.int32(5),
00014 minPixelLayersWithHits = cms.int32(2),
00015 maxD0Significance = cms.double(100.0),
00016 minPt = cms.double(0.0),
00017 trackQuality = cms.string("any")
00018 ),
00019 beamSpotLabel = cms.InputTag("offlineBeamSpot"),
00020
00021 TrackLabel = cms.InputTag("generalTracks"),
00022 useBeamConstraint = cms.bool(False),
00023
00024
00025
00026 TkClusParameters = cms.PSet(
00027 algorithm = cms.string('gap'),
00028 TkGapClusParameters = cms.PSet(
00029 zSeparation = cms.double(0.2)
00030 )
00031 )
00032 )
00033
00034