Skip to content

Commit

Permalink
Merge branch 'tickets/DM-28093'
Browse files Browse the repository at this point in the history
  • Loading branch information
czwa committed Mar 10, 2021
2 parents c017345 + f544018 commit eef2334
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
22 changes: 12 additions & 10 deletions config/isr.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
config.doStrayLight = True
config.strayLight.retarget(SubaruStrayLightTask)
config.strayLight.doRotatorAngleCorrection=True
config.strayLight.filters = ['y', 'HSC-Y']
config.strayLight.filters = ['HSC-Y', ]

config.doFlat = True
config.flatDataProductName = "flat"
Expand All @@ -97,7 +97,7 @@
config.doFringe = True
config.fringeAfterFlat = True
# Use default ISR fringe correction
config.fringe.filters = ['y', 'N921', 'N926', 'N973', 'N1010']
config.fringe.filters = ['HSC-Y', 'NB0921', 'NB0926', 'NB0973', 'NB1010']
config.fringe.clip = 3.0
config.fringe.iterations = 20
config.fringe.small = 3
Expand All @@ -116,14 +116,16 @@

config.doCameraSpecificMasking = False

config.fluxMag0T1 = {'g': 398107170553.49854,
'r': 398107170553.49854,
'i': 275422870333.81744,
'z': 120226443461.74132,
'y': 91201083935.59116,
'N515': 20892961308.54041,
'N816': 15848931924.611174,
'N921': 19054607179.632523,
config.fluxMag0T1 = {'HSC-G': 398107170553.49854,
'HSC-R': 398107170553.49854,
'HSC-R2': 398107170553.49854,
'HSC-I': 275422870333.81744,
'HSC-I2': 275422870333.81744,
'HSC-Z': 120226443461.74132,
'HSC-Y': 91201083935.59116,
'NB0515': 20892961308.54041,
'NB0816': 15848931924.611174,
'NB0921': 19054607179.632523,
}

config.doVignette = True
Expand Down
2 changes: 1 addition & 1 deletion config/makeBrighterFatterKernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
config.isr.doSaturation = True
config.isr.qa.doThumbnailOss = False
config.isr.qa.doThumbnailFlattened = False
config.isr.fringe.filters = ['y', ]
config.isr.fringe.filters = ['HSC-Y', ]
config.isr.overscanFitType = "AKIMA_SPLINE"
config.isr.overscanOrder = 30
# Overscan is fairly efficient at removing bias level, but leaves a line in the middle
Expand Down

0 comments on commit eef2334

Please sign in to comment.