Skip to content
Snippets Groups Projects
Commit 2d9f18ee authored by John Derek Chapman's avatar John Derek Chapman
Browse files

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.
parent e580517e
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
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