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-46327: Exclude FGCM tasks from LSSTCam/LSSTComCam #155

Merged
merged 2 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions pipelines/LSSTCam/DRP.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
description: DRP Pipeline for LSSTCam
instrument: lsst.obs.lsst.LsstCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts

subsets:
step1:
Expand Down Expand Up @@ -45,11 +49,6 @@ subsets:
gbdesAstrometricFit produces solutions per-tract, per-visit
isolatedStarAssociation produces solutions per-tract.
TODO: Evaluate GBDES after first DRP
step2c:
subset:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
step2d:
subset:
- finalizeCharacterization
Expand Down
6 changes: 5 additions & 1 deletion pipelines/LSSTCam/nightly-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ description: |
10am processing.
instrument: lsst.obs.lsst.LsstCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
tasks:
analyzePreSourceTableCore:
class: lsst.analysis.tools.tasks.SourceTableVisitAnalysisTask
Expand Down
6 changes: 5 additions & 1 deletion pipelines/LSSTCam/quickLook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ description: |
the summit which feeds RubinTV for realtime observer feedback
instrument: lsst.obs.lsst.LsstCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
tasks:
isr:
class: lsst.ip.isr.IsrTask
Expand Down
11 changes: 5 additions & 6 deletions pipelines/LSSTComCam/DRP.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
description: DRP Pipeline for LSSTComCam
instrument: lsst.obs.lsst.LsstComCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts

subsets:
step1:
Expand Down Expand Up @@ -45,11 +49,6 @@ subsets:
gbdesAstrometricFit produces solutions per-tract, per-visit
isolatedStarAssociation produces solutions per-tract.
TODO: Evaluate GBDES after first DRP
step2c:
subset:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
step2d:
subset:
- finalizeCharacterization
Expand Down
6 changes: 5 additions & 1 deletion pipelines/LSSTComCam/nightly-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ description: |
10am processing.
instrument: lsst.obs.lsst.LsstComCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
tasks:
analyzePreSourceTableCore:
class: lsst.analysis.tools.tasks.SourceTableVisitAnalysisTask
Expand Down
6 changes: 5 additions & 1 deletion pipelines/LSSTComCam/quickLook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ description: |
the summit which feeds RubinTV for realtime observer feedback
instrument: lsst.obs.lsst.LsstComCam
imports:
- $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
- location: $DRP_PIPE_DIR/pipelines/_ingredients/LSSTComCam/DRP.yaml
exclude:
- fgcmBuildFromIsolatedStars
- fgcmFitCycle
- fgcmOutputProducts
tasks:
isr:
class: lsst.ip.isr.IsrTask
Expand Down
1 change: 1 addition & 0 deletions pipelines/_ingredients/LSSTCam/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ tasks:
config:
# Only run metrics for analyzing the preSources:
connections.data: preSourceTable_visit_gaia_dr3_20230707_match_astrom
connections.outputName: preSourceTable_visit_gaia_dr3_20230707_match_astrom
atools.astromDiffMetrics: TargetRefCatDeltaMetrics
atools.astromDiffMetrics.applyContext: VisitContext
python: |
Expand Down
1 change: 1 addition & 0 deletions pipelines/_ingredients/LSSTComCam/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ tasks:
config:
# Only run metrics for analyzing the preSources:
connections.data: preSourceTable_visit_gaia_dr3_20230707_match_astrom
connections.outputName: preSourceTable_visit_gaia_dr3_20230707_match_astrom
atools.astromDiffMetrics: TargetRefCatDeltaMetrics
atools.astromDiffMetrics.applyContext: VisitContext
python: |
Expand Down
Loading