Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ screening:
resolution: 2.0 # Ångström (16M)
transmission: 0.5 # Percentage


grid_scan:
md3_alignment_y_speed: 1.0 # mm/s
omega_range: 0.0 # Degrees
photon_energy: 13.0 # keV
resolution: 1.5 # Ångström (16M)
transmission: 1.0 # Percentage
detector_roi_mode: "4M" # 4M or disabled
detector_roi_mode: "disabled" # 4M or disabled
grid_step: "20x20"

one_shot:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ grid_scan:
photon_energy: 13.0 # keV
resolution: 1.5 # Ångström (16M)
transmission: 1.0 # Percentage
detector_roi_mode: "4M" # 4M or disabled
detector_roi_mode: "disabled" # 4M or disabled
# Only used for trays
auto_create_well: false
project_name: null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ def get_grid_scan_schema(partial_udc: bool = False) -> dict:
"widget": "textarea",
},
"detector_roi_mode": {
"title": "Detector ROI Mode",
"title": "Detector 4M Mode",
"type": "string",
"enum": ["4M", "disabled"],
"enum": ["disabled", "4M"],
"default": str(
get_dialog_box_param("detector_roi_mode", collection_type="grid_scan")
),
Expand Down
Loading