Commit 6ddd46abb2ebaaa749cfd4632f7493dab574adcd

Authored by Ilyes Choubani
1 parent afde94a3
Exists in master

removed extra dimensions... as JP said only IQU are needed.

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
src/idl/dustem_plugin_modify_dust_pol.pro
... ... @@ -87,16 +87,16 @@ psi_used = replicate(psi,Nwaves)
87 87  
88 88 polar_ippsi2iqu,I,Q,U,frac_used,psi_used
89 89  
90   -out=fltarr(Nwaves,5) ; modified this. This is the only plugin that has this number of outputs.
  90 +out=fltarr(Nwaves,3) ; modified this. This is the only plugin that has this number of outputs.
91 91  
92 92 ;degtorad = !pi/180
93 93  
94 94 out[*,0]=I
95 95 out[*,1]=Q
96 96 out[*,2]=U
97   -out[*,3]=frac_used
98   -;out[*,4]=0.5*atan(U,Q)/degtorad
99   -out[*,4]=psi_used
  97 +; out[*,3]=frac_used
  98 +; ;out[*,4]=0.5*atan(U,Q)/degtorad
  99 +; out[*,4]=psi_used
100 100  
101 101 the_scope:
102 102 scope='REPLACE_POLSED'
... ...