Skip to content

Commit

Permalink
Normalize AssembleCoadd configs
Browse files Browse the repository at this point in the history
  • Loading branch information
yalsayyad committed Feb 20, 2018
1 parent 864bada commit e3807df
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions config/compareWarpAssembleCoadd.py
@@ -1,8 +1,8 @@
config.subregionSize = (10000, 200) # 200 rows (since patch width is typically < 10k pixels
config.doMaskBrightObjects = True
config.removeMaskPlanes.append("CROSSTALK")
config.doNImage = True
config.badMaskPlanes += ["SUSPECT"]
import os.path
from lsst.utils import getPackageDir

# Load configs from base assembleCoadd
config.load(os.path.join(getPackageDir("obs_subaru"), "config", "assembleCoadd.py"))

# 200 rows (since patch width is typically < 10k pixels
config.assembleStaticSkyModel.subregionSize = (10000, 200)
10 changes: 5 additions & 5 deletions config/safeClipAssembleCoadd.py
@@ -1,5 +1,5 @@
config.subregionSize = (10000, 200) # 200 rows (since patch width is typically < 10k pixels
config.doMaskBrightObjects = True
config.removeMaskPlanes.append("CROSSTALK")
config.doNImage = True
config.badMaskPlanes += ["SUSPECT"]
import os.path
from lsst.utils import getPackageDir

# Load configs from base assembleCoadd
config.load(os.path.join(getPackageDir("obs_subaru"), "config", "assembleCoadd.py"))

0 comments on commit e3807df

Please sign in to comment.