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
recursive subroutine NUOPC_TraceComponentInfo(comp,rc)type(ESMF_GridComp),intent(in)::compinteger,intent(out)::rccharacter(len=5)::attrConv(4)character(len=8)::attrPurp(4)character(len=20)::attrName(4)character(len=10)::attrKey(4)rc=ESMF_SUCCESSattrConv="NUOPC"attrPurp="Instance"attrName(1)="Kind"attrKey(1)="Kind"attrName(2)="InitializePhaseMap"attrKey(2)="IPM"attrName(3)="RunPhaseMap"attrKey(3)="RPM"attrName(4)="FinalizePhaseMap"attrKey(4)="FPM"call ESMF_TraceComponentInfo(comp,attrConv,&attrPurp,attrName,attrKey,rc=rc)if(ESMF_LogFoundError(rc,&line=__LINE__,&file=FILENAME))&return end subroutine NUOPC_TraceComponentInfo