ATLAS Offline Software
PathResolver.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 """
3 Python bindings to the C++ PathResolver. Usage:
4 >>> from PathResolver import PathResolver
5 >>> PathResolver.FindCalibFile("blah")
6 
7 In general, it is preferred to use the Python-implementation from AthenaCommon.Utils.unixtools.
8 """
9 
10 import ROOT
11 FindCalibFile = ROOT.PathResolver.FindCalibFile
12 FindCalibDirectory = ROOT.PathResolver.FindCalibDirectory
13 SetOutputLevel = ROOT.PathResolver.SetOutputLevel