Skip to content
Snippets Groups Projects
Commit 741e7ac4 authored by Marshall Scott's avatar Marshall Scott
Browse files

Testing multiple benchmarks in same file, fixed comma error

parent 6a161318
No related branches found
No related tags found
No related merge requests found
......@@ -262,7 +262,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection1"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[0], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[0][2]}
{"target", suppression * maxRate[0][2]},
{"value", rejRatios[0][2]}
}
};
......@@ -274,7 +274,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection2"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[0], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[0][3]}
{"target", suppression * maxRate[0][3]},
{"value", rejRatios[0][3]}
}
};
......@@ -286,7 +286,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[1], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[1][2]}
{"target", suppression * maxRate[1][2]},
{"value", rejRatios[1][2]}
}
};
......@@ -298,7 +298,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[1], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[1][3]}
{"target", suppression * maxRate[1][3]},
{"value", rejRatios[1][3]}
}
};
......@@ -310,7 +310,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[2], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[2][2]}
{"target", suppression * maxRate[2][2]},
{"value", rejRatios[2][2]}
}
};
......@@ -322,7 +322,7 @@ void emcal_barrel_pion_rejection_analysis(
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[2], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", suppression * maxRate[2][3]}
{"target", suppression * maxRate[2][3]},
{"value", rejRatios[2][3]}
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment