Skip to content

Commit

Permalink
WebDisplay: RGeomViewer is no longer experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
andresailer committed Aug 25, 2023
1 parent 310736d commit 8715c52
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion DDEve/root7/WebDisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8715c52

Please sign in to comment.