ATLAS Offline Software
Loading...
Searching...
No Matches
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
12ALL = 0
13VERBOSE = 1
14DEBUG = 2
15INFO = 3
16WARNING = 4
17ERROR = 5
18FATAL = 6