Some checks failed
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 12m10s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 13m5s
Build Packages / Generate python client (push) Successful in 30s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 13m59s
Build Packages / build:rpm (rocky8) (push) Successful in 13m57s
Build Packages / Create release (push) Has been skipped
Build Packages / Build documentation (push) Successful in 34s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 14m19s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 14m20s
Build Packages / build:rpm (rocky9) (push) Successful in 14m32s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 14m47s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m13s
Build Packages / Unit tests (push) Has been cancelled
20 lines
699 B
C++
20 lines
699 B
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#ifndef JFJOCH_ANALYZEINDEXING_H
|
|
#define JFJOCH_ANALYZEINDEXING_H
|
|
|
|
#include "../../common/CrystalLattice.h"
|
|
#include "../../common/DiffractionExperiment.h"
|
|
#include "../../common/JFJochMessages.h"
|
|
|
|
constexpr static float min_percentage_spots = 0.20f;
|
|
|
|
bool AnalyzeIndexing(DataMessage &message,
|
|
const DiffractionExperiment &experiment,
|
|
const CrystalLattice &latt,
|
|
const std::optional<GoniometerAxis> &rotation_axis,
|
|
bool rotation_indexed);
|
|
|
|
|
|
#endif //JFJOCH_ANALYZEINDEXING_H
|