Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
function attpack_getPayload(self,rc)result(payload)! Get a handle to the Info object associated with this attribute packageclass(ESMF_AttPack),intent(in)::selfinteger,intent(out),optional::rctype(ESMF_Info)::payloadinteger::localrcif(present(rc))rc=ESMF_RC_NOT_IMPLlocalrc=ESMF_FAILUREif(.not.c_associated(self%info))then if(ESMF_LogFoundError(ESMF_RC_ARG_BAD,msg="ptr may not be null",ESMF_CONTEXT,rcToReturn=rc))return end ifpayload%ptr=self%infoif(present(rc))rc=ESMF_SUCCESSend function attpack_getPayload