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-47952: Add Real/Bogus to drp_pipe #189

Merged
merged 2 commits into from
Dec 11, 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
1 change: 1 addition & 0 deletions pipelines/HSC/DRP-RC2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ subsets:
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- writeForcedSourceTable
description: |
Expand Down
1 change: 1 addition & 0 deletions pipelines/LATISS/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,7 @@ subsets:
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- writeForcedSourceTable
description: |
Expand Down
1 change: 1 addition & 0 deletions pipelines/LSSTComCam/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ subsets:
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- writeForcedSourceTable
description: |
Expand Down
1 change: 1 addition & 0 deletions pipelines/LSSTComCamSim/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ subsets:
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- writeForcedSourceTable
description: |
Expand Down
11 changes: 11 additions & 0 deletions pipelines/_ingredients/DRP-minimal-calibration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,19 @@
connections.matchedTemplate: goodSeeingDiff_matchedExp
connections.difference: goodSeeingDiff_differenceTempExp
connections.subtractedMeasuredExposure: goodSeeingDiff_differenceExp
rbClassify:
class: lsst.meas.transiNet.RBTransiNetTask
config:
modelPackageStorageMode: butler
connections.science: pvi
connections.coaddName: goodSeeing
connections.template: goodSeeingDiff_templateExp
connections.difference: goodSeeingDiff_differenceTempExp
connections.diaSources: goodSeeingDiff_diaSrc
transformDiaSourceCat:
class: lsst.ap.association.TransformDiaSourceCatalogTask
config:
doIncludeReliability: True

Check warning on line 174 in pipelines/_ingredients/DRP-minimal-calibration.yaml

View workflow job for this annotation

GitHub Actions / call-workflow / yamllint

174:29 [truthy] truthy value should be one of [false, true]
connections.coaddName: goodSeeing
connections.diaSourceSchema: goodSeeingDiff_diaSrc_schema
connections.diaSourceCat: goodSeeingDiff_diaSrc
Expand Down Expand Up @@ -301,6 +311,7 @@
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- consolidateDiaSourceTable
- drpAssociation
Expand Down
1 change: 1 addition & 0 deletions pipelines/_ingredients/LSSTCam-imSim/DRP.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ subsets:
- getTemplate
- subtractImages
- detectAndMeasureDiaSources
- rbClassify
- transformDiaSourceCat
- writeForcedSourceTable
description: |
Expand Down
1 change: 1 addition & 0 deletions tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"ptc",
"linearizer",
"bfk",
"pretrainedModelPackage",
}

# HSC common inputs, in addition to COMMON_INPUTS
Expand Down
1 change: 1 addition & 0 deletions ups/drp_pipe.table
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ setupRequired(pipe_tasks)
setupRequired(meas_base)
setupRequired(jointcal)
setupRequired(fgcmcal)
setupRequired(meas_transiNet)

# Faro is no longer included in any pipelines, but we're keeping it as a
# dependency until all of its plots and metrics have analysis_tools
Expand Down
Loading