Skip to content

Commit

Permalink
extend x-axis range of "vs-lumi" harvesting outputs in HLT online-DQM
Browse files Browse the repository at this point in the history
  • Loading branch information
missirol committed May 14, 2023
1 parent dd0c3bd commit 11b03ba
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 11b03ba

Please sign in to comment.