From 85056be15e4011d4af775481eb8cd119373580c4 Mon Sep 17 00:00:00 2001 From: Bryan Herman Date: Fri, 28 Oct 2011 19:13:24 -0400 Subject: [PATCH] added global object to cmfd utils and modified dependency of file --- src/DEPENDENCIES | 2 ++ src/cmfd_utils.f90 | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/DEPENDENCIES b/src/DEPENDENCIES index 94700e9325..1f0f091cc5 100644 --- a/src/DEPENDENCIES +++ b/src/DEPENDENCIES @@ -1,3 +1,5 @@ +cmfd_utils.o: global.o + cross_section.o: constants.o cross_section.o: cross_section_header.o cross_section.o: datatypes.o diff --git a/src/cmfd_utils.f90 b/src/cmfd_utils.f90 index e5dd9fff61..e2b2ff753c 100644 --- a/src/cmfd_utils.f90 +++ b/src/cmfd_utils.f90 @@ -1,6 +1,8 @@ module cmfd_utils - implicit none + use global + + implicit none contains @@ -39,4 +41,12 @@ contains end function get_matrix_idx +!=============================================================================== +! PRINT_CMFD is a test routine to check if info from tally is being accessed +!=============================================================================== + + subroutine print_cmfd() + + end subroutine print_cmfd + end module cmfd_utils