Commit 77c41759363fd604df50b43b57a976894ac22a8e
1 parent
66c3a3ea
Exists in
master
added init wraptest case to list of regression tests
Showing
1 changed file
with
5 additions
and
6 deletions
Show diff stats
src/idl/dustem_show_file_dependencies.pro
... | ... | @@ -7,9 +7,9 @@ PRO dustem_show_file_dependencies,help=help,outfile=outfile |
7 | 7 | ; PURPOSE: |
8 | 8 | ; Generate a list of routines called by DustEMWrap runs |
9 | 9 | ; CATEGORY: |
10 | -; DustEMWrap, Distributed, Low-Level | |
10 | +; DustEMWrap, Distributed, Low-Level, Development | |
11 | 11 | ; CALLING SEQUENCE: |
12 | -; dustem_show_file_dependencies[,help=help] | |
12 | +; dustem_show_file_dependencies[,help=help][,outfile=] | |
13 | 13 | ; INPUTS: |
14 | 14 | ; None |
15 | 15 | ; OPTIONAL INPUT PARAMETERS: |
... | ... | @@ -27,8 +27,9 @@ PRO dustem_show_file_dependencies,help=help,outfile=outfile |
27 | 27 | ; The DustEM fortran code must be installed |
28 | 28 | ; The DustEMWrap IDL code must be installed |
29 | 29 | ; PROCEDURES AND SUBROUTINES USED: |
30 | -; *** COMMENT AH --> is this really NONE? **** | |
30 | +; | |
31 | 31 | ; EXAMPLES |
32 | + ; | |
32 | 33 | ; MODIFICATION HISTORY: |
33 | 34 | ; Written by JPB Apr-2011 |
34 | 35 | ; Evolution details on the DustEMWrap gitlab. |
... | ... | @@ -47,7 +48,7 @@ if keyword_set(outfile) then use_outfile=outfile |
47 | 48 | |
48 | 49 | ;/Users/jpb/Soft_Libraries/dustem-wrapper_idl/src/idl/dustem_run_example.pro |
49 | 50 | ;/Users/jpb/Soft_Libraries/dustem-wrapper_idl/src/idl/dustem_stellarpopisrf_example.pro |
50 | - | |
51 | +dustem_init,/wrap,/plot | |
51 | 52 | dustem_run_example,'MC10' |
52 | 53 | dustem_make_polarization_sed_example,model='G17_MODELA' |
53 | 54 | dustem_fit_intensity_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile1.fits' |
... | ... | @@ -55,8 +56,6 @@ dustem_fit_polarization_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefil |
55 | 56 | dustem_fit_ext_pol_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile3.fits' |
56 | 57 | dustem_fit_sed_ext_pol_example,Nitermax=1,fits_save_and_restore='/tmp/mysavefile4.fits' |
57 | 58 | dustem_fit_intensity_mbb_example,Nitermax=1,postscript='/tmp/dustemwrap_postcript_example.ps' |
58 | -;The following is obsolete. No need to be there. | |
59 | -;dustem_fit_modified_bb_example,Nitermax=1 | |
60 | 59 | ; END LIST OF TOP-LEVEL ROUTINES |
61 | 60 | |
62 | 61 | help,/function,output=ff | ... | ... |