mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-22 17:47:59 +02:00
ctb:separated analog and digital samples in server and send analog and digital data packed separately per frame to reciever
This commit is contained in:
@ -284,7 +284,8 @@ void multiSlsDetector::initSharedMemory(bool verify) {
|
||||
<< ") version mismatch "
|
||||
"(expected 0x"
|
||||
<< std::hex << MULTI_SHMVERSION << " but got 0x"
|
||||
<< multi_shm()->shmversion << std::dec;
|
||||
<< multi_shm()->shmversion << std::dec
|
||||
<< ". Clear Shared memory to continue.";
|
||||
throw SharedMemoryError("Shared memory version mismatch!");
|
||||
}
|
||||
}
|
||||
@ -1080,10 +1081,6 @@ int64_t multiSlsDetector::setTimer(timerIndex index, int64_t t, int detPos) {
|
||||
auto r = parallelCall(&slsDetector::setTimer, index, t);
|
||||
int64_t ret = sls::minusOneIfDifferent(r);
|
||||
|
||||
if (index == SAMPLES) {
|
||||
setDynamicRange();
|
||||
}
|
||||
|
||||
// set progress
|
||||
if (t != -1) {
|
||||
switch (index) {
|
||||
|
Reference in New Issue
Block a user