;+
; Project     : SOLAR-B - EIS
;
; Name        : EIS_CPT_timeline__define
;
; Purpose     : Generates structure EIS_CPT_timeline
;
; 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 filename.
;
;               Tags are :
;                 time        : DOUBLE TAI time of use
;                 index       : INT index into study_details
;                 type        : INT timeline type
;                                  0 : main plan
;                                  1 : XRT flare response
;                                  2 : XRT filler
;                                  3 : EIS flare
;                                  4 : EIS event
;                 slit_slot   : structure of type EIS_CPT_mechanism_change.
;                 loop        : INT loop back value
;
; Use         : <dummy = {EIS_CPT_timeline}>
;
; 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 16/09/05
;
; Modified    : Version 0.0, 16/09/05, MKC
;               Version 0.1, 29/09/05, MKC
;                 Added loop tag.
;
; Version     : 0.1, 29/09/05
;-
;**********************************************************

PRO eis_cpt_timeline__define

  dummy = {EIS_CPT_timeline, time:0.0d0, index:0, type:0, loop:0 }

END





