jfjoch_broker: Add crystal_lattice and unit_cell to ScanResult

This commit is contained in:
2025-12-01 13:20:17 +01:00
parent 0842971183
commit b4d2c3ccc6
9 changed files with 142 additions and 5 deletions
+1
View File
@@ -15,6 +15,7 @@ export { broker_status } from './models/broker_status';
export type { calibration_statistics } from './models/calibration_statistics';
export { color_scale } from './models/color_scale';
export type { compression } from './models/compression';
export type { crystal_lattice } from './models/crystal_lattice';
export type { dark_mask_settings } from './models/dark_mask_settings';
export { dataset_settings } from './models/dataset_settings';
export type { detector } from './models/detector';
@@ -0,0 +1,11 @@
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* Real-space crystal lattice 3D vectors in Angstrom.
* Order is 1st vector (x,y,z), 2nd vector (x,y,z) and 3rd vector (x,y,z)
*
*/
export type crystal_lattice = Array<number>;
@@ -3,6 +3,7 @@
/* tslint:disable */
/* eslint-disable */
import type { crystal_lattice } from './crystal_lattice';
import type { unit_cell } from './unit_cell';
/**
@@ -10,6 +11,8 @@ import type { unit_cell } from './unit_cell';
*/
export type scan_result = {
file_prefix?: string;
unit_cell?: unit_cell;
crystal_lattice?: crystal_lattice;
images: Array<{
efficiency: number;
/**