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 ESMF_NamedAliasSciComp(object,keywordEnforcer,name,rc)!! !RETURN VALUE:type(ESMF_SciComp)::ESMF_NamedAliasSciComp!! !ARGUMENTS:type(ESMF_SciComp),intent(in)::objecttype(ESMF_KeywordEnforcer),optional::keywordEnforcer! must use keywords belowcharacter(len=*),intent(in),optional::nameinteger,intent(out),optional::rc!EOPI!------------------------------------------------------------------------------integer::localrccharacter(ESMF_MAXSTR)::nameDefaultif(present(rc))rc=ESMF_SUCCESS! first create regular aliasESMF_NamedAliasSciComp=object! next mark as namedAliasESMF_NamedAliasSciComp%isNamedAlias=.true.! finally set nameif(present(name))thenESMF_NamedAliasSciComp%name=trim(name)else call ESMF_SciCompGet(object,name=nameDefault,rc=localrc)if(ESMF_LogFoundError(localrc,ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))returnESMF_NamedAliasSciComp%name=trim(nameDefault)endif end function ESMF_NamedAliasSciComp