17 lines
432 B
C
17 lines
432 B
C
// SPDX-FileCopyrightText: 2024 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JUNGFRAUJOCH_SPOTTOSAVE_H
|
|
#define JUNGFRAUJOCH_SPOTTOSAVE_H
|
|
|
|
struct SpotToSave {
|
|
float x = 0;
|
|
float y = 0;
|
|
float intensity = 0;
|
|
int64_t maxc = 0;
|
|
float angle_from_ewald_sphere = 0; // after indexing
|
|
bool indexed = false;
|
|
};
|
|
|
|
#endif //JUNGFRAUJOCH_SPOTTOSAVE_H
|