From ff9b5fd74141b0f24676136f5ebec7a69f347ac1 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Fri, 13 Jan 2023 10:24:05 -0600 Subject: [PATCH] Adding not about moving the mesh cdf in the future. --- include/openmc/distribution_spatial.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/openmc/distribution_spatial.h b/include/openmc/distribution_spatial.h index 78fb316db2..8840b05396 100644 --- a/include/openmc/distribution_spatial.h +++ b/include/openmc/distribution_spatial.h @@ -115,6 +115,8 @@ public: private: int32_t mesh_idx_ {C_NONE}; double total_strength_ {0.0}; + // TODO: move to an independent class in the future that's similar + // to a discrete distribution without outcomes std::vector mesh_CDF_; std::vector mesh_strengths_; };