wip, master attributes
Build on RHEL9 docker image / build (push) Successful in 4m35s
Build on RHEL8 docker image / build (push) Successful in 5m18s
Run Simulator Tests on local RHEL9 / build (push) Failing after 5m59s
Run Simulator Tests on local RHEL8 / build (push) Failing after 7m45s

This commit is contained in:
2026-05-11 17:24:50 +02:00
parent 1608559b4b
commit c9793129db
7 changed files with 98 additions and 1 deletions
@@ -994,6 +994,9 @@ void Implementation::StartMasterWriter() {
masterAttributes.gates = numberOfGates;
masterAttributes.additionalJsonHeader = additionalJsonHeader;
masterAttributes.readoutSpeed = readoutSpeed;
masterAttributes.udpPortEnables = udpPortEnables;
masterAttributes.udpPortType[0] = ToString(udpDataStreamType[0]);
masterAttributes.udpPortType[1] = ToString(udpDataStreamType[1]);
// create master file
masterFileName = dataProcessor[0]->CreateMasterFile(
@@ -1709,6 +1712,11 @@ void Implementation::setUDPDataStream(const portPosition port,
listener[i]->SetUDPDatastream(udpDataStream[i]);
}
void Implementation::updateUDPDatastreamMetadata(
const std::array<std::vector<int>, 2> &portEnables) {
udpPortEnables = portEnables;
}
int Implementation::getReadNRows() const { return readNRows; }
void Implementation::setReadNRows(const int value) {