lsst.meas.algorithms  14.0-13-g68269a9e+1
Public Member Functions | Static Public Attributes | List of all members
lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig:

Public Member Functions

def validate (self)
 

Static Public Attributes

 fluxMin
 
 fluxMax
 
 widthMin
 
 widthMax
 
 sourceFluxField
 
 widthStdAllowed
 
 nSigmaClip
 

Detailed Description

Definition at line 48 of file objectSizeStarSelector.py.

Member Function Documentation

◆ validate()

def lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.validate (   self)

Definition at line 91 of file objectSizeStarSelector.py.

Member Data Documentation

◆ fluxMax

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.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 55 of file objectSizeStarSelector.py.

◆ fluxMin

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.fluxMin
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 49 of file objectSizeStarSelector.py.

◆ nSigmaClip

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.nSigmaClip
static
Initial value:
= pexConfig.Field(
doc="Keep objects within this many sigma of cluster 0's median",
dtype=float,
default=2.0,
check=lambda x: x >= 0.0,
)

Definition at line 84 of file objectSizeStarSelector.py.

◆ sourceFluxField

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.sourceFluxField
static
Initial value:
= pexConfig.Field(
doc="Name of field in Source to use for flux measurement",
dtype=str,
default="base_GaussianFlux_flux",
)

Definition at line 73 of file objectSizeStarSelector.py.

◆ widthMax

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.widthMax
static
Initial value:
= pexConfig.Field(
doc="maximum width to include in histogram",
dtype=float,
default=10.0,
check=lambda x: x >= 0.0,
)

Definition at line 67 of file objectSizeStarSelector.py.

◆ widthMin

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.widthMin
static
Initial value:
= pexConfig.Field(
doc="minimum width to include in histogram",
dtype=float,
default=0.0,
check=lambda x: x >= 0.0,
)

Definition at line 61 of file objectSizeStarSelector.py.

◆ widthStdAllowed

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.widthStdAllowed
static
Initial value:
= pexConfig.Field(
doc="Standard deviation of width allowed to be interpreted as good stars",
dtype=float,
default=0.15,
check=lambda x: x >= 0.0,
)

Definition at line 78 of file objectSizeStarSelector.py.


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