Skip to content
Snippets Groups Projects
Commit 71817f76 authored by James Beacham's avatar James Beacham
Browse files

Merge branch '21.0-recoFlag-for-trigMetaData' into '21.0'

Setting value of reco flag for trigger metadata in DESD/DAOD production (ATR-17519)

See merge request atlas/athena!9721

Former-commit-id: 87938b084e89c3c379cd2239944a6aa43a1d7a59
parents 997e4b5a c7c9ec21
No related branches found
No related tags found
No related merge requests found
...@@ -472,7 +472,7 @@ class doWriteDPD(JobProperty): ...@@ -472,7 +472,7 @@ class doWriteDPD(JobProperty):
""" """
statusOn=True statusOn=True
allowedTypes=['bool'] allowedTypes=['bool']
StoredValue=True StoredValue=False
# #
class doWriteBS(JobProperty): class doWriteBS(JobProperty):
......
...@@ -94,7 +94,14 @@ if hasattr(runArgs,"outputNTUP_MUONCALIBFile"): ...@@ -94,7 +94,14 @@ if hasattr(runArgs,"outputNTUP_MUONCALIBFile"):
if hasattr(runArgs, 'outputTXT_JIVEXMLTGZFile'): if hasattr(runArgs, 'outputTXT_JIVEXMLTGZFile'):
jp.Rec.doJiveXML.set_Value_and_Lock(True) jp.Rec.doJiveXML.set_Value_and_Lock(True)
# DESD and DRAW # DESD, DAOD and DRAW
DRAWOutputs = [ prop for prop in dir(runArgs) if prop.startswith('outputDRAW') and prop.endswith('File')]
DAODOutputs = [ prop for prop in dir(runArgs) if prop.startswith('outputDAOD') and prop.endswith('File')]
DESDOutputs = [ prop for prop in dir(runArgs) if prop.startswith('outputDESD') and prop.endswith('File')]
if len(DESDOutputs) > 0 or len(DAODOutputs) > 0:
rec.doWriteDPD.set_Value_and_Lock(True)
listOfFlags=[] listOfFlags=[]
try: try:
from PrimaryDPDMaker.PrimaryDPDFlags import primDPD from PrimaryDPDMaker.PrimaryDPDFlags import primDPD
...@@ -105,9 +112,6 @@ except ImportError: ...@@ -105,9 +112,6 @@ except ImportError:
from RecJobTransforms.DPDUtils import SetupOutputDPDs from RecJobTransforms.DPDUtils import SetupOutputDPDs
rec.DPDMakerScripts.append(SetupOutputDPDs(runArgs,listOfFlags)) rec.DPDMakerScripts.append(SetupOutputDPDs(runArgs,listOfFlags))
DRAWOutputs = [ prop for prop in dir(runArgs) if prop.startswith('outputDRAW') and prop.endswith('File')]
# Need to handle this properly in RecExCommon top options # Need to handle this properly in RecExCommon top options
rec.OutputFileNameForRecoStep="RAWtoALL" rec.OutputFileNameForRecoStep="RAWtoALL"
......
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