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 test_smm_from_file(srcFile,dstFile,weightFile,checkMethod,&rc)character(len=*),intent(in)::srcFile,dstFile,weightFileinteger,intent(out)::rctype(ESMF_RWGCheckMethod_Flag),intent(in)::checkMethodrc=ESMF_FAILURE! Generate the netCDF weights file.call ESMF_RegridWeightGen(srcFile,dstFile,weightFile=weightFile,rc=rc)if(ESMF_LogFoundError(rcToCheck=rc,msg=ESMF_LOGERR_PASSTHRU,&line=__LINE__,file=FILENAME))return! Validate generated weights produce acceptable errors. This subroutine! calls ESMF_ArraySMMStoreFromFile or ESMF_FieldSMMStoreFromFile.call ESMF_RegridWeightGenCheck(weightFile,checkMethod=checkMethod,rc=rc)if(ESMF_LogFoundError(rcToCheck=rc,msg=ESMF_LOGERR_PASSTHRU,&line=__LINE__,file=FILENAME))returnrc=ESMF_SUCCESSend subroutine test_smm_from_file