Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-11-23 03:27:53

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def BeamSpotOnlineShifter(*args, **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 a in args:
0015     mod.update_(a)
0016   mod.update_(kwargs)
0017   return mod