;+
;Project    :SolarB EIS
;
;Name       :eis_get_current_time
;
;Purpose    :
;
;Category   :EIS planning
;
;Written    :Chunkey Lepine, RAL, d.r.lepine@rl.ac.uk, 0044-1235-44-6515
;
;Version    :V0 September 2005
;-
;************************************************************************

;General purpose function to return current time as tai.
function eis_get_current_time

;stop
    ;get_utc, commonTime, /EXTERNAL
    get_utc, commonTime, /STIME    , /TRUNCATE
    return, anytim2tai(commonTime)

end
