LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
Static Public Attributes | List of all members
lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig Class Reference
Inheritance diagram for lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig:

Static Public Attributes

tuple fluxLim
 
tuple fluxMax
 
tuple clumpNSigma
 
tuple kernelSize
 
tuple borderWidth
 
tuple badFlags
 
tuple histSize
 
tuple histMomentMax
 
tuple histMomentMaxMultiplier
 
tuple histMomentClip
 
tuple histMomentMinMultiplier
 

Detailed Description

Definition at line 39 of file secondMomentStarSelector.py.

Member Data Documentation

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.badFlags
static
Initial value:
1 = pexConfig.ListField(
2  doc = "List of flags which cause a source to be rejected as bad",
3  dtype = str,
4  default = ["base_PixelFlags_flag_edge",
5  "base_PixelFlags_flag_interpolatedCenter",
6  "base_PixelFlags_flag_saturatedCenter",
7  "base_PixelFlags_flag_crCenter",
8  ]
9  )

Definition at line 68 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.borderWidth
static
Initial value:
1 = pexConfig.Field(
2  doc = "number of pixels to ignore around the edge of PSF candidate postage stamps",
3  dtype = int,
4  default = 0,
5  )

Definition at line 63 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 52 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 40 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 46 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 95 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 83 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 89 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 101 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 77 of file secondMomentStarSelector.py.

tuple lsst.meas.algorithms.secondMomentStarSelector.SecondMomentStarSelectorConfig.kernelSize
static
Initial value:
1 = pexConfig.Field(
2  doc = "size of the kernel to create",
3  dtype = int,
4  default = 21,
5  )

Definition at line 58 of file secondMomentStarSelector.py.


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