Commit 6562282d8b98c3cf920a5eb52f3c12d9576e8d06
1 parent
440f1ae1
Exists in
master
unknown
Showing
1 changed file
with
6 additions
and
5 deletions
Show diff stats
src/idl/dustem_plot_dataset.pro
... | ... | @@ -40,6 +40,7 @@ PRO dustem_plot_dataset,st $ |
40 | 40 | ; ACCEPTED KEY-WORDS: |
41 | 41 | ; help |
42 | 42 | ; refresh = Plot the datasets that change after each DustEM run |
43 | +; | |
43 | 44 | ; COMMON BLOCKS: |
44 | 45 | ; None |
45 | 46 | ; |
... | ... | @@ -175,7 +176,7 @@ if keyword_set(dataset) then begin ; |
175 | 176 | |
176 | 177 | Case strupcase(dataset[ss]) of |
177 | 178 | |
178 | - 'SED': begin | |
179 | + 'SED': begin | |
179 | 180 | |
180 | 181 | ;SETTING THE PLOT RANGE |
181 | 182 | xr = !dustem_plot_range.sed.xr |
... | ... | @@ -197,16 +198,16 @@ if keyword_set(dataset) then begin ; |
197 | 198 | xx=((*(*!dustem_data).sed).wav)[idx_spec] |
198 | 199 | yy=dustem_interp[idx_spec] |
199 | 200 | rms=2.*((*(*!dustem_data).sed).sigma)(idx_spec)/2. |
200 | - cgoplot,xx,((*(*!dustem_data).sed).values)[idx_spec]/yy,color='Powder Blue',psym=16,syms=0.8,noerase=1,pos=position[1] | |
201 | - cgerrplot,((*(*!dustem_data).sed).wav)(idx_spec),(((*(*!dustem_data).sed).values)[idx_spec]-rms)/yy,(((*(*!dustem_data).sed).values)[idx_spec]+rms)/yy,color='Powder Blue' | |
201 | + cgoplot,xx,((*(*!dustem_data).sed).values)[idx_spec]/yy,color='Powder Blue',psym=16,syms=0.8,noerase=1,pos=position[1];,noclip=0 | |
202 | + cgerrplot,((*(*!dustem_data).sed).wav)(idx_spec),(((*(*!dustem_data).sed).values)[idx_spec]-rms)/yy,(((*(*!dustem_data).sed).values)[idx_spec]+rms)/yy,color='Powder Blue';,noclip=0 | |
202 | 203 | ENDIF |
203 | 204 | |
204 | 205 | IF ct_filt NE 0 THEN BEGIN |
205 | 206 | xx=((*(*!dustem_data).sed).wav)[idx_filt] |
206 | 207 | yy=dustem_interp[idx_filt] |
207 | 208 | rms=2.*((*(*!dustem_data).sed).sigma)(idx_filt)/2. |
208 | - cgoplot,xx,((*(*!dustem_data).sed).values)[idx_filt]/yy,psym=16,color='Dodger Blue',syms=0.8,noerase=1,pos=position[1] | |
209 | - cgerrplot,((*(*!dustem_data).sed).wav)(idx_filt),(((*(*!dustem_data).sed).values)[idx_filt]-rms)/yy,(((*(*!dustem_data).sed).values)[idx_filt]+rms)/yy,color='Dodger Blue';,/overplot | |
209 | + cgoplot,xx,((*(*!dustem_data).sed).values)[idx_filt]/yy,psym=16,color='Dodger Blue',syms=0.8,noerase=1,pos=position[1];,noclip=0 | |
210 | + cgerrplot,((*(*!dustem_data).sed).wav)(idx_filt),(((*(*!dustem_data).sed).values)[idx_filt]-rms)/yy,(((*(*!dustem_data).sed).values)[idx_filt]+rms)/yy,color='Dodger Blue';,noclip=0;,/overplot | |
210 | 211 | ENDIF |
211 | 212 | |
212 | 213 | ... | ... |