lsst.meas.algorithms  20.0.0-6-g01203fff+883dccf1c0
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

 doFluxLimit
 
 fluxMin
 
 fluxMax
 
 doSignalToNoiseLimit
 
 signalToNoiseMin
 
 signalToNoiseMax
 
 widthMin
 
 widthMax
 
 sourceFluxField
 
 widthStdAllowed
 
 nSigmaClip
 
 badFlags
 

Detailed Description

Definition at line 40 of file objectSizeStarSelector.py.

Member Function Documentation

◆ validate()

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

Definition at line 117 of file objectSizeStarSelector.py.

Member Data Documentation

◆ badFlags

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.badFlags
static
Initial value:
= pexConfig.ListField(
doc="List of flags which cause a source to be rejected as bad",
dtype=str,
default=[
"base_PixelFlags_flag_edge",
"base_PixelFlags_flag_interpolatedCenter",
"base_PixelFlags_flag_saturatedCenter",
"base_PixelFlags_flag_crCenter",
"base_PixelFlags_flag_bad",
"base_PixelFlags_flag_interpolated",
],
)

Definition at line 104 of file objectSizeStarSelector.py.

◆ doFluxLimit

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.doFluxLimit
static
Initial value:
= pexConfig.Field(
doc="Apply flux limit to Psf Candidate selection?",
dtype=bool,
default=True,
)

Definition at line 41 of file objectSizeStarSelector.py.

◆ doSignalToNoiseLimit

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.doSignalToNoiseLimit
static
Initial value:
= pexConfig.Field(
doc="Apply signal-to-noise (i.e. flux/fluxErr) limit to Psf Candidate selection?",
dtype=bool,
default=False,
)

Definition at line 58 of file objectSizeStarSelector.py.

◆ 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 52 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 46 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 98 of file objectSizeStarSelector.py.

◆ signalToNoiseMax

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.signalToNoiseMax
static
Initial value:
= pexConfig.Field(
doc="specify the maximum signal-to-noise for good Psf Candidates (ignored if == 0)",
dtype=float,
default=0.0,
check=lambda x: x >= 0.0,
)

Definition at line 69 of file objectSizeStarSelector.py.

◆ signalToNoiseMin

lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.signalToNoiseMin
static
Initial value:
= pexConfig.Field(
doc="specify the minimum signal-to-noise for good Psf Candidates",
dtype=float,
default=20.0,
check=lambda x: x >= 0.0,
)

Definition at line 63 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_instFlux",
)

Definition at line 87 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 81 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 75 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 92 of file objectSizeStarSelector.py.


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