diff --git a/RELEASE.txt b/RELEASE.txt index e69de29bb..492ba483b 100755 --- a/RELEASE.txt +++ b/RELEASE.txt @@ -0,0 +1,2 @@ +Draft +- dr 4, 8, 16 in eiger -> speed 0, 32 stays same (speed 1) diff --git a/slsDetectorSoftware/src/slsDetector.cpp b/slsDetectorSoftware/src/slsDetector.cpp index 2c5eaa90a..6df2d7f85 100755 --- a/slsDetectorSoftware/src/slsDetector.cpp +++ b/slsDetectorSoftware/src/slsDetector.cpp @@ -1526,8 +1526,8 @@ int slsDetector::setDynamicRange(int n) { // update speed for usability if (dr == 32) { FILE_LOG(logINFO) << "Setting Clock to Quarter Speed to cope with Dynamic Range of 32"; setClockDivider(RUN_CLOCK, 2); - } else if (dr == 16) { - FILE_LOG(logINFO) << "Setting Clock to Half Speed to cope with Dynamic Range of 16"; setClockDivider(RUN_CLOCK, 1); + } else { + FILE_LOG(logINFO) << "Setting Clock to Full Speed to cope with Dynamic Range of " << dr; setClockDivider(RUN_CLOCK, 0); } }