Build Packages / Unit tests (push) Successful in 1h22m15s
Build Packages / build:windows:nocuda (push) Successful in 18m0s
Build Packages / build:windows:cuda (push) Successful in 20m30s
Build Packages / build:viewer-tgz:cpu (push) Successful in 10m32s
Build Packages / build:viewer-tgz:cuda (push) Successful in 11m39s
Build Packages / build:rugnux-tgz (x86_64) (push) Successful in 8m55s
Build Packages / build:rugnux:windows (push) Successful in 11m25s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 20m6s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 16m27s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 20m19s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 15m34s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 20m25s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 19m36s
Build Packages / build:rpm (rocky8) (push) Successful in 17m43s
Build Packages / build:rpm (rocky9) (push) Successful in 13m34s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 21m28s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 18m19s
Build Packages / DIALS test (push) Successful in 12m36s
Build Packages / XDS test (durin plugin) (push) Successful in 6m56s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 6m48s
Build Packages / XDS test (neggia plugin) (push) Successful in 6m7s
Build Packages / Generate python client (push) Successful in 11s
Build Packages / Build documentation (push) Successful in 36s
Build Packages / Create release (push) Skipped
Build Packages / build:rugnux:aarch64 (cross) (push) Successful in 5m11s
* `rugnux --mode calibration` writes `<prefix>.json` beside the `.poni`, whose `dataset_settings` member is a `jfjoch_broker` `dataset_settings` body as it stands. * `rugnux` and `jfjoch_viewer` read PILATUS miniCBF sweeps natively, without conversion. * Masters written by other facilities open, including Eiger 1.x and third-party NXmx variants. * `rugnux` measures the beam centre on every run, and indexes with it when the file's value indexes nothing. * A detector swung out on a 2theta arm is placed where the file says it stands, and the calibration can hold the tilt fixed. * `rugnux` writes the unmerged MTZ by default, and a P1 merge beside it, so a wrong space group can be re-merged without reprocessing. * Significant improvements to symmetry handling in `rugnux`: the lattice, the point group, the setting and the systematic absences. * The `rugnux` report gives the resolution the CC1/2 fit reached, beside the range the reflections were written to. * The `rugnux` report gives the twinning statistics measured before the space group was decided, beside the ones measured after. * The `rugnux` report gives the strong-direction diffraction limit, and warns when CC1/2 is not monotone with resolution. * `rugnux` ranks screw axes on the evidence their absences carry, rather than on how many control reflections a candidate happens to have. * Twinning is no longer reported when the L-test contradicts it. * The `rugnux` report gives the detector tilt, the measured tilt and the direct beam beside the beam centre, and a post-refined beam centre is judged against the run's own measurement rather than the file's. * `--no-refine-tilt` holds the detector tilt at the value in the file, instead of zeroing it, when the calibration starts from the spots. * The `jfjoch_viewer` grid scan view draws the cells in the proportion of the scan steps, so the map has the shape of the scanned area. Reviewed-on: #76 Co-authored-by: Filip Leonarski <filip.leonarski@psi.ch>
101 lines
3.6 KiB
C++
101 lines
3.6 KiB
C++
// SPDX-FileCopyrightText: 2025 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#include <catch2/catch_all.hpp>
|
|
#include <iostream>
|
|
|
|
#include "../image_analysis/rotation_indexer/RotationIndexer.h"
|
|
#include "../image_analysis/bragg_prediction/BraggPrediction.h"
|
|
|
|
TEST_CASE("RotationIndexer") {
|
|
DiffractionExperiment exp_i;
|
|
exp_i.IncidentEnergy_keV(WVL_1A_IN_KEV)
|
|
.BeamX_pxl(1000)
|
|
.BeamY_pxl(1000)
|
|
.PoniRot1_rad(0.01)
|
|
.PoniRot2_rad(0.02)
|
|
.DetectorDistance_mm(200)
|
|
.ImagesPerTrigger(50);
|
|
|
|
IndexingSettings settings;
|
|
#ifdef JFJOCH_USE_CUDA
|
|
settings.Algorithm(IndexingAlgorithmEnum::FFT);
|
|
#elif JFJOCH_USE_FFTW
|
|
settings.Algorithm(IndexingAlgorithmEnum::FFTW);
|
|
#else
|
|
return;
|
|
#endif
|
|
|
|
settings.RotationIndexing(true).RotationIndexingAngularStride_deg(1.0).RotationIndexingMinAngularRange_deg(30.0);
|
|
exp_i.ImportIndexingSettings(settings);
|
|
|
|
// Base lattice (non-pathological)
|
|
CrystalLattice latt_base(40, 50, 80, 90, 90, 90);
|
|
latt_base = latt_base.Multiply(RotMatrix(2.0, Coord(sqrt(3)/3,sqrt(3)/3,sqrt(3)/3)));
|
|
|
|
// Rotation axis: around X with 1 deg per image
|
|
GoniometerAxis axis("omega", 0.0f, 1.0f, Coord(1,0,0), std::nullopt);
|
|
exp_i.Goniometer(axis);
|
|
|
|
BraggPredictionSettings prediction_settings{
|
|
.high_res_A = 1.3,
|
|
.ewald_dist_cutoff = 0.002
|
|
};
|
|
|
|
IndexerThreadPool indexer_thread_pool(exp_i.GetIndexingSettings());
|
|
RotationIndexer indexer(exp_i, indexer_thread_pool);
|
|
|
|
BraggPrediction prediction;
|
|
|
|
int cnt = 0;
|
|
|
|
// Predict reflections for images at 0-30 deg.
|
|
for (int img = 0; img < 50; ++img) {
|
|
std::vector<SpotToSave> spots;
|
|
// For a rotated image, per-image lattice is obtained as Multiply(rot.transpose())
|
|
const float angle_deg = axis.GetAngle_deg(img) + axis.GetWedge_deg() / 2.0f;
|
|
const RotMatrix rot = axis.GetTransformationAngle(angle_deg);
|
|
const CrystalLattice latt_img = latt_base.Multiply(rot.transpose());
|
|
|
|
const auto n = prediction.Calc(exp_i, latt_img, prediction_settings);
|
|
for (int i = 0; i < n; ++i) {
|
|
const auto& r = prediction.GetReflections().at(i);
|
|
SpotToSave s{};
|
|
s.x = r.predicted_x;
|
|
s.y = r.predicted_y;
|
|
s.image = img; // provide image index for rotation-aware refinement
|
|
s.intensity = 1.0f; // minimal positive value
|
|
s.phi = angle_deg;
|
|
s.ice_ring = false;
|
|
s.indexed = true;
|
|
spots.push_back(s);
|
|
}
|
|
|
|
indexer.ProcessImage(img, spots);
|
|
if (img == 30)
|
|
indexer.RunIndexing();
|
|
|
|
auto result = indexer.GetLattice();
|
|
if (result.has_value())
|
|
cnt++;
|
|
}
|
|
|
|
CHECK(cnt == 20);
|
|
// An indexer that ran records no error; only one that threw does. A caller reporting "no lattice"
|
|
// to the user tells the two apart on this.
|
|
CHECK_FALSE(indexer.GetIndexerError().has_value());
|
|
|
|
auto ret = indexer.GetLattice();
|
|
REQUIRE(ret.has_value());
|
|
auto uc = ret->lattice.GetUnitCell();
|
|
auto uc_ref = latt_base.GetUnitCell();
|
|
REQUIRE(std::fabs(uc.a - uc_ref.a) < 0.1);
|
|
REQUIRE(std::fabs(uc.b - uc_ref.b) < 0.1);
|
|
REQUIRE(std::fabs(uc.c - uc_ref.c) < 0.1);
|
|
REQUIRE(std::fabs(uc.alpha - uc_ref.alpha) < 0.1);
|
|
REQUIRE(std::fabs(uc.beta - uc_ref.beta) < 0.1);
|
|
REQUIRE(std::fabs(uc.gamma - uc_ref.gamma) < 0.1);
|
|
CHECK(ret->search_result.centering == 'P');
|
|
CHECK(ret->search_result.system == gemmi::CrystalSystem::Orthorhombic);
|
|
}
|