Commit 2fe314fa8bacfb5e0df0f1ff7475e7c6e7ed9ee2

Authored by Annie Hughes
1 parent c4d755b4
Exists in master

cosmetic change to psi

Showing 1 changed file with 3 additions and 5 deletions   Show diff stats
src/idl/dustem_plugin_modify_dust_pol.pro
... ... @@ -8,7 +8,7 @@ FUNCTION dustem_plugin_modify_dust_pol, key=key, val=val, scope=scope, paramtag=
8 8 ; CATEGORY:
9 9 ; DUSTEM Wrapper
10 10 ; CALLING SEQUENCE:
11   -; a=dustem_plugin_modify_dust_pol(st,[key=][val=][,scope=][,paramtag=][,/help])
  11 +; a=dustem_plugin_modify_dust_pol(st,[key=][val=][,scope=][,paramtag=][,paramdefault=][,/help])
12 12 ; INPUTS:
13 13 ; st = dustem structure
14 14 ; OPTIONAL INPUT PARAMETERS:
... ... @@ -38,8 +38,6 @@ IF keyword_set(help) THEN BEGIN
38 38 GOTO,the_end
39 39 ENDIF
40 40  
41   -
42   -
43 41 IF keyword_set(scope) THEN BEGIN
44 42 out=0
45 43 GOTO, the_end
... ... @@ -57,7 +55,7 @@ if ~isa(!dustem_current) then begin
57 55 ENDIF else st=(*!dustem_current)
58 56  
59 57 ;below are the default values for the plugin parameters
60   -smallp_fact=1. ;This is the default multiplicative factore to the dust polarization
  58 +smallp_fact=1. ;This is the default dust polarization factor
61 59 psi=0. ;This is the default polarization angle
62 60  
63 61 IF keyword_set(key) THEN BEGIN
... ... @@ -102,7 +100,7 @@ RETURN, out
102 100  
103 101 the_end:
104 102 scope='REPLACE_POLSED'
105   -paramtag=['p','Psi (deg)']
  103 +paramtag=['p',textoidl('\psi')+' [deg]']
106 104  
107 105  
108 106 END
... ...