Commit b17359eac0a553b7e7944bfa3b6a84d9289b5766

Authored by Annie Hughes
1 parent 824ab304
Exists in master

updated help

Showing 1 changed file with 18 additions and 2 deletions   Show diff stats
src/idl/dustem_initialize_sed.pro
... ... @@ -3,16 +3,22 @@ FUNCTION dustem_initialize_sed,Nsed,comments=comments,help=help
3 3 ;+
4 4 ; NAME:
5 5 ; dustem_initialize_sed
  6 +;
6 7 ; PURPOSE:
7   -; Initializes an empty Dustem SED structure
  8 +; Initializes an empty DustEMWrapper SED structure
  9 +;
8 10 ; CATEGORY:
9   -; DUSTEM Wrapper
  11 +; DustEMWrapper, Distributed, Lowlevel
  12 +;
10 13 ; CALLING SEQUENCE:
11 14 ; st=dustem_initialize_sed(Nsed[,/help])
  15 +;
12 16 ; INPUTS:
13 17 ; Nsed: Number of elements/filters in the SED structure
  18 +;
14 19 ; OPTIONAL INPUT PARAMETERS:
15 20 ; None
  21 +;
16 22 ; OUTPUTS:
17 23 ; st = SED structure
18 24 ; The structure contains the following tags
... ... @@ -34,23 +40,33 @@ FUNCTION dustem_initialize_sed,Nsed,comments=comments,help=help
34 40 ; sigma_largep : uncertainty on largep [MJy/sr]
35 41 ; sigma_smallp: uncertainty on smallp []
36 42 ; sigma_psi : uncertainty on psi [deg]
  43 +;
37 44 ; OPTIONAL OUTPUT PARAMETERS:
38 45 ; comments : string comments about the SED
  46 +;
39 47 ; ACCEPTED KEY-WORDS:
40 48 ; help = if set, print this help
  49 +;
41 50 ; COMMON BLOCKS:
42 51 ; None
  52 +;
43 53 ; SIDE EFFECTS:
44 54 ; None
  55 +;
45 56 ; RESTRICTIONS:
46 57 ; None
  58 +;
47 59 ; PROCEDURE:
48 60 ; Straightforward
  61 +;
49 62 ; EXAMPLES
50 63 ; st=dustem_initialize_sed(10)
51 64 ; help,st
  65 +;
52 66 ; MODIFICATION HISTORY:
53 67 ; Written by JPB
  68 +; Evolution details on the DustEMWrap gitlab.
  69 +; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
54 70 ;-
55 71  
56 72 IF keyword_set(help) THEN BEGIN
... ...