Added run experiment function

This commit is contained in:
jupfi 2024-02-08 15:23:16 +01:00
parent a905f258e2
commit 34a18f2a88

View file

@ -648,48 +648,25 @@ double Modfunction(double argument, int mode) {
return retval;
}
int main(int argc, char **argv) {
int run_experiment(LimeConfig_t LimeCfg, std::vector<Config2HDFattr_t> &HDFattrVector) {
/* Run the experiment
@param LimeCfg: LimeConfig_t struct
@param Config2HDFattr_t: HDFattr_t struct
@param device: lms_device_t struct
@return int: 0 if successful, -1 if not
*/
std::ostringstream stringstream;
const double pi = acos(-1);
std::ostringstream stringstream;
int Npulses = 2; // default number of pulses
// check if nPulses has been given as argument, so that all the arrays are
// initialized with proper size
for (int ii_arg = 1; ii_arg < argc; ii_arg++) {
if (strcmp(argv[ii_arg], "-npu") == 0 && ii_arg + 1 < argc) {
Npulses = atoi(argv[ii_arg + 1]);
break;
}
}
// Initialize the LimeConfig_t struct
LimeConfig_t LimeCfg = initializeLimeConfig(Npulses, stringstream);
// Getting HDF Attributes from dedicated function
std::vector<Config2HDFattr_t> HDFattrVector = getHDFAttributes(LimeCfg);
size_t no_of_attr = HDFattrVector.size();
bool dumpFlag = false;
// Converting to array to maintain compatibility with older code
Config2HDFattr_t HDFattr[no_of_attr];
std::copy(HDFattrVector.begin(), HDFattrVector.end(), HDFattr);
// Checking for dump flag
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "--dump") == 0) {
dumpFlag = true;
}
}
// If dump flag is set, dump the config and exit
if (dumpFlag) {
dumpConfig(HDFattrVector);
std::exit(0);
}
// Parse command line arguments
if (parseArguments(argc, argv, LimeCfg, HDFattrVector) != 0) {
return 1;
}
// check directory first
if (makePath(LimeCfg.save_path) == 0) {
@ -698,10 +675,6 @@ int main(int argc, char **argv) {
return 1;
}
// Converting to array to maintain compatibility with older code
Config2HDFattr_t HDFattr[no_of_attr];
std::copy(HDFattrVector.begin(), HDFattrVector.end(), HDFattr);
// Find devices
int n;
lms_info_str_t list[8]; // should be large enough to hold all detected devices
@ -1919,4 +1892,53 @@ DC_Q << endl;
LMS_Close(device);
return 0;
}
int main(int argc, char **argv) {
const double pi = acos(-1);
std::ostringstream stringstream;
int Npulses = 2; // default number of pulses
// check if nPulses has been given as argument, so that all the arrays are
// initialized with proper size
for (int ii_arg = 1; ii_arg < argc; ii_arg++) {
if (strcmp(argv[ii_arg], "-npu") == 0 && ii_arg + 1 < argc) {
Npulses = atoi(argv[ii_arg + 1]);
break;
}
}
// Initialize the LimeConfig_t struct
LimeConfig_t LimeCfg = initializeLimeConfig(Npulses, stringstream);
// Getting HDF Attributes from dedicated function
std::vector<Config2HDFattr_t> HDFattrVector = getHDFAttributes(LimeCfg);
size_t no_of_attr = HDFattrVector.size();
bool dumpFlag = false;
// Checking for dump flag
for (int i = 1; i < argc; ++i) {
if (strcmp(argv[i], "--dump") == 0) {
dumpFlag = true;
}
}
// If dump flag is set, dump the config and exit
if (dumpFlag) {
dumpConfig(HDFattrVector);
std::exit(0);
}
// Parse command line arguments
if (parseArguments(argc, argv, LimeCfg, HDFattrVector) != 0) {
return 1;
}
run_experiment(LimeCfg, HDFattrVector);
}