1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import FWCore.ParameterSet.Config as cms
hltPhase2L3MuonPixelVertices = cms.EDProducer("PixelVertexProducer",
Finder = cms.string('DivisiveVertexFinder'),
Method2 = cms.bool(True),
NTrkMin = cms.int32(2),
PVcomparer = cms.PSet(
refToPSet_ = cms.string('hltPhase2L3MuonPSetPvClusterComparerForIT')
),
PtMin = cms.double(1.0),
TrackCollection = cms.InputTag("hltPhase2L3MuonPixelTracks"),
UseError = cms.bool(True),
Verbosity = cms.int32(0),
WtAverage = cms.bool(True),
ZOffset = cms.double(5.0),
ZSeparation = cms.double(0.005),
beamSpot = cms.InputTag("hltOnlineBeamSpot")
)
|