;+
; NAME:
;	SMEI_SEQUENCE::SET_DELAY
;
;
; PURPOSE:
;	Set the inter-frame interval for a SMEI sequence.
;
;
; CATEGORY:
;	SMEI_SEQUENCE
;
;
; CALLING SEQUENCE:
;	seqref -> set_delay, delay
;
;
; INPUTS:
;	delay	float	The inter-frame delay in seconds.
;
; RESTRICTIONS
;	Delays less than 0.05s cannot be set. This is to prevent the
;	possibility of an event pile-up
;
;
; MODIFICATION HISTORY:
;	Original: 19/12/02; SJT
;-

pro smei_sequence::set_delay, delay

self.options.delay = delay > 0.05

end
