mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-24 23:30:03 +02:00
bugfix: high fifo depth more than 32 bit
This commit is contained in:
parent
a0208778c1
commit
e527aad6ab
@ -193,9 +193,9 @@ void Implementation::SetupFifoStructure() {
|
||||
}
|
||||
|
||||
FILE_LOG(logINFO) << "Memory Allocated Per Fifo: "
|
||||
<< (double)(((generalData->imageSize) +
|
||||
(generalData->fifoBufferHeaderSize)) *
|
||||
fifoDepth) / (1000.00 * 1000.00)
|
||||
<< (double)(((size_t)(generalData->imageSize) +
|
||||
(size_t)(generalData->fifoBufferHeaderSize)) *
|
||||
(size_t)fifoDepth) / (1000.00 * 1000.00)
|
||||
<< " Mb";
|
||||
FILE_LOG(logINFO) << numThreads << " Fifo structure(s) reconstructed";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user