LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Public Member Functions | List of all members
lsst::afw::math::IntRegion< T > Struct Template Referencefinal

#include <Integrate.h>

Public Member Functions

 IntRegion (T const a, T const b, std::ostream *dbgout=nullptr)
 
 IntRegion (IntRegion const &)=default
 
 IntRegion (IntRegion &&)=default
 
IntRegionoperator= (IntRegion const &)=default
 
IntRegionoperator= (IntRegion &&)=default
 
 ~IntRegion ()=default
 
bool operator< (IntRegion< T > const &r2) const
 
bool operator> (IntRegion< T > const &r2) const
 
void SubDivide (std::vector< IntRegion< T > > *children)
 
void Bisect ()
 
void AddSplit (const T x)
 
size_t NSplit () const
 
T const & Left () const
 
T const & Right () const
 
T const & Err () const
 
T const & Area () const
 
void SetArea (const T &a, const T &e)
 
std::ostreamgetDbgout ()
 

Detailed Description

template<class T>
struct lsst::afw::math::IntRegion< T >

Definition at line 175 of file Integrate.h.

Constructor & Destructor Documentation

◆ IntRegion() [1/3]

template<class T >
lsst::afw::math::IntRegion< T >::IntRegion ( T const  a,
T const  b,
std::ostream dbgout = nullptr 
)
inline

Definition at line 177 of file Integrate.h.

178  : _a(a), _b(b), _error(0.0), _area(0), _dbgout(dbgout) {}
table::Key< int > b
table::Key< int > a

◆ IntRegion() [2/3]

template<class T >
lsst::afw::math::IntRegion< T >::IntRegion ( IntRegion< T > const &  )
default

◆ IntRegion() [3/3]

template<class T >
lsst::afw::math::IntRegion< T >::IntRegion ( IntRegion< T > &&  )
default

◆ ~IntRegion()

template<class T >
lsst::afw::math::IntRegion< T >::~IntRegion ( )
default

Member Function Documentation

◆ AddSplit()

template<class T >
void lsst::afw::math::IntRegion< T >::AddSplit ( const T  x)
inline

Definition at line 218 of file Integrate.h.

218 { _splitpoints.push_back(x); }
double x

◆ Area()

template<class T >
T const& lsst::afw::math::IntRegion< T >::Area ( ) const
inline

Definition at line 224 of file Integrate.h.

224 { return _area; }

◆ Bisect()

template<class T >
void lsst::afw::math::IntRegion< T >::Bisect ( )
inline

Definition at line 217 of file Integrate.h.

217 { _splitpoints.push_back((_a + _b) / 2.0); }

◆ Err()

template<class T >
T const& lsst::afw::math::IntRegion< T >::Err ( ) const
inline

Definition at line 223 of file Integrate.h.

223 { return _error; }

◆ getDbgout()

template<class T >
std::ostream* lsst::afw::math::IntRegion< T >::getDbgout ( )
inline

Definition at line 230 of file Integrate.h.

230 { return _dbgout; }

◆ Left()

template<class T >
T const& lsst::afw::math::IntRegion< T >::Left ( ) const
inline

Definition at line 221 of file Integrate.h.

221 { return _a; }

◆ NSplit()

template<class T >
size_t lsst::afw::math::IntRegion< T >::NSplit ( ) const
inline

Definition at line 219 of file Integrate.h.

219 { return _splitpoints.size(); }

◆ operator<()

template<class T >
bool lsst::afw::math::IntRegion< T >::operator< ( IntRegion< T > const &  r2) const
inline

Definition at line 186 of file Integrate.h.

186 { return _error < r2._error; }

◆ operator=() [1/2]

template<class T >
IntRegion& lsst::afw::math::IntRegion< T >::operator= ( IntRegion< T > &&  )
default

◆ operator=() [2/2]

template<class T >
IntRegion& lsst::afw::math::IntRegion< T >::operator= ( IntRegion< T > const &  )
default

◆ operator>()

template<class T >
bool lsst::afw::math::IntRegion< T >::operator> ( IntRegion< T > const &  r2) const
inline

Definition at line 187 of file Integrate.h.

187 { return _error > r2._error; }

◆ Right()

template<class T >
T const& lsst::afw::math::IntRegion< T >::Right ( ) const
inline

Definition at line 222 of file Integrate.h.

222 { return _b; }

◆ SetArea()

template<class T >
void lsst::afw::math::IntRegion< T >::SetArea ( const T &  a,
const T &  e 
)
inline

Definition at line 225 of file Integrate.h.

225  {
226  _area = a;
227  _error = e;
228  }

◆ SubDivide()

template<class T >
void lsst::afw::math::IntRegion< T >::SubDivide ( std::vector< IntRegion< T > > *  children)
inline

Definition at line 189 of file Integrate.h.

189  {
190  assert(children->size() == 0);
191  if (_splitpoints.size() == 0) {
192  Bisect();
193  }
194  if (_splitpoints.size() > 1) {
195  std::sort(_splitpoints.begin(), _splitpoints.end());
196  }
197 
198 #if 0
199  if (_a > _splitpoints[0] || _b < _splitpoints.back()) {
200  std::cerr << "a, b = " << _a << ', ' << _b << std::endl;
201  std::cerr << "_splitpoints = ";
202  for (size_t i = 0; i<_splitpoints.size(); i++) {
203  std::cerr << _splitpoints[i] << " ";
204  }
205  std::cerr << std::endl;
206  }
207 #endif
208  assert(_splitpoints[0] >= _a);
209  assert(_splitpoints.back() <= _b);
210  children->push_back(IntRegion<T>(_a, _splitpoints[0], _dbgout));
211  for (size_t i = 1; i < _splitpoints.size(); i++) {
212  children->push_back(IntRegion<T>(_splitpoints[i - 1], _splitpoints[i], _dbgout));
213  }
214  children->push_back(IntRegion<T>(_splitpoints.back(), _b, _dbgout));
215  }
T endl(T... args)
T push_back(T... args)
T size(T... args)
T sort(T... args)

The documentation for this struct was generated from the following file: