From b0704a674f7c72b1fa6040df3e4165ed5ddf47bd Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 3 Jul 2019 21:47:36 -0500 Subject: [PATCH] Add Tally::set_active method --- include/openmc/tallies/tally.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/openmc/tallies/tally.h b/include/openmc/tallies/tally.h index be7666d5ca..a67204b596 100644 --- a/include/openmc/tallies/tally.h +++ b/include/openmc/tallies/tally.h @@ -31,6 +31,8 @@ public: void set_id(int32_t id); + void set_active(bool active) { active_ = active; } + void set_scores(pugi::xml_node node); void set_scores(const std::vector& scores);