From 93a32e8a5a2b51b70d803632307be406bb244786 Mon Sep 17 00:00:00 2001 From: Wim Haeck Date: Thu, 8 Aug 2024 11:15:18 -0600 Subject: [PATCH] Small documentation update --- src/dryad/format/endf/createReactionProduct.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dryad/format/endf/createReactionProduct.hpp b/src/dryad/format/endf/createReactionProduct.hpp index 61ecbb1..3e83101 100644 --- a/src/dryad/format/endf/createReactionProduct.hpp +++ b/src/dryad/format/endf/createReactionProduct.hpp @@ -49,6 +49,7 @@ namespace endf { * @param[in] projectile the projectile identifier * @param[in] target the target identifier * @param[in] product the MF26 reaction product data + * @param[in] mt the ENDF MT number */ ReactionProduct createReactionProduct( const id::ParticleID& projectile, const id::ParticleID& target, @@ -66,6 +67,7 @@ namespace endf { case 1 : { // ENDF/B-VIII.0 erroneously uses 11 for the gamma identifier in MF26 MT527 + // LAW = 1 is only used for the outgoing gamma, the electron uses LAW = 8 if ( ( mt == 527 ) && ( id == "e-" ) ) { id = createProductIdentifier( 0, 0, false );