GridScanResult¶
Results of a grid scan
Properties¶
Name | Type | Description | Notes |
|---|---|---|---|
det_img | List[int] | Detector image number for a given cell | |
bkg_estimate | List[float] | ||
spot_count | List[int] | ||
indexed_lattices | List[int] | ||
mosaicity | List[float] | ||
b_factor | List[float] |
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)