Blame view

src/idl/dustem_activate_plugins.pro 3.07 KB
57cdd991   Ilyes Choubani   updating sections...
1
PRO dustem_activate_plugins,p_min,st=st,help=help
4750086c   Ilyes Choubani   nouvelle philosph...
2
3
4
5
6

;+
; NAME:
;    dustem_activate_plugins
; PURPOSE:
13a0b9db   Ilyes Choubani   why was this modi...
7
;    activates the plugins present in the parameter description vector (pd) and the fixed parameter description vector (fpd)
4750086c   Ilyes Choubani   nouvelle philosph...
8
; CATEGORY:
50bb5343   Annie Hughes   minor changes to ...
9
;    DUSTEM Wrapper, Distributed, Mid-Level, Plugins
4750086c   Ilyes Choubani   nouvelle philosph...
10
; CALLING SEQUENCE:
0c127f0f   Ilyes Choubani   correcting small ...
11
;    dustem_activate_plugins,p_min[,st][,/help] 
4750086c   Ilyes Choubani   nouvelle philosph...
12
; INPUTS:
57cdd991   Ilyes Choubani   updating sections...
13
;    p_min = (parameter values)/(initial parameter values) 
4750086c   Ilyes Choubani   nouvelle philosph...
14
; OPTIONAL INPUT PARAMETERS:
4750086c   Ilyes Choubani   nouvelle philosph...
15
; OUTPUTS:
01612ee4   Ilyes Choubani   General update: I...
16
;    None
4750086c   Ilyes Choubani   nouvelle philosph...
17
; OPTIONAL OUTPUT PARAMETERS:
57cdd991   Ilyes Choubani   updating sections...
18
;    st = Dustem output structure
4750086c   Ilyes Choubani   nouvelle philosph...
19
20
21
22
23
24
25
; ACCEPTED KEY-WORDS:
;    help                  = if set, print this help
; COMMON BLOCKS:
;    None
; SIDE EFFECTS:
;    None
; RESTRICTIONS:
50bb5343   Annie Hughes   minor changes to ...
26
27
28
;    The DustEM fortran code must be installed
;    The DustEMWrap idl code must be installed
; PROCEDURES AND SUBROUTINES USED:
50bb5343   Annie Hughes   minor changes to ...
29
; EXAMPLES
0c127f0f   Ilyes Choubani   correcting small ...
30
;    dustem_activate_plugins, p_min ,st=st
50bb5343   Annie Hughes   minor changes to ...
31
32
;
; MODIFICATION HISTORY:
57cdd991   Ilyes Choubani   updating sections...
33
;    Written by IC
50bb5343   Annie Hughes   minor changes to ...
34
35
;    Evolution details on the DustEMWrap gitlab.
;    See http://dustemwrap.irap.omp.eu/ for FAQ and help.  
4750086c   Ilyes Choubani   nouvelle philosph...
36
37
38
39
40
41
42
43
44
;-


IF keyword_set(help) THEN BEGIN
  doc_library,'dustem_activate_plugins'
  goto,the_end
  output=0.
ENDIF

e7938fa3   Ilyes Choubani   Corrected02: Impl...
45
p_dim = p_min * (*(*!dustem_fit).param_init_values)
e7938fa3   Ilyes Choubani   Corrected02: Impl...
46

386ad2de   Jean-Philippe Bernard   cant remeber what...
47
if isa((*!dustem_fit).fixed_param_descs) then begin 
dc84fd94   Ilyes Choubani   Small corrections...
48
;THIS IS USED TO ACCOUNT FOR THE FREEZING OF PLUGIN PARAMETERS
3c479f24   Ilyes Choubani   Allowing to fix p...
49
50
51

    ;concatenating the parameter vectors
    param_descs =  [(*(*!dustem_fit).param_descs),(*(*!dustem_fit).fixed_param_descs)]  
3c479f24   Ilyes Choubani   Allowing to fix p...
52
53
    param_values = [p_dim,(*(*!dustem_fit).fixed_param_init_values)]
    param_values = param_values(sort(param_descs)) ;should we put it back to the way it was?
1bc09467   Ilyes Choubani   fixed issue with ...
54
    param_descs = param_descs(sort(param_descs))
3c479f24   Ilyes Choubani   Allowing to fix p...
55
56
57
58
59
60
61
62
63
64
65
66
67
        ;Taking care of the param_func vector
    dustem_set_func_ind, param_descs, param_values ; this sets  (*(*!dustem_fit).param_func)
    param_func = (*(*!dustem_fit).param_func)
    dustem_set_func_ind, (*(*!dustem_fit).param_descs), p_dim ;setting the pointers back to their original valyes 
    
endif else begin
    
    param_descs = (*(*!dustem_fit).param_descs)
    param_values = p_dim
    param_func = (*(*!dustem_fit).param_func)

endelse

01612ee4   Ilyes Choubani   General update: I...
68
;PART WHERE THE PLUGINS RUN ACCORDING TO THEIR SCOPES. 
3c479f24   Ilyes Choubani   Allowing to fix p...
69

57cdd991   Ilyes Choubani   updating sections...
70

0068116a   Ilyes Choubani   General update + ...
71

01612ee4   Ilyes Choubani   General update: I...
72
73
74
;normal (additive) plugins come first as they can be used by other plugins 
;The ISRF plugin is next - we can always change its scope however we please to. DustEm runs here. This is with the /dustem_run keyword. 
;The plugins that use the DustEM output come next - we can always change their 'common' scope 
0068116a   Ilyes Choubani   General update + ...
75

01612ee4   Ilyes Choubani   General update: I...
76
;IF /avoid is used the specified scopes are avoided. They're considered when /avoid is missing.
dc84fd94   Ilyes Choubani   Small corrections...
77
;using '**' so not to write the entire scope
07a51917   Ilyes Choubani   updating help sec...
78
dustem_run_plugins, p_dim ,param_descs, param_values, param_func, ['*STELLAR*','*REPLACE*','*ISRF*'], avoid=1
2a8e29d5   Ilyes Choubani   small corrections...
79
dustem_run_plugins, p_dim ,param_descs, param_values, param_func, ['*STELLAR*','*ISRF*'] ,dustem_run=1,st=st ;dustem output is available at this step.
0068116a   Ilyes Choubani   General update + ...
80

07a51917   Ilyes Choubani   updating help sec...
81
82
;added this small condition to ensure that dustem is run
;(if no ISRF plugin is used)  
28a7a1a7   Ilyes Choubani   Remaining fixes. ...
83
84
85
86
if ~isa(st) then begin
    st=dustem_run(p_dim)
    !dustem_current=ptr_new(st)
endif
0068116a   Ilyes Choubani   General update + ...
87

91e991b5   Ilyes Choubani   Applying correcti...
88
dustem_run_plugins, p_dim ,param_descs, param_values, param_func, ['*REPLACE*']
0068116a   Ilyes Choubani   General update + ...
89
90


4750086c   Ilyes Choubani   nouvelle philosph...
91
the_end:
e7938fa3   Ilyes Choubani   Corrected02: Impl...
92

4750086c   Ilyes Choubani   nouvelle philosph...
93
END