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) | :: | OAControllerName | |||
integer, | intent(in) | :: | NumCurrentOAControllers | |||
logical, | intent(inout) | :: | IsNotOK | |||
logical, | intent(inout) | :: | IsBlank | |||
character(len=*), | intent(in) | :: | SourceID |
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 CheckOAControllerName(OAControllerName,NumCurrentOAControllers,IsNotOK,IsBlank,SourceID)
! SUBROUTINE INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN October 2006
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! When OA Controller data is gotten from other routines, must check to make sure
! new name doesn't duplicate. (Essentially a pass through to call Verify Name)
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
USE InputProcessor, ONLY: VerifyName
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
CHARACTER(len=*), INTENT(IN) :: OAControllerName ! proposed name
INTEGER, INTENT(IN) :: NumCurrentOAControllers ! Count on number of controllers
LOGICAL, INTENT(INOUT) :: IsNotOK ! Pass through to VerifyName
LOGICAL, INTENT(INOUT) :: IsBlank ! Pass through to VerifyName
CHARACTER(len=*), INTENT(IN) :: SourceID ! Pass through to VerifyName
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
! na
IF (GetOAControllerInputFlag) THEN
! Make sure OAControllers are "gotten"
CALL GetOAControllerInputs
GetOAControllerInputFlag=.false.
ENDIF
CALL VerifyName(OAControllerName,OAController%Name,NumCurrentOAControllers,IsNotOK,IsBlank,SourceID)
RETURN
END SUBROUTINE CheckOAControllerName