From d1366c05450a6bb65ec3566012f2b7a221d94b55 Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Thu, 2 May 2024 06:52:39 -0500 Subject: [PATCH] Update random_dist.h comment to be less specific (#2991) --- include/openmc/random_dist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/openmc/random_dist.h b/include/openmc/random_dist.h index 4c9ab3c677..0fb186edca 100644 --- a/include/openmc/random_dist.h +++ b/include/openmc/random_dist.h @@ -48,9 +48,9 @@ extern "C" double maxwell_spectrum(double T, uint64_t* seed); extern "C" double watt_spectrum(double a, double b, uint64_t* seed); //============================================================================== -//! Samples an energy from the Gaussian energy-dependent fission distribution. +//! Samples an energy from the Gaussian distribution. //! -//! Samples from a Normal distribution with a given mean and standard deviation +//! Samples from a normal distribution with a given mean and standard deviation //! The PDF is defined as s(x) = (1/2*sigma*sqrt(2) * e-((mu-x)/2*sigma)^2 //! Its sampled according to //! http://www-pdg.lbl.gov/2009/reviews/rpp2009-rev-monte-carlo-techniques.pdf