From d4c077edc349de6d17a8317854d4f8c4e036e087 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Sat, 28 Feb 2026 09:41:01 +0100 Subject: [PATCH] DetectorSetup: Increase EIGER read out time to 20 us --- common/DetectorSetup.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/DetectorSetup.cpp b/common/DetectorSetup.cpp index d889150e..e4c34d8b 100644 --- a/common/DetectorSetup.cpp +++ b/common/DetectorSetup.cpp @@ -56,7 +56,7 @@ DetectorSetup::DetectorSetup(std::shared_ptr in_geometry, switch (detector_type) { case DetectorType::EIGER: high_voltage = 150; - read_out_time = std::chrono::microseconds(3); + read_out_time = std::chrono::microseconds(20); if (!det_modules_hostname.empty() && (2 * geometry->GetModulesNum() != det_modules_hostname.size())) throw JFJochException(JFJochExceptionCategory::InputParameterInvalid, "Mismatch between number of modules in detector geometry and hostname (For EIGER - one module = 2 hostnames)");