22 lines
413 B
C++
22 lines
413 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 {
|
|
int32_t h;
|
|
int32_t k;
|
|
int32_t l;
|
|
float center_x;
|
|
float center_y;
|
|
float d;
|
|
float I;
|
|
float bkg;
|
|
float sigma;
|
|
};
|
|
|
|
#endif //JFJOCH_REFLECTION_H
|