From 8715c52c1c8b3c714d80896cb8540f3f8f888786 Mon Sep 17 00:00:00 2001 From: Andre Sailer Date: Fri, 25 Aug 2023 13:31:56 +0200 Subject: [PATCH] WebDisplay: RGeomViewer is no longer experimental --- DDEve/root7/WebDisplay.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/DDEve/root7/WebDisplay.cpp b/DDEve/root7/WebDisplay.cpp index 27975f98f..57e835fbf 100644 --- a/DDEve/root7/WebDisplay.cpp +++ b/DDEve/root7/WebDisplay.cpp @@ -19,7 +19,11 @@ #include "ROOT/RDirectory.hxx" #if ROOT_VERSION_CODE >= ROOT_VERSION(6,27,00) #include "ROOT/RGeomViewer.hxx" -using GEOM_VIEWER = ROOT::Experimental::RGeomViewer; +# if ROOT_VERSION_CODE >= ROOT_VERSION(6,29,00) + using GEOM_VIEWER = ROOT::RGeomViewer; +# else + using GEOM_VIEWER = ROOT::Experimental::RGeomViewer; +# endif #else #include "ROOT/REveGeomViewer.hxx" using GEOM_VIEWER = ROOT::Experimental::REveGeomViewer;