Commit ea8fc831a6474e75d33caa09f05a91cff6441503
1 parent
fabcd2dd
Exists in
master
latest complete compile list of examples
Showing
1 changed file
with
4 additions
and
6 deletions
Show diff stats
src/idl/dustem_show_file_dependencies.pro
... | ... | @@ -21,6 +21,7 @@ PRO dustem_show_file_dependencies,help=help,outfile=outfile,compfile=compfile |
21 | 21 | ; functions. Default is './DustEMWrap_dependencies.xcat' |
22 | 22 | ; compfile = string, .xcat file (and path) with list of unused |
23 | 23 | ; routines in !dustem_wrap_soft_dir/src/idl/. Default is './DustEMWrap_unused_routines.xcat' |
24 | +; | |
24 | 25 | ; OUTPUTS: |
25 | 26 | ; |
26 | 27 | ; OPTIONAL OUTPUT PARAMETERS: |
... | ... | @@ -58,15 +59,12 @@ if keyword_set(outfile) then use_outfile=outfile |
58 | 59 | if keyword_set(compfile) then use_compfile=compfile |
59 | 60 | |
60 | 61 | ; HERE IS WHERE YOU PUT THE TOP-LEVEL ROUTINES TO RUN |
61 | - | |
62 | - | |
63 | -;/Users/jpb/Soft_Libraries/dustem-wrapper_idl/src/idl/dustem_run_example.pro | |
64 | -;/Users/jpb/Soft_Libraries/dustem-wrapper_idl/src/idl/dustem_stellarpopisrf_example.pro | |
65 | 62 | ;===== The following is the list of non regression tests performed under idl and fawlty |
66 | 63 | dustem_init,/wrap,/plot |
67 | 64 | dustem_run_example,'MC10',show="all" |
68 | 65 | dustem_make_polarization_sed_example,model='G17_MODELD',outfile='./pol_sed_G17D.xcat' |
69 | 66 | dustem_fit_intensity_example,Nitermax=5,fits_save_and_restore='/tmp/mysavefile1.fits' |
67 | +dustem_fit_spectro_example,Nitermax=1 | |
70 | 68 | dustem_fit_intensity_example,Nitermax=1,/noobj |
71 | 69 | dustem_fit_intensity_mbb_example,Nitermax=1,postscript='/tmp/dustemwrap_postcript_example.ps' |
72 | 70 | dustem_fit_polarization_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile2.fits' |
... | ... | @@ -83,7 +81,7 @@ dustem_fit_sed_ext_pol_example,Nitermax=5,ext_file='./pol_ext_G17D.xcat',sed_fil |
83 | 81 | |
84 | 82 | ;=== for some reason plot goes red here under fawlty |
85 | 83 | ;=== and fails when run with only the minimal dustemwrap installed (stellar . txt file is missing) |
86 | -;dustem_myisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile5.fits' | |
84 | +dustem_myisrf_example,Nitermax=1 | |
87 | 85 | ;=== fails when run with only the minimal dustemwrap installed (stellar . txt file is missing) |
88 | 86 | ;dustem_stellarpopisrf_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile6.fits' |
89 | 87 | |
... | ... | @@ -155,7 +153,7 @@ idx=where(b eq -1, ct) |
155 | 153 | if ct ne 0 then begin |
156 | 154 | ust=replicate(one_st,ct) |
157 | 155 | ust.path=allpro[idx] |
158 | - ust.name=strupcase(file_basename(allpro[xx],'.pro')) | |
156 | + ust.name=strupcase(file_basename(allpro[idx],'.pro')) | |
159 | 157 | write_xcat,ust,use_compfile |
160 | 158 | message,'Wrote '+use_compfile,/info |
161 | 159 | end else begin | ... | ... |