Skip to content
Snippets Groups Projects
Commit d38b4aeb authored by Peter Onyisi's avatar Peter Onyisi
Browse files

Set identical properties for all old-style MonManagers

parent bc37a4dc
No related branches found
No related tags found
No related merge requests found
...@@ -263,6 +263,18 @@ if DQMonFlags.doMonitoring(): ...@@ -263,6 +263,18 @@ if DQMonFlags.doMonitoring():
if isinstance(_, AthenaMonManager): if isinstance(_, AthenaMonManager):
toolset.update(_.AthenaMonTools) toolset.update(_.AthenaMonTools)
# in MT the initialization can be in random order ... force all managers to have common setup
_.FileKey = DQMonFlags.monManFileKey()
_.ManualDataTypeSetup = DQMonFlags.monManManualDataTypeSetup()
_.DataType = DQMonFlags.monManDataType()
_.Environment = DQMonFlags.monManEnvironment()
_.LBsInLowStatInterval = DQMonFlags.monManLBsInLowStatInterval()
_.LBsInMediumStatInterval = DQMonFlags.monManLBsInMediumStatInterval()
_.LBsInHighStatInterval = DQMonFlags.monManLBsInHighStatInterval()
_.ManualRunLBSetup = DQMonFlags.monManManualRunLBSetup()
_.Run = DQMonFlags.monManRun()
_.LumiBlock = DQMonFlags.monManLumiBlock()
for tool in toolset: for tool in toolset:
# stop lumi access if we're in MC or enableLumiAccess == False # stop lumi access if we're in MC or enableLumiAccess == False
if 'EnableLumi' in dir(tool): if 'EnableLumi' in dir(tool):
......
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