Definition at line 44 of file objectSizeStarSelector.py.
◆ validate()
def lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.validate |
( |
|
self | ) |
|
◆ 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 108 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 45 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 62 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 56 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 50 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 102 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 73 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 67 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 91 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 85 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 79 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 96 of file objectSizeStarSelector.py.
The documentation for this class was generated from the following file: