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

Fixed fmt issue

parent e0492e19
Branches
No related tags found
No related merge requests found
This commit is part of merge request !49. Comments created here will be created in the context of that merge request.
......@@ -255,7 +255,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E18_Eta2{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[0], etaTitle[2])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[0], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[0][2])}}
};
......@@ -265,7 +265,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E18_Eta3{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[0], etaTitle[3])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[0], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[0][3])}}
};
......@@ -275,7 +275,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E10_Eta2{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[1], etaTitle[2])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[1], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[1][2])}}
};
......@@ -285,7 +285,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E10_Eta3{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[1], etaTitle[3])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[1], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[1][3])}}
};
......@@ -295,7 +295,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E5_Eta2{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[2], etaTitle[2])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[2], etaTitle[2])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[2][2])}}
};
......@@ -305,7 +305,7 @@ void emcal_barrel_pion_rejection_analysis(
eic::util::Test pion_rejection_E5_Eta3{
{{"name", fmt::format("{}_E{}_EtaBin{}", test_tag)},
{"title", "Pion Rejection"},
{"description", fmt::format("Pion rejection with E = {}, and {}", E[2], etaTitle[3])},
{"description", fmt::format("Pion rejection with E = {}, and {}", (int)E[2], etaTitle[3])},
{"quantity", "pi-/e-"},
{"target", std::to_string(rejRatios[2][3])}}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment