Some checks failed
Build Packages / build:rpm (ubuntu2204) (push) Failing after 10m1s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 10m30s
Build Packages / build:rpm (rocky8) (push) Failing after 10m32s
Build Packages / build:rpm (rocky9) (push) Failing after 10m38s
Build Packages / Generate python client (push) Successful in 27s
Build Packages / Create release (push) Has been skipped
Build Packages / Build documentation (push) Successful in 49s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 11m39s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 12m37s
Build Packages / build:rpm (rocky8_sls9) (push) Failing after 12m56s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 13m24s
Build Packages / Unit tests (push) Failing after 3m26s
Build Packages / build:rpm (ubuntu2404) (push) Failing after 6m21s
32 lines
767 B
C++
32 lines
767 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 delta_phi_deg; // phi angle from XDS - difference from middle of current frame (NOT an absolute angle)
|
|
float predicted_x;
|
|
float predicted_y;
|
|
float d;
|
|
float I;
|
|
float bkg;
|
|
float sigma;
|
|
float dist_ewald;
|
|
float rlp;
|
|
bool observed = false;
|
|
float S_x, S_y, S_z;
|
|
float partiality;
|
|
float zeta;
|
|
};
|
|
|
|
#endif //JFJOCH_REFLECTION_H
|