Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	QGWFCPARM.SDDL
!
! Purpose:      This SDDL file defines the qgwfcparm relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 12/ 1/94    27329     EGB   Original implementation
! 02/03/00    40524     JJB   Added index to relation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!

LANGUAGE	SQL

RECORD  QGWFC_TYPE

!------------------------------------------------------------------------------
!
!   RECORD INFORMATION
!
!------------------------------------------------------------------------------

    DESCRIPTION       "This relation contains the WFII per 24055. We need
                       more information from IM on this. Please help out."


!------------------------------------------------------------------------------
!
!   FIELD INFORMATION
!
!------------------------------------------------------------------------------


    FIELD  vc1
        TYPE            R8
        DESCRIPTION     "This field is the 1st AFM voltage coefficient at 
			 command temperature."
    END_FIELD


    FIELD  vc2
        TYPE            R8
        DESCRIPTION     "This field is the 2nd AFM voltage coefficient at 
			 command temperature."
    END_FIELD


    FIELD  tc0vc1
        TYPE            R8
        DESCRIPTION     "This field is the zeroth temperature coefficient 
			 of vc1."
    END_FIELD


    FIELD  tc1vc1
        TYPE            R8
        DESCRIPTION     "This field is the linear temperature coefficient 
			 of vc1."
    END_FIELD


    FIELD  tc2vc1
        TYPE            R8
        DESCRIPTION     "This field is the quadratic temperature coefficient
			 of vc1."
    END_FIELD


    FIELD  tc0vc2
        TYPE            R8
        DESCRIPTION     "This field is the zeroth temperature coefficient 
			 of vc2."
    END_FIELD


    FIELD  tc1vc2
        TYPE            R8
        DESCRIPTION     "This field is the linear temperature coefficient 
			 of vc2."
    END_FIELD


    FIELD  tc2vc2
        TYPE            R8
        DESCRIPTION     "This field is the quadratic temperature coefficient 
			 of vc2."
    END_FIELD


    FIELD  raf1
        TYPE            R8
	UNITS		"DEGREES"
        DESCRIPTION     "This field is the AFM-1 coordinate frame rotation 
			 angle."
    END_FIELD


    FIELD  raf3
        TYPE            R8
	UNITS		"DEGREES"
        DESCRIPTION     "This field is the AFM-3 coordinate frame rotation 
			 angle."
    END_FIELD


    FIELD  raf4
        TYPE            R8
	UNITS		"DEGREES"
        DESCRIPTION     "This field is the AFM-4 coordinate frame rotation 
			 angle."
    END_FIELD


    FIELD  pomra
        TYPE            R8
        UNITS           "DEGREES"    
        DESCRIPTION     "This field is the pom coordinate frame rotation 
			 angle."
    END_FIELD


    FIELD  pomxas
        TYPE            R8
        UNITS           "ARCSEC/STEP"
        DESCRIPTION     "This field is the pom x detector frame scale factor."
    END_FIELD


    FIELD  pomyas
        TYPE            R8
        UNITS           "ARCSEC/STEP"
        DESCRIPTION     "This field is the pom y detector frame scale factor."
    END_FIELD

END_RECORD


!------------------------------------------------------------------------------
!
!   RELATION DECLARATION
!
!------------------------------------------------------------------------------

RELATION  qgwfcparm

    TYPE             QGWFC_TYPE

    DESCRIPTION      "WFII Data Relation"

    SUBSYSTEM_USING  "SPSS", "IM", "SCIOPSDB"

    INDEX  qgwfcparm_1
        TYPE         unique, clustered
        FIELDS       vc1
    END_INDEX

END_RELATION

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

INSTANCE  qgwfcparm

    GLOBAL

    TYPE        QGWFC_TYPE

END_INSTANCE

Go to the top.