BLOCKDATA DCI0_BLK
*+
*  Name:
*     DCI0_BLK

*  Purpose:
*     Initialise DCI common block

*  Language:
*     Starlink Fortran

*  Type of Module:
*     BLOCK DATA

*  Description:
*     Set the initialised flag to false so that DCI class definitions will
*     be loaded properly

*  Notes:
*     {routine_notes}...

*  Side Effects:
*     {routine_side_effects}...

*  Implementation Deficiencies:
*     {routine_deficiencies}...

*  References:
*     DCI Subroutine Guide : http://www.sr.bham.ac.uk/asterix-docs/Programmer/Guides/dci.html

*  Keywords:
*     package:dci, usage:private, common, initialisation

*  Copyright:
*     Copyright (C) University of Birmingham, 1995

*  Authors:
*     DJA: David J. Allan (Jet-X, University of Birmingham)
*     {enter_new_authors_here}

*  History:
*     10 Mar 1995 (DJA):
*        Original version.
*     {enter_changes_here}

*-
      
*  Type Definitions:
      IMPLICIT NONE              ! No implicit typing

*  Global Variables:
      INCLUDE 'DCI_CMN'
*       DCI_INIT = LOGICAL (returned)
*         DCI system is initialised?

*  Global Data:
      DATA DCI_INIT / .FALSE. /
*.
      
      END