fixing the 32 bit crash and empty plot using zmq

This commit is contained in:
Dhanya Maliakal
2016-11-21 12:02:45 +01:00
parent 9d106f6c93
commit 0ed9ee0e5d
4 changed files with 18 additions and 31 deletions

View File

@ -4940,7 +4940,7 @@ double* slsDetector::decodeData(int *datain, double *fdata) {
}
}
for (ichan=0; ichan<nch; ichan++) {
dataout[ichan]=ival;
dataout[ichan]=datain[ichan];
}
}
}
@ -4955,7 +4955,6 @@ double* slsDetector::decodeData(int *datain, double *fdata) {
std::cout<< "decoded "<< ichan << " channels" << std::endl;
#endif
return dataout;
}