Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | columnIndex | |||
character(len=*), | intent(in) | :: | objName | |||
integer, | intent(in) | :: | tableEntryInt |
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 IntPreDefTableEntry(columnIndex,objName,tableEntryInt)
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer
! DATE WRITTEN August 2006
! MODIFIED
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Creates an entry for predefined tables when the entry
! is a integer variable
! METHODOLOGY EMPLOYED:
! Simple assignments to public variables.
! REFERENCES:
! na
! USE STATEMENTS:
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
INTEGER, INTENT(IN) :: columnIndex
CHARACTER(len=*),INTENT(IN) :: objName
INTEGER,INTENT(IN) :: tableEntryInt
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
CHARACTER(LEN=12) :: stringEntry
CALL incrementTableEntry
! convert the integer to a string
WRITE(FMT=*, UNIT=stringEntry) tableEntryInt
tableEntry(numTableEntry)%charEntry = stringEntry
tableEntry(numTableEntry)%objectName = objName
tableEntry(numTableEntry)%indexColumn = columnIndex
END SUBROUTINE IntPreDefTableEntry