Skip to content
Snippets Groups Projects
Commit c5a1c02e authored by Rafal Bielski's avatar Rafal Bielski :wave:
Browse files

Set ConfigFlags.Input.Files in skeleton.HLTMon_tf.py

parent 80f95a76
6 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,!39104Set ConfigFlags.Input.Files in skeleton.HLTMon_tf.py
......@@ -11,6 +11,7 @@ monLog.info('************* Starting HLTMon transform ***********')
from AthenaCommon.GlobalFlags import globalflags
from RecExConfig.RecFlags import rec
from AthenaCommon.AthenaCommonFlags import athenaCommonFlags
from AthenaConfiguration.AllConfigFlags import ConfigFlags
#Common job options disable most RecExCommon by default. Re-enable below on demand
rec.doWriteESD=False
......@@ -44,6 +45,7 @@ if hasattr(runArgs,"inputBSFile"):
rec.doAOD=True
globalflags.InputFormat.set_Value_and_Lock('bytestream')
athenaCommonFlags.BSRDOInput.set_Value_and_Lock( runArgs.inputBSFile )
ConfigFlags.Input.Files = athenaCommonFlags.BSRDOInput()
if hasattr(runArgs,"inputAODFile"):
rec.readAOD.set_Value_and_Lock(True)
......@@ -51,6 +53,7 @@ if hasattr(runArgs,"inputAODFile"):
globalflags.InputFormat.set_Value_and_Lock('pool')
athenaCommonFlags.PoolAODInput.set_Value_and_Lock( runArgs.inputAODFile )
ConfigFlags.Input.Files = athenaCommonFlags.PoolAODInput()
if hasattr(runArgs,"outputHIST_TEMPFile"):
rec.doMonitoring.set_Value_and_Lock(False)
......
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