Commit d390acd626980b78b78c06efd91bb8ed68730560

Authored by Annie Hughes
1 parent bcae1765
Exists in master

removed stray stop

src/idl/dustem_plugin_modify_dust_pol.pro
... ... @@ -64,7 +64,7 @@ ENDIF
64 64  
65 65 ;Retrieving this sytem variable (dustem output)
66 66 if ~isa(!dustem_current) then begin
67   - out =0
  67 + out=0
68 68 goto, the_end
69 69 ENDIF else st=(*!dustem_current)
70 70  
... ... @@ -98,7 +98,6 @@ psi_used = replicate(psi,Nwaves)
98 98  
99 99 polar_ippsi2iqu,I,Q,U,frac_used,psi_used
100 100  
101   -
102 101 out=fltarr(Nwaves,3) ; modified this. This is the only plugin that has this number of outputs.
103 102  
104 103 ;degtorad = !pi/180
... ...
src/idl/dustem_run_plugins.pro
... ... @@ -178,8 +178,7 @@ FOR i=0L,n_elements(scopes)-1 DO BEGIN
178 178  
179 179 FOR j=0L,n_tags(*!dustem_plugin)-1 DO BEGIN
180 180  
181   - stop
182   - test = strcmp((*((*!dustem_plugin).(j).scope)),scope_to_match,strlen(scope_to_match),/FOLD_CASE) EQ 1
  181 + test = strcmp((*((*!dustem_plugin).(j).scope)),scope_to_match,strlen(scope_to_match),/FOLD_CASE) EQ 1
183 182  
184 183 IF test and keyword_set(avoid) THEN BEGIN
185 184 if (size(indices))[0] GT 1 then indices[j,i] *= 0 ELSE indices[j] *= 0
... ...