LSSTApplications  20.0.0
LSSTDataManagementBasePackage
MatrixBuilder.h
Go to the documentation of this file.
1 // -*- lsst-c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008-2014 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 #ifndef LSST_SHAPELET_MatrixBuilder_h_INCLUDED
24 #define LSST_SHAPELET_MatrixBuilder_h_INCLUDED
25 
26 #include "ndarray.h"
27 
31 
32 namespace lsst { namespace shapelet {
33 
34 class MultiShapeletBasis;
35 
36 template <typename T>
38 
39 template <typename T>
41 
54 template <typename T>
56 public:
57 
60 
61  class Impl; // Private implementation, defined in .cc; public to allow us to subclass it there
62 
71  ndarray::Array<T const,1,1> const & x,
72  ndarray::Array<T const,1,1> const & y,
73  int order
74  );
75 
86  ndarray::Array<T const,1,1> const & x,
87  ndarray::Array<T const,1,1> const & y,
88  int order,
89  ShapeletFunction const & psf
90  );
91 
100  ndarray::Array<T const,1,1> const & x,
101  ndarray::Array<T const,1,1> const & y,
102  MultiShapeletBasis const & basis
103  );
104 
115  ndarray::Array<T const,1,1> const & x,
116  ndarray::Array<T const,1,1> const & y,
117  MultiShapeletBasis const & basis,
118  MultiShapeletFunction const & psf
119  );
120 
122  int getDataSize() const;
123 
125  int getBasisSize() const;
126 
128  ndarray::Array<T,2,-2> allocateOutput() const;
129 
139  ndarray::Array<T,2,-1> const & output,
140  afw::geom::ellipses::Ellipse const & ellipse
141  ) const;
142 
149  ndarray::Array<T,2,-2> operator()(afw::geom::ellipses::Ellipse const & ellipse) const {
150  ndarray::Array<T,2,-2> output = allocateOutput();
151  (*this)(output, ellipse);
152  return output;
153  }
154 
155 private:
156 
157  template <typename U> friend class MatrixBuilderFactory;
158 
159  explicit MatrixBuilder(PTR(Impl) impl);
160 
161  PTR(Impl) _impl;
162 };
163 
187 template <typename T>
189 public:
190 
191  typedef Eigen::Map< Eigen::Array<T,Eigen::Dynamic,Eigen::Dynamic> > Matrix;
192  typedef Eigen::Map< Eigen::Array<T,Eigen::Dynamic,1> > Vector;
193 
195  explicit MatrixBuilderWorkspace(int size);
196 
204  _current(other._current),
205  _end(other._end),
206  _manager(other._manager)
207  {}
208 
210  int getRemaining() const { return _end - _current; }
211 
212 #ifndef SWIG
213 
215  Matrix makeMatrix(int rows, int cols);
216 
218  Vector makeVector(int size);
219 
221  void increment(int size);
222 
224  ndarray::Manager::Ptr getManager() const { return _manager; }
225 
226 #endif
227 
228 private:
229 
230  void operator=(MatrixBuilderWorkspace & other); // disabled
231 
232  T * _current;
233  T * _end;
234  ndarray::Manager::Ptr _manager;
235 };
236 
264 template <typename T>
265 class MatrixBuilderFactory {
266 public:
267 
270 
271  class Impl; // Private implementation, defined in .cc; public to allow us to subclass it there
272 
281  ndarray::Array<T const,1,1> const & x,
282  ndarray::Array<T const,1,1> const & y,
283  int order
284  );
285 
296  ndarray::Array<T const,1,1> const & x,
297  ndarray::Array<T const,1,1> const & y,
298  int order,
299  ShapeletFunction const & psf
300  );
301 
310  ndarray::Array<T const,1,1> const & x,
311  ndarray::Array<T const,1,1> const & y,
312  MultiShapeletBasis const & basis
313  );
314 
325  ndarray::Array<T const,1,1> const & x,
326  ndarray::Array<T const,1,1> const & y,
327  MultiShapeletBasis const & basis,
328  MultiShapeletFunction const & psf
329  );
330 
332  int getDataSize() const;
333 
335  int getBasisSize() const;
336 
338  int computeWorkspace() const;
339 
342 
345 
346 private:
347  PTR(Impl) _impl;
348 };
349 
350 }} // namespace lsst::shapelet
351 
352 #endif // !LSST_SHAPELET_MatrixBuilder_h_INCLUDED
y
int y
Definition: SpanSet.cc:49
lsst::shapelet::MatrixBuilderWorkspace::Matrix
Eigen::Map< Eigen::Array< T, Eigen::Dynamic, Eigen::Dynamic > > Matrix
Workspace matrix type.
Definition: MatrixBuilder.h:191
lsst::shapelet::MatrixBuilder::Factory
MatrixBuilderFactory< T > Factory
Factory type associated with this builder.
Definition: MatrixBuilder.h:58
lsst::shapelet::MatrixBuilder::MatrixBuilder
MatrixBuilder(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, int order)
Create a MatrixBuilder that evaluates a simple non-compound shapelet basis.
lsst::shapelet::MatrixBuilder::MatrixBuilder
MatrixBuilder(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, MultiShapeletBasis const &basis, MultiShapeletFunction const &psf)
Create a MatrixBuilder that evaluates a MultiShapeletBasis object after convolving it with a MultiSha...
lsst::shapelet::MatrixBuilderWorkspace::Vector
Eigen::Map< Eigen::Array< T, Eigen::Dynamic, 1 > > Vector
Workspace vector type.
Definition: MatrixBuilder.h:192
lsst::shapelet::MatrixBuilderFactory::MatrixBuilderFactory
MatrixBuilderFactory(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, int order)
Create a MatrixBuilder that evaluates a simple non-compound shapelet basis.
lsst::shapelet::MatrixBuilder::Workspace
MatrixBuilderWorkspace< T > Workspace
Workspace type associated with this builder.
Definition: MatrixBuilder.h:59
lsst::shapelet::MatrixBuilderWorkspace::getRemaining
int getRemaining() const
Return the size (in units of sizeof(T)) of the unused memory in the workspace.
Definition: MatrixBuilder.h:210
psf
Key< int > psf
Definition: Exposure.cc:65
lsst::shapelet::MatrixBuilder
Class that evaluates a (multi-)shapelet basis at predefined points.
Definition: MatrixBuilder.h:55
ShapeletFunction.h
lsst::shapelet::MatrixBuilderFactory::operator()
MatrixBuilder< T > operator()(Workspace &workspace) const
Return a new MatrixBuilder using the given workspace.
lsst::shapelet::MultiShapeletBasis
A basis formed from a linear combination of shapelet bases that differ only in radius.
Definition: MultiShapeletBasis.h:93
lsst::shapelet::MatrixBuilderWorkspace::MatrixBuilderWorkspace
MatrixBuilderWorkspace(MatrixBuilderWorkspace const &other)
Copy the current state of the workspace, allowing multiple MatrixBuilders to start their workspace ar...
Definition: MatrixBuilder.h:203
lsst::shapelet::MatrixBuilder::allocateOutput
ndarray::Array< T, 2,-2 > allocateOutput() const
Return a matrix appropriate for use as an output for operator().
constants.h
Constants, typedefs, and general-purpose functions for shapelets library.
lsst::shapelet::ShapeletFunction
A 2-d function defined by an expansion onto a Gauss-Laguerre or Gauss-Hermite basis.
Definition: ShapeletFunction.h:65
lsst::shapelet::MatrixBuilder::MatrixBuilder
MatrixBuilder(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, MultiShapeletBasis const &basis)
Create a MatrixBuilder that evaluates a MultiShapeletBasis object.
x
double x
Definition: ChebyshevBoundedField.cc:277
other
ItemVariant const * other
Definition: Schema.cc:56
lsst::shapelet::MatrixBuilderWorkspace::getManager
ndarray::Manager::Ptr getManager() const
Return the manager object that owns the block of memory.
Definition: MatrixBuilder.h:224
lsst::shapelet::MatrixBuilderFactory::getBasisSize
int getBasisSize() const
Return the number of basis elements.
lsst::shapelet::MatrixBuilderFactory::MatrixBuilderFactory
MatrixBuilderFactory(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, MultiShapeletBasis const &basis)
Create a MatrixBuilder that evaluates a MultiShapeletBasis object.
lsst::shapelet::MatrixBuilder::operator()
void operator()(ndarray::Array< T, 2,-1 > const &output, afw::geom::ellipses::Ellipse const &ellipse) const
Fill an array with the model matrix.
lsst::shapelet::MatrixBuilder::getBasisSize
int getBasisSize() const
Return the number of basis elements.
basis
table::Key< table::Array< double > > basis
Definition: PsfexPsf.cc:361
lsst::shapelet::MatrixBuilderWorkspace::makeMatrix
Matrix makeMatrix(int rows, int cols)
Create a matrix from the workspace memory, and increment the current location accordingly.
lsst::shapelet::MatrixBuilderFactory
A factory class for MatrixBuilder, providing more control over workspace memory.
Definition: MatrixBuilder.h:37
lsst
A base class for image defects.
Definition: imageAlgorithm.dox:1
lsst::afw::geom::ellipses::Ellipse
An ellipse defined by an arbitrary BaseCore and a center point.
Definition: Ellipse.h:51
lsst::shapelet::MatrixBuilderFactory::getDataSize
int getDataSize() const
Return the number of data points.
lsst::shapelet::MatrixBuilderFactory::MatrixBuilderFactory
MatrixBuilderFactory(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, int order, ShapeletFunction const &psf)
Create a MatrixBuilder that evaluates a simple non-compound shapelet basis after convolving it with a...
lsst::shapelet::MatrixBuilderWorkspace
Reusable, shareable workspace for MatrixBuilder.
Definition: MatrixBuilder.h:40
PTR
#define PTR(...)
Definition: base.h:41
lsst::shapelet::MatrixBuilderWorkspace::makeVector
Vector makeVector(int size)
Create a vector from the workspace memory, and increment the current location accordingly.
lsst::shapelet::MatrixBuilder::getDataSize
int getDataSize() const
Return the number of data points.
lsst::shapelet::MatrixBuilderFactory::MatrixBuilderFactory
MatrixBuilderFactory(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, MultiShapeletBasis const &basis, MultiShapeletFunction const &psf)
Create a MatrixBuilder that evaluates a MultiShapeletBasis object after convolving it with a MultiSha...
lsst::shapelet::MatrixBuilderWorkspace::MatrixBuilderWorkspace
MatrixBuilderWorkspace(int size)
Allocate a block of memory with the given number of elements (of type T).
lsst::shapelet::MatrixBuilderFactory::operator()
MatrixBuilder< T > operator()() const
Return a new MatrixBuilder with internal, unshared workspace.
lsst::shapelet::MatrixBuilderFactory::Builder
MatrixBuilder< T > Builder
Associated builder class.
Definition: MatrixBuilder.h:269
lsst::shapelet::MultiShapeletFunction
A multi-scale shapelet function.
Definition: MultiShapeletFunction.h:38
lsst::shapelet::MatrixBuilderWorkspace::increment
void increment(int size)
Manually increment the current location.
lsst::shapelet::MatrixBuilder::MatrixBuilder
MatrixBuilder(ndarray::Array< T const, 1, 1 > const &x, ndarray::Array< T const, 1, 1 > const &y, int order, ShapeletFunction const &psf)
Create a MatrixBuilder that evaluates a simple non-compound shapelet basis after convolving it with a...
lsst::shapelet::MatrixBuilderFactory::computeWorkspace
int computeWorkspace() const
Return the size of the workspace needed for this MatrixBuilder, in elements of T.
lsst::shapelet::MatrixBuilder::operator()
ndarray::Array< T, 2,-2 > operator()(afw::geom::ellipses::Ellipse const &ellipse) const
Return a newly-allocated model matrix.
Definition: MatrixBuilder.h:149
lsst::shapelet::MatrixBuilderFactory::Workspace
MatrixBuilderWorkspace< T > Workspace
Associated workspace class.
Definition: MatrixBuilder.h:268
MultiShapeletFunction.h