Skip to content

Commit

Permalink
Merge pull request #239 from lsst/tickets/DM-16641
Browse files Browse the repository at this point in the history
DM-16641: Write deepCoadd and nImage only once in dcrAssembleCoaddTask
  • Loading branch information
isullivan committed Dec 3, 2018
2 parents 07840cb + 65545d9 commit defe6db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/lsst/pipe/tasks/dcrAssembleCoadd.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ def setDefaults(self):
self.doNImage = True
self.warpType = 'direct'
self.assembleStaticSkyModel.warpType = self.warpType
self.assembleStaticSkyModel.doNImage = self.doNImage
# The deepCoadd and nImage files will be overwritten by this Task, so don't write them the first time
self.assembleStaticSkyModel.doNImage = False
self.assembleStaticSkyModel.doWrite = False
self.statistic = 'MEAN'


Expand Down

0 comments on commit defe6db

Please sign in to comment.