;+
;
;  Name: mk_newdata
;
;  Purpose: job to create new data images for distribution (show_pix,etc)
;	
;  History:
;     10-Jul-1994 (SLF) Written
;     14-Jul-1994 (SLF) Add fl_suntoday, fl_sxtobsnar, fl_goesplot
;			Moved distribution request into mk_pix
;     12-oct-1993 (SLF) call to fl_summary, distribute jobs in parallel
;                       via go_batch / taskwait
;      6-Mar-1994 (SLF) remove go_batch (OSF problems)
;
;  Method - background job submitted via auto_toban
;           Parallel, distributed execution of subtasks.
;
;  Generate images for first_light, show_pix
;-
; job to create SXT / GBO collage

; determine best nodes for tasks
best=is_bestnode(/defnode, goodorder=good)

; create the original collage (background it)
;go_batch,"fl_suntoday,/generate,/nodist",logname=sunlog,nodelist=good(0)
fl_suntoday,/generate,/nodist

; create the sxt/NOAA AR/Observing region overlay (background it)
;go_batch,"fl_sxtobsnar,/generate,/nodist", logname=sxtobslog, nodelist=good(1)
fl_sxtobsnar,/generate,/nodist

; create recent GOES / image time overlay (background it)
;go_batch,"fl_goesplot,/generate,/nodist", logname=goeslog, nodelist=good(2)
fl_goesplot,/generate,/nodist

message,/info,"Starting summary image creation"
fl_summary, /distrib

end
