24 lines
490 B
C++
24 lines
490 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>
|
|
|
|
struct Reflection {
|
|
int h;
|
|
int k;
|
|
int l;
|
|
float center_x_pxl;
|
|
float center_y_pxl;
|
|
float radius_ewald_sphere; // unit ???
|
|
float angle_ewald_sphere; // deg.
|
|
float d;
|
|
float I;
|
|
float bkg;
|
|
float sigma;
|
|
};
|
|
|
|
#endif //JFJOCH_REFLECTION_H
|