;+
; Project     : SOLAR-B - EIS
;
; Name        : EIS_abort__DEFINE
;
; Purpose     : Generates structure EIS_abort.
;
; Explanation : When IDL encounters structure 'STRname', if structure not already defined
;               it looks for routine strname__define and compiles and calls routine to define
;               structure. NB under unix it looks for lower case flename.
;
;               This routine defines the structure :
;
;                 EIS_abort. Tags are :
;                   description : STRING description
;                   onboard     : UINT FLAG indicating whether the abort command should be sent from the 'OP' store (1)
;                                 or from the 'REAL' time control file (0).
;                   abort_time  : DOUBLE TAI time of abort.
;
; Use         : <dummy = {EIS_abort>
;
; Inputs      : None.
;
; Opt. Inputs : None.
;
; Outputs     : Sets up structure definition.
;
; Opt. Outputs: None.
;
; Keywords    : None,
;
; Calls       : None.
;
; Common      : None.
;
; Restrictions: None.
;
; Side effects: None.
;
; Category    : EIS_CPT.
;
; Prev. Hist. : None.
;
; Written     : Martin Carter RAL 04/10/06
;
; Modified    : Version 0.0, 04/10/06, MKC
;
; Version     : 0.0, 04/10/06
;-
;**********************************************************

PRO eis_abort__define

  dummy = {EIS_abort, $
           description : '', $
           onboard     : 0U, $
           abort_time  : 0.0D0 }

END





