Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name: NSORBITAL.SDDL
!
! Purpose: This SDDL file defines the nsorbital relation.
!
! Modification History:
!
! Date OPR Who Reason
! -------- ------- --- -------------------------------------------------
! 10/28/94 27329 MRB Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
!
LANGUAGE FORTRAN, SQL
RECORD NSORB_TYPE
!------------------------------------------------------------------------------
!
! RECORD INFORMATION
!
!------------------------------------------------------------------------------
DESCRIPTION "PDB defined orbital events with descriptions are stored
in this relation. IMTOOL dredges this data from the
PDB and stores it here. #IEVENT in SMSG/Generate is
used to trigger actions based on events defined in this
relation."
!------------------------------------------------------------------------------
!
! FIELD INFORMATION
!
!------------------------------------------------------------------------------
FIELD event_name
DESCRIPTION "This is an orbital event name.
It is up to eight alphanumeric characters,
left justified and blank padded."
TYPE C*8
END_FIELD
FIELD description
DESCRIPTION "This is a text description of the event."
TYPE C*62
END_FIELD
FIELD desc_cont
DESCRIPTION "This is a text description continuation for further
explanation of the event."
TYPE C*70
END_FIELD
END_RECORD
!------------------------------------------------------------------------------
!
! RELATION DECLARATION
!
!------------------------------------------------------------------------------
RELATION nsorbital
TYPE NSORB_TYPE
DESCRIPTION "PDB-Defined Orbital Event Mnemonics Relation"
SUBSYSTEM_USING "IMTOOL", "SCS"
INDEX nsorbital_1
TYPE unique, clustered
FIELDS event_name
END_INDEX
END_RELATION
!------------------------------------------------------------------------------
!
! INSTANCE DECLARATION
!
!------------------------------------------------------------------------------
INSTANCE nsorbital
GLOBAL
TYPE NSORB_TYPE
END_INSTANCE
Go to the top.