Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltPhase2L3MuonPixelVertices = cms.EDProducer("PixelVertexProducer",
0004     Finder = cms.string('DivisiveVertexFinder'),
0005     Method2 = cms.bool(True),
0006     NTrkMin = cms.int32(2),
0007     PVcomparer = cms.PSet(
0008         refToPSet_ = cms.string('hltPhase2L3MuonPSetPvClusterComparerForIT')
0009     ),
0010     PtMin = cms.double(1.0),
0011     TrackCollection = cms.InputTag("hltPhase2L3MuonPixelTracks"),
0012     UseError = cms.bool(True),
0013     Verbosity = cms.int32(0),
0014     WtAverage = cms.bool(True),
0015     ZOffset = cms.double(5.0),
0016     ZSeparation = cms.double(0.005),
0017     beamSpot = cms.InputTag("hltOnlineBeamSpot")
0018 )