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 SetServices(gcomp,rc)! Abide to ESMF-prescribed Fortran interfacetype(ESMF_GridComp)::gcompinteger,intent(out)::rcrc=ESMF_SUCCESS! indicate success... unless error is found! register 'init' as component initialization methodcall ESMF_GridCompSetEntryPoint(gcomp,ESMF_METHOD_INITIALIZE,&userRoutine=init,rc=rc)if(ESMF_LogFoundError(rcToCheck=rc,msg=ESMF_LOGERR_PASSTHRU,&line=__LINE__,file=__FILE__))return end subroutine SetServices