Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:    WSI_BO_CHECK.SDDL
!
! Purpose:      This SDDL file defines the wsi_bo_check relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 02/25/99    35645     MMD   Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!
 
LANGUAGE   C, FORTRAN, SQL

INCLUDE    ZSPSS_USER_TYPES.SDDL 
 
RECORD  WSIBO_TYPE
 
!------------------------------------------------------------------------------
!
!   RECORD INFORMATION
!
!------------------------------------------------------------------------------

    DESCRIPTION    "The wsi_bo_check relation is used by SPSS identify Moving
                    Target SUs that use detectors which are more sensitive than
                    the Guide Star Catalog.  These SUs need an additional window
                    constraint to restrict the SU from scheduing where a Bright
                    Object would intersect the SI FOV.  The SI and detector 
                    configurations specified in this relation will identify 
                    such SUs."
                
!------------------------------------------------------------------------------
!
!   FIELD INFORMATION
!
!------------------------------------------------------------------------------
 

    FIELD  si_name
        TYPE SI_ID_TYPE   
        DESCRIPTION     "This field is the science instrument which identifies
                        the SI/detector combinations that need a BO window
                        constraint."
    END_FIELD


    FIELD  si_det_name      
        TYPE SI_DETECTOR_TYPE
        DESCRIPTION     "This field is the detector which identifies the 
                        SI/detector combinations that need a BO window 
                        constraint."
    END_FIELD
 
END_RECORD

!------------------------------------------------------------------------------
!
!   RELATION DECLARATION
!
!------------------------------------------------------------------------------
 
RELATION  wsi_bo_check 
 
    TYPE             WSIBO_TYPE
 
    DESCRIPTION      "Bright Object Restricted SI/Detector Specification Relation"
 
    SUBSYSTEM_USING  "SPSS"

    INDEX  wsi_bo_check_1
        TYPE         unique, clustered
        FIELDS       si_name, si_det_name
    END_INDEX
 
END_RELATION

!------------------------------------------------------------------------------
!
!   INSTANCE DECLARATION
!
!------------------------------------------------------------------------------


INSTANCE  wsi_bo_check

    GLOBAL

    TYPE        WSIBO_TYPE
END_INSTANCE

Go to the top.