LSSTApplications  18.0.0+106,18.0.0+50,19.0.0,19.0.0+1,19.0.0+10,19.0.0+11,19.0.0+13,19.0.0+17,19.0.0+2,19.0.0-1-g20d9b18+6,19.0.0-1-g425ff20,19.0.0-1-g5549ca4,19.0.0-1-g580fafe+6,19.0.0-1-g6fe20d0+1,19.0.0-1-g7011481+9,19.0.0-1-g8c57eb9+6,19.0.0-1-gb5175dc+11,19.0.0-1-gdc0e4a7+9,19.0.0-1-ge272bc4+6,19.0.0-1-ge3aa853,19.0.0-10-g448f008b,19.0.0-12-g6990b2c,19.0.0-2-g0d9f9cd+11,19.0.0-2-g3d9e4fb2+11,19.0.0-2-g5037de4,19.0.0-2-gb96a1c4+3,19.0.0-2-gd955cfd+15,19.0.0-3-g2d13df8,19.0.0-3-g6f3c7dc,19.0.0-4-g725f80e+11,19.0.0-4-ga671dab3b+1,19.0.0-4-gad373c5+3,19.0.0-5-ga2acb9c+2,19.0.0-5-gfe96e6c+2,w.2020.01
LSSTDataManagementBasePackage
Classes | Functions
lsst::afw::geom::details Namespace Reference

Classes

class  AnyBitSetFunctor
 
class  ConstantGetter
 
class  FlatNdGetter
 
class  ImageNdGetter
 
struct  is_iterator
 
struct  is_iterator< T, typename std::enable_if< !std::is_same< typename std::iterator_traits< T >::value_type, void >::value >::type >
 
class  IterGetter
 

Functions

template<typename T >
void variadicSpanSetter (Span const spn, T &x)
 
template<typename T , typename... Args>
void variadicSpanSetter (Span const spn, T &first, Args &... x)
 
template<typename T >
void variadicBoundChecker (lsst::geom::Box2I const box, int area, T const &x)
 
template<typename T , typename... Args>
void variadicBoundChecker (lsst::geom::Box2I const box, int area, T const &first, Args &... x)
 
template<typename T >
void variadicIncrementPosition (T &x)
 
template<typename T , typename... Args>
void variadicIncrementPosition (T &first, Args &... x)
 
template<typename T , int inA, int inC>
FlatNdGetter< T, inA, inC > makeGetter (FlatNdGetter< T, inA, inC > &getter)
 
template<typename T , int inA, int inB>
ImageNdGetter< T, inA, inB > makeGetter (ImageNdGetter< T, inA, inB > &getter)
 
template<typename T >
ImageNdGetter< T, 2, 1 > makeGetter (lsst::afw::image::Image< T > &image)
 
template<typename T >
ImageNdGetter< T const, 2, 1 > makeGetter (lsst::afw::image::Image< T > const &image)
 
template<typename T >
ImageNdGetter< T, 2, 1 > makeGetter (lsst::afw::image::Mask< T > &image)
 
template<typename T >
ImageNdGetter< T const, 2, 1 > makeGetter (lsst::afw::image::Mask< T > const &image)
 
template<typename T >
ConstantGetter< T > makeGetter (T num, typename std::enable_if< std::is_arithmetic< T >::value, int >::type=0)
 
template<typename T >
IterGetter< T > makeGetter (T iter, typename std::enable_if< is_iterator< T >::value, int >::type=0)
 

Function Documentation

◆ makeGetter() [1/8]

template<typename T , int inA, int inC>
FlatNdGetter<T, inA, inC> lsst::afw::geom::details::makeGetter ( FlatNdGetter< T, inA, inC > &  getter)

Definition at line 239 of file SpanSetFunctorGetters.h.

239  {
240  // This function simply passes through any FlatNdGetter passed to it
241  return getter;
242 }

◆ makeGetter() [2/8]

template<typename T , int inA, int inB>
ImageNdGetter<T, inA, inB> lsst::afw::geom::details::makeGetter ( ImageNdGetter< T, inA, inB > &  getter)

Definition at line 245 of file SpanSetFunctorGetters.h.

245  {
246  // This function simply passes though any imageNdGetter passed to it
247  return getter;
248 }

◆ makeGetter() [3/8]

template<typename T >
ImageNdGetter<T, 2, 1> lsst::afw::geom::details::makeGetter ( lsst::afw::image::Image< T > &  image)

Definition at line 251 of file SpanSetFunctorGetters.h.

251  {
252  // Function to create a ndarray getter from an afw image
253  return ImageNdGetter<T, 2, 1>(image.getArray(), image.getXY0());
254 }
lsst::geom::Point2I getXY0() const
Return the image&#39;s origin.
Definition: ImageBase.h:360

◆ makeGetter() [4/8]

template<typename T >
ImageNdGetter<T const, 2, 1> lsst::afw::geom::details::makeGetter ( lsst::afw::image::Image< T > const &  image)

Definition at line 257 of file SpanSetFunctorGetters.h.

257  {
258  // Function to create a ndarray getter from an afw image
259  return ImageNdGetter<T const, 2, 1>(image.getArray(), image.getXY0());
260 }
lsst::geom::Point2I getXY0() const
Return the image&#39;s origin.
Definition: ImageBase.h:360

◆ makeGetter() [5/8]

template<typename T >
ImageNdGetter<T, 2, 1> lsst::afw::geom::details::makeGetter ( lsst::afw::image::Mask< T > &  image)

Definition at line 263 of file SpanSetFunctorGetters.h.

263  {
264  // Function to create a ndarray getter from an afw image
265  return ImageNdGetter<T, 2, 1>(image.getArray(), image.getXY0());
266 }
lsst::geom::Point2I getXY0() const
Return the image&#39;s origin.
Definition: ImageBase.h:360

◆ makeGetter() [6/8]

template<typename T >
ImageNdGetter<T const, 2, 1> lsst::afw::geom::details::makeGetter ( lsst::afw::image::Mask< T > const &  image)

Definition at line 269 of file SpanSetFunctorGetters.h.

269  {
270  // Function to create a ndarray getter from an afw image
271  return ImageNdGetter<T const, 2, 1>(image.getArray(), image.getXY0());
272 }
lsst::geom::Point2I getXY0() const
Return the image&#39;s origin.
Definition: ImageBase.h:360

◆ makeGetter() [7/8]

template<typename T >
ConstantGetter<T> lsst::afw::geom::details::makeGetter ( num,
typename std::enable_if< std::is_arithmetic< T >::value, int >::type  = 0 
)

Definition at line 275 of file SpanSetFunctorGetters.h.

275  {
276  // Function to create a getter for constant numeric types. Use template type checking to ensure the
277  // type is an integral type, or floating point type
278  return ConstantGetter<T>(num);
279 }

◆ makeGetter() [8/8]

template<typename T >
IterGetter<T> lsst::afw::geom::details::makeGetter ( iter,
typename std::enable_if< is_iterator< T >::value, int >::type  = 0 
)

Definition at line 294 of file SpanSetFunctorGetters.h.

294  {
295  // Use defined type trait checker to create an iterator getter if the template is an iterator type
296  return IterGetter<T>(iter);
297 }

◆ variadicBoundChecker() [1/2]

template<typename T >
void lsst::afw::geom::details::variadicBoundChecker ( lsst::geom::Box2I const  box,
int  area,
T const &  x 
)

Definition at line 61 of file SpanSetFunctorGetters.h.

61  {
62  x.checkExtents(box, area);
63 }
double x

◆ variadicBoundChecker() [2/2]

template<typename T , typename... Args>
void lsst::afw::geom::details::variadicBoundChecker ( lsst::geom::Box2I const  box,
int  area,
T const &  first,
Args &...  x 
)

Definition at line 66 of file SpanSetFunctorGetters.h.

66  {
68  variadicBoundChecker(box, area, x...);
69 }
void variadicBoundChecker(lsst::geom::Box2I const box, int area, T const &first, Args &... x)
double x

◆ variadicIncrementPosition() [1/2]

template<typename T >
void lsst::afw::geom::details::variadicIncrementPosition ( T &  x)

Definition at line 72 of file SpanSetFunctorGetters.h.

72  {
73  x.increment();
74 }
double x

◆ variadicIncrementPosition() [2/2]

template<typename T , typename... Args>
void lsst::afw::geom::details::variadicIncrementPosition ( T &  first,
Args &...  x 
)

Definition at line 77 of file SpanSetFunctorGetters.h.

77  {
80 }
double x
void variadicIncrementPosition(T &first, Args &... x)

◆ variadicSpanSetter() [1/2]

template<typename T >
void lsst::afw::geom::details::variadicSpanSetter ( Span const  spn,
T &  x 
)

Definition at line 50 of file SpanSetFunctorGetters.h.

50  {
51  x.setSpan(spn);
52 }
double x

◆ variadicSpanSetter() [2/2]

template<typename T , typename... Args>
void lsst::afw::geom::details::variadicSpanSetter ( Span const  spn,
T &  first,
Args &...  x 
)

Definition at line 55 of file SpanSetFunctorGetters.h.

55  {
57  variadicSpanSetter(spn, x...);
58 }
double x
void variadicSpanSetter(Span const spn, T &first, Args &... x)