From ba80c556a3c669e2941ca6edf652940a8b0c5d1c Mon Sep 17 00:00:00 2001 From: John Chapman <jchapman@cern.ch> Date: Mon, 20 Sep 2021 14:50:16 +0200 Subject: [PATCH] Fix SimKernel name for OutputStream AcceptAlgs --- .../SimuJobTransforms/python/CommonSimulationSteering.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Simulation/SimuJobTransforms/python/CommonSimulationSteering.py b/Simulation/SimuJobTransforms/python/CommonSimulationSteering.py index f4ecb2cffe02..b655edbd971f 100644 --- a/Simulation/SimuJobTransforms/python/CommonSimulationSteering.py +++ b/Simulation/SimuJobTransforms/python/CommonSimulationSteering.py @@ -53,10 +53,7 @@ def CommonSimulationCfg(ConfigFlags, log): # add the ISF_MainConfig from ISF_Config.ISF_MainConfigNew import ISF_KernelCfg cfg.merge(ISF_KernelCfg(ConfigFlags)) - if 'MT' in ConfigFlags.Sim.ISF.Simulator: - AcceptAlgName = 'SimKernelMT' - else: - AcceptAlgName = 'SimKernel' + AcceptAlgName = 'ISF_Kernel_' + ConfigFlags.Sim.ISF.Simulator else: AcceptAlgName = 'G4AtlasAlg' #add the G4AtlasAlg -- GitLab