From 9d146a3e0f657a7d02c231a13cdff65b025b0ded Mon Sep 17 00:00:00 2001 From: lewisgross1296 Date: Wed, 10 Aug 2022 15:44:00 -0500 Subject: [PATCH] added openmc_remove_tally_from_tallies to C++ API in tally.py --- openmc/lib/tally.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openmc/lib/tally.py b/openmc/lib/tally.py index df28cb5dca..d839d6ddc5 100644 --- a/openmc/lib/tally.py +++ b/openmc/lib/tally.py @@ -87,6 +87,9 @@ _dll.openmc_tally_set_type.errcheck = _error_handler _dll.openmc_tally_set_writable.argtypes = [c_int32, c_bool] _dll.openmc_tally_set_writable.restype = c_int _dll.openmc_tally_set_writable.errcheck = _error_handler +_dll.openmc_remove_tally_from_tallies.argtypes = [c_int32] +_dll.openmc_remove_tally_from_tallies.restype = None +_dll.openmc_remove_tally_from_tallies.errcheck = _error_handler _dll.tallies_size.restype = c_size_t