CPLR_SetServices Subroutine

public subroutine CPLR_SetServices(cpl, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_CplComp) :: cpl
integer, intent(out) :: rc

Calls

proc~~cplr_setservices~~CallsGraph proc~cplr_setservices CPLR_SetServices proc~esmf_cplcompsetentrypoint ESMF_CplCompSetEntryPoint proc~cplr_setservices->proc~esmf_cplcompsetentrypoint c_esmc_setentrypoint c_esmc_setentrypoint proc~esmf_cplcompsetentrypoint->c_esmc_setentrypoint proc~esmf_cplcompgetinit ESMF_CplCompGetInit proc~esmf_cplcompsetentrypoint->proc~esmf_cplcompgetinit proc~esmf_imerr ESMF_IMErr proc~esmf_cplcompsetentrypoint->proc~esmf_imerr proc~esmf_initcheckdeep ESMF_InitCheckDeep proc~esmf_imerr->proc~esmf_initcheckdeep proc~esmf_logfounderror ESMF_LogFoundError proc~esmf_imerr->proc~esmf_logfounderror esmf_breakpoint esmf_breakpoint proc~esmf_logfounderror->esmf_breakpoint proc~esmf_logrc2msg ESMF_LogRc2Msg proc~esmf_logfounderror->proc~esmf_logrc2msg proc~esmf_logwrite ESMF_LogWrite proc~esmf_logfounderror->proc~esmf_logwrite

Source Code

    subroutine CPLR_SetServices(cpl, rc)
      type(ESMF_CplComp) :: cpl
      integer, intent(out) :: rc

       call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_INITIALIZE, my_init, rc=rc)
       call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_RUN, my_run, rc=rc)
       call ESMF_CplCompSetEntryPoint(cpl, ESMF_METHOD_FINALIZE, my_final, rc=rc)
      
    end subroutine CPLR_SetServices