Add properties to settings w/ documentation, c++ loading of filename, and python round-trip test (#3808)

Co-authored-by: Patrick C Shriwise <pshriwise@gmail.com>
Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
This commit is contained in:
Paul Wilson 2026-03-13 16:40:52 -05:00 committed by GitHub
parent 4bda85f17e
commit dd6d31bfae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 129 additions and 4 deletions

View file

@ -115,6 +115,8 @@ extern std::string path_sourcepoint; //!< path to a source file
extern std::string path_statepoint; //!< path to a statepoint file
extern std::string weight_windows_file; //!< Location of weight window file to
//!< load on simulation initialization
extern std::string properties_file; //!< Location of properties file to
//!< load on simulation initialization
// This is required because the c_str() may not be the first thing in
// std::string. Sometimes it is, but it seems libc++ may not be like that