Skip to content

Commit

Permalink
Default to doWriteMatchesDenormalized=True
Browse files Browse the repository at this point in the history
LSST, DECam, and HSC were all overriding this to True; it is not that much
more space (compared to e.g. images) and makes debugging much eaiser.
  • Loading branch information
parejkoj committed Sep 20, 2023
1 parent 81cc60f commit 59871cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/pipe/tasks/calibrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ class CalibrateConfig(pipeBase.PipelineTaskConfig, pipelineConnections=Calibrate
)
doWriteMatchesDenormalized = pexConfig.Field(
dtype=bool,
default=False,
default=True,
doc=("Write reference matches in denormalized format? "
"This format uses more disk space, but is more convenient to "
"read. Ignored if doWriteMatches=False or doWrite=False."),
"read for debugging. Ignored if doWriteMatches=False or doWrite=False."),
)
doAstrometry = pexConfig.Field(
dtype=bool,
Expand Down

0 comments on commit 59871cc

Please sign in to comment.