mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00
Merge branch 'developer' into jsonmaster
This commit is contained in:
commit
03d2158472
@ -57,6 +57,7 @@ This document describes the differences between v7.0.0 and v6.x.x
|
|||||||
- ctb: can set names for all the dacs
|
- ctb: can set names for all the dacs
|
||||||
- fpga/kernel programming, checks if drive is a special file and not a normal file
|
- fpga/kernel programming, checks if drive is a special file and not a normal file
|
||||||
- gotthard 25 um image reconstructed in gui and virtual hdf5 (firmware updated for slave to reverse channels)
|
- gotthard 25 um image reconstructed in gui and virtual hdf5 (firmware updated for slave to reverse channels)
|
||||||
|
- fixed bug introduced in 6.0.0: hdf5 files created 1 file per frame after the initial file which had maxframesperfile
|
||||||
|
|
||||||
2. Resolved Issues
|
2. Resolved Issues
|
||||||
==================
|
==================
|
||||||
|
@ -72,7 +72,7 @@ void BinaryDataFile::WriteToFile(char *buffer, const int buffersize,
|
|||||||
++subFileIndex_;
|
++subFileIndex_;
|
||||||
CreateFile();
|
CreateFile();
|
||||||
}
|
}
|
||||||
numFramesInFile_++;
|
++numFramesInFile_;
|
||||||
|
|
||||||
// write to file
|
// write to file
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
@ -128,7 +128,7 @@ void HDF5DataFile::CreateFirstHDF5DataFile(
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HDF5DataFile::CreateFile() {
|
void HDF5DataFile::CreateFile() {
|
||||||
|
numFramesInFile_ = 0;
|
||||||
numFilesInAcquisition_++;
|
numFilesInAcquisition_++;
|
||||||
|
|
||||||
std::ostringstream os;
|
std::ostringstream os;
|
||||||
@ -237,7 +237,7 @@ void HDF5DataFile::WriteToFile(char *buffer, const int buffersize,
|
|||||||
++subFileIndex_;
|
++subFileIndex_;
|
||||||
CreateFile();
|
CreateFile();
|
||||||
}
|
}
|
||||||
numFramesInFile_++;
|
++numFramesInFile_;
|
||||||
|
|
||||||
// extend dataset (when receiver start followed by many status starts
|
// extend dataset (when receiver start followed by many status starts
|
||||||
// (jungfrau)))
|
// (jungfrau)))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user