Skip to content

Commit c4ac58f

Browse files
committed
Add skip frion
1 parent e8d4501 commit c4ac58f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arrakis/process_region.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def process_merge(args, host: str, inter_dir: str, task_runner) -> None:
8383
fit_function=args.fit_function,
8484
tt0=args.tt0,
8585
tt1=args.tt1,
86-
ion=False,
86+
ion=False, # Always False as we don't do Frion twice
8787
do_own_fit=args.do_own_fit,
8888
)
8989
if not args.skip_rmsynth

arrakis/process_spice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def process_spice(args, host: str, task_runner: BaseTaskRunner) -> None:
133133
fit_function=args.fit_function,
134134
tt0=args.tt0,
135135
tt1=args.tt1,
136-
ion=True,
136+
ion=True if not args.skip_frion else False,
137137
do_own_fit=args.do_own_fit,
138138
)
139139
if not args.skip_rmsynth

0 commit comments

Comments
 (0)