MultiLatticeSearch: Work in progress

This commit is contained in:
2026-06-05 14:31:47 +02:00
parent 83f467d4dc
commit b49c7a766d
4 changed files with 29 additions and 57 deletions
+9 -9
View File
@@ -1211,10 +1211,10 @@ TEST_CASE("JFJochReader_Spots_OldMasterFormat", "[HDF5][Full]") {
std::vector<SpotToSave> spots;
spots.push_back(SpotToSave{
.x = 1, .y = 2, .intensity = 376,
.ice_ring = true,
.indexed = true,
.h = 11, .k = -3, .l = -5,
.dist_ewald_sphere = 0.1234f
.dist_ewald_sphere = 0.1234f,
.ice_ring = true,
.indexed = true
});
spots.push_back(SpotToSave{
.x = 7, .y = -3, .intensity = 0.156f,
@@ -1308,10 +1308,10 @@ TEST_CASE("JFJochReader_Spots_VDS", "[HDF5][Full]") {
std::vector<SpotToSave> spots;
spots.push_back(SpotToSave{
.x = 1, .y = 2, .intensity = 376,
.ice_ring = true,
.indexed = true,
.h = 11, .k = -3, .l = -5,
.dist_ewald_sphere = 0.1234f
.dist_ewald_sphere = 0.1234f,
.ice_ring = true,
.indexed = true
});
spots.push_back(SpotToSave{
.x = 7, .y = -3, .intensity = 0.156f,
@@ -2127,10 +2127,10 @@ static std::vector<SpotToSave> MakeTestSpots(int i) {
return {
SpotToSave{
.x = 1, .y = 2, .intensity = 376,
.ice_ring = true,
.indexed = true,
.h = 11, .k = -3, .l = -5,
.dist_ewald_sphere = 0.1234f
.dist_ewald_sphere = 0.1234f,
.ice_ring = true,
.indexed = true
},
SpotToSave{
.x = 7, .y = static_cast<float>(-3 - i), .intensity = 0.156f,