Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-35207: use finalVisitSummary to provide inputs to ForcedPhotCcd. #230

Merged
merged 2 commits into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions python/lsst/meas/base/forcedPhotCcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class ForcedPhotCcdConnections(PipelineTaskConnections,
doc=("Per-visit wcs calibrations computed globally (with no tract information). "
"These catalogs use the detector id for the catalog id, sorted on id for "
"fast lookup."),
name="{skyWcsName}SkyWcsCatalog",
name="finalVisitSummary",
storageClass="ExposureCatalog",
dimensions=["instrument", "visit"],
)
Expand All @@ -117,7 +117,7 @@ class ForcedPhotCcdConnections(PipelineTaskConnections,
doc=("Per-visit photometric calibrations computed globally (with no tract "
"information). These catalogs use the detector id for the catalog id, "
"sorted on id for fast lookup."),
name="{photoCalibName}PhotoCalibCatalog",
name="finalVisitSummary",
storageClass="ExposureCatalog",
dimensions=["instrument", "visit"],
)
Expand Down Expand Up @@ -212,7 +212,7 @@ class ForcedPhotCcdConfig(pipeBase.PipelineTaskConfig,
)
useGlobalExternalSkyWcs = lsst.pex.config.Field(
dtype=bool,
default=False,
default=True,
doc=("When using doApplyExternalSkyWcs, use 'global' calibrations "
"that are not run per-tract. When False, use per-tract wcs "
"files.")
Expand Down