From e8ff21dcef1738eac147792506f73732dfffd131 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 3 Nov 2011 10:20:39 -0400 Subject: [PATCH] Added warning for killing particles with low energy. --- src/physics.f90 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/physics.f90 b/src/physics.f90 index 5faf4e5cc7..4beecb2cf2 100644 --- a/src/physics.f90 +++ b/src/physics.f90 @@ -392,8 +392,8 @@ contains ! check for very low energy if (p % E < 1.0e-100_8) then p % alive = .false. - ! message = "Killing neutron with extremely low energy" - ! call warning(message) + message = "Killing neutron with extremely low energy" + call warning() end if ! Score collision estimator tallies for any macro tallies -- this is done