make_phangs_extract_seds.pro 977 Bytes
PRO make_phangs_extract_seds,bidon

;make_phangs_grids.pro
;CAUTION: must launch nohup through ssh with no XY option ...
;====== srundir
;=== To be run on titan using something like this:
;srun -pn51 -J Pg06 -o {$phangs_srundir}/make_phangs_extract_seds.log /home/soft/exelis/idl83/bin/idl {$phangs_srundir}/make_phangs_extract_seds.pro &
;=== To be run on alma1 using something like this:
;nohup /usr/local/harris/idl87/bin/idl < {$phangs_srundir}/make_phangs_extract_seds.pro >& {$phangs_srundir}/make_phangs_extract_seds.log &
;ssh jbernard@localhost -p2223 "nohup /usr/local/harris/idl87/bin/idl < {$phangs_srundir}/make_phangs_extract_seds.pro >& {$phangs_srundir}/make_phangs_extract_seds.log &"
;=== check progress using:
;tail -20 {$phangs_srundir}/make_phangs_extract_seds.log

t0=systime(/sec)

phangs_extract_seds,source_name='ngc0628'

!quiet=0

t1=systime(/sec)

message,'It took '+strtrim((t1-t0)/60./60.,2)+' hrs',/info

message,'Job finished',/info

exit

END