Skip to content

Commit

Permalink
Disable write of solver products by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Jun 7, 2022
1 parent 1ea498b commit 09c0eb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/toast/ops/mapmaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ class MapMaker(Operator):
write_rcond = Bool(True, help="If True, write the reciprocal condition numbers.")

write_solver_products = Bool(
True, help="If True, write out equivalent solver products."
False, help="If True, write out equivalent solver products."
)

keep_solver_products = Bool(
Expand Down
1 change: 1 addition & 0 deletions src/toast/tests/ops_pointing_wcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ def test_mapmaking(self):
write_map=False,
write_cov=False,
write_rcond=False,
output_dir=self.outdir,
keep_solver_products=True,
keep_final_products=True,
)
Expand Down

0 comments on commit 09c0eb2

Please sign in to comment.