Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | NodeNumber | |||
character(len=*), | intent(in) | :: | ObjectType | |||
character(len=*), | intent(in) | :: | ObjectName | |||
character(len=*), | intent(in) | :: | FieldName |
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 MarkNode(NodeNumber,ObjectType,ObjectName,FieldName)
! SUBROUTINE INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN March 2004
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! This subroutine marks a node -- this node needs to exist in more than one object.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: NodeNumber ! Node Number to be marked
CHARACTER(len=*), INTENT(IN) :: ObjectType
CHARACTER(len=*), INTENT(IN) :: ObjectName
CHARACTER(len=*), INTENT(IN) :: FieldName
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS
! na
! DERIVED TYPE DEFINITIONS
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
MarkedNode(NodeNumber)%IsMarked=.true.
MarkedNode(NodeNumber)%ObjectType=ObjectType
MarkedNode(NodeNumber)%ObjectName=ObjectName
MarkedNode(NodeNumber)%FieldName=FieldName
RETURN
END SUBROUTINE MarkNode