Commits
1 1 | |
2 2 | |
3 3 | <casaxml xmlns="http://casa.nrao.edu/schema/psetTypes.html" |
4 4 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
5 5 | xsi:schemaLocation="http://casa.nrao.edu/schema/casa.xsd |
6 6 | file:///opt/casa/code/xmlcasa/xml/casa.xsd"> |
7 7 | |
8 8 | <task type="function" name="statwt" category="manipulation"> |
9 9 | <shortdescription>Compute and set weights based on variance of data.</shortdescription> |
10 10 | |
11 11 | <input> |
12 - | <param type="string" name="vis" mustexist="true"> |
13 - | <description>Name of measurement set</description> |
14 - | <value/> |
15 - | </param> |
16 - | <param type="bool" name="selectdata"> |
17 - | <description>Enable data selection parameters</description> |
18 - | <value type="bool">True</value> |
19 - | </param> |
12 + | <param type="string" name="vis" mustexist="true"> |
13 + | <description>Name of measurement set</description> |
14 + | <value/> |
15 + | </param> |
16 + | <param type="bool" name="selectdata"> |
17 + | <description>Enable data selection parameters</description> |
18 + | <value type="bool">True</value> |
19 + | </param> |
20 20 | <param type="string" name="field" subparam="true"> |
21 21 | <description>Selection based on field names or field index numbers. Default is all.</description> |
22 22 | <value/> |
23 23 | <example>"0~2", or "3C286"</example> |
24 24 | </param> |
25 25 | <param type="string" name="spw" subparam="true"> |
26 26 | <description>Selection based on spectral windows:channels. Default is all.</description> |
27 27 | <value/> |
28 28 | <example>"3"</example> |
29 29 | </param> |
45 45 | <param type="string" name="scan" subparam="true"> |
46 46 | <description>Select data by scan numbers.</description> |
47 47 | <value/> |
48 48 | <example>"5"</example> |
49 49 | </param> |
50 50 | <param type="string" name="combine"> |
51 51 | <description>Ignore changes in these columns (scan, field, and/or state) when aggregating samples to compute weights. The value "corr" is also supported to aggregate samples across correlations.</description> |
52 52 | <value/> |
53 53 | <example>"scan,field"</example> |
54 54 | </param> |
55 - | <param type="any" name="timebin"> |
55 + | <param type="any" name="timebin"> |
56 56 | <description>Length for binning in time to determine statistics. Can either be integer to be multiplied by the representative integration time, a quantity (string) in time units</description> |
57 57 | <any type="variant" limittypes="string int" /> |
58 58 | <value type="string">0.001s</value> |
59 59 | <example>5 or "100s"</example> |
60 60 | </param> |
61 61 | <param type="bool" name="slidetimebin"> |
62 62 | <description>Use a sliding window for time binning, as opposed to time block processing?</description> |
63 63 | <value>False</value> |
64 64 | <example>True</example> |
65 65 | </param> |