cepgen is hosted by Hepforge, IPPP Durham
CepGen 1.2.5
Central exclusive processes event generator
Loading...
Searching...
No Matches
logger_cfi.py
Go to the documentation of this file.
6
7from .containers_cff import Parameters
8
9
10class Logging:
11 """Logging verbosity"""
12 Nothing = 0
13 Error = 1
14 Warning = 2
15 Information = 3
16 Debug = 4
17 DebugInsideLoop = 5
18
19
20logger = Parameters(
21 level = Logging.Information,
22 enabledModules = tuple()
23)
A raw list of steering parameters.