Coverage for python / lsst / cp / pipe / _configure.py: 8%
40 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-28 09:20 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-28 09:20 +0000
1__all__ = ["configureIsrTaskLSSTForCalibrations"]
3import numpy as np
6def configureIsrTaskLSSTForCalibrations(config):
7 """Apply configuration overrides for a baseline of building calibrations.
9 Parameters
10 ----------
11 config : `lsst.ip.isr.IsrTaskLSSTConfig`
12 Configuration object to override.
13 """
14 # These are defined in application/run order.
15 config.doBootstrap = False
16 config.bssVoltageMinimum = 0.0
17 config.doCheckUnprocessableData = False
18 config.doDiffNonLinearCorrection = False
19 config.doCorrectGains = False
20 config.serialOverscanMedianShiftSigmaThreshold = np.inf
21 config.ampNoiseThreshold = np.inf
22 config.doSaturation = False
23 config.doSuspect = False
24 config.doApplyGains = False
25 config.doCrosstalk = False
26 config.crosstalk.doQuadraticCrosstalkCorrection = False
27 config.doLinearize = False
28 config.doDeferredCharge = False
29 config.doAssembleCcd = True
30 config.expectWcs = False
31 config.doE2VEdgeBleedMask = False
32 config.doITLSatSagMask = False
33 config.doITLEdgeBleedMask = False
34 config.doITLDipMask = False
35 config.doBias = False
36 config.doDark = False
37 config.doDefect = False
38 config.badAmps = []
39 config.doNanMasking = True
40 config.doWidenSaturationTrails = False
41 config.doBrighterFatter = False
42 config.doVariance = True
43 config.maskNegativeVariance = False
44 config.doFlat = False
45 config.doSaveInterpPixels = False
46 config.doSetBadRegions = False
47 config.doInterpolate = False
48 config.doAmpOffset = False
49 config.doStandardStatistics = True
50 config.doCalculateStatistics = True
51 config.doBinnedExposures = False