rawmerger: write_table_all() for direct csv output of merged table

This commit is contained in:
Mario Fink
2020-08-13 16:01:54 +02:00
parent 0bd96a1426
commit 4ce51b55c7
4 changed files with 10 additions and 2 deletions

View File

@@ -296,7 +296,7 @@ public:
}
// print all data to file
void write_table(std::string filename, char delimiter = ',', int precision = 6, int width = 25)
void write_table_all(std::string filename, char delimiter = ',', int precision = 6, int width = 25)
{
// if at least one channel including its time series is present
if ( timeseries_.size() > 0 && channels_.size() > 0 )