Skip to content

Commit 1a2d93e

Browse files
authored
Merge pull request #416 from lsst/tickets/DM-51005
DM-51005: Turn off overscan-level-checking by default.
2 parents 10d8b5d + aae28cf commit 1a2d93e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

python/lsst/ip/isr/isrTaskLSST.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ class IsrTaskLSSTConfig(pipeBase.PipelineTaskConfig,
245245

246246
serialOverscanMedianShiftSigmaThreshold = pexConfig.Field(
247247
dtype=float,
248-
default=100.0,
248+
default=numpy.inf,
249249
doc="Number of sigma difference from per-amp overscan median (as compared to PTC) to "
250250
"check if an amp is in a different state than the baseline PTC calib and should "
251251
"be marked BAD. Set to np.inf/np.nan to turn off overscan median checking.",

tests/test_isrTaskLSST.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1816,6 +1816,7 @@ def test_changedOverscanAmps(self):
18161816
isr_config.doFlat = False
18171817
isr_config.doDefect = True
18181818
isr_config.doInterpolate = False
1819+
isr_config.serialOverscanMedianShiftSigmaThreshold = 100.0
18191820

18201821
isr_task = IsrTaskLSST(config=isr_config)
18211822
with self.assertLogs(level=logging.WARNING) as cm:

0 commit comments

Comments
 (0)