lsst.meas.algorithms  22.0.1-25-gbfca4b99+b4523d8147
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 42 of file objectSizeStarSelector.py.

Member Function Documentation

◆ validate()

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

Definition at line 119 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 106 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 43 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 60 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 54 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 48 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 100 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 71 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 65 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 89 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 83 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 77 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 94 of file objectSizeStarSelector.py.


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