lsst.meas.algorithms  15.0-5-ge02c9e7e+5
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig:

Public Member Functions

def setDefaults (self)
 

Public Attributes

 badFlags
 

Static Public Attributes

 fluxLim
 
 fluxMax
 
 clumpNSigma
 
 histSize
 
 histMomentMax
 
 histMomentMaxMultiplier
 
 histMomentClip
 
 histMomentMinMultiplier
 

Detailed Description

Definition at line 45 of file secondMomentStarSelector.py.

Member Function Documentation

◆ setDefaults()

def lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.setDefaults (   self)

Definition at line 95 of file secondMomentStarSelector.py.

Member Data Documentation

◆ badFlags

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.badFlags

Definition at line 97 of file secondMomentStarSelector.py.

◆ clumpNSigma

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.clumpNSigma
static
Initial value:
= pexConfig.Field(
doc="candidate PSF's shapes must lie within this many sigma of the average shape",
dtype=float,
default=2.0,
check=lambda x: x >= 0.0,
)

Definition at line 58 of file secondMomentStarSelector.py.

◆ fluxLim

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.fluxLim
static
Initial value:
= pexConfig.Field(
doc="specify the minimum psfFlux for good Psf Candidates",
dtype=float,
default=12500.0,
check=lambda x: x >= 0.0,
)

Definition at line 46 of file secondMomentStarSelector.py.

◆ fluxMax

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.fluxMax
static
Initial value:
= pexConfig.Field(
doc="specify the maximum psfFlux for good Psf Candidates (ignored if == 0)",
dtype=float,
default=0.0,
check=lambda x: x >= 0.0,
)

Definition at line 52 of file secondMomentStarSelector.py.

◆ histMomentClip

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentClip
static
Initial value:
= pexConfig.Field(
doc="Clipping threshold for moments histogram range",
dtype=float,
default=5.0,
check=lambda x: x > 0,
)

Definition at line 82 of file secondMomentStarSelector.py.

◆ histMomentMax

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMax
static
Initial value:
= pexConfig.Field(
doc="Maximum moment to consider",
dtype=float,
default=100.0,
check=lambda x: x > 0,
)

Definition at line 70 of file secondMomentStarSelector.py.

◆ histMomentMaxMultiplier

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMaxMultiplier
static
Initial value:
= pexConfig.Field(
doc="Multiplier of mean for maximum moments histogram range",
dtype=float,
default=5.0,
check=lambda x: x > 0,
)

Definition at line 76 of file secondMomentStarSelector.py.

◆ histMomentMinMultiplier

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMinMultiplier
static
Initial value:
= pexConfig.Field(
doc="Multiplier of mean for minimum moments histogram range",
dtype=float,
default=2.0,
check=lambda x: x > 0,
)

Definition at line 88 of file secondMomentStarSelector.py.

◆ histSize

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histSize
static
Initial value:
= pexConfig.Field(
doc="Number of bins in moment histogram",
dtype=int,
default=64,
check=lambda x: x > 0,
)

Definition at line 64 of file secondMomentStarSelector.py.


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