LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
Classes | Namespaces | Macros | Functions | Variables
Integrate.h File Reference
#include <algorithm>
#include <cassert>
#include <cmath>
#include <complex>
#include <functional>
#include <limits>
#include <map>
#include <ostream>
#include <queue>
#include <sstream>
#include <stdexcept>
#include <vector>
#include "lsst/pex/exceptions.h"
#include "lsst/afw/math/IntGKPData10.h"

Go to the source code of this file.

Classes

struct  lsst::afw::math::IntRegion< T >
 
struct  lsst::afw::math::details::AuxFunc1< UnaryFunctionT >
 Auxiliary struct 1. More...
 
struct  lsst::afw::math::details::AuxFunc2< UnaryFunctionT >
 
class  lsst::afw::math::details::binder2_1< BF >
 
class  lsst::afw::math::details::Int2DAuxType< BF, YREG >
 
class  lsst::afw::math::details::binder3_1< TF >
 
class  lsst::afw::math::details::Int3DAuxType< TF, YREG, ZREG >
 

Namespaces

namespace  lsst
 A base class for image defects.
 
namespace  lsst::afw
 
namespace  lsst::afw::math
 
namespace  lsst::afw::math::details
 

Macros

#define integ_dbg1    if (_dbgout) (*_dbgout)
 
#define integ_dbg2    if (reg.getDbgout()) (*(reg.getDbgout()))
 
#define integ_dbg3    if (tempreg.getDbgout()) (*(tempreg.getDbgout()))
 

Functions

template<class T >
lsst::afw::math::details::norm (const T &x)
 
template<class T >
lsst::afw::math::details::real (const T &x)
 
template<class T >
lsst::afw::math::details::Epsilon ()
 
template<class T >
lsst::afw::math::details::MinRep ()
 
template<class T >
lsst::afw::math::details::rescale_error (T err, T const &resabs, T const &resasc)
 
template<typename UnaryFunctionT , typename Arg >
bool lsst::afw::math::details::intGKPNA (UnaryFunctionT func, IntRegion< Arg > &reg, Arg const epsabs, Arg const epsrel, std::map< Arg, Arg > *fxmap=nullptr)
 Non-adaptive integration of the function f over the region 'reg'. More...
 
template<typename UnaryFunctionT , typename Arg >
void lsst::afw::math::details::intGKP (UnaryFunctionT func, IntRegion< Arg > &reg, Arg const epsabs, Arg const epsrel, std::map< Arg, Arg > *fxmap=nullptr)
 An adaptive integration algorithm which computes the integral of f over the region reg. More...
 
template<class UF >
AuxFunc1< UF > lsst::afw::math::details::Aux1 (UF uf)
 Auxiliary function 1. More...
 
template<class UF >
AuxFunc2< UF > lsst::afw::math::details::Aux2 (UF uf)
 Auxiliary function 2. More...
 
template<class BF , class Tp >
binder2_1< BF > lsst::afw::math::details::bind21 (const BF &oper, const Tp &x)
 
template<class TF , class Tp >
binder3_1< TF > lsst::afw::math::details::bind31 (const TF &oper, const Tp &x)
 
template<typename UnaryFunctionT , typename Arg >
Arg lsst::afw::math::int1d (UnaryFunctionT func, IntRegion< Arg > &reg, Arg const &abserr=DEFABSERR, Arg const &relerr=DEFRELERR)
 Front end for the 1d integrator. More...
 
template<typename UnaryFunctionT , typename Arg >
auto lsst::afw::math::integrate (UnaryFunctionT func, Arg const a, Arg const b, double eps=1.0e-6)
 The 1D integrator. More...
 
template<typename BinaryFunctionT , typename X , typename Y >
auto lsst::afw::math::integrate2d (BinaryFunctionT func, X x1, X x2, Y y1, Y y2, double eps=1.0e-6)
 The 2D integrator. More...
 

Variables

double const lsst::afw::math::MOCK_INF = 1.e10
 
double const lsst::afw::math::DEFABSERR = 1.e-15
 
double const lsst::afw::math::DEFRELERR = 1.e-6
 

Macro Definition Documentation

◆ integ_dbg1

#define integ_dbg1    if (_dbgout) (*_dbgout)

Definition at line 147 of file Integrate.h.

◆ integ_dbg2

#define integ_dbg2    if (reg.getDbgout()) (*(reg.getDbgout()))

Definition at line 149 of file Integrate.h.

◆ integ_dbg3

#define integ_dbg3    if (tempreg.getDbgout()) (*(tempreg.getDbgout()))

Definition at line 151 of file Integrate.h.