From b5a54039a7387bc5e4852deaae5d2ea8d24c3b85 Mon Sep 17 00:00:00 2001 From: shahoian Date: Sun, 11 May 2025 15:37:02 +0200 Subject: [PATCH] Fix typo in the RecoContainer::getTrackTimeTPCTRD Thanks for Felix for spotting --- DataFormats/Detectors/GlobalTracking/src/RecoContainer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataFormats/Detectors/GlobalTracking/src/RecoContainer.cxx b/DataFormats/Detectors/GlobalTracking/src/RecoContainer.cxx index 39cc05d8a69e7..d4b4e2b89cbb0 100644 --- a/DataFormats/Detectors/GlobalTracking/src/RecoContainer.cxx +++ b/DataFormats/Detectors/GlobalTracking/src/RecoContainer.cxx @@ -1594,7 +1594,7 @@ void RecoContainer::getTrackTimeITSTPCTRD(GTrackID gid, float& t, float& tErr) c //________________________________________________________ void RecoContainer::getTrackTimeTPCTRD(GTrackID gid, float& t, float& tErr) const { - const auto trigTPCTRD = getITSTPCTRDTriggers(); + const auto trigTPCTRD = getTPCTRDTriggers(); // very slow: find the trigger this track belongs to for (const auto& trig : trigTPCTRD) { if (trig.getTrackRefs().getEntriesBound() > gid.getIndex()) {