Removed n_realizations from TallyScore.

This commit is contained in:
Paul Romano 2012-11-20 14:44:20 -05:00
parent 948bd68cc2
commit 8e5624de8b
2 changed files with 1 additions and 2 deletions

View file

@ -1319,7 +1319,7 @@ contains
if (confidence_intervals) then
! Calculate t-value for confidence intervals
alpha = ONE - CONFIDENCE_LEVEL
t_value = t_percentile(ONE - alpha/TWO, global_tallies(K_ANALOG) % n_realizations - 1)
t_value = t_percentile(ONE - alpha/TWO, n_realizations - 1)
! Adjust sum_sq
global_tallies(:) % sum_sq = t_value * global_tallies(:) % sum_sq

View file

@ -40,7 +40,6 @@ module tally_header
type TallyScore
integer :: n_events = 0
integer :: n_realizations = 0
real(8) :: value = 0.
real(8) :: sum = 0.
real(8) :: sum_sq = 0.