MXAnalysisWithoutFPGA: Azimuthal integration moved to spot finder

This commit is contained in:
2026-04-22 13:37:11 +02:00
parent 9338a876fd
commit b63d7eb6cb
5 changed files with 36 additions and 32 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ void MXAnalysisWithoutFPGA::Analyze(DataMessage &output,
output.preprocessing_time_s = std::chrono::duration<float>(preprocessing_end_time - preprocessing_start_time).count();
const auto azint_start_time = std::chrono::steady_clock::now();
preprocessor->AzimIntegration(integration, profile);
spotFinder->AzimIntegration(integration, profile);
const auto azint_end_time = std::chrono::steady_clock::now();
output.azint_time_s = std::chrono::duration<float>(azint_end_time - azint_start_time).count();