LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
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
 

Detailed Description

Definition at line 41 of file objectSizeStarSelector.py.

Member Function Documentation

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

Definition at line 92 of file objectSizeStarSelector.py.

92 
93  def validate(self):
94  pexConfig.Config.validate(self)
95  if self.widthMin > self.widthMax:
96  raise pexConfig.FieldValidationError("widthMin (%f) > widthMax (%f)"
97  % (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  ]
9  )

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.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 86 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 80 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 74 of file objectSizeStarSelector.py.


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