From 0cff1e6c4cbdf756212edfdf290e871cd169125c Mon Sep 17 00:00:00 2001 From: matta <matta@npt> Date: Mon, 15 Nov 2010 17:34:51 +0000 Subject: [PATCH] * Fixing problem on TagManager class - Explicite constructor and destructor implementation were needed by root to allow the .so librairy to be load - Class as been tested in a Macro and is now working - Test on a tree to be perform --- NPLib/Tools/NPTagManager.cxx | 5 +++++ NPLib/Tools/NPTagManager.h | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/NPLib/Tools/NPTagManager.cxx b/NPLib/Tools/NPTagManager.cxx index f041122b8..51be7299b 100644 --- a/NPLib/Tools/NPTagManager.cxx +++ b/NPLib/Tools/NPTagManager.cxx @@ -28,6 +28,11 @@ ClassImp(NPTagManager) +//////////////////////////////////////////// +NPTagManager::NPTagManager() {} +NPTagManager::~NPTagManager(){} + + //////////////////////////////////////////// bool NPTagManager::Is(string condition) { diff --git a/NPLib/Tools/NPTagManager.h b/NPLib/Tools/NPTagManager.h index 272f1e697..8e12aef99 100644 --- a/NPLib/Tools/NPTagManager.h +++ b/NPLib/Tools/NPTagManager.h @@ -37,7 +37,6 @@ using namespace std; class NPTagManager : public TObject { - public: NPTagManager(); ~NPTagManager(); -- GitLab