18 lines
709 B
C++
18 lines
709 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_BRAGGINTEGRATE2D_H
|
|
#define JFJOCH_BRAGGINTEGRATE2D_H
|
|
|
|
#include <vector>
|
|
#include "../../common/DiffractionExperiment.h"
|
|
#include "../../common/Reflection.h"
|
|
|
|
std::vector<Reflection> BraggIntegrate2D(const DiffractionExperiment &experiment,
|
|
const CompressedImage &image,
|
|
const std::vector<Reflection> &predicted,
|
|
size_t npredicted,
|
|
int64_t image_number);
|
|
|
|
#endif //JFJOCH_BRAGGINTEGRATE2D_H
|