LSSTApplications
20.0.0
LSSTDataManagementBasePackage
stack
1a1d771
Linux64
geom
20.0.0
src
CoordinateExpr.cc
Go to the documentation of this file.
1
/*
2
* Developed for the LSST Data Management System.
3
* This product includes software developed by the LSST Project
4
* (https://www.lsst.org).
5
* See the COPYRIGHT file at the top-level directory of this distribution
6
* for details of code ownership.
7
*
8
* This program is free software: you can redistribute it and/or modify
9
* it under the terms of the GNU General Public License as published by
10
* the Free Software Foundation, either version 3 of the License, or
11
* (at your option) any later version.
12
*
13
* This program is distributed in the hope that it will be useful,
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
* GNU General Public License for more details.
17
*
18
* You should have received a copy of the GNU General Public License
19
* along with this program. If not, see <https://www.gnu.org/licenses/>.
20
*/
21
22
#include "
lsst/geom/CoordinateBase.h
"
23
#include "
lsst/geom/Point.h
"
24
#include "
lsst/geom/Extent.h
"
25
26
namespace
lsst
{
27
namespace
geom
{
28
29
template
<
int
N>
30
CoordinateExpr<N>
CoordinateExpr<N>::and_
(
CoordinateExpr<N>
const
&
other
)
const
noexcept {
31
CoordinateExpr
r(*
this
);
32
for
(
int
n = 0; n < N; ++n) {
33
if
(!
other
[n]) r[n] =
false
;
34
}
35
return
r;
36
}
37
38
template
<
int
N>
39
CoordinateExpr<N>
CoordinateExpr<N>::or_
(
CoordinateExpr<N>
const
&
other
)
const
noexcept {
40
CoordinateExpr
r(*
this
);
41
for
(
int
n = 0; n < N; ++n) {
42
if
(
other
[n]) r[n] =
true
;
43
}
44
return
r;
45
}
46
47
template
<
int
N>
48
CoordinateExpr<N>
CoordinateExpr<N>::not_
() const noexcept {
49
CoordinateExpr
r;
50
for
(
int
n = 0; n < N; ++n) {
51
if
(!this->
operator
[](n)) r[n] =
true
;
52
}
53
return
r;
54
}
55
56
template
class
CoordinateExpr<2>
;
57
template
class
CoordinateExpr<3>
;
58
59
}
// namespace geom
60
}
// namespace lsst
lsst::geom::CoordinateExpr
A boolean coordinate.
Definition:
CoordinateExpr.h:50
CoordinateBase.h
lsst::geom::CoordinateExpr::or_
CoordinateExpr or_(CoordinateExpr const &rhs) const noexcept
Definition:
CoordinateExpr.cc:39
Extent.h
lsst::geom::CoordinateExpr::not_
CoordinateExpr not_() const noexcept
Definition:
CoordinateExpr.cc:48
other
ItemVariant const * other
Definition:
Schema.cc:56
lsst
A base class for image defects.
Definition:
imageAlgorithm.dox:1
lsst::geom
Definition:
geomOperators.dox:4
lsst::geom::CoordinateExpr::and_
CoordinateExpr and_(CoordinateExpr const &rhs) const noexcept
Definition:
CoordinateExpr.cc:30
Point.h
Generated on Wed Jun 24 2020 18:10:06 for LSSTApplications by
1.8.18