Nodes of different colours represent the following:
Solid arrows point from a parent (sub)module to the submodule which is descended from it. Dashed arrows point from a module being used to the module or program unit using it. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | RoutineName | |||
character(len=*), | intent(in) | :: | ObjectName | |||
character(len=*), | intent(in) | :: | InstanceName | |||
character(len=*), | intent(in) | :: | FieldName | |||
character(len=*), | intent(in) | :: | FieldEntry | |||
character(len=*), | intent(in) | :: | Condition | |||
logical, | intent(inout) | :: | ErrorsFound |
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.
SUBROUTINE IssueSevereAlphaInputFieldError(RoutineName, ObjectName, InstanceName, FieldName, FieldEntry, Condition, ErrorsFound)
! SUBROUTINE INFORMATION:
! AUTHOR Edwin Lee
! DATE WRITTEN Summer 2011
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! <description>
! METHODOLOGY EMPLOYED:
! <description>
! REFERENCES:
! na
! USE STATEMENTS:
USE DataInterfaces, ONLY: ShowSevereError
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
CHARACTER(LEN=*), INTENT(IN) :: RoutineName
CHARACTER(LEN=*), INTENT(IN) :: ObjectName
CHARACTER(LEN=*), INTENT(IN) :: InstanceName
CHARACTER(LEN=*), INTENT(IN) :: FieldName
CHARACTER(LEN=*), INTENT(IN) :: FieldEntry
CHARACTER(LEN=*), INTENT(IN) :: Condition
LOGICAL, INTENT(IN OUT) :: ErrorsFound
CALL ShowSevereError(TRIM(RoutineName)//':'//TRIM(ObjectName)//'="'//TRIM(InstanceName)// &
'", invalid '//TRIM(FieldName)//'="'//TRIM(FieldEntry)//'", Condition: '//TRIM(Condition))
ErrorsFound = .TRUE.
RETURN
END SUBROUTINE IssueSevereAlphaInputFieldError