summaryrefslogtreecommitdiffstats
path: root/funtools/doc/pod/funcombine.pod
blob: 946d3041a509e8fe92490289598fb4f82568baab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
=pod

=head1 NAME



B<FunCombine: Combining Region and Table Filters>



=head1 SYNOPSIS





This document discusses the conventions for combining region and table
filters, especially with regards to the comma operator.




=head1 DESCRIPTION



B<Comma Conventions>

Filter specifications consist of a series of boolean expressions,
separated by commas. These expressions can be table filters,
spatial region filters, or combinations thereof. Unfortunately,
common usage requires that the comma operator must act differently
in different situations. Therefore, while its use is intuitive in
most cases, commas can be a source of confusion.


According to long-standing usage in IRAF, when a comma separates two
table filters, it takes on the meaning of a boolean B<and>. Thus:

  foo.fits[pha==1,pi==2]

is equivalent to:

  foo.fits[pha==1 && pi==2]


When a comma separates two spatial region filters, however, it has
traditionally taken on the meaning of a boolean B<or>. Thus:

  foo.fits[circle(10,10,3),ellipse(20,20,8,5)]

is equivalent to:

  foo.fits[circle(10,10,3) || ellipse(20,20,8,5)]

(except that in the former case, each region is given a unique id
in programs such as funcnts).


Region and table filters can be combined:

  foo.fits[circle(10,10,3),pi=1:5]

or even:

  foo.fits[pha==1&&circle(10,10,3),pi==2&&ellipse(20,20,8,5)]

In these cases, it is not obvious whether the command should utilize an
B<or> or B<and> operator. We therefore arbitrarily chose to
implement the following rule:


=over 4




=item *

if both expressions contain a region, the operator used is B<or>.


=item *

if one (or both) expression(s) does not contain a region, the operator
used is B<and>.


=back


This rule handles the cases of pure regions and pure column filters properly.
It unambiguously assigns the boolean B<and> to all mixed cases. Thus:

  foo.fits[circle(10,10,3),pi=1:5]

and

  foo.fits[pi=1:5,circle(10,10,3)]

both are equivalent to:

  foo.fits[circle(10,10,3) && pi=1:5]



[NB: This arbitrary rule B<replaces the previous arbitrary rule>
(pre-funtools 1.2.3) which stated:


=over 4




=item *

if the 2nd expression contains a region, the operator used is B<or>.


=item *

if the 2nd expression does not contain a region, the operator
used is B<and>.


=back


In that scenario, the B<or> operator was implied by:

  pha==4,circle 5 5 1

while the B<and> operator was implied by

  circle 5 5 1,pha==4

Experience showed that this non-commutative treatment of the comma
operator was confusing and led to unexpected results.]


The comma rule must be considered provisional: comments and complaints
are welcome to help clarify the matter. Better still, we recommend
that the comma operator be avoided in such cases in favor of an
explicit boolean operator.



=head1 SEE ALSO



See funtools(n) for a list of Funtools help pages



=cut