Output of update_version.sh. The five lanes each reverted their generated trees before handing back, so that two independently regenerated copies never had to be merged; this is the single pass that replaces them. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EFEJG6WBQv8th4UJFNe53N
1.3 KiB
1.3 KiB
GridScanResult
What a grid scan found. The list is sorted by score, best first, and may hold any number of crystals - a consumer must not assume at most one.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| crystals | List[GridScanCrystal] | ||
| beam_size_x_um | float | The beam the crystal extents were measured with, along the fast grid axis. Those extents still contain it, so this says what a consumer has to take back out. | [optional] |
| beam_size_y_um | float | The same along the slow grid axis | [optional] |
Example
from jfjoch_client.models.grid_scan_result import GridScanResult
# TODO update the JSON string below
json = "{}"
# create an instance of GridScanResult from a JSON string
grid_scan_result_instance = GridScanResult.from_json(json)
# print the JSON string representation of the object
print(GridScanResult.to_json())
# convert the object into a dict
grid_scan_result_dict = grid_scan_result_instance.to_dict()
# create an instance of GridScanResult from a dict
grid_scan_result_from_dict = GridScanResult.from_dict(grid_scan_result_dict)