SUBROUTINE KO_IFPT ( rimnem, cimnem, iret ) C************************************************************************ C* KO_IFPT * C* * C* This subroutine prints the interface values arrays to the decoder * C* log if the verbosity level is 3 or higher. * C* * C* KO_IFPT ( RIMNEM, CIMNEM, IRET ) * C* * C* Input parameters: * C* RIMNEM (*) CHAR* Interface mnemonics for reals * C* CIMNEM (*) CHAR* Interface mnemonics for chars * C* * C* Output parameters: * C* IRET INTEGER Return code * C* 0 = normal return * C* * C** * C* Log: * C* C. Caruso Magee/NCEP 07/07 * C************************************************************************ INCLUDE 'GEMPRM.PRM' INCLUDE 'kocmn.cmn' C* CHARACTER*(*) rimnem (*), cimnem (*) C----------------------------------------------------------------------- iret = 0 loglvl = 3 C C* Print all of the character interface values C* that are not missing. C CALL DC_IFPC ( 3, cimnem, civals, NCIMN, ierfpc ) C C* Print all of the real single-level interface values C* that are not missing. C CALL DC_IFPR ( 3, rimnem, rivals, NRIMN, ierfpr ) C RETURN END