From 7e682f9fbe3e52ade3b018ef5d837ef444fdc953 Mon Sep 17 00:00:00 2001 From: aferrero2707 Date: Tue, 8 Apr 2025 09:18:26 +0200 Subject: [PATCH] [MFT] read track covariances from AO2Ds The "EXMFTTRACKCOV" table needs to be added to the aodSpawnerCallback() in order to load the MFT tracks covariances from the AO2Ds. --- Framework/Core/src/AODReaderHelpers.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Framework/Core/src/AODReaderHelpers.cxx b/Framework/Core/src/AODReaderHelpers.cxx index c413f2520919d..cd88dfad2152b 100644 --- a/Framework/Core/src/AODReaderHelpers.cxx +++ b/Framework/Core/src/AODReaderHelpers.cxx @@ -192,6 +192,8 @@ AlgorithmSpec AODReaderHelpers::aodSpawnerCallback(std::vector& reque } else if (version == 1U) { outputs.adopt(Output{origin, description, version}, make_spawn>(input, pc)); } + } else if (description == header::DataDescription{"EXMFTTRACKCOV"}) { + outputs.adopt(Output{origin, description, version}, make_spawn>(input, pc)); } else if (description == header::DataDescription{"EXFWDTRACK"}) { outputs.adopt(Output{origin, description, version}, make_spawn>(input, pc)); } else if (description == header::DataDescription{"EXFWDTRACKCOV"}) {