ATLAS Offline Software
xAODIso.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2 
3 # Make sure that the dictionary is loaded.
4 import ROOT
5 
6 # Declare the xAODIso type.
7 xAODIso = ROOT.xAOD.Iso
8 
9 # pull in the IsolationType enum dictionary by name - it makes the enum names
10 # visible directly in the Iso namespace
11 from ROOT.xAOD.Iso import IsolationType # noqa: F401