SUBROUTINE ADI2_GETLUN( FID, LUN, STATUS )
*+
*  Name:
*     ADI2_GETLUN

*  Purpose:
*     Get logical unit from FITSfile object

*  Language:
*     Starlink Fortran

*  Invocation:
*     CALL ADI2_GETLUN( FID, LUN, STATUS )

*  Description:
*     Extracts the logical unit number from the 'Lun' member of the 
*     FITSfile object specified by FID.

*  Arguments:
*     FID = INTEGER (given)
*        ADI identifier of FITSfile object
*     LUN = INTEGER (returned)
*        Logical unit
*     STATUS = INTEGER (given and returned)
*        The global status.

*  Examples:
*     {routine_example_text}
*        {routine_example_description}

*  Pitfalls:
*     {pitfall_description}...

*  Notes:
*     {routine_notes}...

*  Prior Requirements:
*     {routine_prior_requirements}...

*  Side Effects:
*     {routine_side_effects}...

*  Algorithm:
*     {algorithm_description}...

*  Accuracy:
*     {routine_accuracy}

*  Timing:
*     {routine_timing}

*  External Routines Used:
*     {name_of_facility_or_package}:
*        {routine_used}...

*  Implementation Deficiencies:
*     {routine_deficiencies}...

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

*  Keywords:
*     package:adi, usage:private

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

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

*  History:
*     28 Feb 1995 (DJA):
*        Original version.
*     {enter_changes_here}

*  Bugs:
*     {note_any_bugs_here}

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

*  Global Constants:
      INCLUDE 'SAE_PAR'          ! Standard SAE constants

*  Arguments Given:
      INTEGER			FID			! FITSfile object

*  Arguments Returned:
      INTEGER			LUN			! Logical unit

*  Status:
      INTEGER 			STATUS             	! Global status

*  Local Variables:
      INTEGER			FOID			! FileObject
*.

*  Check inherited global status.
      IF ( STATUS .NE. SAI__OK ) RETURN

*  Locate FileObject
      CALL ADI_GETFILE( FID, FOID, STATUS )

*  Extract unit number
      CALL ADI_CGET0I( FOID, 'Lun', LUN, STATUS )

*  Report any errors
      IF ( STATUS .NE. SAI__OK ) CALL AST_REXIT( 'ADI2_GETLUN', STATUS )

      END