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 make_geom(geom_mgr,hconfig,rc)result(geom)type(ESMF_Geom)::geomtype(GeomManager),intent(inout)::geom_mgrtype(ESMF_HConfig),optional,intent(in)::hconfiginteger,optional,intent(out)::rctype(MaplGeom),pointer::mapl_geomclass(GeomSpec),allocatable::specinteger::statustype(ESMF_HConfig)::hconfig_hconfig_=ESMF_HConfigCreate(content="{class: latlon, im_world: 12, jm_world: 13, pole: PC, dateline: DC, nx: 1, ny: 1}",_RC2)if(present(hconfig))hconfig_=hconfigmapl_geom=>geom_mgr%get_mapl_geom(hconfig_,_RC2)geom=mapl_geom%get_geom()_RETURN(_SUCCESS)end function make_geom