Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltDeepTrackVertexArbitratorPF = cms.EDProducer("CandidateVertexArbitrator",
0004     beamSpot = cms.InputTag("hltOnlineBeamSpot"),
0005     dLenFraction = cms.double(0.333),
0006     dRCut = cms.double(0.4),
0007     distCut = cms.double(0.04),
0008     fitterRatio = cms.double(0.25),
0009     fitterSigmacut = cms.double(3),
0010     fitterTini = cms.double(256),
0011     maxTimeSignificance = cms.double(3.5),
0012     mightGet = cms.optional.untracked.vstring,
0013     primaryVertices = cms.InputTag("offlinePrimaryVertices"),
0014     secondaryVertices = cms.InputTag("hltDeepInclusiveSecondaryVerticesPF"),
0015     sigCut = cms.double(5),
0016     trackMinLayers = cms.int32(4),
0017     trackMinPixels = cms.int32(1),
0018     trackMinPt = cms.double(1.4),
0019     tracks = cms.InputTag("particleFlowTmp")
0020 )