added global object to cmfd utils and modified dependency of file

This commit is contained in:
Bryan Herman 2011-10-28 19:13:24 -04:00
parent be6a232352
commit 85056be15e
2 changed files with 13 additions and 1 deletions

View file

@ -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

View file

@ -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