LSSTApplications  16.0-10-g0ee56ad+5,16.0-11-ga33d1f2+5,16.0-12-g3ef5c14+3,16.0-12-g71e5ef5+18,16.0-12-gbdf3636+3,16.0-13-g118c103+3,16.0-13-g8f68b0a+3,16.0-15-gbf5c1cb+4,16.0-16-gfd17674+3,16.0-17-g7c01f5c+3,16.0-18-g0a50484+1,16.0-20-ga20f992+8,16.0-21-g0e05fd4+6,16.0-21-g15e2d33+4,16.0-22-g62d8060+4,16.0-22-g847a80f+4,16.0-25-gf00d9b8+1,16.0-28-g3990c221+4,16.0-3-gf928089+3,16.0-32-g88a4f23+5,16.0-34-gd7987ad+3,16.0-37-gc7333cb+2,16.0-4-g10fc685+2,16.0-4-g18f3627+26,16.0-4-g5f3a788+26,16.0-5-gaf5c3d7+4,16.0-5-gcc1f4bb+1,16.0-6-g3b92700+4,16.0-6-g4412fcd+3,16.0-6-g7235603+4,16.0-69-g2562ce1b+2,16.0-8-g14ebd58+4,16.0-8-g2df868b+1,16.0-8-g4cec79c+6,16.0-8-gadf6c7a+1,16.0-8-gfc7ad86,16.0-82-g59ec2a54a+1,16.0-9-g5400cdc+2,16.0-9-ge6233d7+5,master-g2880f2d8cf+3,v17.0.rc1
LSSTDataManagementBasePackage
Mapping.cc
Go to the documentation of this file.
1 /*
2  * LSST Data Management System
3  * Copyright 2017 AURA/LSST.
4  *
5  * This product includes software developed by the
6  * LSST Project (http://www.lsst.org/).
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 LSST License Statement and
19  * the GNU General Public License along with this program. If not,
20  * see <https://www.lsstcorp.org/LegalNotices/>.
21  */
22 #include <cmath>
23 #include <limits>
24 #include <memory>
25 #include <sstream>
26 #include <stdexcept>
27 
28 #include "astshim/base.h"
29 #include "astshim/detail/utils.h"
30 #include "astshim/Frame.h"
31 #include "astshim/Mapping.h"
32 #include "astshim/ParallelMap.h"
33 #include "astshim/SeriesMap.h"
34 
35 namespace ast {
36 
37 SeriesMap Mapping::then(Mapping const &next) const { return SeriesMap(*this, next); }
38 
39 ParallelMap Mapping::under(Mapping const &next) const { return ParallelMap(*this, next); }
40 
42  auto rawCopy = reinterpret_cast<AstMapping *>(astCopy(getRawPtr()));
43  astInvert(rawCopy);
44  assertOK(reinterpret_cast<AstObject *>(rawCopy));
45  // use false because the pointer has already been copied
46  return Object::fromAstObject<Mapping>(reinterpret_cast<AstObject *>(rawCopy), false);
47 }
48 
49 Array2D Mapping::linearApprox(PointD const &lbnd, PointD const &ubnd, double tol) const {
50  int const nIn = getNIn();
51  int const nOut = getNOut();
52  detail::assertEqual(lbnd.size(), "lbnd.size", static_cast<std::size_t>(nIn), "nIn");
53  detail::assertEqual(ubnd.size(), "ubnd.size", static_cast<std::size_t>(nIn), "nIn");
54  Array2D fit = ndarray::allocate(ndarray::makeVector(1 + nIn, nOut));
55  int isOK = astLinearApprox(getRawPtr(), lbnd.data(), ubnd.data(), tol, fit.getData());
56  if (!isOK) {
57  throw std::runtime_error("Mapping not sufficiently linear");
58  }
59  assertOK();
60  return fit;
61 }
62 
63 template <typename Class>
65  if ((i < 0) || (i > 1)) {
67  os << "i =" << i << "; must be 0 or 1";
68  throw std::invalid_argument(os.str());
69  }
70  // Report pre-existing problems now so our later test for "not a compound object" is accurate
71  assertOK();
72 
73  AstMapping *rawMap1;
74  AstMapping *rawMap2;
75  int series, invert1, invert2;
76  astDecompose(getRawPtr(), &rawMap1, &rawMap2, &series, &invert1, &invert2);
77 
78  if (!rawMap2) {
79  // Not a compound object; free rawMap1 (rawMap2 is null, so no need to free it) and throw an exception
80  astAnnul(reinterpret_cast<AstObject *>(rawMap1));
82  os << "This " << getClassName() << " is not a compound object";
83  throw std::runtime_error(os.str());
84  }
85 
86  // Make a deep copy of the returned object and free the shallow copies
87  AstMapping *retRawMap;
88  int invert;
89  if (i == 0) {
90  retRawMap = reinterpret_cast<AstMapping *>(astCopy(reinterpret_cast<AstObject *>(rawMap1)));
91  invert = invert1;
92  } else {
93  retRawMap = reinterpret_cast<AstMapping *>(astCopy(reinterpret_cast<AstObject *>(rawMap2)));
94  invert = invert2;
95  }
96  astAnnul(reinterpret_cast<AstObject *>(rawMap1));
97  astAnnul(reinterpret_cast<AstObject *>(rawMap2));
98 
99  // If the mapping's internal invert flag does not match the value used when the CmpMap was made
100  // then invert the mapping. Note that it is not possible to create such objects in astshim
101  // but it is possible to read in objects created by other software.
102  if (invert != astGetI(retRawMap, "Invert")) {
103  astInvert(retRawMap);
104  }
105 
106  return Object::fromAstObject<Class>(reinterpret_cast<AstObject *>(retRawMap), copy);
107 }
108 
109 void Mapping::_tran(ConstArray2D const &from, bool doForward, Array2D const &to) const {
110  int const nFromAxes = doForward ? getNIn() : getNOut();
111  int const nToAxes = doForward ? getNOut() : getNIn();
112  detail::assertEqual(from.getSize<0>(), "from.size[0]", static_cast<std::size_t>(nFromAxes),
113  "from coords");
114  detail::assertEqual(to.getSize<0>(), "to.size[0]", static_cast<std::size_t>(nToAxes), "to coords");
115  detail::assertEqual(from.getSize<1>(), "from.size[1]", to.getSize<1>(), "to.size[1]");
116  int const nPts = from.getSize<1>();
117  // astTranN treats 0 points as an error and the call isn't needed anyway
118  if (nPts > 0) {
119  astTranN(getRawPtr(), nPts, nFromAxes, nPts, from.getData(), static_cast<int>(doForward), nToAxes, nPts,
120  to.getData());
121  }
122  assertOK();
124 }
125 
126 void Mapping::_tranGrid(PointI const &lbnd, PointI const &ubnd, double tol, int maxpix, bool doForward,
127  Array2D const &to) const {
128  int const nFromAxes = doForward ? getNIn() : getNOut();
129  int const nToAxes = doForward ? getNOut() : getNIn();
130  detail::assertEqual(lbnd.size(), "lbnd.size", static_cast<std::size_t>(nFromAxes), "from coords");
131  detail::assertEqual(ubnd.size(), "ubnd.size", static_cast<std::size_t>(nFromAxes), "from coords");
132  detail::assertEqual(to.getSize<1>(), "to.size[1]", static_cast<std::size_t>(nToAxes), "to coords");
133  int const nPts = to.getSize<0>();
134  astTranGrid(getRawPtr(), nFromAxes, lbnd.data(), ubnd.data(), tol, maxpix, static_cast<int>(doForward),
135  nToAxes, nPts, to.getData());
136  assertOK();
138 }
139 
140 // Explicit instantiations
141 template std::shared_ptr<Frame> Mapping::decompose(int i, bool) const;
142 template std::shared_ptr<Mapping> Mapping::decompose(int i, bool) const;
143 
144 } // namespace ast
A series compound mapping where the first Mapping is used to transform the coordinates of each point ...
Definition: SeriesMap.h:53
ndarray::Array< const double, 2, 2 > ConstArray2D
2D array of const double; typically used for lists of const points
Definition: base.h:46
AstObject const * getRawPtr() const
Get the raw AST pointer.
Definition: Object.h:291
table::Key< int > from
ndarray::Array< double, 2, 2 > Array2D
2D array of const double; typically used for lists of const points
Definition: base.h:42
AST wrapper classes and functions.
std::string getClassName() const
Get Class: the name of the class (e.g.
Definition: Object.h:138
void assertOK(AstObject *rawPtr1=nullptr, AstObject *rawPtr2=nullptr)
Throw std::runtime_error if AST&#39;s state is bad.
Definition: base.cc:49
SeriesMap then(Mapping const &next) const
Return a series compound mapping this(first(input)) containing shallow copies of the original...
Definition: Mapping.cc:37
std::shared_ptr< Class > decompose(int i, bool copy) const
Return a deep copy of one of the two component mappings.
Definition: Mapping.cc:64
Relationship invert(Relationship r)
Given the relationship between two sets A and B (i.e.
Definition: Relationship.h:55
void astBadToNan(std::vector< double > &p)
Replace AST__BAD with a quiet NaN in a vector.
Definition: utils.h:58
An abstract base class for objects which transform one set of coordinates to another.
Definition: Mapping.h:59
std::shared_ptr< Mapping > inverted() const
Get an inverse mapping.
Definition: Mapping.cc:41
A parallel compound mapping where the first Mapping is used to transform the lower numbered coordinat...
Definition: ParallelMap.h:53
T data(T... args)
table::Key< int > to
T str(T... args)
std::shared_ptr< Mapping > copy() const
Return a deep copy of this object.
Definition: Mapping.h:72
Array2D linearApprox(PointD const &lbnd, PointD const &ubnd, double tol) const
Compute a linear approximation to the forward transformation.
Definition: Mapping.cc:49
ParallelMap under(Mapping const &next) const
Return a parallel compound mapping containing shallow copies of the original.
Definition: Mapping.cc:39
T size(T... args)
int getNIn() const
Get NIn: the number of input axes.
Definition: Mapping.h:77
void assertEqual(T1 val1, std::string const &descr1, T2 val2, std::string const &descr2)
Definition: utils.h:47
int getNOut() const
Get NOut: the number of output axes.
Definition: Mapping.h:82
std::ostream * os
Definition: Schema.cc:746