Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_ConfigClass), | intent(inout) | :: | s | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_ConfigClassValidate(s,rc) ! ! !ARGUMENTS: type(ESMF_ConfigClass), intent(inout) :: s integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Validates that the {\tt Configclass} is internally consistent. ! ! The arguments are: ! \begin{description} ! \item [s] ! {\tt ESMF\_ConfigClass} to validate. ! \item [{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if the {\tt localfield} ! is valid. ! \end{description} ! !EOPI ! Initialize return code; assume routine not implemented if (present(rc)) rc = ESMF_RC_NOT_IMPL ESMF_INIT_CHECK_SET_SHALLOW(ESMF_ConfigClassGetInit, ESMF_ConfigClassInit,s) ! return success if(present(rc)) then rc = ESMF_SUCCESS endif end subroutine ESMF_ConfigClassValidate