lsst.meas.algorithms  13.0-23-gb99accf8+8
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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
 

Static Public Attributes

tuple fluxMin
 
tuple fluxMax
 
tuple widthMin
 
tuple widthMax
 
tuple sourceFluxField
 
tuple widthStdAllowed
 
tuple nSigmaClip
 

Detailed Description

Definition at line 48 of file objectSizeStarSelector.py.

Member Function Documentation

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

Definition at line 91 of file objectSizeStarSelector.py.

Member Data Documentation

tuple lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.fluxMax
static
Initial value:
1 = pexConfig.Field(
2  doc="specify the maximum psfFlux for good Psf Candidates (ignored if == 0)",
3  dtype=float,
4  default=0.0,
5  check=lambda x: x >= 0.0,
6  )

Definition at line 55 of file objectSizeStarSelector.py.

tuple lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.fluxMin
static
Initial value:
1 = pexConfig.Field(
2  doc="specify the minimum psfFlux for good Psf Candidates",
3  dtype=float,
4  default=12500.0,
5  check=lambda x: x >= 0.0,
6  )

Definition at line 49 of file objectSizeStarSelector.py.

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

Definition at line 84 of file objectSizeStarSelector.py.

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

Definition at line 73 of file objectSizeStarSelector.py.

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

Definition at line 67 of file objectSizeStarSelector.py.

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

Definition at line 61 of file objectSizeStarSelector.py.

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

Definition at line 78 of file objectSizeStarSelector.py.


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