LSST Applications g04e9c324dd+8c5ae1fdc5,g134cb467dc+b203dec576,g18429d2f64+358861cd2c,g199a45376c+0ba108daf9,g1fd858c14a+dd066899e3,g262e1987ae+ebfced1d55,g29ae962dfc+72fd90588e,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+b668f15bc5,g4595892280+3897dae354,g47891489e3+abcf9c3559,g4d44eb3520+fb4ddce128,g53246c7159+8c5ae1fdc5,g67b6fd64d1+abcf9c3559,g67fd3c3899+1f72b5a9f7,g74acd417e5+cb6b47f07b,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+abcf9c3559,g8d7436a09f+bcf525d20c,g8ea07a8fe4+9f5ccc88ac,g90f42f885a+6054cc57f1,g97be763408+06f794da49,g9dd6db0277+1f72b5a9f7,ga681d05dcb+7e36ad54cd,gabf8522325+735880ea63,gac2eed3f23+abcf9c3559,gb89ab40317+abcf9c3559,gbf99507273+8c5ae1fdc5,gd8ff7fe66e+1f72b5a9f7,gdab6d2f7ff+cb6b47f07b,gdc713202bf+1f72b5a9f7,gdfd2d52018+8225f2b331,ge365c994fd+375fc21c71,ge410e46f29+abcf9c3559,geaed405ab2+562b3308c0,gf9a733ac38+8c5ae1fdc5,w.2025.35
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: