Commit 13213423a71120e0ff3e67aa526fb0c43e19ce9a
1 parent
53b7977a
Exists in
master
updated help
Showing
1 changed file
with
5 additions
and
20 deletions
Show diff stats
src/idl/dustem_init_fixed_params.pro
1 | -PRO dustem_init_fixed_params,fpd,fiv | |
1 | +PRO dustem_init_fixed_params,fpd,fiv,help=help | |
2 | 2 | |
3 | 3 | ;+ |
4 | 4 | ; NAME: |
... | ... | @@ -12,16 +12,14 @@ PRO dustem_init_fixed_params,fpd,fiv |
12 | 12 | ; DustEMWrap, Distributed, Low-Level, Initialization |
13 | 13 | ; |
14 | 14 | ; CALLING SEQUENCE: |
15 | -; dustem_init_params, pd, iv, [,fpd=fpd,fiv=fiv,ulimed=ulimed,llimed=llimed,ulims=ulims,lolims=llims,tied=tied,fixed=fixed] | |
15 | +; dustem_init_fixed_params, fpd, fiv | |
16 | 16 | ; |
17 | 17 | ; INPUTS: |
18 | -; model -- the dust model | |
19 | -; pd -- the parameter description vector | |
20 | -; iv -- the initial values of the free parameters | |
18 | +; fpd -- the fixed parameter description vector | |
19 | +; fiv -- the initial values of the fixed parameters | |
21 | 20 | ; |
22 | 21 | ; OPTIONAL INPUT PARAMETERS: |
23 | 22 | ; |
24 | -; | |
25 | 23 | ; OUTPUTS: |
26 | 24 | ; None |
27 | 25 | ; |
... | ... | @@ -29,19 +27,6 @@ PRO dustem_init_fixed_params,fpd,fiv |
29 | 27 | ; None |
30 | 28 | ; |
31 | 29 | ; ACCEPTED KEY-WORDS: |
32 | -; model = specifies the interstellar dust mixture used by DustEM | |
33 | -; 'MC10' model from Compiegne et al 2010 (default) | |
34 | -; 'DBP90' model from Desert et al 1990 | |
35 | -; 'DL01' model from Draine & Li 2001 | |
36 | -; 'WD01_RV5p5B' model from Weingartner & Draine 2002 with Rv=5.5 | |
37 | -; 'DL07' model from Draine & Li 2007 | |
38 | -; 'J13' model from Jones et al 2013, as updated in | |
39 | -; Koehler et al 2014 | |
40 | -; 'G17_ModelA' model A from Guillet et al (2018). Includes | |
41 | -; polarisation. See Tables 2 and 3 of that paper for details. | |
42 | -; 'G17_ModelB' model B from Guillet et al (2018) | |
43 | -; 'G17_ModelC' model C from Guillet et al (2018) | |
44 | -; 'G17_ModelD' model A from Guillet et al (2018) | |
45 | 30 | ; help = if set, print this help |
46 | 31 | ; |
47 | 32 | ; COMMON BLOCKS: |
... | ... | @@ -76,7 +61,7 @@ END |
76 | 61 | need_save=0 |
77 | 62 | |
78 | 63 | ;This routine will use (*!dustem_fit).param_descs) |
79 | -;Therefore, if the variable already exists, it's content is saved, and will be put back in place later | |
64 | +;Therefore, if the variable already exists, its content is saved, and will be put back in place later | |
80 | 65 | IF ptr_valid((*!dustem_fit).param_descs) THEN BEGIN |
81 | 66 | pd=*(*!dustem_fit).param_descs |
82 | 67 | iv=*(*!dustem_fit).param_init_values | ... | ... |