Commit c8f2e8b76331b4a456542fb4c70992d8863274de
1 parent
02ee63e9
Exists in
master
fixed error in final match
Showing
1 changed file
with
18 additions
and
9 deletions
Show diff stats
src/idl/dustem_show_file_dependencies.pro
... | ... | @@ -65,18 +65,27 @@ if keyword_set(compfile) then use_compfile=compfile |
65 | 65 | ;===== The following is the list of non regression tests performed under idl and fawlty |
66 | 66 | dustem_init,/wrap,/plot |
67 | 67 | dustem_run_example,'MC10',show="all" |
68 | -dustem_make_polarization_sed_example,model='G17_MODELA' | |
69 | -dustem_fit_intensity_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile1.fits' | |
70 | -dustem_fit_polarization_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile2.fits' | |
71 | -dustem_fit_ext_pol_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile3.fits' | |
72 | -dustem_fit_sed_ext_pol_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile4.fits' | |
68 | +dustem_make_polarization_sed_example,model='G17_MODELD',outfile='./pol_sed_G17D.xcat' | |
69 | +dustem_fit_intensity_example,Nitermax=5,fits_save_and_restore='/tmp/mysavefile1.fits' | |
70 | +dustem_fit_intensity_example,Nitermax=1,/noobj | |
73 | 71 | dustem_fit_intensity_mbb_example,Nitermax=1,postscript='/tmp/dustemwrap_postcript_example.ps' |
72 | +dustem_fit_polarization_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile2.fits' | |
73 | +dustem_make_polarization_ext_example,model='G17_MODELD',outfile='./pol_ext_G17D.xcat' | |
74 | +dustem_make_polarization_ext_example,model='G17_MODELA',outfile='./pol_ext_G17A.xcat' | |
75 | +dustem_fit_ext_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile3.fits' | |
76 | +dustem_fit_ext_pol_example,Nitermax=3,fits_save_and_restore='/tmp/mysavefile4.fits' | |
77 | +;following fails in the write_fits_table | |
78 | +dustem_fit_ext_pol_example,Nitermax=3,ext_file='./pol_ext_G17D.xcat';,fits_save_and_restore='/tmp/mysavefile5.fits' | |
79 | +dustem_fit_sed_ext_pol_example,Nitermax=2,fits_save_and_restore='/tmp/mysavefile6.fits' | |
80 | +;following fails in the write_fits_table | |
81 | +;dustem_fit_sed_ext_pol_example,Nitermax=5,fits_save_and_restore='/tmp/mysavefile7.fits',ext_file='./pol_ext_G17D.xcat',sed_file='./pol_sed_G17D.xcat' | |
82 | +dustem_fit_sed_ext_pol_example,Nitermax=5,ext_file='./pol_ext_G17D.xcat',sed_file='./pol_sed_G17D.xcat' | |
83 | + | |
74 | 84 | ;=== for some reason plot goes red here under fawlty |
75 | 85 | ;=== and fails when run with only the minimal dustemwrap installed (stellar . txt file is missing) |
76 | -dustem_myisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile5.fits' | |
86 | +;dustem_myisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile5.fits' | |
77 | 87 | ;=== fails when run with only the minimal dustemwrap installed (stellar . txt file is missing) |
78 | -dustem_stellarpopisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile6.fits' | |
79 | -dustem_fit_intensity_example,Nitermax=1,/noobj | |
88 | +;dustem_stellarpopisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile6.fits' | |
80 | 89 | |
81 | 90 | ; END LIST OF TOP-LEVEL ROUTINES |
82 | 91 | |
... | ... | @@ -141,7 +150,7 @@ message,'Wrote '+use_outfile,/info |
141 | 150 | ; CONSTRUCT A STRUCTURE WITH ROUTINES IN SRC/IDL THAT WERE NOT |
142 | 151 | ; COMPILED DURING THE EXAMPLES |
143 | 152 | allpro=file_search(!dustem_wrap_soft_dir+'src/idl/*pro',count=nall) |
144 | -mathch2,st.path,allpro,a,b | |
153 | +match2,st.path,allpro,a,b | |
145 | 154 | idx=where(b eq -1, ct) |
146 | 155 | if ct ne 0 then begin |
147 | 156 | ust=replicate(one_st,ct) | ... | ... |