Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_CplComp), | intent(in), | optional | :: | d |
function ESMF_CplCompGetInit(d) ! ! !RETURN VALUE: ESMF_INIT_TYPE :: ESMF_CplCompGetInit ! ! !ARGUMENTS: type(ESMF_CplComp), intent(in), optional :: d ! ! !DESCRIPTION: ! Get the initialization status of the Deep class {\tt CplComp}. ! ! The arguments are: ! \begin{description} ! \item[d] ! {\tt ESMF\_CplComp} from which to retrieve status. ! \end{description} ! !EOPI !------------------------------------------------------------------------------ if (present(d)) then ESMF_CplCompGetInit = ESMF_INIT_GET(d) else ESMF_CplCompGetInit = ESMF_INIT_CREATED endif end function ESMF_CplCompGetInit