subroutine ESMF_CplCompSet(cplcomp, keywordEnforcer, config, configFile, &
clock, name, rc)
!
! !ARGUMENTS:
type(ESMF_CplComp), intent(inout) :: cplcomp
type(ESMF_KeywordEnforcer), optional:: keywordEnforcer ! must use keywords below
type(ESMF_Config), intent(in), optional :: config
character(len=*), intent(in), optional :: configFile
type(ESMF_Clock), intent(in), optional :: clock
character(len=*), intent(in), optional :: name
integer, intent(out), optional :: rc
!
! !STATUS:
! \begin{itemize}
! \item\apiStatusCompatibleVersion{5.2.0r}
! \end{itemize}
!
! !DESCRIPTION:
! Sets or resets information about an {\tt ESMF\_CplComp}.
!
! The arguments are:
! \begin{description}
! \item[cplcomp]
! {\tt ESMF\_CplComp} to change.
! \item[{[name]}]
! Set the name of the {\tt ESMF\_CplComp}.
! \item[{[config]}]
! An already-created {\tt ESMF\_Config} object to be attached to the
! component.
! If both {\tt config} and {\tt configFile} arguments are specified,
! {\tt config} takes priority.
! \item[{[configFile]}]
! The filename of an {\tt ESMF\_Config} format file.
! If specified, a new {\tt ESMF\_Config} object is created and attached to the
! component. The {\tt configFile} file is opened and associated
! with the new config object.
! If both {\tt config} and {\tt configFile} arguments are specified,
! {\tt config} takes priority.
! \item[{[clock]}]
! Set the private clock for this {\tt ESMF\_CplComp}.
! \item[{[rc]}]
! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.
! \end{description}
!
!EOP
!------------------------------------------------------------------------------
integer :: localrc ! local return code
! Initialize return code; assume routine not implemented
if (present(rc)) rc = ESMF_RC_NOT_IMPL
localrc = ESMF_RC_NOT_IMPL
ESMF_INIT_CHECK_DEEP(ESMF_CplCompGetInit,cplcomp,rc)
ESMF_INIT_CHECK_DEEP(ESMF_ConfigGetInit,config,rc)
ESMF_INIT_CHECK_DEEP(ESMF_ClockGetInit,clock,rc)
if (cplcomp%isNamedAlias .and. present(name)) then
! set NamedAlias name
cplcomp%name = trim(name)
! call Comp method (without name)
call ESMF_CompSet(cplcomp%compp, clock=clock, &
configFile=configFile, config=config, rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
else
! call Comp method
call ESMF_CompSet(cplcomp%compp, name=name, clock=clock, &
configFile=configFile, config=config, rc=localrc)
if (ESMF_LogFoundError(localrc, &
ESMF_ERR_PASSTHRU, &
ESMF_CONTEXT, rcToReturn=rc)) return
endif
! return successfully
if (present(rc)) rc = ESMF_SUCCESS
end subroutine ESMF_CplCompSet