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
2.3 KiB
2.3 KiB
GridScanCrystal
One crystal found in a grid scan.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| nx | float | Centre, fractional grid coordinate along the fast grid axis | |
| ny | float | Centre, fractional grid coordinate along the slow grid axis | |
| x_um | float | Centre, signed offset along the fast grid axis, in micrometres | [optional] |
| y_um | float | Centre, signed offset along the slow grid axis, in micrometres | [optional] |
| image_number | int | The grid point at the centre, as an image ordinal | [optional] |
| major_um | float | Extent along the crystal's major principal axis, in micrometres | [optional] |
| minor_um | float | Extent along its minor principal axis, in micrometres | [optional] |
| angle_deg | float | Direction of the major axis from the +x grid axis, counter-clockwise, in degrees. This is an AXIS, not a direction: it lives in [0, 180) and wraps, so 179 and 0 are adjacent. Averaging two of these arithmetically across the wrap turns two nearly parallel needles into a right angle - combine them on the doubled angle (mean of 2*theta, halved), or not at all. | [optional] |
| score | float | Diffraction score the crystal was ranked on | |
| ice_score | float | Ice-ring score over the crystal's grid points | [optional] |
| res_a | float | Resolution estimate over the crystal's grid points, in Angstrom | [optional] |
| n_images | int | Grid points that fell in this crystal | [optional] |
Example
from jfjoch_client.models.grid_scan_crystal import GridScanCrystal
# TODO update the JSON string below
json = "{}"
# create an instance of GridScanCrystal from a JSON string
grid_scan_crystal_instance = GridScanCrystal.from_json(json)
# print the JSON string representation of the object
print(GridScanCrystal.to_json())
# convert the object into a dict
grid_scan_crystal_dict = grid_scan_crystal_instance.to_dict()
# create an instance of GridScanCrystal from a dict
grid_scan_crystal_from_dict = GridScanCrystal.from_dict(grid_scan_crystal_dict)