From 911bfd2123a8c93ad58a9f5f5f422c38e03e2e19 Mon Sep 17 00:00:00 2001 From: feisenhu Date: Sat, 23 May 2026 22:52:10 +0200 Subject: [PATCH] Add b2cc2ll signal to generated output --- PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx b/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx index b6e0118bd15..bbd9f9b77f6 100644 --- a/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx +++ b/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx @@ -454,6 +454,7 @@ struct checkMCPairTemplate { fRegistry.addClone("Generated/ccbar/c2l_c2l/", "Generated/bbbar/b2c2l_b2l_diffb/"); // LS fRegistry.addClone("Generated/ccbar/c2l_c2l/", "Generated/bbbar/b2cc2l_b2c2l/"); fRegistry.addClone("Generated/ccbar/c2l_c2l/", "Generated/bbbar/b2cc2l_b2cc2l/"); + fRegistry.addClone("Generated/ccbar/c2l_c2l/", "Generated/bbbar/b2cc2ll/"); // for charmed hadrons // create 28 combinations static constexpr std::string_view charmed_mesons[] = {"Dplus", "D0", "Dsplus"}; // 411, 421, 431 @@ -2518,6 +2519,9 @@ struct checkMCPairTemplate { case static_cast(EM_HFeeType::kBCCe_BCCe): fillGenHistograms<21>(sign1, sign2, mp1.pdgCode(), mp2.pdgCode(), v12.M(), v12.Pt(), weight); // b2cc2l_b2cc2l break; + case static_cast(EM_HFeeType::kBCCee): + fillGenHistograms<22>(sign1, sign2, mp1.pdgCode(), mp2.pdgCode(), v12.M(), v12.Pt(), weight); // b2cc2ll + break; default: break; }