Commit 1fa79b40017456570135b6983e9994327bc3a02a
1 parent
79991f38
Exists in
master
added back passing plot ranges through _extra
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
src/idl/dustem_plot_fit_sed.pro
... | ... | @@ -123,7 +123,8 @@ IF keyword_set(title) THEN title = title ELSE title = 'Spectral Energy Distribut |
123 | 123 | |
124 | 124 | ;deffo define a title variable here. The procedures are not communicating with each other. |
125 | 125 | |
126 | -cgplot,(*!dustem_data.sed).wav,(*!dustem_data.sed).values/norm,/nodata,xtit='',ytit=textoidl('Brightness/N_H (MJy/sr/H)'),tit=title,ylog=1,/xlog,xr=xr,yr=yr,/ys,/xs,position=[0.12,0.35,0.96,0.90],xtickformat='(A1)' | |
126 | +;cgplot,(*!dustem_data.sed).wav,(*!dustem_data.sed).values/norm,/nodata,xtit='',ytit=textoidl('Brightness/N_H (MJy/sr/H)'),tit=title,ylog=1,/xlog,xr=xr,yr=yr,/ys,/xs,position=[0.12,0.35,0.96,0.90],xtickformat='(A1)' | |
127 | +cgplot,(*!dustem_data.sed).wav,(*!dustem_data.sed).values/norm,/nodata,xtit='',ytit=textoidl('Brightness/N_H (MJy/sr/H)'),tit=title,ylog=1,/xlog,/ys,/xs,position=[0.12,0.35,0.96,0.90],xtickformat='(A1)',_extra=_extra | |
127 | 128 | |
128 | 129 | |
129 | 130 | ;cgplot,st.polsed.wav,Q_sed*fact,xtit='',ytit=ytitstq,tit=titstq,ylog=ylog,/xlog,xr=xr,yr=yr,/ys,/xs,position=[0.17,0.35,0.95,0.95],xtickformat='(A1)' |
... | ... | @@ -179,6 +180,7 @@ FOR i=0L,Ngrains-1 DO BEGIN |
179 | 180 | cgoplot,st.sed.wav,st.sed.(i+1)*fact/norm,color=use_cols[i],linestyle=use_lines[i] |
180 | 181 | ENDFOR |
181 | 182 | |
183 | +;stop | |
182 | 184 | |
183 | 185 | ;PLOTTING OF THE PLUGIN(S)--------------- |
184 | 186 | IF tag_exist(*!dustem_scope,'CONTINUUM') THEN BEGIN | ... | ... |