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
subroutine ESMF_StaggerLocAssignment(slval,string)! !ARGUMENTS:type(ESMF_StaggerLoc),intent(out)::slvalcharacter(len=*),intent(in)::string! !DESCRIPTION:! This routine assigns an ESMF\_StaggerLoc from a string value!! The arguments are:! \begin{description}! \item[string]! String value to assign to the ESMF\_StaggerLoc! \end{description}!!EOPIif(string=="ESMF_STAGGERLOC_INVALID")thenslval=ESMF_STAGGERLOC_INVALIDelse if(string=="ESMF_STAGGERLOC_UNINIT")thenslval=ESMF_STAGGERLOC_UNINITelse if(string=="ESMF_STAGGERLOC_CENTER")thenslval=ESMF_STAGGERLOC_CENTERelse if(string=="ESMF_STAGGERLOC_EDGE1")thenslval=ESMF_STAGGERLOC_EDGE1else if(string=="ESMF_STAGGERLOC_EDGE2")thenslval=ESMF_STAGGERLOC_EDGE2else if(string=="ESMF_STAGGERLOC_CORNER")thenslval=ESMF_STAGGERLOC_CORNERendif end subroutine ESMF_StaggerLocAssignment