21 行
600 B
Fortran
21 行
600 B
Fortran
!Copyright (c) 2013 by https://git.em3d.cn/ under guide of Xiu Li(lixiu@chd.edu.cn)
|
|
!written by Huaifeng Sun(sunhuaifeng@email.sdu.edu.cn) and Xushan Lu(luxushan@gmail.com)
|
|
!Code distribution @ https://git.em3d.cn/
|
|
|
|
!function description
|
|
!this suboutine is used to select and call some suboutine to close some
|
|
!selected files.
|
|
!2016-10-30
|
|
|
|
subroutine CloseRecFiles
|
|
use constantparameters
|
|
implicit none
|
|
integer ii,jj
|
|
select case(RecFlag)
|
|
case('Hz')
|
|
call SubCloseRecFiles('Hz')
|
|
case('HE')
|
|
call SubCloseRecFiles('HE')
|
|
end select
|
|
end subroutine CloseRecFiles
|