Skip to content
Snippets Groups Projects

More fixes for RNTuple leaving ROOT.Experimental namespace ATEAM-1028

Merged Marcin Nowak requested to merge mnowak/athena:fix.more.Experimental.RNTuple into main
2 files
+ 5
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -14,7 +14,8 @@ import logging
from PyUtils import RootUtils
ROOT = RootUtils.import_root()
from ROOT import TFile, TTree, TDirectory, TStopwatch
from ROOT.Experimental import RNTuple, RNTupleReader
from ROOT.Experimental import RNTupleReader
from PyUtils.PoolFile import isRNTuple
msg = logging.getLogger(__name__)
@@ -183,7 +184,7 @@ def checkDirectory(directory, the_type, requireTree, depth):
msg.debug('Tree %s looks ok.', the_object.GetName())
if isinstance(the_object,RNTuple):
if isRNTuple(the_object):
msg.debug('Checking ntuple of key %s ...', key.GetName())
Loading