From 5945d785fea31561e4bc188a8209959e6cfd4bcb Mon Sep 17 00:00:00 2001 From: Jeremy Kubica <104161096+jeremykubica@users.noreply.github.com> Date: Tue, 17 Sep 2024 15:22:42 -0400 Subject: [PATCH] Pass the trajectory generator to run_search --- src/kbmod/run_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kbmod/run_search.py b/src/kbmod/run_search.py index 642c452a..608c725c 100644 --- a/src/kbmod/run_search.py +++ b/src/kbmod/run_search.py @@ -281,4 +281,4 @@ def run_search_from_work_unit(self, work): trj_generator = create_trajectory_generator(work.config, work_unit=work) # Run the search. - return self.run_search(work.config, work.im_stack) + return self.run_search(work.config, work.im_stack, trj_generator=trj_generator)