RotationIndexer: Remove SetLattice() - not sure why it was necessary in the first place

This commit is contained in:
2026-01-19 13:56:28 +01:00
parent af81601103
commit 71f85b294d
4 changed files with 7 additions and 16 deletions

View File

@@ -19,14 +19,6 @@ IndexAndRefine::IndexAndRefine(const DiffractionExperiment &x, IndexerThreadPool
if (indexer && x.IsRotationIndexing())
rotation_indexer = std::make_unique<RotationIndexer>(x, *indexer);
}
#include <iostream>
void IndexAndRefine::SetLattice(const CrystalLattice &lattice) {
if (rotation_indexer) {
rotation_indexer->SetLattice(lattice);
std::cout << "Set lattice for rotation indexing" << std::endl;
}
}
IndexAndRefine::IndexingOutcome IndexAndRefine::DetermineLatticeAndSymmetry(DataMessage &msg) {
IndexingOutcome outcome(experiment);