Commit 0297394d5a7b02099b58e44fbdb88a0a74122ef2

Authored by Jean-Philippe Bernard
1 parent 6ad05c38
Exists in master

test

LabTools/IRAP/JPB/srun/make_phangs_grids.pro
... ... @@ -22,8 +22,12 @@ t0=systime(/sec)
22 22 ;make_sed_phangs_tables,/test,grid_type=2,/show_seds,isrf_class=15
23 23 ;make_sed_phangs_tables,grid_type=2,isrf_class=15
24 24 ;make_sed_phangs_tables,/test,/show_seds,grid_type=2,isrf_class=0
25   -make_sed_phangs_tables,grid_type=2,isrf_class=0
26   -
  25 +;make_sed_phangs_tables,grid_type=2,isrf_class=0
  26 +N=1.e9
  27 +FOR i=0L,N-1 DO BEGIN
  28 + print,"hello world"
  29 + wait,3
  30 +ENDFOR
27 31 t1=systime(/sec)
28 32  
29 33 message,'It took '+strtrim((t1-t0)/60./60.,2)+' hrs',/info
... ...
src/idl/dustem_make_sed_table.pro
... ... @@ -69,6 +69,7 @@ Nparams=n_elements(parameters_description)
69 69 ;== INITIALISE DUSTEM
70 70 use_polarization=0
71 71 dustem_init,model=model,pol=use_polarisation
  72 +!quiet=1
72 73 ;!dustem_verbose=1
73 74 ;!dustem_show_plot=1
74 75 !dustem_which='RELEASE'
... ... @@ -148,7 +149,7 @@ loadct,13
148 149 FOR i=0L,Nc-1 DO BEGIN
149 150 ;dustem_init,model=model,pol=use_polarisation
150 151 ;dustem_set_data,m_fit=sed,m_show=sed,x_fit=ext,x_show=ext
151   - dummy=0 ;otherwise model is not recomputed !!
  152 + dummy=0 ;otherwise model is not recomputed !!
152 153  
153 154 ;fpval = *parameter_values[i]
154 155 pval = *parameter_values[i]
... ...
src/idl/test_dustem_dl07_isrf_model.pro
... ... @@ -2,6 +2,7 @@ PRO test_dustem_dl07_isrf_model
2 2  
3 3 use_model='DL07'
4 4 dustem_init,model=use_model,polarization=use_polarization
  5 +!quiet=1
5 6  
6 7 ;set up some data (needed as will return an SED)
7 8 dir=!dustem_wrap_soft_dir+'/Data/EXAMPLE_OBSDATA/'
... ...