37 if (args.size() != 3) {
39 "probeVariable expects 3 arguments, " + std::to_string(args.size()) +
" given");
42 var_name_ = std::get<std::string>(args[0]);
43 id_ = std::get<double>(args[1]);
51 sim_probe->parseFile();
53 std::cout <<
"Caught exception: " << ex.
what() << std::endl;
57 double sim_value = 0.0;
61 std::cout <<
"Exception while getting value "
62 <<
"from Probe file: " << e.what()
67 return std::make_tuple(sim_value, is_valid);