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 fastPrimaryVertexProducer = cms.EDProducer("FastPrimaryVertexProducer",
0004     beamSpot = cms.InputTag("hltOnlineBeamSpot"),
0005     clusters = cms.InputTag("hltSiPixelClusters"),
0006     jets  = cms.InputTag("hltBLifetimeL25JetsHbb"),
0007     maxZ = cms.double(18),
0008     pixelCPE = cms.string("hltESPPixelCPEGeneric"),
0009     maxSizeX = cms.double(3),
0010     maxDeltaPhi = cms.double(0.2),
0011     clusterLength = cms.double(2.0)
0012 )
0013 
0014