Skip to content

Commit

Permalink
Merge pull request #124 from lsst/tickets/DM-14008
Browse files Browse the repository at this point in the history
DM-14008: Enable transmission curve coaddition for HSC by default.
  • Loading branch information
TallJimbo committed Apr 6, 2018
2 parents 01560d5 + 780eab1 commit 3dc38e5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
8 changes: 7 additions & 1 deletion config/hsc/assembleCoadd.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
config.doApplyUberCal = True
import os.path
from lsst.utils import getPackageDir

# Load configs shared between assembleCoadd and makeCoaddTempExp
config.load(os.path.join(getPackageDir("obs_subaru"), "config", "hsc", "coaddBase.py"))

config.doAttachTransmissionCurve = True
1 change: 1 addition & 0 deletions config/hsc/coaddBase.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
config.doApplyUberCal = True
7 changes: 6 additions & 1 deletion config/hsc/compareWarpAssembleCoadd.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
config.doApplyUberCal = True
import os.path
from lsst.utils import getPackageDir

# Load configs shared between assembleCoadd and makeCoaddTempExp
config.load(os.path.join(getPackageDir("obs_subaru"), "config", "hsc", "assembleCoadd.py"))

config.assembleStaticSkyModel.doApplyUberCal = True
7 changes: 6 additions & 1 deletion config/hsc/makeCoaddTempExp.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
config.doApplyUberCal = True
import os.path
from lsst.utils import getPackageDir

# Load configs shared between assembleCoadd and makeCoaddTempExp
config.load(os.path.join(getPackageDir("obs_subaru"), "config", "hsc", "coaddBase.py"))

config.doApplySkyCorr = True

0 comments on commit 3dc38e5

Please sign in to comment.