lsst.meas.algorithms  13.0-23-gb99accf8+4
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig:

Public Member Functions

def setDefaults
 

Public Attributes

 badFlags
 

Static Public Attributes

tuple fluxLim
 
tuple fluxMax
 
tuple clumpNSigma
 
tuple histSize
 
tuple histMomentMax
 
tuple histMomentMaxMultiplier
 
tuple histMomentClip
 
tuple histMomentMinMultiplier
 

Detailed Description

Definition at line 46 of file secondMomentStarSelector.py.

Member Function Documentation

def lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.setDefaults (   self)

Definition at line 96 of file secondMomentStarSelector.py.

Member Data Documentation

lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.badFlags

Definition at line 98 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.clumpNSigma
static
Initial value:
1 = pexConfig.Field(
2  doc="candidate PSF's shapes must lie within this many sigma of the average shape",
3  dtype=float,
4  default=2.0,
5  check=lambda x: x >= 0.0,
6  )

Definition at line 59 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.fluxLim
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 47 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.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 53 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentClip
static
Initial value:
1 = pexConfig.Field(
2  doc="Clipping threshold for moments histogram range",
3  dtype=float,
4  default=5.0,
5  check=lambda x: x > 0,
6  )

Definition at line 83 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMax
static
Initial value:
1 = pexConfig.Field(
2  doc="Maximum moment to consider",
3  dtype=float,
4  default=100.0,
5  check=lambda x: x > 0,
6  )

Definition at line 71 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMaxMultiplier
static
Initial value:
1 = pexConfig.Field(
2  doc="Multiplier of mean for maximum moments histogram range",
3  dtype=float,
4  default=5.0,
5  check=lambda x: x > 0,
6  )

Definition at line 77 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histMomentMinMultiplier
static
Initial value:
1 = pexConfig.Field(
2  doc="Multiplier of mean for minimum moments histogram range",
3  dtype=float,
4  default=2.0,
5  check=lambda x: x > 0,
6  )

Definition at line 89 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.histSize
static
Initial value:
1 = pexConfig.Field(
2  doc="Number of bins in moment histogram",
3  dtype=int,
4  default=64,
5  check=lambda x: x > 0,
6  )

Definition at line 65 of file secondMomentStarSelector.py.


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