Skip to content

Commit

Permalink
Merge pull request #585 from paulromano/write-summary-by-default
Browse files Browse the repository at this point in the history
Write summary.h5 by default
  • Loading branch information
Will Boyd committed Feb 17, 2016
2 parents fe4666e + f046829 commit 41e3c65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/global.F90
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ module global
type(SetInt) :: sourcepoint_batch

! Various output options
logical :: output_summary = .false.
logical :: output_summary = .true.
logical :: output_xs = .false.
logical :: output_tallies = .true.

Expand Down
4 changes: 2 additions & 2 deletions src/input_xml.F90
Original file line number Diff line number Diff line change
Expand Up @@ -905,8 +905,8 @@ subroutine read_settings_xml()
if (check_for_node(node_output, "summary")) then
call get_node_value(node_output, "summary", temp_str)
temp_str = to_lower(temp_str)
if (trim(temp_str) == 'true' .or. &
trim(temp_str) == '1') output_summary = .true.
if (trim(temp_str) == 'false' .or. &
trim(temp_str) == '0') output_summary = .false.
end if

! Check for cross sections option
Expand Down

0 comments on commit 41e3c65

Please sign in to comment.