Something weird happened during rebase - add back some lines which got removed

This commit is contained in:
helen-brooks 2022-05-25 15:10:50 +01:00
parent 4d52218178
commit 82a7ccb16d

View file

@ -48,6 +48,11 @@ int main(int argc, char* argv[])
openmc::model::universes.clear();
openmc::model::universe_map.clear();
// Update materials (emulate an external program)
for (auto& mat_ptr : openmc::model::materials) {
mat_ptr->set_temperature(300);
}
// Create new DAGMC universe
openmc::model::universes.push_back(
std::make_unique<openmc::DAGUniverse>(dag_ptr));