Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:38:05

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from RecoVertex.PixelVertexFinding.PVClusterComparer_cfi import *
0004 
0005 pixelVertices = cms.EDProducer("PixelVertexProducer",
0006     WtAverage = cms.bool(True),
0007     ZOffset = cms.double(5.0),
0008     beamSpot = cms.InputTag("offlineBeamSpot"),
0009     Verbosity = cms.int32(0),
0010     UseError = cms.bool(True),
0011     TrackCollection = cms.InputTag("pixelTracks"),
0012     ZSeparation = cms.double(0.05),
0013     NTrkMin = cms.int32(2),
0014     Method2 = cms.bool(True),
0015     Finder = cms.string('DivisiveVertexFinder'),
0016     PtMin = cms.double(1.0),
0017     PVcomparer = cms.PSet(
0018        refToPSet_ = cms.string('pvClusterComparer')
0019     )
0020 )