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 usercpl_init(comp,importState,exportState,clock,rc)type(ESMF_CplComp)::comptype(ESMF_State)::importState,exportStatetype(ESMF_Clock)::clockinteger,intent(out)::rctype(ESMF_AttPack)::attpackinteger::petCount,status,myPetcharacter(ESMF_MAXSTR),dimension(3)::attrListrc=ESMF_SUCCESSattrList(1)="name1"attrList(2)="name2"attrList(3)="name3"call ESMF_AttributeAdd(comp,convention="Comp",purpose="Top",&attrList=attrList,attpack=attpack,rc=status)if(status.ne.ESMF_SUCCESS)return call ESMF_AttributeSet(comp,"name1",attpack=attpack,value="value1",&rc=status)call ESMF_AttributeSet(comp,"name2",attpack=attpack,value="value2",&rc=status)call ESMF_AttributeSet(comp,"name3",attpack=attpack,value="value3",&rc=status)if(status.ne.ESMF_SUCCESS)return end subroutine usercpl_init