lsst.meas.algorithms  14.0-7-g23fdbe95+14
Public Member Functions | Static Public Attributes | List of all members
lsst.meas.algorithms.sourceSelector.RequireUnresolved Class Reference
Inheritance diagram for lsst.meas.algorithms.sourceSelector.RequireUnresolved:

Public Member Functions

def apply (self, catalog)
 

Static Public Attributes

 name
 
 minimum = pexConfig.Field(dtype=float, optional=True, doc="Select objects with value greater than this.")
 
 maximum
 

Detailed Description

Select sources using star/galaxy separation

This object can be used as a `lsst.pex.config.Config` for configuring
the limit, and then the `apply` method can be used to identify sources
in the catalog that match the configured limit.

Definition at line 271 of file sourceSelector.py.

Member Function Documentation

◆ apply()

def lsst.meas.algorithms.sourceSelector.RequireUnresolved.apply (   self,
  catalog 
)
Apply the flag requirements to a catalog

Returns whether the source is selected.

Parameters
----------
catalog : `lsst.afw.table.SourceCatalog`
    Source to which to apply limits.

Returns
-------
selected : `numpy.ndarray`
    Boolean array indicating whether each source is selected
    (True means selected).

Definition at line 284 of file sourceSelector.py.

Member Data Documentation

◆ maximum

lsst.meas.algorithms.sourceSelector.RequireUnresolved.maximum
static
Initial value:
= pexConfig.Field(dtype=float, optional=True, default=0.5,
doc="Select objects with value less than this.")

Definition at line 281 of file sourceSelector.py.

◆ minimum

lsst.meas.algorithms.sourceSelector.RequireUnresolved.minimum = pexConfig.Field(dtype=float, optional=True, doc="Select objects with value greater than this.")
static

Definition at line 280 of file sourceSelector.py.

◆ name

lsst.meas.algorithms.sourceSelector.RequireUnresolved.name
static
Initial value:
= pexConfig.Field(dtype=str, default="base_ClassificationExtendedness_value",
doc="Name of column for star/galaxy separation")

Definition at line 278 of file sourceSelector.py.


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