Skip to content

Commit

Permalink
Merge pull request #129 from lsst/tickets/DM-46850
Browse files Browse the repository at this point in the history
DM-46850: Replace makeWarp with makeDirectWarp and makePsfMatchedWarp
  • Loading branch information
arunkannawadi authored Jan 9, 2025
2 parents acfcde1 + b3da147 commit 4b833f8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pipetask --long-log --log-level="$loglevel" qgraph \
--input "$INPUTCOLL" --output "$COLLECTION" \
-p "$DRP_PIPE_DIR/pipelines/HSC/DRP-ci_hsc.yaml" \
-c calibrateImage:astrometry.maxMeanDistanceArcsec=0.20 \
-c makeWarp:select.maxPsfTraceRadiusDelta=0.2 \
-c makeDirectWarp:select.maxPsfTraceRadiusDelta=0.2 \
--save-qgraph "$QGRAPH_FILE"

pipetask --long-log --log-level="$loglevel" run \
Expand Down
11 changes: 8 additions & 3 deletions tests/test_validate_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,16 @@ def test_make_tables(self):
self.check_pipetasks(["makeCcdVisitTable", "makeVisitTable"], 1, 1)
self.check_datasets(["ccdVisitTable", "visitTable"], 1)

def test_make_warp(self):
"""Test existence of warps."""
self.check_pipetasks(["makeWarp"], self._num_visits, self._num_visits)
def test_make_direct_warp(self):
"""Test existence of direct warps."""
self.check_pipetasks(["makeDirectWarp"], self._num_visits, self._num_visits)
self.check_datasets(["deepCoadd_directWarp"], self._num_visits)

def test_make_psfMatched_warp(self):
"""Test existence of PSF-matched warps."""
self.check_pipetasks(["makePsfMatchedWarp"], self._num_visits, self._num_visits)
self.check_datasets(["deepCoadd_psfMatchedWarp"], self._num_visits)

def test_assemble_coadd(self):
"""Test existence of coadds."""

Expand Down

0 comments on commit 4b833f8

Please sign in to comment.