Skip to content

Commit

Permalink
Merge pull request #264 from lsst/u/timj/abstract-filter
Browse files Browse the repository at this point in the history
Replace abstract_filter with band in example pipelines
  • Loading branch information
timj committed Aug 1, 2022
2 parents 26bb7a4 + 16bcb01 commit f8932a4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions doc/lsst.pipe.base/creating-a-pipelinetask.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ task).
.. code-block:: python
class ApertureTaskConnections(pipeBase.PipelineTaskConnections,
dimensions=("visit", "detector",
"abstract_filter")):
dimensions=("visit", "detector", "band")):,
exposure = connectionTypes.Input(doc="Input exposure to make measurements "
"on",
dimensions=("visit", "detector"),
Expand Down Expand Up @@ -290,7 +289,7 @@ class.
class ApertureTaskConnections(pipeBase.PipelineTaskConnections,
dimensions=("visit", "detector",
"abstract_filter", "skymap")):
"band", "skymap")):
...
outputSchema = connectionTypes.InitOutput(doc="Schema created in Aperture PipelineTask",
storageClass="SourceCatalog",
Expand Down Expand Up @@ -364,12 +363,12 @@ various configuration options.
class ApertureTaskConnections(pipeBase.PipelineTaskConnections,
dimensions=("visit", "detector",
"abstract_filter", "skymap")):
"band", "skymap")):
...
background = ct.Input(doc="Background model for the exposure",
storageClass="Background",
name="calexpBackground",
dimensions=("visit", "detector", "abstract_filter",
dimensions=("visit", "detector", "band",
"skymap"))
...
Expand Down Expand Up @@ -1127,4 +1126,4 @@ Appendix I

.. |PipelineTask| replace:: `~lsst.pipe.base.PipelineTask`
.. |Task| replace:: `~lsst.pipe.base.Task`
.. |Config| replace:: `~lsst.pipe.base.Config`
.. |Config| replace:: `~lsst.pipe.base.Config`

0 comments on commit f8932a4

Please sign in to comment.