From 048f96a306cb726517aca23e1e015544a1c92560 Mon Sep 17 00:00:00 2001 From: feisenhu Date: Fri, 13 Feb 2026 14:11:46 +0100 Subject: [PATCH] Add fillRec for b2cc2l histograms in checkMCPairTemplates --- PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx b/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx index d13a75eb9b8..2bb262c9837 100644 --- a/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx +++ b/PWGEM/Dilepton/Tasks/checkMCPairTemplate.cxx @@ -2146,6 +2146,12 @@ struct checkMCPairTemplate { case static_cast(EM_HFeeType::kBCe_Be_DiffB): fillRecHistograms<19>(t1.sign(), t2.sign(), mp1.pdgCode(), mp2.pdgCode(), v12.M(), v12.Pt(), pair_dca, weight); // b2c2l_b2l_diffb break; + case static_cast(EM_HFeeType::kBCCe_BCe): + fillRecHistograms<20>(t1.sign(), t2.sign(), mp1.pdgCode(), mp2.pdgCode(), v12.M(), v12.Pt(), pair_dca, weight); // b2cc2l_b2c2l + break; + case static_cast(EM_HFeeType::kBCCe_BCCe): + fillRecHistograms<21>(t1.sign(), t2.sign(), mp1.pdgCode(), mp2.pdgCode(), v12.M(), v12.Pt(), pair_dca, weight); // b2cc2l_b2cc2l + break; default: break; }