; Create selection file
;
; PURPOSE: Interactively create a selection doc. file listing 
;          consecutive file numbers. 
;
; SOURCE: spider/docs/techs/recon/newprogs/makefilelist.spi 
; 
; --------------------- Output files -------------------------------

[out-file] = 'sel_micrograph'     ; Selection file name

; -------------- END BATCH HEADER ---------------------------------

RR [num]
?Starting file number?
RR [end]
?Ending file number?

DE                ; If output doc file already exists, delete it
[out-file]

DOC CREATE         ; Create selection doc file
[out-file]         ; Filename             (output)
1                  ; Filling first register column
[num]-[end]        ; Consecutive numbers

EN 
;