dustem_compute_polext.pro
1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
FUNCTION dustem_compute_polext ,p_dim,sti,_extra=extra,out_st=out_st,dustem_qext,dustem_uext,Q_ext,U_ext
;CREATED AS A CONSEQUENCE OF THE INCLUSION OF THE PLUGINS
;written to homogonize DustEM
IF not keyword_set(sti) THEN BEGIN
dustem_activate_plugins,p_dim/(*(*!dustem_fit).param_init_values)
sti=dustem_run(p_dim)
ENDIF
If ptr_valid(*!dustem_plugin) THEN BEGIN
;ADDING PLUGIN TO SPECTRUM----------------
;if n_tags(!dustem_data.polext) gt 1 then begin
for i=0L,n_tags(*!dustem_scope)-1 do begin
if total(strsplit((*(*!dustem_scope).(i)),'+',/extract) eq 'ADD_POLEXT') then sti.polext.ext_tot+=(*(*!dustem_plugin).(i))
endfor
;endif
;------------------------------------------
; ;=============================THIS BLOCK IS WRONG YOU HAVE TO CHANGE IT=============================
;
;
; ;MODIFYING SPECTRUM VIA PLUGIN-------------- THIS BLOCK NEEDS TO BE UNDER THE DUSTEM_POLSED LINE
;
; for i=0L,n_tags(*!dustem_scope)-1 do begin
;
; if total(strsplit((*(*!dustem_scope).(i)),'+',/extract) eq 'MODIFY_POLEXT') then begin
;
; ;making sure it's the stokes plugin that gets used here
;
; iidx=where(tag_names(*!dustem_scope) eq 'STEXT')
;
;
; IF iidx eq i THEN BEGIN ;not sure about this condition but you get the spirit
;
; Q_ext=(*(*!dustem_plugin).(i))(0:n_elements((*(*!dustem_plugin).(i)))/2-1)
; U_ext=(*(*!dustem_plugin).(i))(n_elements((*(*!dustem_plugin).(i)))/2:*)
; dustem_qext=interpol(Q_ext,sti.polext.wav,(*!dustem_data.polext).wav)
; dustem_uext=interpol(U_ext,sti.polext.wav,(*!dustem_data.polext).wav)
;
; endif
; endif
; endfor
; ;endif
; ;-------------------------------------------
; ;=======================================================================================================
ENDIF
dustem_polext = interpol(sti.polext.ext_tot,sti.polext.wav,(*!dustem_data.polext).wav)
return, dustem_polext
END