;+
;Project    :SolarB EIS
;
;Name       :eis_get_aec_exposure_table
;
;Purpose    :generates list of AEC exposure times
;
;Category   :EIS timeline planning
;
;Written    :Chunkey Lepine, RAL, d.r.lepine@rl.ac.uk, 0044-1235-44-6515
;
;Version    :V0 February 2005
;
;History    ;June 2005, updated using JM results
;-
;************************************************************************

;wavelength to pixel conversions
function eis_get_aec_exposure_table

   a = sqrt(2)

   times = lonarr(28)
   for i = 0, 27 do begin
       times[i] = 1000. *(a^(i-9))
   endfor
   times[0] = 70
   times[1] = 80
   times[2] = 90
   return, times

end
