dustem_get_wavelengths.pro
1.2 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
60
61
62
63
64
65
66
67
FUNCTION dustem_get_wavelengths,bidon,help=help
;+
; NAME:
; dustem_get_wavelengths
;
; PURPOSE:
; returns the wavelengths used for dustemwrap spectra. (Are they the same for emission and extinction ?)
;
; CATEGORY:
; DUSTEM Wrapper
;
; CALLING SEQUENCE:
; wavelengths=dustem_get_wavelengths([/help])
;
; INPUTS:
; None
;
; OPTIONAL INPUT PARAMETERS:
; None
;
; OUTPUTS:
; wavelengths = set of wavelengths [mic]
;
; OPTIONAL OUTPUT PARAMETERS:
; None
;
; ACCEPTED KEY-WORDS:
; help = if set, print this help
;
; COMMON BLOCKS:
; None
;
; SIDE EFFECTS:
; None
;
; RESTRICTIONS:
; None
;
; PROCEDURE:
;
;
; EXAMPLES
;
; MODIFICATION HISTORY:
; Written by JPB
; Evolution details on the DustEMWrap gitlab.
; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
;-
IF keyword_set(help) THEN BEGIN
doc_library,'dustem_get_wavelengths'
lambir=0.
goto,the_end
ENDIF
IF !dustem_which EQ 'DESERT' THEN BEGIN
lambir=((*!dustem_params).gemissiv.lambir)
ENDIF ELSE BEGIN
lambir=((*!dustem_params).lambda.lambda) ; there is an error here that I have noticed a long time ago. Temporary fix is @ the returned value
ENDELSE
the_end:
RETURN,lambir[1:*]
END