Blame view

src/idl/dustem_sed_plot.pro 1.2 KB
e71a7ada   Jean-Philippe Bernard   modified to work ...
1
PRO dustem_sed_plot,p_min,_EXTRA=extra,function_name=function_name,pol=pol,legend_xpos=legend_xpos,legend_ypos=legend_ypos
427f1205   Jean-Michel Glorian   version 4.2 merged
2
3
4

IF not keyword_set(function_name) THEN BEGIN
  ;Run dustem with as an interface to mpfitfun
6730c3f8   Jean-Philippe Bernard   modified to be co...
5
6
7
;stop
  ;== JPB: st used to come out from here
  ;even when not set. Had to replavce by out_st ...
b5ccb706   Jean-Philippe Bernard   improved to fit p...
8
  dustem_sed=dustem_compute_sed(p_min,st=st,cont=cont,freefree=freefree,synchrotron=synchrotron,out_st=out_st)
6730c3f8   Jean-Philippe Bernard   modified to be co...
9
  st=out_st
e71a7ada   Jean-Philippe Bernard   modified to work ...
10
  dustem_plot_fit_sed,st,dustem_sed,cont,freefree,synchrotron,_extra=extra,legend_xpos=legend_xpos,legend_ypos=legend_ypos
b5ccb706   Jean-Philippe Bernard   improved to fit p...
11
12
13
14
15
  IF keyword_set(pol) THEN BEGIN
    stop
    ;dustem_polsed=dustem_compute_polsed(p_min,st=pst,cont=cont,freefree=freefree,synchrotron=synchrotron,out_st=out_st)
    dustem_plot_polar,st,ps=ps,_Extra=extra,help=help,UV=UV,SED=SED,Pfrac=Pfrac,print_ratio=print_ratio,win=win,cont=cont,xr=xr,yr=yr,donotclose=donotclose,aligned=aligned,noerrbars=noerrbars,multi=multi,almabands=almabands,nsmooth=nsmooth
  ENDIF
427f1205   Jean-Michel Glorian   version 4.2 merged
16
17
18
ENDIF ELSE BEGIN
  CASE function_name OF
    'dustem_greybody_mpfit':BEGIN
6730c3f8   Jean-Philippe Bernard   modified to be co...
19
       dustem_sed=dustem_compute_gb_sed_fast(p_min,waves=ww,spec=spec)
427f1205   Jean-Michel Glorian   version 4.2 merged
20
21
22
23
24
25
26
;       stop
       dustem_gb_plot_fit_sed,ww,spec,dustem_sed,_extra=extra
    END
  ENDCASE
ENDELSE

END