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
Public Member Functions | Static Public Member Functions | List of all members
lsst::shapelet::GaussHermiteEvaluator Class Reference

A class to evaluate HERMITE shapelet-related quantities. More...

#include <GaussHermiteEvaluator.h>

Public Member Functions

int getOrder () const
 
void fillEvaluation (Array1d const &target, double x, double y, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const
 Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point. More...
 
void fillEvaluation (Array1d const &target, geom::Point2D const &point, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const
 Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point. More...
 
void fillEvaluation (Array1d const &target, geom::Extent2D const &point, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const
 Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point. More...
 
void fillIntegration (Array1d const &target, int xMoment=0, int yMoment=0) const
 Fill a vector whose dot product with a HERMITE coefficient vector integrates a simple unscaled shapelet expansion. More...
 
double sumEvaluation (ndarray::Array< double const, 1 > const &coeff, double x, double y, double *dx=0, double *dy=0) const
 Evaluate a simple unscaled shapelet expansion at the given point. More...
 
double sumEvaluation (ndarray::Array< double const, 1 > const &coeff, geom::Point2D const &point, double *dx=0, double *dy=0) const
 Evaluate a simple unscaled shapelet expansion at the given point. More...
 
double sumEvaluation (ndarray::Array< double const, 1 > const &coeff, geom::Extent2D const &point, double *dx=0, double *dy=0) const
 Evaluate a simple unscaled shapelet expansion at the given point. More...
 
double sumIntegration (ndarray::Array< double const, 1 > const &coeff, int xMoment=0, int yMoment=0) const
 Integrate a simple unscaled shapelet expansion. More...
 
 GaussHermiteEvaluator (int order)
 

Static Public Member Functions

static Eigen::MatrixXd computeInnerProductMatrix (int rowOrder, int colOrder, double a, double b)
 Fill a matrix with the function inner products of two HERMITE shapelet basis functions with different scales. More...
 

Detailed Description

A class to evaluate HERMITE shapelet-related quantities.

Definition at line 84 of file GaussHermiteEvaluator.h.

Constructor & Destructor Documentation

◆ GaussHermiteEvaluator()

lsst::shapelet::GaussHermiteEvaluator::GaussHermiteEvaluator ( int  order)
explicit

Member Function Documentation

◆ computeInnerProductMatrix()

static Eigen::MatrixXd lsst::shapelet::GaussHermiteEvaluator::computeInnerProductMatrix ( int  rowOrder,
int  colOrder,
double  a,
double  b 
)
static

Fill a matrix with the function inner products of two HERMITE shapelet basis functions with different scales.

\( M_{\mathbf{i},\mathbf{j}} = \int d^2 \mathbf{x} \psi_\mathbf{i}(a\mathbf{x})\phi_\mathbf{j}(b\mathbf{x}) \)

◆ fillEvaluation() [1/3]

void lsst::shapelet::GaussHermiteEvaluator::fillEvaluation ( Array1d const &  target,
double  x,
double  y,
Array1d const &  dx = Array1d(),
Array1d const &  dy = Array1d() 
) const

Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point.

◆ fillEvaluation() [2/3]

void lsst::shapelet::GaussHermiteEvaluator::fillEvaluation ( Array1d const &  target,
geom::Point2D const &  point,
Array1d const &  dx = Array1d(),
Array1d const &  dy = Array1d() 
) const
inline

Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point.

Definition at line 115 of file GaussHermiteEvaluator.h.

119  {
120  fillEvaluation(target, point.getX(), point.getY(), dx, dy);
121  }
Key< Flag > const & target
void fillEvaluation(Array1d const &target, double x, double y, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const
Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapele...

◆ fillEvaluation() [3/3]

void lsst::shapelet::GaussHermiteEvaluator::fillEvaluation ( Array1d const &  target,
geom::Extent2D const &  point,
Array1d const &  dx = Array1d(),
Array1d const &  dy = Array1d() 
) const
inline

Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapelet expansion at the given point.

Definition at line 127 of file GaussHermiteEvaluator.h.

131  {
132  fillEvaluation(target, point.getX(), point.getY(), dx, dy);
133  }
Key< Flag > const & target
void fillEvaluation(Array1d const &target, double x, double y, Array1d const &dx=Array1d(), Array1d const &dy=Array1d()) const
Fill a vector whose dot product with a HERMITE coefficient vector evaluates a simple unscaled shapele...

◆ fillIntegration()

void lsst::shapelet::GaussHermiteEvaluator::fillIntegration ( Array1d const &  target,
int  xMoment = 0,
int  yMoment = 0 
) const

Fill a vector whose dot product with a HERMITE coefficient vector integrates a simple unscaled shapelet expansion.

◆ getOrder()

int lsst::shapelet::GaussHermiteEvaluator::getOrder ( ) const
inline

Definition at line 99 of file GaussHermiteEvaluator.h.

99 { return _xWorkspace.getSize<0>() - 1; }

◆ sumEvaluation() [1/3]

double lsst::shapelet::GaussHermiteEvaluator::sumEvaluation ( ndarray::Array< double const, 1 > const &  coeff,
double  x,
double  y,
double *  dx = 0,
double *  dy = 0 
) const

Evaluate a simple unscaled shapelet expansion at the given point.

◆ sumEvaluation() [2/3]

double lsst::shapelet::GaussHermiteEvaluator::sumEvaluation ( ndarray::Array< double const, 1 > const &  coeff,
geom::Point2D const &  point,
double *  dx = 0,
double *  dy = 0 
) const
inline

Evaluate a simple unscaled shapelet expansion at the given point.

Definition at line 152 of file GaussHermiteEvaluator.h.

155  {
156  return sumEvaluation(coeff, point.getX(), point.getY(), dx, dy);
157  }
double sumEvaluation(ndarray::Array< double const, 1 > const &coeff, double x, double y, double *dx=0, double *dy=0) const
Evaluate a simple unscaled shapelet expansion at the given point.
table::Key< table::Array< double > > coeff
Definition: PsfexPsf.cc:362

◆ sumEvaluation() [3/3]

double lsst::shapelet::GaussHermiteEvaluator::sumEvaluation ( ndarray::Array< double const, 1 > const &  coeff,
geom::Extent2D const &  point,
double *  dx = 0,
double *  dy = 0 
) const
inline

Evaluate a simple unscaled shapelet expansion at the given point.

Definition at line 162 of file GaussHermiteEvaluator.h.

165  {
166  return sumEvaluation(coeff, point.getX(), point.getY(), dx, dy);
167  }
double sumEvaluation(ndarray::Array< double const, 1 > const &coeff, double x, double y, double *dx=0, double *dy=0) const
Evaluate a simple unscaled shapelet expansion at the given point.
table::Key< table::Array< double > > coeff
Definition: PsfexPsf.cc:362

◆ sumIntegration()

double lsst::shapelet::GaussHermiteEvaluator::sumIntegration ( ndarray::Array< double const, 1 > const &  coeff,
int  xMoment = 0,
int  yMoment = 0 
) const

Integrate a simple unscaled shapelet expansion.


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