From 81fa63886babd8fec48284fbd801534ca86db2dd Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 25 Sep 2015 10:59:58 +0700 Subject: [PATCH] Get rid of total_score_bins and total_filter_bins datasets in summary. --- docs/source/usersguide/output/summary.rst | 10 ---------- src/summary.F90 | 4 ---- 2 files changed, 14 deletions(-) diff --git a/docs/source/usersguide/output/summary.rst b/docs/source/usersguide/output/summary.rst index 81400c9362..0623693c50 100644 --- a/docs/source/usersguide/output/summary.rst +++ b/docs/source/usersguide/output/summary.rst @@ -273,16 +273,6 @@ The current revision of the summary file format is 1. Name of the tally. -**/tallies/tally /total_score_bins** (*int*) - - Total number of scoring bins for all nuclides. This is used as the size of - second dimension of the tally results array. - -**/tallies/tally /total_filter_bins** (*int*) - - Total number of filter bins accounting for all filters. This is used as the - size of first dimension of the tally results array. - **/tallies/tally /n_filters** (*int*) Number of filters applied to the tally. diff --git a/src/summary.F90 b/src/summary.F90 index 3d3a47a759..cc04599b0e 100644 --- a/src/summary.F90 +++ b/src/summary.F90 @@ -484,10 +484,6 @@ contains ! Write the name for this tally call write_dataset(tally_group, "name", t%name) - ! Write size of each tally - call write_dataset(tally_group, "total_score_bins", t%total_score_bins) - call write_dataset(tally_group, "total_filter_bins", t%total_filter_bins) - ! Write number of filters call write_dataset(tally_group, "n_filters", t%n_filters)