Merge branch 'developer' of github.com:slsdetectorgroup/slsDetectorPackage into dev/matterhorn_server_funcs

This commit is contained in:
2026-06-29 10:14:02 +02:00
54 changed files with 3700 additions and 2363 deletions
+11 -6
View File
@@ -847,10 +847,13 @@ void Implementation::shutDownUDPSockets() {
it->ShutDownUDPSocket();
}
void Implementation::restreamStop() {
for (const auto &it : dataStreamer)
it->RestreamStop();
LOG(logINFO) << "Restreaming Dummy Header via ZMQ successful";
void Implementation::streamRxDummyHeader() {
std::string fnametostream = (filePath / fileName).string();
for (const auto &it : dataStreamer) {
it->SetFileName(fnametostream);
it->StreamRxDummyHeader();
}
LOG(logINFO) << "Streaming Dummy Header via ZMQ successful";
}
void Implementation::ResetParametersforNewAcquisition() {
@@ -861,8 +864,10 @@ void Implementation::ResetParametersforNewAcquisition() {
if (dataStreamEnable) {
std::string fnametostream = (filePath / fileName).string();
for (const auto &it : dataStreamer)
it->ResetParametersforNewAcquisition(fnametostream);
for (const auto &it : dataStreamer) {
it->ResetParametersforNewAcquisition();
it->SetFileName(fnametostream);
}
}
}