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_NamedAliasGridComp(object,keywordEnforcer,name,rc)!! !RETURN VALUE:type(ESMF_GridComp)::ESMF_NamedAliasGridComp!! !ARGUMENTS:type(ESMF_GridComp),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_NamedAliasGridComp=object! next mark as namedAliasESMF_NamedAliasGridComp%isNamedAlias=.true.! finally set nameif(present(name))thenESMF_NamedAliasGridComp%name=trim(name)else call ESMF_GridCompGet(object,name=nameDefault,rc=localrc)if(ESMF_LogFoundError(localrc,ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))returnESMF_NamedAliasGridComp%name=trim(nameDefault)endif end function ESMF_NamedAliasGridComp