;+
; Project     : SOLAR-B - EIS
;
; Name        : EIS_upload__DEFINE
;
; Purpose     : Generates structure EIS_upload.
;
; 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_upload. Tags are :-
;                   time                : DOUBLE TAI time of day of upload.
;                   obstbl_upload_id    : STRING giving day and four character pass identifier for the OBSTBL upload pass
;                                           i.e yyyymmddPassiD = '200612250001'.
;                                         This must be set if the /JSIDE option is selected.
;                   orl_upload_id       : STRING giving day and four character pass identifier for the ORL upload pass
;                                           i.e yyyymmddPassiD = '200612250001'.
;                                         This must be set if the /JSIDE option is selected.
;                   version             : STRING 3 digit upload version : 820-829 for EIS.
;                   RAM_sub_id          : STRING 2 digit RAM sub ID     : 00 - 99 for EIS.
;
; Use         : <dummy = {EIS_upload>
;
; 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. : Moved out of routine EIS_raster_detail__define.
;
; Written     : Martin Carter RAL 14/06/06
;
; Modified    : Version 0.0, 14/06/06, MKC
;               Version 0.1, 20/08/06, MKC
;                 Added upload version to structure.
;               Version 0.2, 03/10/06, MKC
;                 Changed upload structure.
;               Version 0.3, 26/02/08, MKC
;                 Replace upload id with OBSTBL and ORL upload ids.
;
; Version     : 0.3, 26/02/08
;-
;**********************************************************

PRO eis_upload__define

  dummy = {EIS_upload, $
           time                      : 0.0D0, $
           obstbl_upload_id          : '',    $
           orl_upload_id             : '',    $
           version                   : '',    $
           RAM_sub_id                : '' }

END





