Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDEV-1916] fix pre calibration failure stops the acquisition #2985

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[update] address pr comments
  • Loading branch information
nandishjpatel committed Jan 8, 2025
commit c8a8b272f49c27c486433aafb3f70ac4dc6d6a59
17 changes: 14 additions & 3 deletions src/odemis/gui/cont/acquisition/fastem_acq.py
Original file line number Diff line number Diff line change
@@ -551,15 +551,26 @@ def __init__(self, tab_data, tab_panel, main_tab_data, project_tree_ctrl):
"Period for which to run autofocus, if the value is 5 it should run for "
"ROAs with index 0, 5, 10, etc."
)
_, self.chk_beam_blank_off = self.acq_panel.add_checkbox_control(
chk_beam_blank_off_lbl, self.chk_beam_blank_off = self.acq_panel.add_checkbox_control(
"Do not blank beam in between fields", value=False, pos_col=2, span=(1, 1)
)
_, self.chk_stop_acq_on_failure = self.acq_panel.add_checkbox_control(
chk_beam_blank_off_lbl.SetToolTip(
"Reduces the acquisition time by keeping the e-beam active between fields instead "
"of blanking it."
)
chk_stop_acq_on_failure_lbl, self.chk_stop_acq_on_failure = self.acq_panel.add_checkbox_control(
"Stop acquisition on failure", value=True, pos_col=2, span=(1, 1)
)
_, self.chk_ebeam_off = self.acq_panel.add_checkbox_control(
chk_stop_acq_on_failure_lbl.SetToolTip(
"Stop the entire acquisition if a ROA acquisition fails. If unselected, skip the failed ROA "
"and continue the acquisition for subsequent ROAs."
)
chk_ebeam_off_lbl, self.chk_ebeam_off = self.acq_panel.add_checkbox_control(
"Turn off e-beam after acquisition", value=True, pos_col=2, span=(1, 1)
)
chk_ebeam_off_lbl.SetToolTip(
"Automatically turned off the e-beam after acquisition is complete."
)

# ROA count
self.roa_count = 0
Loading