Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-26 05:06:22

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def BeamSpotOnlineProducer(*args, **kwargs):
0004   mod = cms.EDProducer('BeamSpotOnlineProducer',
0005     changeToCMSCoordinates = cms.bool(False),
0006     maxZ = cms.double(40),
0007     setSigmaZ = cms.double(-1),
0008     beamMode = cms.untracked.uint32(11),
0009     src = cms.InputTag('hltScalersRawToDigi'),
0010     gtEvmLabel = cms.InputTag(''),
0011     maxRadius = cms.double(2),
0012     useTransientRecord = cms.bool(False),
0013     mightGet = cms.optional.untracked.vstring
0014   )
0015   for a in args:
0016     mod.update_(a)
0017   mod.update_(kwargs)
0018   return mod