Skip to content
Snippets Groups Projects
Commit 1cce69dc authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'master_IDTIDE_ConfigFix' into 'master'

Patch to ESDtoDPD configuration for IDTIDE

See merge request !39378
parents 2bcd1f6a 791174fd
No related branches found
No related tags found
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,!39378Patch to ESDtoDPD configuration for IDTIDE
...@@ -38,19 +38,25 @@ rec.DPDMakerScripts.append(SetupOutputDPDs(runArgs,listOfFlags)) ...@@ -38,19 +38,25 @@ rec.DPDMakerScripts.append(SetupOutputDPDs(runArgs,listOfFlags))
rec.OutputFileNameForRecoStep="ESDtoDPD" rec.OutputFileNameForRecoStep="ESDtoDPD"
# New-style config
from AthenaConfiguration.AllConfigFlags import ConfigFlags
## Input ## Input
if hasattr(runArgs,"inputFile"): athenaCommonFlags.FilesInput.set_Value_and_Lock( runArgs.inputFile ) if hasattr(runArgs,"inputFile"): athenaCommonFlags.FilesInput.set_Value_and_Lock( runArgs.inputFile )
if hasattr(runArgs,"inputBSFile"): if hasattr(runArgs,"inputBSFile"):
globalflags.InputFormat.set_Value_and_Lock('bytestream') globalflags.InputFormat.set_Value_and_Lock('bytestream')
athenaCommonFlags.BSRDOInput.set_Value_and_Lock( runArgs.inputBSFile ) athenaCommonFlags.BSRDOInput.set_Value_and_Lock( runArgs.inputBSFile )
ConfigFlags.Input.Files = athenaCommonFlags.BSRDOInput()
if hasattr(runArgs,"inputRDOFile"): if hasattr(runArgs,"inputRDOFile"):
rec.readRDO.set_Value_and_Lock( True ) rec.readRDO.set_Value_and_Lock( True )
globalflags.InputFormat.set_Value_and_Lock('pool') globalflags.InputFormat.set_Value_and_Lock('pool')
athenaCommonFlags.PoolRDOInput.set_Value_and_Lock( runArgs.inputRDOFile ) athenaCommonFlags.PoolRDOInput.set_Value_and_Lock( runArgs.inputRDOFile )
ConfigFlags.Input.Files = athenaCommonFlags.PoolRDOInput()
if hasattr(runArgs,"inputESDFile"): if hasattr(runArgs,"inputESDFile"):
globalflags.InputFormat.set_Value_and_Lock('pool') globalflags.InputFormat.set_Value_and_Lock('pool')
rec.readESD.set_Value_and_Lock( True ) rec.readESD.set_Value_and_Lock( True )
athenaCommonFlags.PoolESDInput.set_Value_and_Lock( runArgs.inputESDFile ) athenaCommonFlags.PoolESDInput.set_Value_and_Lock( runArgs.inputESDFile )
ConfigFlags.Input.Files = athenaCommonFlags.PoolESDInput()
if hasattr(runArgs,"inputTAGFile"): if hasattr(runArgs,"inputTAGFile"):
rec.readTAG.set_Value_and_Lock( True ) rec.readTAG.set_Value_and_Lock( True )
rec.readESD.set_Value_and_Lock( True ) rec.readESD.set_Value_and_Lock( True )
......
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