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-33805: Modify sky obj analyses to excl those in NO_DATA #36

Merged
merged 1 commit into from
May 3, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions pipelines/coaddQAPlots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -315,13 +315,14 @@ tasks:
# This plot shows the on sky distribution of these values for sky objects.
class: lsst.analysis.drp.skyPlot.SkyPlotTask
config:
axisActions.zAction.column: "i_ap09Flux"
connections.plotName: skyObject_i
selectorActions.flagSelector: FlagSelector
selectorActions.flagSelector.selectWhenTrue: ["sky_object"]
selectorActions.flagSelector.selectWhenFalse: ["i_pixelFlags_edge"]
sourceSelectorActions: None
statisticSelectorActions.statSelector.threshold: -1e12
axisLabels: {"x": "R.A. (Degrees)", "y": "Dec. (Degrees)", "z": "Sky Object Flux (nJy)"}
axisActions.zAction.column: "i_ap09Flux"
python: |
from lsst.analysis.drp.dataSelectors import (FlagSelector)

Expand All @@ -331,9 +332,10 @@ tasks:
# The right panel histograms show the equivalent sigma flux values (flux/fluxErr)
class: lsst.analysis.drp.histPlot.HistPlotTask
config:
connections.plotName: skyObject
connections.plotName: skyObject_i
selectorActions.flagSelector: FlagSelector
selectorActions.flagSelector.selectWhenTrue: ["sky_object"]
selectorActions.flagSelector.selectWhenFalse: ["i_pixelFlags_edge"]
python: |
from lsst.analysis.drp.dataSelectors import FlagSelector
from lsst.analysis.drp import calcFunctors
Expand Down