|
lsst.meas.base g51c93253c0+8bb2015bcd
|
Public Member Functions | |
| getExecutionOrder (cls) | |
| __init__ (self, config, name, schema, metadata) | |
| measure (self, measRecord, exposure, center) | |
| measureN (self, measCat, exposure, refCat, refWcs) | |
| fail (self, measRecord, error=None) | |
| makeSingleFramePlugin (cls, name) | |
| makeForcedPlugin (cls, name) | |
| getLogName (self) | |
Static Public Member Functions | |
| getTransformClass () | |
Public Attributes | |
| photoKey | |
| photoErrKey | |
| config = config | |
| name = name | |
| logName = logName | |
Static Public Attributes | |
| float | CENTROID_ORDER = 0.0 |
| float | SHAPE_ORDER = 1.0 |
| float | FLUX_ORDER = 2.0 |
| float | APCORR_ORDER = 3.0 |
| float | DEFAULT_CATALOGCALCULATION = 4.0 |
| ConfigClass = BasePluginConfig | |
Protected Attributes | |
| _failKey = schema.addField(name + '_flag', type="Flag", doc="Set for any fatal failure") | |
| _generic = cls(config, name, schema, metadata) | |
Evaluate the local value of the Photometric Calibration in the exposure. The aim is to store the local calib value within the catalog for later use in the Science Data Model functors.
Definition at line 414 of file plugins.py.
| lsst.meas.base.plugins.EvaluateLocalPhotoCalibPlugin.__init__ | ( | self, | |
| config, | |||
| name, | |||
| schema, | |||
| metadata ) |
Definition at line 426 of file plugins.py.
|
inherited |
Record a measurement failure.
This default implementation simply records the failure in the source
record.
Parameters
----------
measRecord : `lsst.afw.table.SourceRecord`
Catalog record for the source being measured.
error : `Exception`
Error causing failure, or `None`.
Reimplemented from lsst.meas.base.pluginsBase.BasePlugin.
Reimplemented in lsst.meas.base.plugins.InputCountPlugin, and lsst.meas.base.plugins.VariancePlugin.
Definition at line 595 of file wrappers.py.
| lsst.meas.base.plugins.EvaluateLocalPhotoCalibPlugin.getExecutionOrder | ( | cls | ) |
Get the relative execution order of this plugin. Must be reimplemented as a class method by concrete derived classes.
Reimplemented from lsst.meas.base.wrappers.GenericPlugin.
Definition at line 423 of file plugins.py.
|
inherited |
Definition at line 134 of file pluginsBase.py.
|
staticinherited |
Get the measurement transformation appropriate to this plugin. This returns a subclass of `transforms.MeasurementTransform`, which may be instantiated with details of the algorithm configuration and then called with information about calibration and WCS to convert from raw measurement quantities to calibrated units. Calibrated data is then provided in a separate output table. Notes ----- By default, we copy everything from the input to the output without transformation.
Reimplemented in lsst.meas.base.plugins.ForcedPeakCentroidPlugin, and lsst.meas.base.plugins.SingleFramePeakCentroidPlugin.
Definition at line 169 of file pluginsBase.py.
|
inherited |
Produce a ForcedPlugin subclass from this GenericPlugin class.
The class is also registered.
Parameters
----------
name : `str`
Name of plugin to register.
Definition at line 652 of file wrappers.py.
|
inherited |
Produce a SingleFramePlugin subclass from this GenericPlugin class.
The class is also registered.
Parameters
----------
name : `str`
Name of plugin to register.
Definition at line 611 of file wrappers.py.
| lsst.meas.base.plugins.EvaluateLocalPhotoCalibPlugin.measure | ( | self, | |
| measRecord, | |||
| exposure, | |||
| center ) |
Measure a single source.
It is the responsibility of this method to perform the desired
measurement and record the result in the `measRecord`.
Parameters
----------
measRecord : `lsst.afw.table.SourceRecord`
Catalog record for the source being measured.
exposure : `lsst.afw.image.Exposure`
Exposure on which the source is being measured.
center : `lsst.geom.Point2D`
Pixel coordinates of the object.
Raises
------
MeasurementError
Raised if the measurement fails for a known/justifiable reason.
Reimplemented from lsst.meas.base.wrappers.GenericPlugin.
Definition at line 439 of file plugins.py.
|
inherited |
Measure multiple sources.
It is the responsibility of this method to perform the desired
measurement and record the result in the `measCat`.
Parameters
----------
measCat : `lsst.afw.table.SourceCatalog`
Catalog for the sources being measured.
exposure : `lsst.afw.image.Exposure`
Exposure on which the source is being measured.
refCat : `lsst.afw.table.SourceCatalog`
Reference catalog.
refWcs : `lsst.afw.image.Wcs`
Astrometric solution for the reference image.
Raises
------
MeasurementError
Raised if the measurement fails for a known/justifiable reason.
Definition at line 571 of file wrappers.py.
|
protectedinherited |
Definition at line 547 of file wrappers.py.
|
protectedinherited |
Definition at line 630 of file wrappers.py.
|
staticinherited |
Definition at line 98 of file pluginsBase.py.
|
staticinherited |
Definition at line 72 of file pluginsBase.py.
|
inherited |
Definition at line 130 of file pluginsBase.py.
|
staticinherited |
Definition at line 116 of file pluginsBase.py.
|
staticinherited |
Definition at line 108 of file pluginsBase.py.
|
staticinherited |
Definition at line 89 of file pluginsBase.py.
|
inherited |
Definition at line 132 of file pluginsBase.py.
|
inherited |
Definition at line 131 of file pluginsBase.py.
| lsst.meas.base.plugins.EvaluateLocalPhotoCalibPlugin.photoErrKey |
Definition at line 433 of file plugins.py.
| lsst.meas.base.plugins.EvaluateLocalPhotoCalibPlugin.photoKey |
Definition at line 428 of file plugins.py.
|
staticinherited |
Definition at line 80 of file pluginsBase.py.