37 rapidjson::Value& padIndices =
data.document()[
"channels"];
42 for (
auto& tp : padIndices.GetArray()) {
44 int detElemId = tp[
"de"].GetInt();
45 bool isBendingPlane = (tp[
"bending"].GetString() == std::string(
"true"));
46 int refPadIndex = tp[
"padindex"].GetInt();
50 seg.findPadPairByPosition(tp[
"x"].GetDouble(), tp[
"y"].GetDouble(), bpad, nbpad);
52 if (padIndex != refPadIndex) {
54 std::cout << fmt::format(
">>> {} : Expected index = {} but got {}\n", filepath.c_str(), refPadIndex, padIndex);
63 std::cout << fmt::format(
"\n{} : {} pad indices error(s) over {} tested pads\n\n", filepath.c_str(), nbad, ntested);
65 std::cout << fmt::format(
"\n{} : the indices of all tested {} pads are OK\n\n", filepath.c_str(), ntested);
70int main(
int argc,
char** argv)
72 std::string filePattern;
73 std::vector<int> deIds;
75 po::options_description
generic(
"Generic options");
79 (
"help,h",
"produce help message")
80 (
"filepattern,p", po::value<std::string>(&filePattern)->required(),
"input file pattern")
81 (
"de,d",po::value<std::vector<int>>(&deIds)->multitoken(),
"detection element")
85 po::options_description cmdline;
88 po::store(po::command_line_parser(argc, argv).options(cmdline).run(), vm);
90 if (vm.count(
"help")) {
91 std::cout <<
generic <<
"\n";
97 }
catch (boost::program_options::error& e) {
98 std::cout <<
"Error: " << e.what() <<
"\n";
104 for (
auto de : deIds) {
105 std::string filepath(fmt::format(fmt::runtime(filePattern),
de));
106 std::ifstream in(filepath);
108 std::cout <<
"Cannot open " << filepath <<
"\n";