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 ParametricObjectsCheck
! SUBROUTINE INFORMATION:
! AUTHOR Jason Glazer (based on CompactObjectsCheck by Linda Lawrie)
! DATE WRITTEN September 2009
! MODIFIED
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Check to see if Parametric Objects exist in the input file.
! METHODOLOGY EMPLOYED:
! na
! REFERENCES:
! na
! USE STATEMENTS:
! na
IMPLICIT NONE ! Enforce explicit typing of all variables in this routine
! SUBROUTINE ARGUMENT DEFINITIONS:
! na
! SUBROUTINE PARAMETER DEFINITIONS:
! na
! INTERFACE BLOCK SPECIFICATIONS:
! na
! DERIVED TYPE DEFINITIONS:
! na
! SUBROUTINE LOCAL VARIABLE DECLARATIONS:
IF ( ANY(IDFRecords%Name(1:11) == 'PARAMETRIC:') .or. ANY(IDFRecords%Name(1:11) == 'Parametric:') .or. &
ANY(IDFRecords%Name(1:11) == 'parametric:') ) THEN
CALL ShowSevereError('Parametric objects are found in the IDF File.')
CALL ShowFatalError('Program Terminates: The ParametricPreprocessor program has'// &
' not been run.')
ENDIF
RETURN
END SUBROUTINE ParametricObjectsCheck