-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba095d1
commit a91519a
Showing
6 changed files
with
217 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
description: RefitWCS pipeline for ComCam | ||
instrument: lsst.obs.lsst.LsstComCam | ||
tasks: | ||
generateDonutFromRefitWcsTask: | ||
class: lsst.ts.wep.task.generateDonutFromRefitWcsTask.GenerateDonutFromRefitWcsTask | ||
config: | ||
connections.astromRefCat: "gaia_dr3_20230707" | ||
connections.photoRefCat: "the_monster_20240904" | ||
connections.exposure: "postISRCCD" | ||
connections.outputExposure: "postFitPostISRCCD" | ||
connections.fitDonutCatalog: "donutTable" | ||
connections.donutCatalog: "refitWcsDonutTable" | ||
donutSelector.useCustomMagLimit: True | ||
astromRefFilter: "phot_g_mean" | ||
photoRefFilterPrefix: "monster_SynthLSST" | ||
astromTask.referenceSelector.doMagLimit: False | ||
astromTask.maxIter: 3 | ||
astromTask.matcher.maxOffsetPix: 2000 | ||
astromTask.matcher.maxRotationDeg: 3.0 | ||
failTask: True | ||
# donutSelector.unblendedSeparation: 1 | ||
cutOutDonutsScienceSensorGroupTask: | ||
class: lsst.ts.wep.task.cutOutDonutsScienceSensorTask.CutOutDonutsScienceSensorTask | ||
config: | ||
connections.exposures: "postFitPostISRCCD" | ||
connections.donutCatalog: "refitWcsDonutTable" | ||
python: | | ||
from lsst.ts.wep.task.pairTask import GroupPairer | ||
config.pairer.retarget(GroupPairer) | ||
donutStampSize: 200 | ||
initialCutoutPadding: 40 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
description: Run WEP + DonutViz daily at USDF | ||
instrument: lsst.obs.lsst.LsstComCam | ||
imports: | ||
- $TS_WEP_DIR/pipelines/_ingredients/wepDirectDetectScienceGroupPipeline.yaml | ||
- $TS_WEP_DIR/pipelines/_ingredients/donutVizGroupPipeline.yaml | ||
|
||
tasks: | ||
calcZernikesTask: | ||
class: lsst.ts.wep.task.calcZernikesTask.CalcZernikesTask | ||
config: | ||
python: | | ||
from lsst.ts.wep.task import EstimateZernikesDanishTask | ||
config.estimateZernikes.retarget(EstimateZernikesDanishTask) | ||
donutStampSelector.maxFracBadPixels: 2.0e-4 | ||
estimateZernikes.binning: 2 | ||
estimateZernikes.nollIndices: | ||
[4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 21, 22, 27, 28] | ||
estimateZernikes.saveHistory: true | ||
estimateZernikes.lstsqKwargs: | ||
ftol: 1.0e-3 | ||
xtol: 1.0e-3 | ||
gtol: 1.0e-3 | ||
donutStampSelector.maxSelect: -1 | ||
aggregateDonutTablesGroupTask: | ||
class: lsst.donut.viz.AggregateDonutTablesTask | ||
config: | ||
python: | | ||
from lsst.ts.wep.task.pairTask import GroupPairer | ||
config.pairer.retarget(GroupPairer) | ||
connections.donutTables: "refitWcsDonutTable" | ||
|
||
# Define pipeline steps | ||
subsets: | ||
step1b: | ||
subset: | ||
- calcZernikesTask | ||
description: | | ||
This step runs the Zernike calculation with danish. | ||
step2: | ||
subset: | ||
- aggregateZernikeTablesTask | ||
- aggregateDonutTablesGroupTask | ||
- aggregateAOSVisitTableTask | ||
- plotAOSTask | ||
- aggregateDonutStampsTask | ||
- plotDonutTask | ||
description: | | ||
AOS Donut visualization plotting tasks. This step generates plots | ||
(including the pyramid residual and donut gallery) and | ||
tables for the AOS visit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
description: Run WEP + DonutViz daily at USDF | ||
instrument: lsst.obs.lsst.LsstComCam | ||
imports: | ||
- $TS_WEP_DIR/pipelines/_ingredients/wepDirectDetectScienceGroupPipeline.yaml | ||
- $TS_WEP_DIR/pipelines/_ingredients/donutVizGroupPipeline.yaml | ||
|
||
tasks: | ||
calcZernikesTask: | ||
class: lsst.ts.wep.task.calcZernikesTask.CalcZernikesTask | ||
config: | ||
estimateZernikes.nollIndices: [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 27, 28] | ||
estimateZernikes.convergeTol: 10.0e-9 | ||
estimateZernikes.compGain: 0.75 | ||
estimateZernikes.compSequence: [4, 4, 6, 6, 13, 13, 13, 13] | ||
estimateZernikes.maxIter: 50 | ||
estimateZernikes.requireConverge: True | ||
estimateZernikes.saveHistory: True | ||
estimateZernikes.maskKwargs: { "doMaskBlends": False } | ||
donutStampSelector.maxFracBadPixels: 2.0e-4 | ||
donutStampSelector.maxSelect: -1 | ||
aggregateDonutTablesGroupTask: | ||
class: lsst.donut.viz.AggregateDonutTablesTask | ||
config: | ||
python: | | ||
from lsst.ts.wep.task.pairTask import GroupPairer | ||
config.pairer.retarget(GroupPairer) | ||
connections.donutTables: "refitWcsDonutTable" | ||
|
||
# Define pipeline steps | ||
subsets: | ||
step1b: | ||
subset: | ||
- calcZernikesTask | ||
description: | | ||
This step runs the Zernike calculation with danish. | ||
step2: | ||
subset: | ||
- aggregateZernikeTablesTask | ||
- aggregateDonutTablesGroupTask | ||
- aggregateAOSVisitTableTask | ||
- plotAOSTask | ||
- aggregateDonutStampsTask | ||
- plotDonutTask | ||
description: | | ||
AOS Donut visualization plotting tasks. This step generates plots | ||
(including the pyramid residual and donut gallery) and | ||
tables for the AOS visit. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters