diff --git a/Reconstruction/RecExample/RecExConfig/python/RecFlags.py b/Reconstruction/RecExample/RecExConfig/python/RecFlags.py index 4fda2796bfa236d248d643a9d237e01a87137fcd..a1bcccfc2549927b9935c6294a9dd12c6302baa9 100755 --- a/Reconstruction/RecExample/RecExConfig/python/RecFlags.py +++ b/Reconstruction/RecExample/RecExConfig/python/RecFlags.py @@ -472,7 +472,7 @@ class doWriteDPD(JobProperty): """ statusOn=True allowedTypes=['bool'] - StoredValue=True + StoredValue=False # class doWriteBS(JobProperty): diff --git a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py index f7c75f371ae63fc47119595cdaa35dc4c9e6fd6d..48c156f330b15e2de9e7e02ab96136de582aa40b 100644 --- a/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py +++ b/Reconstruction/RecJobTransforms/share/skeleton.RAWtoALL_tf.py @@ -94,7 +94,14 @@ if hasattr(runArgs,"outputNTUP_MUONCALIBFile"): if hasattr(runArgs, 'outputTXT_JIVEXMLTGZFile'): 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=[] try: from PrimaryDPDMaker.PrimaryDPDFlags import primDPD @@ -105,9 +112,6 @@ except ImportError: from RecJobTransforms.DPDUtils import SetupOutputDPDs 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 rec.OutputFileNameForRecoStep="RAWtoALL"