Skip to content

Commit

Permalink
Merge pull request #35 from lsst/tickets/DM-33123
Browse files Browse the repository at this point in the history
DM-33123: Calculate RhoStatistics as part of regular QA
  • Loading branch information
arunkannawadi committed May 19, 2022
2 parents 7535993 + 8f16051 commit 9c2632b
Show file tree
Hide file tree
Showing 9 changed files with 1,284 additions and 24 deletions.
14 changes: 7 additions & 7 deletions doc/conf.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""Sphinx configuration file for an LSST stack package.
This configuration only affects single-package Sphinx documentation builds.
For more information, see:
https://developer.lsst.io/stack/building-single-package-docs.html
"""

from documenteer.sphinxconfig.stackconf import build_package_configs
import lsst.analysis.drp
from documenteer.conf.pipelinespkg import *


_g = globals()
_g.update(build_package_configs(
project_name='analysis_drp',
version=lsst.analysis.drp.version.__version__))
project = "analysis_drp"
html_theme_options["logotext"] = project
html_title = project
html_short_title = project
8 changes: 8 additions & 0 deletions pipelines/coaddQAEllipPlots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -507,3 +507,11 @@ tasks:
python: |
from lsst.analysis.drp.dataSelectors import (CoaddPlotFlagSelector, SnSelector, StarIdentifier)
from lsst.analysis.drp.calcFunctors import CalcShapeSize
plot_RhoStatistics:
# Plot the Rho statistics
class: lsst.analysis.drp.rhoPlot.RhoPlotTask
config:
rhoStatisticsAction.treecorr.nbins: 21
rhoStatisticsAction.treecorr.min_sep: 0.01
rhoStatisticsAction.treecorr.max_sep: 100
14 changes: 14 additions & 0 deletions pipelines/visitQARhoPlots.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
description: |
Make visit level rho statistics plot for QA,
tasks:
plot_RhoStatistics_visit:
# Plot the Rho statistics
class: lsst.analysis.drp.rhoPlotVisit.RhoPlotVisitTask
config:
rhoStatisticsAction.treecorr.nbins: 21
rhoStatisticsAction.treecorr.min_sep: 0.01
rhoStatisticsAction.treecorr.max_sep: 80
selectorActions.flagSelector: VisitPlotFlagSelector
python: |
from lsst.analysis.drp.calcFunctors import CalcRhoStatistics
from lsst.analysis.drp.dataSelectors import VisitPlotFlagSelector

0 comments on commit 9c2632b

Please sign in to comment.