File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -893,7 +893,8 @@ struct Pi0EtaToGammaGamma {
893893
894894 float alpha_meson = std::fabs (g1.e () - g2.e ()) / (g1.e () + g2.e ());
895895 float alpha_cut = 999 .f ;
896- switch (cfgAlphaMesonCut) {
896+ AlphaMesonCutOption alpha_meson_cut = static_cast <AlphaMesonCutOption>(cfgAlphaMesonCut.value );
897+ switch (alpha_meson_cut) {
897898 case AlphaMesonCutOption::Off:
898899 break ;
899900 case AlphaMesonCutOption::SpecificValue:
Original file line number Diff line number Diff line change @@ -685,7 +685,8 @@ struct Pi0EtaToGammaGammaMC {
685685
686686 float alpha_meson = std::fabs (g1.e () - g2.e ()) / (g1.e () + g2.e ());
687687 float alpha_cut = 999 .f ;
688- switch (cfgAlphaMesonCut) {
688+ AlphaMesonCutOption alpha_meson_cut = static_cast <AlphaMesonCutOption>(cfgAlphaMesonCut.value );
689+ switch (alpha_meson_cut) {
689690 case AlphaMesonCutOption::Off:
690691 break ;
691692 case AlphaMesonCutOption::SpecificValue:
You can’t perform that action at this time.
0 commit comments