Skip to content

Commit

Permalink
Modify sky obj analyses to excl those in NO_DATA
Browse files Browse the repository at this point in the history
  • Loading branch information
leeskelvin committed Apr 28, 2022
1 parent a762b6f commit f799a25
Showing 1 changed file with 4 additions and 2 deletions.
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

0 comments on commit f799a25

Please sign in to comment.