Merge pull request #311 from paulromano/plot-nuclide-tally-bug

Don't read tallies.xml when OpenMC is run in plotting mode.
This commit is contained in:
walshjon 2014-09-05 15:20:22 -04:00
commit 489b6a64eb

View file

@ -33,10 +33,10 @@ contains
subroutine read_input_xml()
call read_settings_xml()
if ((run_mode /= MODE_PLOTTING)) call read_cross_sections_xml()
if (run_mode /= MODE_PLOTTING) call read_cross_sections_xml()
call read_geometry_xml()
call read_materials_xml()
call read_tallies_xml()
if (run_mode /= MODE_PLOTTING) call read_tallies_xml()
if (cmfd_run) call configure_cmfd()
end subroutine read_input_xml