Commit aae5408600206124093e51a74bd68224b9c4d8fe

Authored by Annie Hughes
1 parent d390acd6
Exists in master

noexit keyword and cosmetic modifs

Showing 1 changed file with 3 additions and 2 deletions   Show diff stats
src/idl/dustem_run_example.pro
1 1 PRO dustem_run_example, model $
2 2 ,show=show $
3 3 ,postscript=postscript $
4   - ,help=help
  4 + ,help=help $
  5 + ,noexit=noexit
5 6  
6 7 ;+
7 8 ; NAME:
... ... @@ -111,7 +112,6 @@ dustem_write_all,st_model,!dustem_dat
111 112  
112 113 ;== The following line runs the Fortran. The ouput structure st contains the results
113 114 st=dustem_run()
114   -stop
115 115  
116 116 known_plots=["emis", "extuv", "extir", "alb", "sdist"]
117 117 if polct gt 0 then known_plots=["emis", "extuv", "extir", "alb", "sdist","polext", "polsed", "align"]
... ... @@ -199,5 +199,6 @@ goto,the_end
199 199  
200 200 the_end:
201 201 message,'Finished dustem_run_example',/info
  202 +if keyword_set(noexit) then stop
202 203  
203 204 END
... ...