Files
Jungfraujoch/image_analysis/indexing/AnalyzeIndexing.h
Filip Leonarski 523afc7fbb
All checks were successful
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 12m3s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 12m58s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 13m21s
Build Packages / Generate python client (push) Successful in 29s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 13m33s
Build Packages / Create release (push) Has been skipped
Build Packages / build:rpm (rocky8) (push) Successful in 13m53s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 14m0s
Build Packages / Build documentation (push) Successful in 43s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 14m10s
Build Packages / build:rpm (rocky9) (push) Successful in 15m7s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 7m23s
Build Packages / Unit tests (push) Successful in 53m10s
IndexAndRefine: Fix using lattice at zero deg for refinement
2026-01-20 13:28:42 +01:00

18 lines
582 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);
#endif //JFJOCH_ANALYZEINDEXING_H