removed unused function readDataFile/writeDataFile (#1456)
Build on RHEL9 docker image / build (push) Successful in 4m0s
Build on RHEL8 docker image / build (push) Successful in 4m54s
Build and Deploy on local RHEL9 / build (push) Successful in 2m7s
Build and Deploy on local RHEL8 / build (push) Successful in 5m4s
Run Simulator Tests on local RHEL9 / build (push) Successful in 18m18s
Run Simulator Tests on local RHEL8 / build (push) Successful in 21m52s

* removed unused function readDataFile/writeDataFile

* release notes
This commit is contained in:
Erik Fröjdh
2026-05-12 12:01:09 +02:00
committed by GitHub
parent 6044298374
commit d94c0d0e72
3 changed files with 2 additions and 93 deletions
-27
View File
@@ -11,37 +11,10 @@
namespace sls {
/**
* @param data array of data values
* @param nch number of channels
* @param offset start channel value
*/
int readDataFile(std::ifstream &infile, short int *data, int nch,
int offset = 0);
/**
* @param data array of data value
* @param nch number of channels
*/
int readDataFile(std::string fname, short int *data, int nch);
std::vector<char> readBinaryFile(const std::string &fname,
const std::string &errorPrefix);
/**
* @param nch number of channels
* @param data array of data values
* @param offset start channel number
*/
int writeDataFile(std::ofstream &outfile, int nch, short int *data,
int offset = 0);
/**
* @param nch number of channels
* @param data array of data values
*/
int writeDataFile(std::string fname, int nch, short int *data);
// mkdir -p path implemented by recursive calls
void mkdir_p(const std::string &path, std::string dir = "");