Commit c383159ce5f83ea277d7fc7e069c73b6d611c993

Authored by Ilyes Choubani
1 parent 2e187049
Exists in master

removed help section because it is very wrong

Showing 1 changed file with 0 additions and 30 deletions   Show diff stats
src/idl/dustem_mask_data.pro
1 1 FUNCTION dustem_mask_data,data_struct,omit=omit,data_set=data_set,help=help
2   -;+
3   -; NAME:
4   -; dustem_mask_data
5   -; PURPOSE:
6   -; Removing filters from a data structure.
7   -; CATEGORY:
8   -; DUSTEM Wrapper
9   -; CALLING SEQUENCE:
10   -; data_struct=dustem_mask_data(data_struct,omit=,data_set=)
11   -; INPUTS:
12   -; data_struct=read_xcat(file,/silent). Data structure formatted as outlined in the DustermWrap Users' Guide
13   -; data_set : Array of character strings containing the different data sets to be filtered.
14   -; ie: 'SED' or 'STOKESI', 'POLSED' or 'LARGEP', etc...
15   -; omit : Can be an array or list. In both cases it should contain the filter names as character strings.
16   -; ie: omit=['SPIRE1','SPIRE2'] for an array or omit=list(['SPIRE2','SPIRE1','PACS2'],['HFI5','HFI4']) for a list.
17   -; When using a list, its shape (dimension) should be the number of elements of the data_set array.
18   -; ie: Each dimension is an array of filters to be removed from the corresponding data set in the data_set array.
19   -; OPTIONAL INPUT PARAMETERS:
20   -; None
21   -; OUTPUTS:
22   -; data_struct
23   -; OPTIONAL OUTPUT PARAMETERS:
24   -; None
25   -; ACCEPTED KEY-WORDS:
26   -; help = if set, prints this help
27   -; COMMENTS
28   -; Both list and array entries for omit and hide keywords are allowed.
29   -; MODIFICATION HISTORY:
30   -; Written by IC
31   -;-
32 2  
33 3  
34 4 IF keyword_set(help) THEN BEGIN
... ...