Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

extend x-axis range of "vs-lumi" harvesting outputs in HLT online-DQM [13_1_X] #41666

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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