LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Public Member Functions | Public Attributes | List of all members
lsst::meas::extensions::photometryKron::KronFluxControl Class Reference

C++ control object for Kron flux. More...

#include <photometryKron.h>

Public Member Functions

 KronFluxControl ()
 

Public Attributes

bool fixed
 "if true, use existing shape and centroid measurements instead of fitting" ; More...
 
double nSigmaForRadius
 "Multiplier of rms size for aperture used to initially estimate the Kron radius" ; More...
 
int nIterForRadius
 "Number of times to iterate when setting the Kron radius" ; More...
 
double nRadiusForFlux
 "Number of Kron radii for Kron flux" ; More...
 
double maxSincRadius
 "Largest aperture for which to use the slow, accurate, sinc aperture code" ; More...
 
double minimumRadius
 "Minimum Kron radius (if == 0.0 use PSF's Kron radius) if enforceMinimumRadius. " "Also functions as fallback aperture radius if set." ; More...
 
bool enforceMinimumRadius
 "If true check that the Kron radius exceeds some minimum" ; More...
 
bool useFootprintRadius
 "Use the Footprint size as part of initial estimate of Kron radius" ; More...
 
double smoothingSigma
 "Smooth image with N(0, smoothingSigma^2) Gaussian while estimating R_K" ; More...
 
std::string refRadiusName
 "Name of field specifying reference Kron radius for forced measurement" ; More...
 

Detailed Description

C++ control object for Kron flux.

See also
KronFluxConfig.

Definition at line 48 of file photometryKron.h.

Constructor & Destructor Documentation

◆ KronFluxControl()

lsst::meas::extensions::photometryKron::KronFluxControl::KronFluxControl ( )
inline

Definition at line 70 of file photometryKron.h.

70  :
71  fixed(false),
72  nSigmaForRadius(6.0),
73  nIterForRadius(1),
74  nRadiusForFlux(2.5),
75  maxSincRadius(10.0),
76  minimumRadius(0.0),
78  useFootprintRadius(false),
79  smoothingSigma(-1.0),
80  refRadiusName("ext_photometryKron_KronFlux_radius")
81  {}
double smoothingSigma
"Smooth image with N(0, smoothingSigma^2) Gaussian while estimating R_K" ;
std::string refRadiusName
"Name of field specifying reference Kron radius for forced measurement" ;
int nIterForRadius
"Number of times to iterate when setting the Kron radius" ;
bool fixed
"if true, use existing shape and centroid measurements instead of fitting" ;
bool useFootprintRadius
"Use the Footprint size as part of initial estimate of Kron radius" ;
double minimumRadius
"Minimum Kron radius (if == 0.0 use PSF's Kron radius) if enforceMinimumRadius. " "Also functions as ...
double maxSincRadius
"Largest aperture for which to use the slow, accurate, sinc aperture code" ;
double nRadiusForFlux
"Number of Kron radii for Kron flux" ;
bool enforceMinimumRadius
"If true check that the Kron radius exceeds some minimum" ;
double nSigmaForRadius
"Multiplier of rms size for aperture used to initially estimate the Kron radius" ;

Member Data Documentation

◆ enforceMinimumRadius

bool lsst::meas::extensions::photometryKron::KronFluxControl::enforceMinimumRadius

"If true check that the Kron radius exceeds some minimum" ;

Definition at line 62 of file photometryKron.h.

◆ fixed

bool lsst::meas::extensions::photometryKron::KronFluxControl::fixed

"if true, use existing shape and centroid measurements instead of fitting" ;

Definition at line 52 of file photometryKron.h.

◆ maxSincRadius

double lsst::meas::extensions::photometryKron::KronFluxControl::maxSincRadius

"Largest aperture for which to use the slow, accurate, sinc aperture code" ;

Definition at line 58 of file photometryKron.h.

◆ minimumRadius

double lsst::meas::extensions::photometryKron::KronFluxControl::minimumRadius

"Minimum Kron radius (if == 0.0 use PSF's Kron radius) if enforceMinimumRadius. " "Also functions as fallback aperture radius if set." ;

Definition at line 61 of file photometryKron.h.

◆ nIterForRadius

int lsst::meas::extensions::photometryKron::KronFluxControl::nIterForRadius

"Number of times to iterate when setting the Kron radius" ;

Definition at line 55 of file photometryKron.h.

◆ nRadiusForFlux

double lsst::meas::extensions::photometryKron::KronFluxControl::nRadiusForFlux

"Number of Kron radii for Kron flux" ;

Definition at line 56 of file photometryKron.h.

◆ nSigmaForRadius

double lsst::meas::extensions::photometryKron::KronFluxControl::nSigmaForRadius

"Multiplier of rms size for aperture used to initially estimate the Kron radius" ;

Definition at line 54 of file photometryKron.h.

◆ refRadiusName

std::string lsst::meas::extensions::photometryKron::KronFluxControl::refRadiusName

"Name of field specifying reference Kron radius for forced measurement" ;

Definition at line 68 of file photometryKron.h.

◆ smoothingSigma

double lsst::meas::extensions::photometryKron::KronFluxControl::smoothingSigma

"Smooth image with N(0, smoothingSigma^2) Gaussian while estimating R_K" ;

Definition at line 66 of file photometryKron.h.

◆ useFootprintRadius

bool lsst::meas::extensions::photometryKron::KronFluxControl::useFootprintRadius

"Use the Footprint size as part of initial estimate of Kron radius" ;

Definition at line 64 of file photometryKron.h.


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