Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doxygen in EXCH.f, FDLVL.f, FILL_PSETFLD.f, FRZLVL.f, and FRZLVL2.f. #470

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 22 additions & 38 deletions sorc/ncep_post.fd/EXCH.f
Original file line number Diff line number Diff line change
@@ -1,37 +1,21 @@
!> @file
!
!> SUBPROGRAM: EXCH EXCHANGE ONE HALO ROW
!! PRGRMMR: TUCCILLO ORG: IBM
!!
!! ABSTRACT:
!! EXCHANGE ONE HALO ROW
!!
!! PROGRAM HISTORY LOG:
!! 00-01-06 TUCCILLO - ORIGINAL
!!
!! USAGE: CALL EXCH(A)
!! INPUT ARGUMENT LIST:
!! A - ARRAY TO HAVE HALOS EXCHANGED
!!
!! OUTPUT ARGUMENT LIST:
!! A - ARRAY WITH HALOS EXCHANGED
!!
!! OUTPUT FILES:
!! STDOUT - RUN TIME STANDARD OUT.
!!
!! SUBPROGRAMS CALLED:
!! MPI_SENDRECV
!! UTILITIES:
!! NONE
!! LIBRARY:
!! COMMON - CTLBLK.comm
!!
!@PROCESS NOCHECK
!
!--- The 1st line is an inlined compiler directive that turns off -qcheck
! during compilation, even if it's specified as a compiler option in the
! makefile (Tuccillo, personal communication; Ferrier, Feb '02).
!
!> @brief Subroutines that exchange one halo row.
!>
!> These routines are to exchange one halo row.
!>
!> @param[in] A Array to have halos exchanged.
!> @param[out] A Array with halos exchanged.
!>
!> ### Program history log:
!> Date | Programmer | Comments
!> -----|------------|---------
!> 2000-01-06 | Jim Tuccillo | Initial
!>
!> @note The 1st line is an inlined compiler directive that turns off -qcheck
!> during compilation, even if it's specified as a compiler option in the
!> makefile (Tuccillo, personal communication; Ferrier, Feb '02).
!>
!> @author Jim Tuccillo IBM @date 2000-01-06
SUBROUTINE EXCH(A)

use ctlblk_mod, only: num_procs, jend, iup, jsta, idn, mpi_comm_comp, im,&
Expand Down Expand Up @@ -72,11 +56,11 @@ SUBROUTINE EXCH(A)
end

!!@PROCESS NOCHECK
!
!--- The 1st line is an inlined compiler directive that turns off -qcheck
! during compilation, even if it's specified as a compiler option in the
! makefile (Tuccillo, personal communication; Ferrier, Feb '02).
!
!>
!> @note The 1st line is an inlined compiler directive that turns off -qcheck
!> during compilation, even if it's specified as a compiler option in the
!> makefile (Tuccillo, personal communication; Ferrier, Feb '02).
!>
edwardhartnett marked this conversation as resolved.
Show resolved Hide resolved
subroutine exch_f(a)

use ctlblk_mod, only: num_procs, jend, iup, jsta, idn, &
Expand Down
Loading