*+
* Name:
* AUI_CMN
* Purpose:
* Define AUI_ subroutine package initialisation flag
* Language:
* Starlink Fortran
* Type of Module:
* Global variables include file.
* Description:
* This file defines one global variable which defines the initialisation
* state of the AUI subroutine group. This variable should be
* defined to be .FALSE. on image startup by using an associated BLOCK
* DATA module.
* Prior Requirements:
* None.
* References:
* AUI Subroutine Guide : http://www.sr.bham.ac.uk:8080/asterix-docs/Programmer/Guides/aui.html
* Keywords:
* package:aui, usage:public
* Authors:
* DJA: David J. Allan (Jet-X, University of Birmingham)
* {enter_new_authors_here}
* History:
* 4 Apr 1995 (DJA):
* Original version.
* {enter_changes_here}
*-
* Global Variables:
LOGICAL AUI_INIT ! Initialised?
* Word aligned values
COMMON /AUI_CMN/ AUI_INIT
* Save common block contents
SAVE /AUI_CMN/
*.