Commits
Benjamin Bean authored a54ec11ac5d
40 40 | Use 'go listobs' to obtain the list id's or |
41 41 | names. If field string is a non-negative integer, |
42 42 | it is assumed a field index, otherwise, it is |
43 43 | assumed a field name. |
44 44 | |
45 45 | Examples: |
46 46 | field='0~2'; field ids 0,1,2 |
47 47 | field='0,4,5~7'; field ids 0,4,5,6,7 |
48 48 | field='3C286,3C295'; field named 3C286 and |
49 49 | 3C295 |
50 - | field = '3,4C*'; field id 3, all names |
50 + | field = '3,4C\*'; field id 3, all names |
51 51 | starting with 4C |
52 52 | |
53 53 | Note: do not forget to include the flux density |
54 54 | calibrator if you have one! |
55 55 | </description> |
56 56 | <value/> |
57 57 | </param> |
58 58 | |
59 59 | <param name="spw" type="string"> |
60 60 | <shortdescription>Select spectral window/channels</shortdescription> |
61 61 | <description>Select spectral window/channels |
62 62 | |
63 63 | Examples: |
64 64 | spw='0~2,4'; spectral windows 0,1,2,4 (all |
65 65 | channels) |
66 66 | spw='<2'; spectral windows less than 2 |
67 67 | (i.e. 0,1) |
68 68 | spw='0:5~61'; spw 0, channels 5 to 61, |
69 69 | INCLUSIVE |
70 - | spw='*:5~61'; all spw with channels 5 to 61 |
70 + | spw='\*:5~61'; all spw with channels 5 to 61 |
71 71 | spw='0,10,3:3~45'; spw 0,10 all channels, spw |
72 72 | 3, channels 3 to 45. |
73 73 | spw='0~2:2~6'; spw 0,1,2 with channels 2 |
74 74 | through 6 in each. |
75 75 | spw='0:0~10;15~60'; spectral window 0 with |
76 76 | channels 0-10,15-60. (NOTE ';' to separate |
77 77 | channel selections) |
78 78 | spw='0:0~10^2,1:20~30^5'; spw 0, channels |
79 79 | 0,2,4,6,8,10, spw 1, channels 20,25,30 |
80 80 | type 'help par.selection' for more examples. |
81 81 | </description> |
82 82 | <value/> |
83 83 | </param> |
84 84 | |
85 85 | <param name="intent" type="string"> |
86 86 | <shortdescription>Select observing intent</shortdescription> |
87 87 | <description>Select observing intent |
88 88 | default: '' (no selection by intent) |
89 89 | |
90 - | Example: intent='*BANDPASS*' (selects data |
90 + | Example: intent='\*BANDPASS\*' (selects data |
91 91 | labelled with BANDPASS intent) |
92 92 | </description> |
93 93 | <value/> |
94 94 | </param> |
95 95 | |
96 96 | <param name="selectdata" type="bool"> |
97 97 | <shortdescription>Other data selection parameters</shortdescription> |
98 98 | <description>Other data selection parameters |
99 99 | default: True (Must set selectdata=True to select |
100 100 | other selection parameters.) |
319 319 | <param subparam="true" name="interp" type="stringVec"> |
320 320 | <shortdescription>Interpolation parameters for each gaintable, as a list</shortdescription> |
321 321 | <description>Interpolation parmameters (in time[,freq]) for each gaintable, as a list of strings. |
322 322 | Default: '' --> 'linear,linear' for all gaintable(s) |
323 323 | Options: Time: 'nearest', 'linear' |
324 324 | Freq: 'nearest', 'linear', 'cubic', |
325 325 | 'spline' |
326 326 | Specify a list of strings, aligned with the list of caltable specified |
327 327 | in gaintable, that contain the required interpolation parameters |
328 328 | for each caltable. |
329 - | * When frequency interpolation is relevant (B, Df, |
329 + | |
330 + | - When frequency interpolation is relevant (B, Df, |
330 331 | Xf), separate time-dependent and freq-dependent |
331 - | interp types with a comma (freq_after_ the |
332 + | interp types with a comma (freq_after\_ the |
332 333 | comma). |
333 - | * Specifications for frequency are ignored when the |
334 + | - Specifications for frequency are ignored when the |
334 335 | calibration table has no channel-dependence. |
335 - | * Time-dependent interp options ending in 'PD' |
336 + | - Time-dependent interp options ending in 'PD' |
336 337 | enable a "phase delay" correction per spw for |
337 338 | non-channel-dependent calibration types. |
338 - | * For multi-obsId datasets, 'perobs' can be |
339 + | - For multi-obsId datasets, 'perobs' can be |
339 340 | appended to the time-dependent interpolation |
340 341 | specification to enforce obsId boundaries when |
341 342 | interpolating in time. |
342 - | * Freq-dependent interp options can have 'flag' appended |
343 + | - Freq-dependent interp options can have 'flag' appended |
343 344 | to enforce channel-dependent flagging, and/or 'rel' |
344 345 | appended to invoke relative frequency interpolation |
345 346 | |
346 347 | Examples: |
347 348 | interp='nearest' (in time, freq-dep will be |
348 349 | linear, if relevant) |
349 350 | interp='linear,cubic' (linear in time, cubic |
350 351 | in freq) |
351 352 | interp='linearperobs,splineflag' (linear in |
352 353 | time per obsId, spline in freq with |