Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Control/AthenaCommon/python/Constants.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2 
3 # File: AthenaCommon/python/Constants.py
4 # Author: Wim Lavrijsen (WLavrijsen@lbl.gov)
5 
6 """Useful/conventional constants."""
7 
8 __all__ = [ 'ALL', 'VERBOSE', 'DEBUG', 'INFO', 'WARNING', 'ERROR', 'FATAL' ]
9 
10 
11 
12 ALL = 0
13 VERBOSE = 1
14 DEBUG = 2
15 INFO = 3
16 WARNING = 4
17 ERROR = 5
18 FATAL = 6