This trivial change just enables the functionality added on DM-12375 by default (for HSC):
Author: Jim Bosch <jbosch@astro.princeton.edu>
|
Date: Fri Jan 26 13:42:15 2018 -0500
|
|
Enable attaching TransmissionCurves by default.
|
|
diff --git a/python/lsst/obs/subaru/isr.py b/python/lsst/obs/subaru/isr.py
|
index 11588c9d..4fbe12f0 100644
|
--- a/python/lsst/obs/subaru/isr.py
|
+++ b/python/lsst/obs/subaru/isr.py
|
@@ -194,6 +194,9 @@ after applying the nominal gain
|
thumbnailQ = Field(dtype=float, default=20.0, doc="Softening parameter for thumbnail mapping")
|
thumbnailSatBorder = Field(dtype=int, default=2, doc="Border around saturated pixels for thumbnail")
|
|
+ def setDefaults(self):
|
+ self.doAttachTransmissionCurve = True
|
+
|
def validate(self):
|
super(SubaruIsrConfig, self).validate()
|
if self.doFlat and self.doApplyGains:
|
I'll have a community post announcing the change ready by the time I merge.
This trivial change just enables the functionality added on
by default (for HSC):DM-12375diff --git a/python/lsst/obs/subaru/isr.py b/python/lsst/obs/subaru/isr.py
--- a/python/lsst/obs/subaru/isr.py
+++ b/python/lsst/obs/subaru/isr.py
+ def setDefaults(self):
+ self.doAttachTransmissionCurve = True
+
def validate(self):
I'll have a community post announcing the change ready by the time I merge.