lsst.meas.algorithms gf82c78fb6f+5b4928dc2e
Loading...
Searching...
No Matches
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

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

Detailed Description

Definition at line 44 of file objectSizeStarSelector.py.

Member Function Documentation

◆ validate()

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

Definition at line 126 of file objectSizeStarSelector.py.

Member Data Documentation

◆ badFlags

pexConfig 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 113 of file objectSizeStarSelector.py.

◆ doFluxLimit

pexConfig 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

pexConfig 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

pexConfig 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

pexConfig 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

pexConfig 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 107 of file objectSizeStarSelector.py.

◆ signalToNoiseMax

pexConfig 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 78 of file objectSizeStarSelector.py.

◆ signalToNoiseMin

pexConfig lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.signalToNoiseMin
static
Initial value:
= pexConfig.Field(
doc="specify the minimum signal-to-noise for good Psf Candidates "
"(value should take into consideration the detection thresholds "
"set for the catalog of interest)",
dtype=float,
default=50.0,
check=lambda x: x >= 0.0,
)

Definition at line 70 of file objectSizeStarSelector.py.

◆ sourceFluxField

pexConfig 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 96 of file objectSizeStarSelector.py.

◆ widthMax

pexConfig 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 90 of file objectSizeStarSelector.py.

◆ widthMin

pexConfig 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 84 of file objectSizeStarSelector.py.

◆ widthStdAllowed

pexConfig 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 101 of file objectSizeStarSelector.py.


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