LSST Applications g044012fb7c+304891ab8a,g04a91732dc+4e1b87f259,g07dc498a13+f701f15b83,g114c6a66ad+c7887c1284,g1409bbee79+f701f15b83,g1a7e361dbc+f701f15b83,g1fd858c14a+6ebd102b59,g35bb328faa+0eb18584fe,g3bd4b5ce2c+e83bf4edc8,g4e0f332c67+976ceb6bc8,g53246c7159+0eb18584fe,g5477a8d5ce+51234355ef,g60b5630c4e+c7887c1284,g623d845a50+c7887c1284,g6f0c2978f1+98123c34b6,g71fabbc107+c7887c1284,g75b6c65c88+ce466f4385,g78460c75b0+85633614c8,g786e29fd12+02b9b86fc9,g8852436030+cfe5cf5b7b,g89139ef638+f701f15b83,g9125e01d80+0eb18584fe,g95236ca021+d4f98599f0,g974caa22f6+0eb18584fe,g989de1cb63+f701f15b83,g9f33ca652e+b4908f5dcd,gaaedd4e678+f701f15b83,gabe3b4be73+543c3c03c9,gace736f484+07e57cea59,gb1101e3267+487fd1b06d,gb58c049af0+492386d360,gc99c83e5f0+a513197d39,gcf25f946ba+cfe5cf5b7b,gd0fa69b896+babbe6e5fe,gd6cbbdb0b4+3fef02d88a,gde0f65d7ad+e8379653a2,ge278dab8ac+ae64226a64,gfba249425e+0eb18584fe,w.2025.07
LSST Data Management Base Package
|
#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.
Namespaces | |
namespace | lsst |
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 > | |
T | lsst::afw::math::details::norm (const T &x) |
template<class T > | |
T | lsst::afw::math::details::real (const T &x) |
template<class T > | |
T | lsst::afw::math::details::Epsilon () |
template<class T > | |
T | lsst::afw::math::details::MinRep () |
template<class T > | |
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 > ®, Arg const epsabs, Arg const epsrel, std::map< Arg, Arg > *fxmap=nullptr) |
Non-adaptive integration of the function f over the region 'reg'. | |
template<typename UnaryFunctionT , typename Arg > | |
void | lsst::afw::math::details::intGKP (UnaryFunctionT func, IntRegion< Arg > ®, 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. | |
template<class UF > | |
AuxFunc1< UF > | lsst::afw::math::details::Aux1 (UF uf) |
Auxiliary function 1. | |
template<class UF > | |
AuxFunc2< UF > | lsst::afw::math::details::Aux2 (UF uf) |
Auxiliary function 2. | |
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 > ®, Arg const &abserr=DEFABSERR, Arg const &relerr=DEFRELERR) |
Front end for the 1d integrator. | |
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. | |
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. | |
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 |
#define integ_dbg1 if (_dbgout) (*_dbgout) |
Definition at line 147 of file Integrate.h.
#define integ_dbg2 if (reg.getDbgout()) (*(reg.getDbgout())) |
Definition at line 149 of file Integrate.h.
#define integ_dbg3 if (tempreg.getDbgout()) (*(tempreg.getDbgout())) |
Definition at line 151 of file Integrate.h.