Commit 5d7f6687f51c61fc48bf098bfea092c6b8847998

Authored by Annie Hughes
1 parent ebbb68b1
Exists in master

tidied help

Showing 1 changed file with 21 additions and 7 deletions   Show diff stats
src/idl/dustem_plot_nuinu_em.pro
... ... @@ -3,41 +3,55 @@ PRO dustem_plot_nuinu_em,st,_extra=_extra,help=help
3 3 ;+
4 4 ; NAME:
5 5 ; dustem_plot_nuinu_em
  6 +;
6 7 ; PURPOSE:
7   -; Plots a Dustem spectrum
  8 +; Plots a DustEM emission spectrum
  9 +;
8 10 ; CATEGORY:
9 11 ; Dustem
  12 +;
10 13 ; CALLING SEQUENCE:
11   -; dustem_plot_fit_sed,st[,/help][,_extra=]
  14 +; dustem_plot_nuinu_em,st[,/help][,_extra=]
  15 +;
12 16 ; INPUTS:
13 17 ; st = Dustem model output structure
  18 +;
14 19 ; OPTIONAL INPUT PARAMETERS:
15 20 ; _extra = extra parameters for the plot routine
  21 +;
16 22 ; OUTPUTS:
17 23 ; None
  24 +;
18 25 ; OPTIONAL OUTPUT PARAMETERS:
19 26 ; None
  27 +;
20 28 ; ACCEPTED KEY-WORDS:
21 29 ; help = If set, print this help
  30 +;
22 31 ; COMMON BLOCKS:
23 32 ; None
  33 +;
24 34 ; SIDE EFFECTS:
25   -; model is plotted
  35 +;
26 36 ; RESTRICTIONS:
27   -; The dustem idl wrapper must be installed
  37 +; The DustEMWrap IDL code must be installed
  38 +;
28 39 ; PROCEDURE:
29 40 ; None
  41 +;
30 42 ; EXAMPLES
31 43 ; dustem_init,/wrap
32 44 ; dir=getenv('DUSTEM_RES')
33 45 ; st=dustem_read_all_res(dir)
34 46 ; dustem_plot_nuinu_em,st,yr=[1e-28,1.e-22],/ysty,xr=[1,5e3],/xsty
  47 +;
35 48 ; MODIFICATION HISTORY:
36   -; Written by J.-Ph. Bernard
37   -; see evolution details on the dustem cvs maintained at CESR
38   -; Contact J.-Ph. Bernard (Jean-Philippe.Bernard@cesr.fr) in case of problems.
  49 +; Written by J.-Ph. Bernard 2007
  50 +; Evolution details on the DustEMWrap gitlab.
  51 +; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
39 52 ;-
40 53  
  54 +
41 55 IF keyword_set(help) THEN BEGIN
42 56 doc_library,'dustem_plot_nuinu_em'
43 57 goto,the_end
... ...