Commit af2812ab9306aa03855ef42c26024cddc6e61b86
1 parent
ed797fcd
Exists in
master
updated doc help
Showing
1 changed file
with
15 additions
and
3 deletions
Show diff stats
src/idl/dustem_plot_dataset.pro
... | ... | @@ -4,14 +4,19 @@ PRO dustem_plot_dataset, st, dustem_interp, dustem_spec, extra_spec, dataset=dat |
4 | 4 | ;+ |
5 | 5 | ; NAME: |
6 | 6 | ; dustem_plot_dataset |
7 | +; | |
7 | 8 | ; PURPOSE: |
8 | 9 | ; Allows the plotting of a (several) dataset(s) |
10 | +; | |
9 | 11 | ; CATEGORY: |
10 | -; DustEMWrap | |
12 | +; DustEMWrap, Distributed, Low-level, Plotting | |
13 | +; | |
11 | 14 | ; CALLING SEQUENCE: |
12 | 15 | ; dustem_plot_dataset, st, dustem_interp, dustem_spec, extra_spec, dataset=dataset, norm=norm, refresh=refresh, nodata=nodata, position=position,positive_only=positive_only, negative_only=negative_only, _extra=_extra |
16 | +; | |
13 | 17 | ; INPUTS: |
14 | 18 | ; p_dim |
19 | +; | |
15 | 20 | ; OPTIONAL INPUT PARAMETERS: |
16 | 21 | ; st |
17 | 22 | ; dustem_interp |
... | ... | @@ -24,29 +29,36 @@ PRO dustem_plot_dataset, st, dustem_interp, dustem_spec, extra_spec, dataset=dat |
24 | 29 | ; position=position |
25 | 30 | ; positive_only=positive_only |
26 | 31 | ; negative_only=negative_only |
32 | +; | |
27 | 33 | ; OUTPUTS: |
28 | 34 | ; NONE |
35 | +; | |
29 | 36 | ; OPTIONAL OUTPUT PARAMETERS: |
30 | 37 | ; |
31 | - | |
32 | 38 | ; ACCEPTED KEY-WORDS: |
33 | 39 | ; help |
40 | +; | |
34 | 41 | ; COMMON BLOCKS: |
35 | 42 | ; None |
43 | +; | |
36 | 44 | ; SIDE EFFECTS: |
37 | 45 | ; Does a plot |
46 | +; | |
38 | 47 | ; RESTRICTIONS: |
39 | 48 | ; The DustEM fortran code must be installed |
40 | 49 | ; The DustEMWrap IDL code must be installed |
50 | +; | |
41 | 51 | ; PROCEDURES AND SUBROUTINES USED: |
42 | 52 | ; |
43 | 53 | ; EXAMPLES |
44 | 54 | ; |
45 | 55 | ; MODIFICATION HISTORY: |
46 | -; Written by Ilyes Choubani | |
56 | +; Written by Ilyes Choubani 2022 | |
47 | 57 | ; Evolution details on the DustEMWrap gitlab. |
58 | +; See http://dustemwrap.irap.omp.eu/ for FAQ and help. | |
48 | 59 | ;- |
49 | 60 | |
61 | + | |
50 | 62 | IF keyword_set(help) THEN BEGIN |
51 | 63 | doc_library,'dustem_plot_dataset' |
52 | 64 | goto,the_end | ... | ... |