Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-08-27 22:59:00

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def BeamSpotOnlineShifter(**kwargs):
0004   mod = cms.EDAnalyzer('BeamSpotOnlineShifter',
0005     isHLT = cms.bool(True),
0006     useFullPixel = cms.bool(False),
0007     xShift = cms.double(0),
0008     yShift = cms.double(0),
0009     zShift = cms.double(0),
0010     IOVStartRun = cms.untracked.uint32(1),
0011     IOVStartLumi = cms.untracked.uint32(1),
0012     mightGet = cms.optional.untracked.vstring
0013   )
0014   for k,v in kwargs.items():
0015     setattr(mod, k, v)
0016   return mod