File indexing completed on 2025-02-07 14:23:41
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def PSMonitor(*args, **kwargs):
0004 mod = cms.EDProducer('PSMonitor',
0005 ugtBXInputTag = cms.InputTag('hltGtStage2Digis'),
0006 folderName = cms.string('HLT/PSMonitoring'),
0007 histoPSet = cms.PSet(
0008 psColumnPSet = cms.PSet(
0009 nbins = cms.int32(8)
0010 ),
0011 lsPSet = cms.PSet(
0012 nbins = cms.int32(2500)
0013 )
0014 ),
0015 mightGet = cms.optional.untracked.vstring
0016 )
0017 for a in args:
0018 mod.update_(a)
0019 mod.update_(kwargs)
0020 return mod