diff --git a/slsDetectorSoftware/multiSlsDetector/multiSlsDetector.cpp b/slsDetectorSoftware/multiSlsDetector/multiSlsDetector.cpp index f05bd31e9..5ac484452 100644 --- a/slsDetectorSoftware/multiSlsDetector/multiSlsDetector.cpp +++ b/slsDetectorSoftware/multiSlsDetector/multiSlsDetector.cpp @@ -1755,10 +1755,14 @@ int multiSlsDetector::setDynamicRange(int n, int pos){ //for usability for the user if (getDetectorsType() == EIGER){ - if(thisMultiDetector->dataBytes == 32) + if(thisMultiDetector->dataBytes == 32){ + std::cout << "Setting Clock to Quarter Speed to cope with Dynamic Range of 32" << std::endl; setSpeed(CLOCK_DIVIDER,2); - else if(thisMultiDetector->dataBytes == 16) + } + else if(thisMultiDetector->dataBytes == 16){ + std::cout << "Setting Clock to Half Speed for Dynamic Range of 16" << std::endl; setSpeed(CLOCK_DIVIDER,1); + } } return thisMultiDetector->dataBytes;