Files
Jungfraujoch/frontend/src/openapi/models/scan_result.ts
T
2025-07-09 14:55:28 +02:00

87 lines
1.8 KiB
TypeScript

/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { unit_cell } from './unit_cell';
/**
* Results of a grid scan
*/
export type scan_result = {
file_prefix?: string;
images: Array<{
efficiency: number;
/**
* Detector image number for a given cell
*/
number: number;
/**
* Cell position in X for grid scan
*/
nx?: number;
/**
* Cell position in Y for grid scan
*/
ny?: number;
/**
* Background estimate
*/
bkg?: number;
/**
* Spot count
*/
spots?: number;
/**
* Spot count in low resolution range
*/
spots_low_res?: number;
/**
* Spot count within indexing tolerance
*/
spots_indexed?: number;
/**
* Spot count within common ice ring resolutions
*/
spots_ice?: number;
/**
* Indexing solution
*/
index?: number;
/**
* Mosaicity estimate
*/
mos?: number;
/**
* B-Factor estimate
*/
'b'?: number;
uc?: unit_cell;
/**
* XFEL pulse ID
*/
xfel_pulseid?: number;
/**
* Total sum of all pixels
*/
pixel_sum?: number;
/**
* Max viable pixel
*/
max?: number;
/**
* Number of saturated pixels
*/
sat?: number;
/**
* Number of error pixels
*/
err?: number;
/**
* Resolution estimate from ML algorithm
*/
res?: number;
}>;
};