From e1b1018201c464b2eb3f1503c937585412fe61a6 Mon Sep 17 00:00:00 2001 From: Krzysztof Findeisen Date: Fri, 30 Aug 2024 15:51:53 -0700 Subject: [PATCH] Restore missing subset definitions in ComCamSim/ApPipe. Merely removing rbClassify is enough to invalidate the apPipe and prompt subsets. This breaks Prompt Processing, which looks for prompt. --- pipelines/LSSTComCamSim/ApPipe.yaml | 40 +++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/pipelines/LSSTComCamSim/ApPipe.yaml b/pipelines/LSSTComCamSim/ApPipe.yaml index 631677d..2dfb3f3 100644 --- a/pipelines/LSSTComCamSim/ApPipe.yaml +++ b/pipelines/LSSTComCamSim/ApPipe.yaml @@ -15,3 +15,43 @@ tasks: config: # turn off R/B analysis to save processing time doIncludeReliability: False +subsets: +# apPipe and prompt must be redefined from $AP_PIPE_DIR/pipelines/_ingredients/ApPipe.yaml +# because its rbClassify was excluded. + apPipe: + subset: + - loadDiaCatalogs + - isr + - calibrateImage + - retrieveTemplate + - subtractImages + - detectAndMeasure + - filterDiaSrcCat + - transformDiaSrcCat + - getRegionTimeFromVisit + - diaPipe + - analyzeAssocDiaSrcCore + - analyzeTrailedDiaSrcCore + - sampleSpatialMetrics + - diffimTaskCore + - diffimTaskPlots + - initialPviCore + description: > + An alias of ApPipe to use in higher-level pipelines. + prompt: + subset: + - isr + - calibrateImage + - retrieveTemplate + - subtractImages + - detectAndMeasure + - filterDiaSrcCat + - transformDiaSrcCat + - diaPipe + - analyzeAssocDiaSrcCore + - analyzeTrailedDiaSrcCore + - diffimTaskCore + - initialPviCore + description: > + Tasks necessary to turn raw images into APDB rows and alerts. + Requires preload subset to be run first.