LSSTApplications  17.0+124,17.0+14,17.0+73,18.0.0+37,18.0.0+80,18.0.0-4-g68ffd23+4,18.1.0-1-g0001055+12,18.1.0-1-g03d53ef+5,18.1.0-1-g1349e88+55,18.1.0-1-g2505f39+44,18.1.0-1-g5315e5e+4,18.1.0-1-g5e4b7ea+14,18.1.0-1-g7e8fceb+4,18.1.0-1-g85f8cd4+48,18.1.0-1-g8ff0b9f+4,18.1.0-1-ga2c679d+1,18.1.0-1-gd55f500+35,18.1.0-10-gb58edde+2,18.1.0-11-g0997b02+4,18.1.0-13-gfe4edf0b+12,18.1.0-14-g259bd21+21,18.1.0-19-gdb69f3f+2,18.1.0-2-g5f9922c+24,18.1.0-2-gd3b74e5+11,18.1.0-2-gfbf3545+32,18.1.0-26-g728bddb4+5,18.1.0-27-g6ff7ca9+2,18.1.0-3-g52aa583+25,18.1.0-3-g8ea57af+9,18.1.0-3-gb69f684+42,18.1.0-3-gfcaddf3+6,18.1.0-32-gd8786685a,18.1.0-4-gf3f9b77+6,18.1.0-5-g1dd662b+2,18.1.0-5-g6dbcb01+41,18.1.0-6-gae77429+3,18.1.0-7-g9d75d83+9,18.1.0-7-gae09a6d+30,18.1.0-9-gc381ef5+4,w.2019.45
LSSTDataManagementBasePackage
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" ;
double minimumRadius
"Minimum Kron radius (if == 0.0 use PSF&#39;s Kron radius) if enforceMinimumRadius. " "Also functions as ...
bool fixed
"if true, use existing shape and centroid measurements instead of fitting" ;
double nSigmaForRadius
"Multiplier of rms size for aperture used to initially estimate the Kron radius" ; ...
bool enforceMinimumRadius
"If true check that the Kron radius exceeds some minimum" ;
std::string refRadiusName
"Name of field specifying reference Kron radius for forced measurement" ;
double maxSincRadius
"Largest aperture for which to use the slow, accurate, sinc aperture code" ;
int nIterForRadius
"Number of times to iterate when setting the Kron radius" ;
bool useFootprintRadius
"Use the Footprint size as part of initial estimate of Kron radius" ;
double nRadiusForFlux
"Number of Kron radii for Kron flux" ;

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: