LSST Applications g013ef56533+2edba5e46d,g083dd6704c+a047e97985,g199a45376c+0ba108daf9,g1fd858c14a+d594c53611,g210f2d0738+d003cec0be,g25ecf2a47a+204e5a9ad5,g262e1987ae+16552835ac,g29ae962dfc+867dbde878,g2cef7863aa+aef1011c0b,g30d7c61c20+990af31dd2,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+c8e8c50746,g47891489e3+f459a6810c,g53246c7159+8c5ae1fdc5,g54cd7ddccb+890c8e1e5d,g5b326b94bb+01d4acd216,g64539dfbff+d003cec0be,g67b6fd64d1+f459a6810c,g6ebf1fc0d4+8c5ae1fdc5,g74acd417e5+4b21cac47b,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+f459a6810c,g8d7436a09f+b19788b7f5,g8ea07a8fe4+81eaaadc04,g90f42f885a+34c0557caf,g97be763408+3bd86eedd0,g98a1a72a9c+67cf96cfb3,g98df359435+688a06938e,gbf99507273+8c5ae1fdc5,gc2a301910b+d003cec0be,gca7fc764a6+f459a6810c,gd7ef33dd92+f459a6810c,gdab6d2f7ff+4b21cac47b,ge410e46f29+f459a6810c,ge41e95a9f2+d003cec0be,geaed405ab2+e3b4b2a692,gf9a733ac38+8c5ae1fdc5,w.2025.43
LSST Data Management Base Package
Loading...
Searching...
No Matches
lsst::gauss2d::detail::TermsPixel Class Reference

Storage for terms common to Gaussians for a single pixel. More...

#include <evaluate.h>

Public Member Functions

 TermsPixel (double weight_i=0, double weight_kernel=0, double xmc_i=0, double xmc_weighted_i=0, vecdptr ymc_weighted_i=nullptr, double weight_xx_i=0, double xmc_sq_norm_i=0, vecdptr yy_weighted_i=nullptr)
 
void set (double weight_, double weight_kernel_, double xmc_, double xx, vecdptr ymc_weighted_, vecdptr yy_weighted_)
 

Public Attributes

double weight = 0
 
double weight_kernel = 0
 
double xmc = 0
 
double xmc_weighted = 0
 
vecdptr ymc_weighted = nullptr
 
double weight_xx = 0
 
double xmc_sq_norm = 0
 
vecdptr yy_weighted = nullptr
 

Detailed Description

Storage for terms common to Gaussians for a single pixel.

Definition at line 194 of file evaluate.h.

Constructor & Destructor Documentation

◆ TermsPixel()

lsst::gauss2d::detail::TermsPixel::TermsPixel ( double weight_i = 0,
double weight_kernel = 0,
double xmc_i = 0,
double xmc_weighted_i = 0,
vecdptr ymc_weighted_i = nullptr,
double weight_xx_i = 0,
double xmc_sq_norm_i = 0,
vecdptr yy_weighted_i = nullptr )
inlineexplicit

Definition at line 206 of file evaluate.h.

209 : weight(weight_i),
210 xmc(xmc_i),
211 xmc_weighted(xmc_weighted_i),
212 ymc_weighted(std::move(ymc_weighted_i)),
213 weight_xx(weight_xx_i),
214 xmc_sq_norm(xmc_sq_norm_i),
215 yy_weighted(std::move(yy_weighted_i)) {}
T move(T... args)

Member Function Documentation

◆ set()

void lsst::gauss2d::detail::TermsPixel::set ( double weight_,
double weight_kernel_,
double xmc_,
double xx,
vecdptr ymc_weighted_,
vecdptr yy_weighted_ )
inline

Definition at line 218 of file evaluate.h.

219 {
220 this->weight = weight_;
221 this->weight_kernel = weight_kernel_;
222 this->xmc = xmc_;
223 this->weight_xx = xx;
224 this->ymc_weighted = std::move(ymc_weighted_);
225 this->yy_weighted = std::move(yy_weighted_);
226 }

Member Data Documentation

◆ weight

double lsst::gauss2d::detail::TermsPixel::weight = 0

Definition at line 196 of file evaluate.h.

◆ weight_kernel

double lsst::gauss2d::detail::TermsPixel::weight_kernel = 0

Definition at line 197 of file evaluate.h.

◆ weight_xx

double lsst::gauss2d::detail::TermsPixel::weight_xx = 0

Definition at line 201 of file evaluate.h.

◆ xmc

double lsst::gauss2d::detail::TermsPixel::xmc = 0

Definition at line 198 of file evaluate.h.

◆ xmc_sq_norm

double lsst::gauss2d::detail::TermsPixel::xmc_sq_norm = 0

Definition at line 202 of file evaluate.h.

◆ xmc_weighted

double lsst::gauss2d::detail::TermsPixel::xmc_weighted = 0

Definition at line 199 of file evaluate.h.

◆ ymc_weighted

vecdptr lsst::gauss2d::detail::TermsPixel::ymc_weighted = nullptr

Definition at line 200 of file evaluate.h.

◆ yy_weighted

vecdptr lsst::gauss2d::detail::TermsPixel::yy_weighted = nullptr

Definition at line 203 of file evaluate.h.


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