make_phangs_smooth_isrf.pro
1.03 KB
PRO make_phangs_smooth_isrf,bidon
;make_phangs_smooth_isrf.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_smooth_isrf.log /home/soft/exelis/idl83/bin/idl {$phangs_srundir}/make_phangs_smooth_isrf.pro &
;=== To be run on alma1 using something like this:
;nohup /usr/local/harris/idl87/bin/idl < {$phangs_srundir}/make_phangs_smooth_isrf.pro >& {$phangs_srundir}/make_phangs_smooth_isrf.log &
;ssh jbernard@localhost -p2223 "nohup /usr/local/harris/idl87/bin/idl < {$phangs_srundir}/make_phangs_smooth_isrf.pro >& {$phangs_srundir}/make_phangs_smooth_isrf.log &"
;=== check progress using:
;tail -20 {$phangs_srundir}/make_phangs_smooth_isrf.log
t0=systime(/sec)
bidon=1
phangs_smooth_muse_isrf,'ngc0628',reso_filter='SPIRE3',/save
phangs_smooth_muse_isrf,'ngc0628',reso_filter='PACS3',/save
t1=systime(/sec)
message,'It took '+strtrim((t1-t0)/60./60.,2)+' hrs',/info
message,'Job finished',/info
exit
END