Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_VMId), | intent(inout) | :: | dest(:) | |||
type(ESMF_VMId), | intent(in) | :: | source(:) | |||
integer, | intent(out), | optional | :: | rc |
subroutine ESMF_VMIdCopy(dest, source, rc) ! ! !ARGUMENTS: type(ESMF_VMId), intent(inout) :: dest(:) type(ESMF_VMId), intent(in) :: source(:) integer, intent(out), optional :: rc ! ! !DESCRIPTION: ! Copy the contents of ESMF_VMId objects. Note that the destination ! objects must have been (deeply) allocated prior to calling this ! copy. ! ! The arguments are: ! \begin{description} ! \item[dest] ! Destination ESMF_VMId object array ! \item[source] ! Source ESMF_VMId object array ! \item[{[rc]}] ! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ integer :: localrc ! local return code integer :: i type(ESMF_Logical) :: tf ! initialize return code; assume routine not implemented localrc = ESMF_RC_NOT_IMPL if (present(rc)) rc = ESMF_RC_NOT_IMPL if (size (dest) /= size (source)) then localrc = ESMF_RC_ARG_SIZE if (ESMF_LogFoundError(localrc, msg='size (dest) /= size (source)', & ESMF_CONTEXT, rcToReturn=rc)) return end if ! Call into the C++ interface do, i=1, size (source) call c_ESMC_VMIdCopy(dest(i), source(i), localrc) if (ESMF_LogFoundError(localrc, ESMF_ERR_PASSTHRU, & ESMF_CONTEXT, rcToReturn=rc)) return end do ! return successfully if (present(rc)) rc = ESMF_SUCCESS end subroutine ESMF_VMIdCopy