RotationIndexer: Add GetAccumulatedImages() - though not sure if really useful

This commit is contained in:
2026-05-29 16:09:35 +02:00
parent 0e4d80acd6
commit e3924a08dd
2 changed files with 7 additions and 1 deletions
+5 -1
View File
@@ -164,4 +164,8 @@ std::optional<RotationIndexerResult> RotationIndexer::GetLattice() const {
.geom = updated_geom_,
.axis = axis_
};
}
}
int64_t RotationIndexer::GetAccumulatedImages() const {
return accumulated_images;
}
+2
View File
@@ -62,6 +62,8 @@ public:
RotationIndexer(const DiffractionExperiment& x, IndexerThreadPool& indexer);
void ProcessImage(int64_t image, const std::vector<SpotToSave>& spots);
std::optional<RotationIndexerResult> GetLattice() const;
int64_t GetAccumulatedImages() const;
};
#endif //JFJOCH_ROTATIONINDEXER_H