Skip to content

Commit

Permalink
Merge pull request #41666 from missirol/fix_hltOnlineDQMLumiRanges_131X
Browse files Browse the repository at this point in the history
extend x-axis range of "vs-lumi" harvesting outputs in HLT online-DQM [`13_1_X`]
  • Loading branch information
cmsbuild authored May 15, 2023
2 parents 7339c2c + 11b03ba commit 774ffd8
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions DQM/Integration/python/clients/hlt_dqm_clientPB-live_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@
process.fastTimerServiceClient.onlineLumiME = dict(
folder = 'HLT/LumiMonitoring',
name = 'lumiVsLS',
nbins = 5000,
nbins = 6000,
xmin = 0,
xmax = 20000
xmax = 30000,
)

# ThroughputService client
Expand All @@ -63,13 +63,10 @@
folder = cms.string("HLT/PSMonitoring"),
name = cms.string("psColumnVSlumi"),
doXaxis = cms.bool( True ),
nbinsX = cms.int32( 5000),
xminX = cms.double( 0.),
xmaxX = cms.double(20000.),
nbinsX = cms.int32( 6000 ),
xminX = cms.double( 0. ),
xmaxX = cms.double( 30000. ),
doYaxis = cms.bool( False ),
nbinsY = cms.int32 ( 8),
xminY = cms.double( 0.),
xmaxY = cms.double( 8.),
),
me1 = cms.PSet(
folder = cms.string("HLT/LumiMonitoring"),
Expand Down

0 comments on commit 774ffd8

Please sign in to comment.