@@ -139,11 +139,30 @@ tasks:
139139 python : |
140140 from lsst.analysis.tools.atools import *
141141
142+ analyzeFlatCore :
143+ class : lsst.analysis.tools.tasks.VerifyCalibAnalysisTaskByFilter
144+ config :
145+ connections.outputName : cpFlatCore
146+ connections.data : verifyFlatResults
147+
148+ atools.flatMeanPerAmp : CalibStatisticFocalPlanePlot
149+ atools.flatMeanPerAmp.produce.plot.addHistogram : true
150+ atools.flatMeanPerAmp.quantityKey : FLAT_MEAN
151+ atools.flatMeanPerAmp.unit : electron
152+
153+ atools.flatNoisePerAmp : CalibStatisticFocalPlanePlot
154+ atools.flatNoisePerAmp.produce.plot.addHistogram : true
155+ atools.flatNoisePerAmp.quantityKey : FLAT_NOISE
156+ atools.flatNoisePerAmp.unit : electron
157+
158+ python : |
159+ from lsst.analysis.tools.atools import *
160+
142161 analyzeFlatDetCore :
143162 class : lsst.analysis.tools.tasks.VerifyCalibAnalysisTaskByFilter
144163 config :
145164 connections.outputName : cpFlatDetCore
146- connections.data : verifyFlatResults
165+ connections.data : verifyFlatDetResults
147166
148167 atools.flatTestsByDate : CalibAmpScatterTool
149168 atools.flatTestsByDate.prep.panelKey : amplifier
@@ -154,6 +173,27 @@ tasks:
154173 atools.flatTestsByDate.produce.plot.xAxisLabel : " MJD"
155174 atools.flatTestsByDate.produce.plot.yAxisLabel : " Test Pass Results"
156175
176+ atools.flatMeansByDate : CalibAmpScatterTool
177+ atools.flatMeansByDate.prep.panelKey : amplifier
178+ atools.flatMeansByDate.prep.dataKey : mjd
179+ atools.flatMeansByDate.prep.quantityKey : FLAT_MEAN
180+ atools.flatMeansByDate.produce.plot.xAxisLabel : " MJD"
181+ atools.flatMeansByDate.produce.plot.yAxisLabel : " Flat Mean (electrons)"
182+
183+ atools.flatNoiseByDate : CalibAmpScatterTool
184+ atools.flatNoiseByDate.prep.panelKey : amplifier
185+ atools.flatNoiseByDate.prep.dataKey : mjd
186+ atools.flatNoiseByDate.prep.quantityKey : FLAT_NOISE
187+ atools.flatNoiseByDate.produce.plot.xAxisLabel : " MJD"
188+ atools.flatNoiseByDate.produce.plot.yAxisLabel : " Flat Noise (electrons)"
189+
190+ atools.flatNoiseByMean : CalibAmpScatterTool
191+ atools.flatNoiseByMean.prep.panelKey : amplifier
192+ atools.flatNoiseByMean.prep.dataKey : FLAT_MEAN
193+ atools.flatNoiseByMean.prep.quantityKey : FLAT_NOISE
194+ atools.flatNoiseByMean.produce.plot.xAxisLabel : " Flat Mean (electrons)"
195+ atools.flatNoiseByMean.produce.plot.yAxisLabel : " Flat Noise (electrons)"
196+
157197 python : |
158198 from lsst.analysis.tools.atools import *
159199
0 commit comments