Adjusting UWUW material IDs if needed.

This commit is contained in:
Patrick Shriwise 2021-03-13 17:03:14 -06:00
parent cdcc9181f9
commit 4d58990957
2 changed files with 27 additions and 13 deletions

View file

@ -14,12 +14,15 @@ extern "C" const bool DAGMC_ENABLED;
#include "openmc/position.h"
#include "openmc/xml_interface.h"
class UWUW;
namespace openmc {
namespace model {
extern std::shared_ptr<moab::DagMC> DAG;
}
class DAGUniverse : public Universe {
public:
@ -28,7 +31,8 @@ public:
void initialize(); //!< Sets up the DAGMC instance and OpenMC internals
std::map<int32_t, int32_t> read_uwuw_materials(); //!< Reads UWUW materials and returns an ID map
std::shared_ptr<UWUW>
read_uwuw_materials(); //!< Reads UWUW materials and returns an ID map
// Data Members
std::string filename_;