From 4e01e714ab98fabb3abc8edb0dd860234a0a1232 Mon Sep 17 00:00:00 2001
From: Jean Yves Beaucamp <jean.yves.beaucamp@cern.ch>
Date: Tue, 5 Nov 2024 01:45:35 +0100
Subject: [PATCH] Fix for the TauGNN implementation

Fix for the TauGNN implementation
---
 Reconstruction/tauRecTools/Root/TauGNN.cxx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Reconstruction/tauRecTools/Root/TauGNN.cxx b/Reconstruction/tauRecTools/Root/TauGNN.cxx
index 08dfdc7fac4e..a0603fa2957b 100644
--- a/Reconstruction/tauRecTools/Root/TauGNN.cxx
+++ b/Reconstruction/tauRecTools/Root/TauGNN.cxx
@@ -14,7 +14,8 @@
 
 TauGNN::TauGNN(const std::string &nnFile, const Config &config):
     asg::AsgMessaging("TauGNN"),
-    m_onnxUtil(std::make_shared<FlavorTagDiscriminants::OnnxUtil>(nnFile))
+    m_onnxUtil(std::make_shared<FlavorTagDiscriminants::OnnxUtil>(nnFile)),
+    m_config{config}
   {
     //==================================================//
     // This part is ported from FTagDiscriminant GNN.cxx//
-- 
GitLab