Scaling/Merging: Clean-up data structures

This commit is contained in:
2026-05-25 18:23:18 +02:00
parent 61776a446e
commit ea36b26a4f
12 changed files with 190 additions and 630 deletions
+2 -2
View File
@@ -6,6 +6,7 @@
#include <vector>
#include "../common/Reflection.h"
#include "../common/UnitCell.h"
#include "IntegrationOutcome.h"
struct ResolutionStats {
float d_low = std::numeric_limits<float>::max();
@@ -14,5 +15,4 @@ struct ResolutionStats {
int n_images = 0;
};
// Returns the highest (best) resolution in Angstrom observed by reflection
ResolutionStats UpdateReflectionResolution(const UnitCell &cell, std::vector<std::vector<Reflection> > &reflections);
ResolutionStats UpdateReflectionResolution(const UnitCell &cell, std::vector<IntegrationOutcome> &reflections);