Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	QTARGET_FLUX.SDDL
!
! Purpose:      This SDDL file defines the qtarget_flux relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 11/15/94    27329     SSS   Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
 
LANGUAGE	FORTRAN, SQL

INCLUDE         ZSPSS_USER_TYPES.SDDL
 
RECORD  TARFLX_TYPE
 
    DESCRIPTION       "This relation contains magnetic flux values for
                       the targets contained in relation qtargets. This
                       relation is generally ignored by SPSS except for 
                       the PMDB/COPY command."
 

    FIELD  target_id
        TYPE TARGET_ID_TYPE
    END_FIELD
 

    FIELD  flux_name
        TYPE            C8
        DESCRIPTION     "This is the flux variable name as determined by 
                        TRANS.  The possible values are:

  MAG_V    is integrated brightness magnitude in V (visible) band
  MAG_B    is integrated brightness magnitude in B (blue) band
  MAG_R    is integrated brightness magnitude in R (red) band
  SURF_V   is surface brightness magnitude in V band 
  SURF_B   is surface brightness magnitude in B band 
  SURF_R   is surface brightness magnitude in R band 
  COL_B_V  is color in B band magnitude minus V band magnitude 
  COL_U_B  is color in U (ultraviolet) band magnitude minus B band magnitude
  COL_V_R  is color in V band magnitude minus R band magnitude
  E_B_V    is color excess (reddening) in B band minus V band magnitude
  EXTNCT_V is extinction in the V band magnitude"

        DISCRETE        "MAG_V",   "MAG_B",   "MAG_R", 
                        "SURF_V",  "SURF_B",  "SURF_R", 
                        "COL_B_V", "COL_U_B", "COL_V_R", 
                        "E_B_V",   "EXTNCT_V"
    END_FIELD
 

    FIELD  flux_value
        TYPE            R*4
        DESCRIPTION     "This is the value of the flux.   Units are
                         'magnitude' for MAG_V, MAG_V, MAG_U, MAG_R, 
                         COL_B_V, COL_U_B, COL_V_R, E_B_V, and EXTNCT_V.
                         Units are magnitude per square arcsec for 
                         SURF_V, SURF_B, SURF_U, and SURF_R."
    END_FIELD
 
END_RECORD
 
 
RELATION  qtarget_flux
    TYPE             TARFLX_TYPE 

    DESCRIPTION      "Target Flux Data Relation"

    SUBSYSTEM_USING  "SPSS", "TRANS", "PODPS"

    INDEX  qtarget_flux_1
        TYPE         unique, clustered
        FIELDS       target_id, flux_name
    END_INDEX

END_RELATION
 
INSTANCE  qtarget_flux
    GLOBAL
    TYPE        TARFLX_TYPE
END_INSTANCE

Go to the top.