Commit 006eeee6e787c967bf13108d7c72629b9a42461b

Authored by Annie Hughes
1 parent 38a17554
Exists in master

updated help

Showing 1 changed file with 48 additions and 1 deletions   Show diff stats
src/idl/dustem_define_dustem_data.pro
1 1 FUNCTION dustem_define_dustem_data,polarization=polarization,rchi2_weight=rchi2_weight
  2 +
  3 +;+
  4 +; NAME:
  5 +; dustem_define_dustem_data
  6 +;
  7 +; PURPOSE:
  8 +; Returns data structure with appropriate tags (format depends on polarized vs non polarized run)
  9 +;
  10 +; CATEGORY:
  11 +; DustEMWrap, Distributed, LowLevel
  12 +;
  13 +; CALLING SEQUENCE:
  14 +; dustem_data = dustem_define_dustem_data([/pol],[rchi2=outvar])
  15 +;
  16 +; INPUTS:
  17 +; None
  18 +;
  19 +; OPTIONAL INPUT PARAMETERS:
  20 +; None
  21 +;
  22 +; OUTPUTS:
  23 +; data structure with appropriate tags
  24 +;
  25 +; OPTIONAL OUTPUT PARAMETERS:
  26 +; structure with the same tags for the corresponding reduced chi2 weights
  27 +;
  28 +; ACCEPTED KEY-WORDS:
  29 +;
  30 +; COMMON BLOCKS:
  31 +; None
  32 +;
  33 +; SIDE EFFECTS:
  34 +;
  35 +; RESTRICTIONS:
  36 +; The DustEMWrap idl code must be installed
  37 +;
  38 +; PROCEDURES AND SUBROUTINES USED:
  39 +;
  40 +; EXAMPLES
  41 +; dustem_data = dustem_define_dustem_data(pol=1)
  42 +;
  43 +; MODIFICATION HISTORY:
  44 +; Written by JPB
  45 +; Evolution details on the DustEMWrap gitlab.
  46 +; See http://dustemwrap.irap.omp.eu/ for FAQ and help.
  47 +;-
  48 +
2 49  
3 50 if keyword_set(polarization) then begin
4 51 dustem_data_st ={ $ ;Structure contaning the data to fit
... ... @@ -28,4 +75,4 @@ endelse
28 75  
29 76 RETURN,dustem_data_st
30 77  
31   -END
32 78 \ No newline at end of file
  79 +END
... ...