CutOutDonutsBaseTask¶
- class lsst.ts.wep.task.CutOutDonutsBaseTask(**kwargs)¶
Bases:
PipelineTask
Base class for CutOutDonuts tasks.
Subclasses must implement _DefaultName.
Attributes Summary
Methods Summary
calculateFinalCentroids
(exposure, template, ...)Recentroid donuts from catalog values by convolving with template.
calculateSN
(stamp)Calculate signal-to-noise ratio.
cutOutStamps
(exposure, donutCatalog, ...)Cut out postage stamps for sources in catalog.
Empty (clear) the metadata for this Task and all sub-Tasks.
filterBadRecentering
(xShifts, yShifts)Filter out donuts that are recentered far away from the median shift of all donuts.
Get metadata for all tasks.
Get the task name as a hierarchical name including parent task names.
getName
()Get the name of the task.
Get a dictionary of all tasks as a shallow copy.
makeField
(doc)Make a
lsst.pex.config.ConfigurableField
for this task.makeSubtask
(name, **keyArgs)Create a subtask as a new instance as the
name
attribute of this task.run
(**kwargs)Run task algorithm on in-memory data.
runQuantum
(butlerQC, inputRefs, outputRefs)Do butler IO and transform to provide in memory objects for tasks
run
method.shiftCenters
(centerArr, boundary, distance)Shift the centers of sources if the distance to boundary is less than required.
timer
(name[, logLevel])Context manager to log performance data for an arbitrary block of code.
Attributes Documentation
- canMultiprocess: ClassVar[bool] = True¶
Methods Documentation
- calculateFinalCentroids(exposure, template, xCenters, yCenters)¶
Recentroid donuts from catalog values by convolving with template. Also return the appropriate corner values for the final donutStamps taking into account donuts possibly being near the edges of the exposure and compensating appropriately.
Parameters¶
- exposurelsst.afw.image.Exposure
Exposure with the donut image.
- templatenumpy.ndarray
Donut template for the exposure.
- xCentersnp.ndarray
X pixel donut centers from donutCatalog.
- yCentersnp.ndarray
Y pixel donut centers from donutCatalog.
Returns¶
- np.ndarray
Final donut x centroid pixel positions on exposure.
- np.ndarray
Final donut y centroid pixel positions on exposure.
- np.ndarray
Final x corner positions on exposure for donutStamp BBox.
- np.ndarray
Final y corner positions on exposure for donutStamp BBox.
- np.ndarray
Original x corner positions.
- np.ndarray
Original y corner positions.
- float
The height of the max point in the convolved image.
- calculateSN(stamp)¶
Calculate signal-to-noise ratio.
Parameters¶
- stamplsst.ts.wep.task.donutStamp
A stamp containing donut image.
Returns¶
- dict
A dictionary of calculated quantities
- cutOutStamps(exposure, donutCatalog, defocalType, cameraName)¶
Cut out postage stamps for sources in catalog.
Parameters¶
- exposurelsst.afw.image.Exposure
Post-ISR image with defocal donuts sources.
- donutCatalogastropy.table.QTable
Source catalog for the pointing.
- defocalTypeenum ‘DefocalType’
Defocal type of the donut image.
- cameraNamestr
Name of camera for the exposure. Can accept “LSSTCam”, “LSSTComCam”, “LATISS”.
Returns¶
- DonutStamps
Collection of postage stamps as lsst.afw.image.MaskedImage with additional metadata.
- emptyMetadata() None ¶
Empty (clear) the metadata for this Task and all sub-Tasks.
- filterBadRecentering(xShifts, yShifts)¶
Filter out donuts that are recentered far away from the median shift of all donuts. The median is subtracted to account for a constant shift due to any constant offsets from the WCS used to calculate the pixel positions.
Parameters¶
- xShiftsnp.ndarray
Shifts of all donut sources in the x-direction in units of pixels.
- yShiftsnp.ndarray
Shifts of all donut sources in the y-direction in units of pixels.
Returns¶
- np.ndarray
Indices where total shift after median subtraction is more than the value allowed by self.maxRecenterDistance
- getFullMetadata() TaskMetadata ¶
Get metadata for all tasks.
Returns¶
- metadata
TaskMetadata
The keys are the full task name. Values are metadata for the top-level task and all subtasks, sub-subtasks, etc.
Notes¶
The returned metadata includes timing information (if
@timer.timeMethod
is used) and any metadata set by the task. The name of each item consists of the full task name with.
replaced by:
, followed by.
and the name of the item, e.g.:topLevelTaskName:subtaskName:subsubtaskName.itemName
using
:
in the full task name disambiguates the rare situation that a task has a subtask and a metadata item with the same name.- metadata
- getFullName() str ¶
Get the task name as a hierarchical name including parent task names.
Returns¶
- fullName
str
The full name consists of the name of the parent task and each subtask separated by periods. For example:
The full name of top-level task “top” is simply “top”.
The full name of subtask “sub” of top-level task “top” is “top.sub”.
The full name of subtask “sub2” of subtask “sub” of top-level task “top” is “top.sub.sub2”.
- fullName
- getName() str ¶
Get the name of the task.
Returns¶
- taskName
str
Name of the task.
See Also¶
getFullName : Get the full name of the task.
- taskName
- getTaskDict() dict[str, weakref.ReferenceType[lsst.pipe.base.task.Task]] ¶
Get a dictionary of all tasks as a shallow copy.
Returns¶
- taskDict
dict
Dictionary containing full task name: task object for the top-level task and all subtasks, sub-subtasks, etc.
- taskDict
- classmethod makeField(doc: str) ConfigurableField ¶
Make a
lsst.pex.config.ConfigurableField
for this task.Parameters¶
- doc
str
Help text for the field.
Returns¶
- configurableField
lsst.pex.config.ConfigurableField
A
ConfigurableField
for this task.
Examples¶
Provides a convenient way to specify this task is a subtask of another task.
Here is an example of use:
class OtherTaskConfig(lsst.pex.config.Config): aSubtask = ATaskClass.makeField("brief description of task")
- doc
- makeSubtask(name: str, **keyArgs: Any) None ¶
Create a subtask as a new instance as the
name
attribute of this task.Parameters¶
- name
str
Brief name of the subtask.
- **keyArgs
Extra keyword arguments used to construct the task. The following arguments are automatically provided and cannot be overridden:
config
.parentTask
.
Notes¶
The subtask must be defined by
Task.config.name
, an instance ofConfigurableField
orRegistryField
.- name
- run(**kwargs: Any) Struct ¶
Run task algorithm on in-memory data.
This method should be implemented in a subclass. This method will receive keyword arguments whose names will be the same as names of connection fields describing input dataset types. Argument values will be data objects retrieved from data butler. If a dataset type is configured with
multiple
field set toTrue
then the argument value will be a list of objects, otherwise it will be a single object.If the task needs to know its input or output DataIds then it has to override
runQuantum
method instead.This method should return a
Struct
whose attributes share the same name as the connection fields describing output dataset types.Parameters¶
- **kwargs
Any
Arbitrary parameters accepted by subclasses.
Returns¶
- struct
Struct
Struct with attribute names corresponding to output connection fields.
Examples¶
Typical implementation of this method may look like:
def run(self, input, calib): # "input", "calib", and "output" are the names of the config # fields # Assuming that input/calib datasets are `scalar` they are # simple objects, do something with inputs and calibs, produce # output image. image = self.makeImage(input, calib) # If output dataset is `scalar` then return object, not list return Struct(output=image)
- **kwargs
- runQuantum(butlerQC: QuantumContext, inputRefs: InputQuantizedConnection, outputRefs: OutputQuantizedConnection) None ¶
Do butler IO and transform to provide in memory objects for tasks
run
method.Parameters¶
- butlerQC
QuantumContext
A butler which is specialized to operate in the context of a
lsst.daf.butler.Quantum
.- inputRefs
InputQuantizedConnection
Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnections
class. The values of these attributes are thelsst.daf.butler.DatasetRef
objects associated with the defined input/prerequisite connections.- outputRefs
OutputQuantizedConnection
Datastructure whose attribute names are the names that identify connections defined in corresponding
PipelineTaskConnections
class. The values of these attributes are thelsst.daf.butler.DatasetRef
objects associated with the defined output connections.
- butlerQC
- shiftCenters(centerArr, boundary, distance)¶
Shift the centers of sources if the distance to boundary is less than required.
Parameters¶
- centerArrnp.ndarray
Center points.
- boundaryfloat
Boundary point.
- distancefloat
Required distance.
Returns¶
- np.ndarray
Shifted center points.
- timer(name: str, logLevel: int = 10) Iterator[None] ¶
Context manager to log performance data for an arbitrary block of code.
Parameters¶
- name
str
Name of code being timed; data will be logged using item name:
Start
andEnd
.- logLevel
int
A
logging
level constant.
Examples¶
Creating a timer context:
with self.timer("someCodeToTime"): pass # code to time
See Also¶
lsst.utils.timer.logInfo : Implementation function.
- name