DetectorSetup: Increase EIGER read out time to 20 us

This commit is contained in:
2026-02-28 09:41:01 +01:00
parent 8280fde0a2
commit d4c077edc3

View File

@@ -56,7 +56,7 @@ DetectorSetup::DetectorSetup(std::shared_ptr<DetectorGeometry> 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)");