Skip to content
Snippets Groups Projects
Commit c9784a45 authored by John Kenneth Anders's avatar John Kenneth Anders Committed by Atlas Nightlybuild
Browse files

Merge branch '21.0-fix-dcsc' into '21.0'

Fix failure on invalid LumiAccounting data (affected 301915 and 301918)

See merge request atlas/athena!21859

(cherry picked from commit 17869351)

ac49dc79 Fix failure on invalid LumiAccounting data (affected 301915 and 301918)
parent eb2a7158
No related branches found
No related tags found
9 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles,!21940Sweeping !21859 from 21.0 to master. Fix failure on invalid LumiAccounting data (affected 301915 and 301918)
Pipeline #756182 failed
...@@ -48,10 +48,14 @@ class TDAQ_Busy(DCSC_Defect_Global_Variable): ...@@ -48,10 +48,14 @@ class TDAQ_Busy(DCSC_Defect_Global_Variable):
counter=0 counter=0
for since, until, (state,) in events: for since, until, (state,) in events:
if state.Run == 0: continue if state.Run == 0 or state.Run is None: continue
#print state #print state
if state is not None: if state is not None:
deadfrac = 1-state.LiveFraction if state.LiveFraction is None:
deadfrac=1
print 'WARNING: LiveFraction is "None" for', state.Run, state.LumiBlock
else:
deadfrac = 1-state.LiveFraction
if deadfrac < self.deadfraction_threshold: if deadfrac < self.deadfraction_threshold:
continue continue
yield DefectIOV(RunLumi(state.Run, state.LumiBlock), yield DefectIOV(RunLumi(state.Run, state.LumiBlock),
...@@ -65,7 +69,7 @@ class TDAQ_Busy(DCSC_Defect_Global_Variable): ...@@ -65,7 +69,7 @@ class TDAQ_Busy(DCSC_Defect_Global_Variable):
#print counter_max #print counter_max
events = process_iovs(iovs) events = process_iovs(iovs)
for since, until, (state,) in events: for since, until, (state,) in events:
if state is not None: if state is not None and state.Run is not None:
deadfrac = 1-state.LiveFraction deadfrac = 1-state.LiveFraction
if deadfrac < self.deadfraction_threshold: if deadfrac < self.deadfraction_threshold:
continue continue
......
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