Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gemc/gstreamer/factories/CSV/event/publishDigitized.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ bool GstreamerCsvFactory::publishEventDigitizedDataImpl(const std::string&
for (const auto& [variableName, value] : dmap) {
ofile_digitized << value;
if (++i < total) ofile_digitized << ", ";
else ofile_digitized << "\n";
}
ofile_digitized << "\n";
}
}

Expand Down
2 changes: 1 addition & 1 deletion gemc/gstreamer/factories/CSV/event/publishTrueInfo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ bool GstreamerCsvFactory::publishEventTrueInfoDataImpl(const std::string&
for (const auto& [variableName, value] : dmap) {
ofile_true_info << value;
if (++i < total) ofile_true_info << ", ";
else ofile_true_info << "\n";
}
ofile_true_info << "\n";
}
}

Expand Down
2 changes: 1 addition & 1 deletion gemc/gstreamer/factories/CSV/run/publishDigitized.cc
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ bool GstreamerCsvFactory::publishRunDigitizedDataImpl(const std::string&
for (const auto& [variableName, value] : dmap) {
ofile_digitized << value;
if (++i < total) ofile_digitized << ", ";
else ofile_digitized << "\n";
}
ofile_digitized << "\n";
}
}

Expand Down