20 lines
546 B
C++
20 lines
546 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_ROTATIONPARAMETERS_H
|
|
#define JFJOCH_ROTATIONPARAMETERS_H
|
|
|
|
#include "../common/MovingAverage.h"
|
|
|
|
class RotationParameters {
|
|
MovingAverage profile_radius, beam_x, beam_y, mosaicity;
|
|
public:
|
|
RotationParameters();
|
|
float ProfileRadius(float input);
|
|
float Mosaicity(float input);
|
|
float BeamX(float input);
|
|
float BeamY(float input);
|
|
};
|
|
|
|
|
|
#endif //JFJOCH_ROTATIONPARAMETERS_H
|