Skip to content

Commit

Permalink
Add rho statistics plots to the pipelines
Browse files Browse the repository at this point in the history
This adds the plots to pipelines/coaddQualityCore and tests/testPlots
pipelines.
  • Loading branch information
arunkannawadi committed Dec 22, 2022
1 parent 24576d6 commit 1ce733d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pipelines/coaddQualityCore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ tasks:
from lsst.analysis.tools.analysisPlots import *
from lsst.analysis.tools.analysisMetrics import *
from lsst.analysis.tools.contexts import *
analyzeObjectTableSurveyCore:
class: lsst.analysis.tools.tasks.ObjectTableSurveyAnalysisTask
config:
connections.outputName: objectTableSurvey
# If plots.X is changed, the corresponding name in RhoStatisticsPlot
# must also be changed. TODO: DM-37431.
plots.rhoStatisticsPlot: RhoStatisticsPlot
bands: ["i"]
python: |
from lsst.analysis.tools.analysisPlots import *
from lsst.analysis.tools.analysisMetrics import *
from lsst.analysis.tools.contexts import *
from lsst.analysis.tools.actions.plot import *
catalogMatchTract:
class: lsst.analysis.tools.tasks.catalogMatch.CatalogMatchTask
refCatObjectTract:
Expand Down
11 changes: 11 additions & 0 deletions tests/testPlots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,14 @@ tasks:
plots.skyObjectHistPlot: SkyObjectHistPlot
python: |
from lsst.analysis.tools.analysisPlots import *
analyzeObjectTableSurveyCore:
class: lsst.analysis.tools.tasks.ObjectTableSurveyAnalysisTask
config:
connections.outputName: objectTableSurvey
plots.rhoStatisticsPlot: RhoStatisticsPlot
bands: ["i"]
python: |
from lsst.analysis.tools.analysisPlots import *
from lsst.analysis.tools.analysisMetrics import *
from lsst.analysis.tools.contexts import *
from lsst.analysis.tools.actions.plot import *

0 comments on commit 1ce733d

Please sign in to comment.