From 672cc73b0f604a1f4d0d14903d0d7fe3fec5dcf9 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 26 Oct 2011 12:40:20 -0400 Subject: [PATCH] Removed tallies_global variable from global module. --- src/global.f90 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/global.f90 b/src/global.f90 index c67616f2ed..d42e40b35e 100644 --- a/src/global.f90 +++ b/src/global.f90 @@ -29,7 +29,6 @@ module global type(xsData), allocatable, target :: xsdatas(:) type(StructuredMesh), allocatable, target :: meshes(:) type(TallyObject), allocatable, target :: tallies(:) - type(TallyObject), allocatable, target :: tallies_global(:) ! Size of main arrays integer :: n_cells ! # of cells @@ -39,7 +38,6 @@ module global integer :: n_materials ! # of materials integer :: n_meshes ! # of structured meshes integer :: n_tallies ! # of tallies - integer :: n_tallies_global ! # of global tallies ! These dictionaries provide a fast lookup mechanism -- the key is the ! user-specified identifier and the value is the index in the corresponding @@ -67,7 +65,7 @@ module global ! Tally map structure type(TallyMap), allocatable :: tally_maps(:) - ! unionized energy grid + ! Unionized energy grid integer :: n_grid ! number of points on unionized grid real(8), allocatable :: e_grid(:) ! energies on unionized grid @@ -92,6 +90,7 @@ module global real(8) :: keff real(8) :: keff_std + ! Flag for turning tallies on logical :: tallies_on ! Parallel processing variables