CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoPixelVertexing/PixelVertexFinding/python/PixelVertexes_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 pixelVertices = cms.EDProducer("PixelVertexProducer",
00004     WtAverage = cms.bool(True),
00005     ZOffset = cms.double(5.0),
00006     beamSpot = cms.InputTag("offlineBeamSpot"),
00007     Verbosity = cms.int32(0),
00008     UseError = cms.bool(True),
00009     TrackCollection = cms.InputTag("pixelTracks"),
00010     ZSeparation = cms.double(0.05),
00011     NTrkMin = cms.int32(2),
00012     Method2 = cms.bool(True),
00013     Finder = cms.string('DivisiveVertexFinder'),
00014     PtMin = cms.double(1.0)
00015 )
00016 
00017