-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from lsst-ts/tickets/DM-47080
Tickets/dm 47080
- Loading branch information
Showing
7 changed files
with
369 additions
and
38 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,19 @@ | ||
name: ChangelogUpdated | ||
on: | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Check Actions | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Changelog check | ||
uses: Zomzog/[email protected] | ||
with: | ||
fileName: doc/versionHistory.rst | ||
checkNotification: Simple | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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,13 @@ | ||
@Library('JenkinsShared')_ | ||
DevelopPipeline( | ||
name: "donut_viz", | ||
module_name: "lsst.donut.viz", | ||
idl_names: [], | ||
build_all_idl: false, | ||
extra_packages: ["lsst-ts/ts_wep"], | ||
kickoff_jobs: [], | ||
slack_build_channel: "aos-builds", | ||
has_doc_site: false, | ||
require_git_lfs: true, | ||
require_scons: true | ||
) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This yaml file is used to define the tasks and configuration of | ||
# a Gen 3 pipeline used for testing in ts_wep. | ||
description: wep basic processing test pipeline | ||
# Here we specify the corresponding instrument for the data we | ||
# will be using. | ||
instrument: lsst.obs.lsst.LsstCam | ||
# Then we can specify each task in our pipeline by a name | ||
# and then specify the class name corresponding to that task | ||
tasks: | ||
isr: | ||
class: lsst.ip.isr.IsrTaskLSST | ||
config: | ||
# Although we don't have to apply the amp offset corrections, we do want | ||
# to compute them for analyzeAmpOffsetMetadata to report on as metrics. | ||
doAmpOffset: true | ||
ampOffset.doApplyAmpOffset: false | ||
# Turn off slow steps in ISR | ||
doBrighterFatter: false | ||
doCrosstalk: false | ||
# Turn off flats, biases, darks because we don't have these in test repo | ||
doBias: False | ||
doDark: False | ||
doFlat: False | ||
doBootstrap: True | ||
doApplyGains: False | ||
doLinearize: False | ||
doDeferredCharge: False | ||
doDefect: False | ||
generateDonutCatalogWcsTask: | ||
class: lsst.ts.wep.task.generateDonutCatalogWcsTask.GenerateDonutCatalogWcsTask | ||
config: | ||
donutSelector.unblendedSeparation: 1 | ||
cutOutDonutsScienceSensorTask: | ||
class: lsst.ts.wep.task.CutOutDonutsScienceSensorTask | ||
calcZernikesTask: | ||
class: lsst.ts.wep.task.calcZernikesTask.CalcZernikesTask | ||
config: | ||
estimateZernikes.maxNollIndex: 28 | ||
estimateZernikes.saveHistory: False | ||
estimateZernikes.maskKwargs: {'doMaskBlends': False} | ||
aggregateZernikeTablesTask: | ||
class: lsst.donut.viz.AggregateZernikeTablesTask | ||
aggregateDonutTablesTask: | ||
class: lsst.donut.viz.AggregateDonutTablesTask | ||
aggregateDonutStampsTask: | ||
class: lsst.donut.viz.AggregateDonutStampsTask | ||
aggregateAOSVisitTableTask: | ||
class: lsst.donut.viz.AggregateAOSVisitTableTask | ||
plotAOSTask: | ||
class: lsst.donut.viz.PlotAOSTask | ||
config: | ||
doRubinTVUpload: false | ||
plotDonutTask: | ||
class: lsst.donut.viz.PlotDonutTask | ||
config: | ||
doRubinTVUpload: false |
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
Oops, something went wrong.