Skip to content
Snippets Groups Projects
Commit d05ad98a authored by Edward Moyse's avatar Edward Moyse
Browse files

Merge branch 'cherry-pick-512ed4de78-master' into 'master'

Sweeping !16363 from 21.0 to master.
ATLDQM-508

See merge request atlas/athena!16423
parents 5b300766 19da2eb3
No related branches found
No related tags found
No related merge requests found
...@@ -65,11 +65,11 @@ def recurse(rdir, dqregion, ignorepath, refs=None, displaystring='Draw=PE', disp ...@@ -65,11 +65,11 @@ def recurse(rdir, dqregion, ignorepath, refs=None, displaystring='Draw=PE', disp
dqpar = dqregion.newDQParameter( **dqpargs) dqpar = dqregion.newDQParameter( **dqpargs)
drawstrs = [] drawstrs = []
if not options.normalize: drawstrs.append('NoNorm') if not options.normalize: drawstrs.append('NoNorm')
if options.logy and (cl.startswith('TH1') or cl.startswith('TProfile')): drawstrs.append('LogY') if options.logy and (cl.startswith('TH1') or cl=='TProfile'): drawstrs.append('LogY')
if options.logy and cl.startswith('TH2'): drawstrs.append('LogZ') if options.logy and (cl.startswith('TH2') or cl=='TProfile2D'): drawstrs.append('LogZ')
if cl.startswith('TH1'): drawstrs.append(displaystring) if cl.startswith('TH1'): drawstrs.append(displaystring)
if cl.startswith('TProfile'): drawstrs.append(displaystring) if cl == 'TProfile': drawstrs.append(displaystring)
if cl.startswith('TH2'): drawstrs.append(displaystring2D) if cl.startswith('TH2') or cl=='TProfile2D': drawstrs.append(displaystring2D)
if options.scaleref != 1: drawstrs.append('ScaleRef=%f' % options.scaleref) if options.scaleref != 1: drawstrs.append('ScaleRef=%f' % options.scaleref)
if options.ratio: drawstrs.append('RatioPad') if options.ratio: drawstrs.append('RatioPad')
#if options.ratio: drawstrs.append('Ref2DSignif') #if options.ratio: drawstrs.append('Ref2DSignif')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment