diff --git a/Event/PyDumper/python/Dumpers.py b/Event/PyDumper/python/Dumpers.py index df924f27a2fbd70776ffb13e89bb66fa2b456cd0..53450f2afc932f7cbc52e8ef1495090b209bd7a1 100644 --- a/Event/PyDumper/python/Dumpers.py +++ b/Event/PyDumper/python/Dumpers.py @@ -45,7 +45,8 @@ getattr (ROOT.xAOD, 'Jet_v1', None) #Typed nullptr: JetAssociationBase = getattr (cppyy.gbl, 'JetAssociationBase', None) -Muon = getattr (cppyy.gbl, 'Muon', None) +Analysis = getattr (cppyy.gbl, 'Analysis', None) +Muon = getattr (Analysis, 'Muon', None) if Analysis else None jetAssocNull = cppyy.bind_object(cppyy.nullptr, JetAssociationBase) if JetAssociationBase else None muonNull = cppyy.bind_object(cppyy.nullptr, Muon) if Muon else None