Skip to content
Snippets Groups Projects
Commit 675742ea authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon:
Browse files

Merge branch 'cherry-pick-3166a6a456-master' into 'master'

Sweeping !14570 from 21.0 to master.
Sweeping !14558 from 21.2 to 21.0.Fixing the PATJobTransforms to allow the MCP code to be processed on tier0

See merge request atlas/athena!14687
parents e57486ee 7c6e3d69
1 merge request!20779WIP: Migrate DataQualityTools to ToolHandles
......@@ -135,8 +135,7 @@ if hasattr(runArgs,"outputNTUP_MCPScaleFile"):
from MuonPtCalibNtupleMaker import MuonPtCalibNtupleMaker_Config
MuonPtCalibNtupleMaker_Config.MuonScaleConfig(runArgs.outputNTUP_MCPScaleFile)
#Import D3PD flags before preExec, for convenience
from D3PDMakerConfig.D3PDProdFlags import oldProdFlags
## Pre-exec
if hasattr(runArgs,"preExec"):
......@@ -169,9 +168,14 @@ else:
if hasattr(runArgs,"topOptions"): include(runArgs.topOptions)
else: include( "RecExCommon/RecExCommon_topOptions.py" )
## Make "old style" D3PDs.
for c in SetupOutputDPDs(runArgs, [oldProdFlags]): c()
try:
#Import D3PD flags before preExec, for convenience
from D3PDMakerConfig.D3PDProdFlags import oldProdFlags
## Make "old style" D3PDs.
for c in SetupOutputDPDs(runArgs, [oldProdFlags]): c()
except ImportError:
print "WARNING: Old prod flags could not be included this. Only OK if you're using job transforms without the AtlasAnalysis project."
## Offline prescales (has to be *after* the topOptions)
if hasattr(runArgs,"prescales"):
recoLog.info( '**** DPD offline prescale arguments:' )
......
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