From 2d7679458888e53acdcbd5f3df04bbd83888f8ca Mon Sep 17 00:00:00 2001 From: mvolkl <38325723+mvolkl@users.noreply.github.com> Date: Thu, 3 Jul 2025 14:17:31 +0100 Subject: [PATCH 1/2] Fixed typo in cut variable name in HfHelper.h --- PWGHF/Core/HfHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGHF/Core/HfHelper.h b/PWGHF/Core/HfHelper.h index 078b68ac8e8..c67f73e56a9 100644 --- a/PWGHF/Core/HfHelper.h +++ b/PWGHF/Core/HfHelper.h @@ -1206,7 +1206,7 @@ class HfHelper } // Lc pt - if (ptLc < cuts->get(pTBin, "pT Lc")) { + if (ptLc < cuts->get(pTBin, "pT Lc+")) { return false; } From 940ddf4aaefc813bf8dedacbf97cb4c26b835d06 Mon Sep 17 00:00:00 2001 From: mvolkl <38325723+mvolkl@users.noreply.github.com> Date: Fri, 4 Jul 2025 09:35:17 +0100 Subject: [PATCH 2/2] Fixed another typo in Lb selection in HfHelper.h --- PWGHF/Core/HfHelper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWGHF/Core/HfHelper.h b/PWGHF/Core/HfHelper.h index c67f73e56a9..41239c48179 100644 --- a/PWGHF/Core/HfHelper.h +++ b/PWGHF/Core/HfHelper.h @@ -1236,7 +1236,7 @@ class HfHelper } // d0 of Lc - if (std::abs(candLb.impactParameter0()) < cuts->get(pTBin, "d0 Lc")) { + if (std::abs(candLb.impactParameter0()) < cuts->get(pTBin, "d0 Lc+")) { return false; }