receiver: readout flag bug fix, clent:send roi for ctb and moench

This commit is contained in:
2019-03-06 10:55:51 +01:00
parent d3c1193a71
commit 2676e8b43d
3 changed files with 18 additions and 15 deletions

View File

@ -69,7 +69,7 @@ void slsReceiverImplementation::InitializeMembers() {
flippedData[0] = 0;
flippedData[1] = 0;
gapPixelsEnable = false;
readoutFlags = NORMAL_READOUT;
readoutFlags = GET_READOUT_FLAGS;
//*** receiver parameters ***
numThreads = 1;
@ -457,7 +457,7 @@ int slsReceiverImplementation::setReadOutFlags(const readOutFlags f) {
}
std::string flag;
if (f == NORMAL_READOUT)
flag = "none";
flag = "normal(analog, no digital)";
else if (f & STORE_IN_RAM)
flag.append("storeinram ");
if (f & TOT_MODE)