Skip to content

Commit

Permalink
Merge branch 'tickets/DM-44728'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfindeisen committed Jun 7, 2024
2 parents d07ec95 + d3e085b commit c0e12b0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
13 changes: 13 additions & 0 deletions pipelines/LSSTComCamSim/ApPipe-OR3.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description: Alert Production pipeline specialized for LSSTComCamSim OR3 data

# This is a temporary pipeline for running integration tests on our
# OR3-based test data. It is not intended for general use, and unlike
# ApPipe proper will not be synced to the ap_pipe package.
imports:
- location: $PROMPT_PROCESSING_DIR/pipelines/LSSTComCamSim/ApPipe.yaml
tasks:
calibrateImage:
class: lsst.pipe.tasks.calibrateImage.CalibrateImageTask
config:
connections.astrometry_ref_cat: uw_stars_20240228
connections.photometry_ref_cat: uw_stars_20240228
6 changes: 5 additions & 1 deletion python/activator/middleware_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,11 @@ def _export_refcats(self, center, radius):
collections=self.instrument.makeRefCatCollectionName(),
where=htm_where,
findFirst=True))
_log.debug("Found %d new refcat datasets.", len(refcats))
if refcats:
for dataset_type, n_datasets in self._count_by_type(refcats):
_log.debug("Found %d new refcat datasets from catalog '%s'.", n_datasets, dataset_type)
else:
_log.debug("Found 0 new refcat datasets.")
return refcats

def _export_skymap_and_templates(self, center, detector, wcs, filter):
Expand Down

0 comments on commit c0e12b0

Please sign in to comment.