11 lines
377 B
C++
11 lines
377 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_BRAGGPREDICTIONFACTORY_H
|
|
#define JFJOCH_BRAGGPREDICTIONFACTORY_H
|
|
|
|
#include "BraggPrediction.h"
|
|
|
|
std::unique_ptr<BraggPrediction> CreateBraggPrediction(int max_reflections = 10000);
|
|
|
|
#endif //JFJOCH_BRAGGPREDICTIONFACTORY_H
|