From 2d9f18ee6d8829cfb37798e6b8f80b3478d63b2e Mon Sep 17 00:00:00 2001 From: John Derek Chapman <chapman@hep.phy.cam.ac.uk> Date: Thu, 23 Apr 2020 12:26:45 +0000 Subject: [PATCH] Fixing ISF_ProtonAFIIGeant4Selector configuration (ATLASSIM-4518) The ParticlePDG for the `ISF_ProtonAFIIGeant4Selector` was set to 2112 (neutron) instead of 2212 (proton). Should fix ATLASSIM-4518. --- .../python/ISF_SimulationSelectorsConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simulation/ISF/ISF_SimulationSelectors/python/ISF_SimulationSelectorsConfig.py b/Simulation/ISF/ISF_SimulationSelectors/python/ISF_SimulationSelectorsConfig.py index 308544ed0cc1..2295118a60e4 100644 --- a/Simulation/ISF/ISF_SimulationSelectors/python/ISF_SimulationSelectorsConfig.py +++ b/Simulation/ISF/ISF_SimulationSelectors/python/ISF_SimulationSelectorsConfig.py @@ -133,7 +133,7 @@ def getNeutralGeant4Selector(name="ISF_NeutralGeant4Selector", **kwargs): def getProtonAFIIGeant4Selector(name="ISF_ProtonAFIIGeant4Selector", **kwargs): kwargs.setdefault('MaxMom' , 750) - kwargs.setdefault('ParticlePDG' , 2112) + kwargs.setdefault('ParticlePDG' , 2212) kwargs.setdefault('Simulator' , 'ISF_AFIIGeant4SimSvc') return CfgMgr.ISF__KinematicSimSelector(name, **kwargs) -- GitLab