From 600ad9a6e6395acd543c13e0743a5a008ca5fa68 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Tue, 16 Nov 2021 12:01:22 -0600 Subject: [PATCH] Removing dagmc from settings. --- src/settings.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/settings.cpp b/src/settings.cpp index 3b507fa4ef..b62091571e 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -43,7 +43,6 @@ bool check_overlaps {false}; bool cmfd_run {false}; bool confidence_intervals {false}; bool create_fission_neutrons {true}; -bool dagmc {false}; bool delayed_photon_scaling {true}; bool entropy_on {false}; bool event_based {false}; @@ -247,17 +246,6 @@ void read_settings_xml() verbosity = std::stoi(get_node_value(root, "verbosity")); } - // DAGMC geometry check - if (check_for_node(root, "dagmc")) { - dagmc = get_node_value_bool(root, "dagmc"); - } - -#ifndef DAGMC - if (dagmc) { - fatal_error("DAGMC mode unsupported for this build of OpenMC"); - } -#endif - // To this point, we haven't displayed any output since we didn't know what // the verbosity is. Now that we checked for it, show the title if necessary if (mpi::master) {