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 CheckRefrigerationInput
! SUBROUTINE INFORMATION:
! AUTHOR Linda Lawrie
! DATE WRITTEN Sep 2010 - mining function
! MODIFIED na
! RE-ENGINEERED na
! PURPOSE OF THIS SUBROUTINE:
! Provides the structure to get Refrigeration input so that
! it can be called from internally or outside the module.
! 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:
! na
IF (GetRefrigerationInputFlag) THEN
CALL GetRefrigerationInput()
CALL SetupReportInput()
GetRefrigerationInputFlag = .FALSE.
IF((.NOT. HaveCasesOrWalkins) .AND. (.NOT. HaveChillers)) THEN
ManageRefrigeration = .FALSE.
RETURN
END IF
IF((.NOT. HaveDetailedRefrig) .AND. (.NOT. HaveRefrigRacks) .AND. &
(.NOT. HaveDetailedTransRefrig)) THEN
ManageRefrigeration = .FALSE.
RETURN
END IF
END IF !GetRefrigerationInputFlag
RETURN
END SUBROUTINE CheckRefrigerationInput