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
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)::checkMethodinteger::localrcrc=ESMF_FAILURE! Generate the netCDF weights file.call ESMF_RegridWeightGen(srcFile,dstFile,weightFile=weightFile,rc=localrc)if(ESMF_LogFoundError(rcToCheck=localrc,msg=ESMF_LOGERR_PASSTHRU,&line=__LINE__,file=FILENAME,rcToReturn=rc))return! Validate generated weights produce acceptable errors. This subroutine! calls ESMF_ArraySMMStoreFromFile or ESMF_FieldSMMStoreFromFile.call ESMF_RegridWeightGenCheck(weightFile,checkMethod=checkMethod,rc=localrc)if(ESMF_LogFoundError(rcToCheck=localrc,msg=ESMF_LOGERR_PASSTHRU,&line=__LINE__,file=FILENAME,rcToReturn=rc))returnrc=ESMF_SUCCESSend subroutine test_smm_from_file