Skip to content

Commit 09c0eb2

Browse files
committed
Disable write of solver products by default
1 parent 1ea498b commit 09c0eb2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/toast/ops/mapmaker.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class MapMaker(Operator):
146146
write_rcond = Bool(True, help="If True, write the reciprocal condition numbers.")
147147

148148
write_solver_products = Bool(
149-
True, help="If True, write out equivalent solver products."
149+
False, help="If True, write out equivalent solver products."
150150
)
151151

152152
keep_solver_products = Bool(

src/toast/tests/ops_pointing_wcs.py

+1
Original file line numberDiff line numberDiff line change
@@ -318,6 +318,7 @@ def test_mapmaking(self):
318318
write_map=False,
319319
write_cov=False,
320320
write_rcond=False,
321+
output_dir=self.outdir,
321322
keep_solver_products=True,
322323
keep_final_products=True,
323324
)

0 commit comments

Comments
 (0)