Commit 93cd417b4c83d5d096a9bf491ac9d977394703b2

Authored by Annie Hughes
1 parent cd49cdc0
Exists in master

updated help

src/idl/dustem_sort_params.pro
... ... @@ -3,32 +3,53 @@ PRO dustem_sort_params
3 3 ;+
4 4 ; NAME:
5 5 ; dustem_sort_params
  6 +;
  7 +; CATEGORY:
  8 +; DustEMWrap, Distributed, Low-Level
  9 +;
6 10 ; CALLING SEQUENCE:
7 11 ; dustem_sort_params
  12 +;
8 13 ; PURPOSE:
9 14 ; Sorts the parameter descriptions and values the way they must
10 15 ; be processed.
  16 +;
11 17 ; INPUTS:
12 18 ; None
  19 +;
13 20 ; OPTIONAL INPUT:
14 21 ; None
  22 +;
15 23 ; OUTPUTS:
16 24 ; None
  25 +;
17 26 ; PROCEDURE AND SUBROUTINE USED
18 27 ; Parameter description (!param_desc) and values (!init_value) are
19 28 ; ordered the way they should be processed. The ordered information
20 29 ; is put into system variables !PDO and !IDO respectively
21 30 ; If the isrf is being modified, then, PAH ionization fraction
22 31 ; is set to be updated as well.
  32 +;
23 33 ; SIDE EFFECTS:
24 34 ; !PDO and !IDO variables are set.
25 35 ; Optionally !ionfrac is set.
26 36 ; The !func_ind variable is set.
  37 +;
  38 +; RESTRICTIONS:
  39 +; The DustEM fortran code must be installed
  40 +; The DustEMWrap IDL code must be installed
  41 +;
27 42 ; MODIFICATION HISTORY:
28   -; See cvs logs
29   -; Written by NF,JPB,DP Jan-2007
  43 +; Written by NF,JPB,DP Jan-2007
  44 +; Evolution details on the DustEMWrap gitlab.
  45 +; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
30 46 ;-
31 47  
  48 + IF keyword_set(help) THEN BEGIN
  49 + doc_library,'dustem_sort_params'
  50 + goto,the_end
  51 + END
  52 +
32 53 nparam = n_elements(*!param_desc)
33 54 !func_ind=ptr_new(fltarr(nparam))
34 55  
... ...
src/idl/dustem_test_model_exists.pro
... ... @@ -3,7 +3,8 @@ function dustem_test_model_exists,model $
3 3 ,polarisation=polarisation $
4 4 ,silent=silent
5 5  
6   -;+ NAME:
  6 +;+
  7 +; NAME:
7 8 ; dustem_test_model_exists
8 9 ;
9 10 ; PURPOSE:
... ...