-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix instrument specializations of ApVerifyWithFakes.
The instrument specializations ran the generic ApPipe instead of the instrument-specific ApPipe. This prevented DECam from correctly handling crosstalk. The same splice for the other instruments is purely defensive, since right now they don't need any customization.
- Loading branch information
1 parent
8f5c408
commit 87b02de
Showing
3 changed files
with
85 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,35 @@ | ||
# Verification pipeline specialized for HSC, with fak source injection. | ||
# Verification pipeline specialized for HSC, with fake source injection. | ||
# This concatenates various lsst.verify metrics to an AP pipeline | ||
|
||
instrument: lsst.obs.subaru.HyperSuprimeCam | ||
description: Fully instrumented AP pipeline with fakes, specialized for HSC | ||
imports: | ||
- location: $AP_VERIFY_DIR/pipelines/_ingredients/ApVerifyWithFakes.yaml | ||
# Include all metrics from standard pipeline. It's not practical to create | ||
# a metrics subset because it would require constant micromanagement. | ||
exclude: | ||
- apPipe | ||
- location: $AP_PIPE_DIR/pipelines/HSC/ApPipeWithFakes.yaml | ||
tasks: | ||
# ApVerify override removed by excluding apPipe. | ||
diaPipe: | ||
class: lsst.ap.association.DiaPipelineTask | ||
config: | ||
doPackageAlerts: True | ||
alertPackager.doWriteAlerts: True | ||
contracts: | ||
# Contracts removed by excluding apPipe | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCompletenessMag20t22.connections.ConnectionsClass(config=apFakesCompletenessMag20t22).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCompletenessMag22t24.connections.ConnectionsClass(config=apFakesCompletenessMag22t24).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCompletenessMag24t26.connections.ConnectionsClass(config=apFakesCompletenessMag24t26).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCountMag20t22.connections.ConnectionsClass(config=apFakesCountMag20t22).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCountMag22t24.connections.ConnectionsClass(config=apFakesCountMag22t24).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCountMag24t26.connections.ConnectionsClass(config=apFakesCountMag24t26).matchedFakes.name | ||
- injectedMatch.connections.ConnectionsClass(config=injectedMatch).matchedDiaSources.name == | ||
apFakesCount.connections.ConnectionsClass(config=apFakesCount).matchedFakes.name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters