Commit 66c3a3ea2c4e742be51a98a41f4541994445acbc

Authored by Annie Hughes
1 parent 2304e636
Exists in master

cosmetic changes to help

Showing 1 changed file with 13 additions and 1 deletions   Show diff stats
src/idl/dustem_read_fits_table.pro
... ... @@ -3,29 +3,42 @@ PRO dustem_read_fits_table,filename=filename,dustem_st=dustem_st,help=help
3 3 ;+
4 4 ; NAME:
5 5 ; dustem_read_fits_table
  6 +;
6 7 ; PURPOSE:
7 8 ; Reads a Dustem fits table into current DustEMWrap system variables
  9 +;
8 10 ; CATEGORY:
9 11 ; DustEMWrap, High-Level, Distributed, User convenience
  12 +;
10 13 ; CALLING SEQUENCE:
11 14 ; dustem_read_fits_table[,filename=][,/help]
  15 +;
12 16 ; INPUTS:
  17 +;
13 18 ; OPTIONAL INPUT PARAMETERS:
14 19 ; filename = File name to be read (default='./dustemwrap_results.fits')
  20 +;
15 21 ; OUTPUTS:
16 22 ; None
  23 +;
17 24 ; OPTIONAL OUTPUT PARAMETERS:
18 25 ; dustem_st = emission and extinction dustem output structure (total and for each grain type)
  26 +;
19 27 ; ACCEPTED KEY-WORDS:
20 28 ; help = If set, print this help
  29 +;
21 30 ; COMMON BLOCKS:
22 31 ; None
  32 +;
23 33 ; SIDE EFFECTS:
24 34 ; DustEMWrap system variables are set
  35 +;
25 36 ; RESTRICTIONS:
26 37 ; The DustEMWrap IDL code must be installed
  38 +;
27 39 ; PROCEDURE:
28 40 ; None
  41 +;
29 42 ; EXAMPLES
30 43 ;
31 44 ; MODIFICATION HISTORY:
... ... @@ -50,7 +63,6 @@ message,'Reading '+file,/info
50 63  
51 64 toto=mrdfits(file,0,main_header)
52 65  
53   -;stop
54 66 ;get extention numbers from main header
55 67 current_ext=1
56 68 ext_names=['']
... ...