Skip to content

Commit

Permalink
Update badMaskPlanes to HSC defaults.
Browse files Browse the repository at this point in the history
This reimplements f89ff44 after it was wiped out by reverting
the commit after it.
  • Loading branch information
TallJimbo committed Dec 19, 2017
1 parent c4a9e7f commit 867968d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion python/lsst/pipe/tasks/assembleCoadd.py
Expand Up @@ -136,7 +136,6 @@ class AssembleCoaddConfig(CoaddBaseTask.ConfigClass):

def setDefaults(self):
CoaddBaseTask.ConfigClass.setDefaults(self)
self.badMaskPlanes = ["NO_DATA", "BAD", "CR", ]

def validate(self):
CoaddBaseTask.ConfigClass.validate(self)
Expand Down
2 changes: 1 addition & 1 deletion python/lsst/pipe/tasks/coaddBase.py
Expand Up @@ -60,7 +60,7 @@ class CoaddBaseConfig(pexConfig.Config):
badMaskPlanes = pexConfig.ListField(
dtype=str,
doc="Mask planes that, if set, the associated pixel should not be included in the coaddTempExp.",
default=("NO_DATA",),
default=("NO_DATA", "BAD", "EDGE", "SAT"),
)
inputRecorder = pexConfig.ConfigurableField(
doc="Subtask that helps fill CoaddInputs catalogs added to the final Exposure",
Expand Down

0 comments on commit 867968d

Please sign in to comment.