Skip to content

DM-48896 : Create yaml for ComCam #406

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion pipelines/apDetectorVisitFakesCore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ parameters:
# Note that these parameter names are shared with ApPipe, and are overwritten
# by changes in the values there.
coaddName: goodSeeing
fakesType: 'fakes_'

tasks:
analyzeDiaFakesDetectorVisitCore:
Expand Down Expand Up @@ -43,6 +42,7 @@ tasks:
atools.numFoundFakesDiaMag24t26Metric.magMin: 24
atools.numFoundFakesDiaMag24t26Metric.magMax: 26
connections.outputName: diaFakesDetectorVisitCore
connections.data: "fakes_{coaddName}Diff_matchDiaSrc"
python: |
from lsst.analysis.tools.atools import FractionFoundFakesDiaSnrMetric
from lsst.analysis.tools.atools import FractionFoundFakesDiaMagMetric
Expand Down
10 changes: 3 additions & 7 deletions pipelines/apDetectorVisitQualityCore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,14 @@ parameters:
# Note that these parameter names are shared with ApPipe, and are overwritten
# by changes in the values there.
coaddName: goodSeeing
fakesType: ''

tasks:
analyzeAssociatedDiaSourceTable:
class: lsst.analysis.tools.tasks.AssocDiaSrcDetectorVisitAnalysisTask
config:
connections.outputName: assocDiaSrcCore
connections.coaddName: parameters.coaddName
connections.fakesType: parameters.fakesType
connections.data: "{fakesType}dia_source_apdb"
connections.data: dia_source_apdb
atools.numDiaSources: NumDiaSourcesMetric
atools.numDiaSourcesAll: NumDiaSourcesSelectionMetric
atools.numDiaSourcesAll.metricName: numDiaSourcesAll
Expand Down Expand Up @@ -47,9 +45,8 @@ tasks:
class: lsst.analysis.tools.tasks.TrailedDiaSrcDetectorVisitAnalysisTask
config:
connections.outputName: trailedDiaSrcCore
connections.fakesType: parameters.fakesType
connections.coaddName: parameters.coaddName
connections.data: "{fakesType}long_trailed_source_detector"
connections.data: long_trailed_source_detector
# Counts up the number of dia sources in the trailed table.
atools.numDiaSourcesAll: NumDiaSourcesSelectionMetric
atools.numDiaSourcesAll.metricName: numTrailedDiaSrc
Expand Down Expand Up @@ -172,9 +169,8 @@ tasks:
class: lsst.analysis.tools.tasks.DiffimDetectorVisitSpatiallySampledPlotsTask
config:
connections.outputName: diffimPlots
connections.fakesType: parameters.fakesType
connections.coaddName: parameters.coaddName
connections.data: "{fakesType}difference_image_metrics"
connections.data: difference_image_metrics
atools.dipoleQuiver: DiffimSpatialMetricsQuiverPlot
atools.dipoleQuiver.angleName: dipole_direction
atools.dipoleQuiver.lengthName: dipole_separation
Expand Down
Loading