Some checks failed
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Failing after 9m36s
Build Packages / build:rpm (rocky8_nocuda) (push) Failing after 11m7s
Build Packages / build:rpm (rocky9_nocuda) (push) Failing after 11m13s
Build Packages / Generate python client (push) Successful in 27s
Build Packages / build:rpm (rocky8) (push) Failing after 11m47s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Failing after 11m58s
Build Packages / Build documentation (push) Successful in 49s
Build Packages / build:rpm (ubuntu2204) (push) Failing after 12m26s
Build Packages / build:rpm (rocky9) (push) Failing after 12m46s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 12m51s
Build Packages / Unit tests (push) Failing after 4m29s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 7m10s
28 lines
619 B
C++
28 lines
619 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_REFLECTION_H
|
|
#define JFJOCH_REFLECTION_H
|
|
|
|
#include <cstdint>
|
|
#include <optional>
|
|
#include "SpotToSave.h"
|
|
|
|
struct Reflection {
|
|
int64_t h;
|
|
int64_t k;
|
|
int64_t l;
|
|
float image_number; // Can be in-between for 3D integration
|
|
float angle_deg; // phi angle from XDS
|
|
float predicted_x;
|
|
float predicted_y;
|
|
float d;
|
|
float I;
|
|
float bkg;
|
|
float sigma;
|
|
float dist_ewald;
|
|
bool observed = false;
|
|
};
|
|
|
|
#endif //JFJOCH_REFLECTION_H
|