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
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 kernelSize
 
tuple borderWidth
 
tuple badFlags
 
tuple widthMin
 
tuple widthMax
 
tuple sourceFluxField
 
tuple widthStdAllowed
 
tuple nSigmaClip
 

Detailed Description

Definition at line 41 of file objectSizeStarSelector.py.

Member Function Documentation

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

Definition at line 105 of file objectSizeStarSelector.py.

106  def validate(self):
107  pexConfig.Config.validate(self)
108  if self.widthMin > self.widthMax:
109  raise pexConfig.FieldValidationError("widthMin (%f) > widthMax (%f)"
110  % (self.widthMin, self.widthMax))

Member Data Documentation

tuple lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.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  "base_PixelFlags_flag_bad",
9  ],
10  )

Definition at line 65 of file objectSizeStarSelector.py.

tuple lsst.meas.algorithms.objectSizeStarSelector.ObjectSizeStarSelectorConfig.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 60 of file objectSizeStarSelector.py.

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 49 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 # minValue = 0.0,
6  check = lambda x: x >= 0.0,
7  )

Definition at line 42 of file objectSizeStarSelector.py.

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

Definition at line 55 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 98 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 87 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 81 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 75 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 92 of file objectSizeStarSelector.py.


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