Blame view

LabTools/IRAP/JPB/srun/make_phangs_smooth_isrf.pro 1.03 KB
38408656   Jean-Philippe Bernard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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

ee1fd9a9   Jean-Philippe Bernard   improved in the f...
21
22
phangs_smooth_muse_isrf,'ngc0628',reso_filter='PACS3',/save

38408656   Jean-Philippe Bernard   First commit
23
24
25
26
27
28
29
30
31
t1=systime(/sec)

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

message,'Job finished',/info

exit

END