Within the hadronic processes for the major preset physics lists (QGSP, FTFP, etc.) except for QBBC, there is a severe instantaneous decrease in the neutron elastic scattering cross section for all elements. The severity of it varies by the specific element, but for some such as Carbon, the 32.7 MeV point results in an instantaneous cross-section decrease of over 50%. I have not yet confirmed, but supposedly the correct cross-sections are used for the QBBC Physics List. This result can be seen clearly by reading cross sections from the extended hadronic example, Hadr00. Discovery of problem elaborated on in the Geant4 Hadronic Processes forum along with ps files showing examples: http://hypernews.slac.stanford.edu/HyperNews/geant4/get/hadronprocess/1341.html
I have narrowed this down to a bug in the G4ChipsNeutronElasticXS class. Actually fixing it may take a while, as the code is rather non-intuitive.
I have been looking at this issue for QGSP_BIC_HP. For this list the neutron elastic cross section is the Gheisha version for the energy range 20-32.7 from tables in G4HadronCrossSection.cc. Below 20 MeV the HP cross section is used.
I believe the problem is that the test in G4ChipsNeutronElasticXS::IsIsoApplicable is wrong. It should test for a neutron. Line 138 should be: // if (particle == G4Proton::Proton() ) return true; if (particle == G4Neutron::Neutron() ) return true; With this change the Chips cross section are used instead of defaulting to the old Gheisha ones.
Witold Pokorski fixed this earlier this month. The fix will be in the patch to 10.1 which will come out some time next week.