From 30157d713f59291e7808e209fbb88689d1001864 Mon Sep 17 00:00:00 2001 From: "P.-A. Loizeau" <p.-a.loizeau@gsi.de> Date: Tue, 5 Jul 2022 18:25:49 +0200 Subject: [PATCH] In UnpackConfig templ, make GetUnpacker return native type ptr instead of specialized base ptr --- reco/base/CbmRecoUnpackConfig.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reco/base/CbmRecoUnpackConfig.tmpl b/reco/base/CbmRecoUnpackConfig.tmpl index 6e74e77dca..7072c5fc68 100644 --- a/reco/base/CbmRecoUnpackConfig.tmpl +++ b/reco/base/CbmRecoUnpackConfig.tmpl @@ -172,7 +172,7 @@ public: * In this function also all initialization steps of the unpacker algorithms have to happen. * @return std::shared_ptr<CbmRecoUnpackAlgo> */ - std::shared_ptr<CbmRecoUnpackAlgo<TOutput, TOptOutA, TOptOutB>> GetUnpacker() { return fAlgo; }; + std::shared_ptr<TAlgo> GetUnpacker() { return fAlgo; }; /** * @brief Get the requested parameter containers from the Algo. -- GitLab