From b03f4ba3516910eee617112bcf8bfa9846f73950 Mon Sep 17 00:00:00 2001 From: Lucamicheletti93 Date: Mon, 12 Jan 2026 15:48:04 +0100 Subject: [PATCH] Fixing issue MC signal for non prompt J/psi --- PWGDQ/Core/MCSignalLibrary.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PWGDQ/Core/MCSignalLibrary.cxx b/PWGDQ/Core/MCSignalLibrary.cxx index 6c7b88492c9..c1c2380c3a4 100644 --- a/PWGDQ/Core/MCSignalLibrary.cxx +++ b/PWGDQ/Core/MCSignalLibrary.cxx @@ -193,7 +193,8 @@ MCSignal* o2::aod::dqmcsignals::GetMCSignal(const char* name) return signal; } if (!nameStr.compare("nonPromptJpsiFromBeauty")) { - MCProng prong(2, {443, 503}, {true, true}, {false, false}, {0, 0}, {0, 0}, {false, false}); + MCProng prong(2, {503, 443}, {true, true}, {false, false}, {0, 0}, {0, 0}, {false, false}); + prong.SetSignalInTime(true); signal = new MCSignal(name, "Non-prompt jpsi directly from beauty", {prong}, {-1}); return signal; }