;+
; Project     :	SOLAR-B - EIS
;
; Name        :	EIS_flare_parameters__DEFINE
;
; Purpose     :	Generates structure EIS_flare_parameters.
;
; 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_flare_parameters. Tags are :
;                   left_repointing          : UINT flag indicating whether to add (1) or subtract (0)
;                                              to fine mirror position. Must be set to 0.
;                   right_repointing         : UINT flag indicating whether to add (1) or subtract (0)
;                                              to fine mirror position. Must be set to 1.
;                   EIS_P_Size               : UINT 100* EIS pixel size in arcseconds, range 1-255.
;
; Use         :	<dummy = {EIS_flare_parameters>
;
; 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 03/08/04
;
; Modified    :	Version 0.1, 23/09/04, MKC
;                 Changed ystart and yheight tags to ULONG.
;                 Changed x_threshold and y_threshold to ULONG.
;               Version 0.2, 24/02/05, MKC
;                 Renamed from EIS flare response define.
;                 Moved some parameters from EIS flare control..
;               Version 0.3, 24/06/05, MKC
;                 Changed INT values to UINT.
;
; Version     :	0.3, 24/06/05, MKC
;-
;**********************************************************

PRO eis_flare_parameters__define

  dummy = {EIS_flare_parameters, $
           left_repointing          : 0U, $
           right_repointing         : 0U, $
           EIS_P_Size               : 0U}

END





