12 lines
456 B
C++
12 lines
456 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(bool rotation_indexing,
|
|
int max_reflections = 10000);
|
|
|
|
#endif //JFJOCH_BRAGGPREDICTIONFACTORY_H
|