ATLAS Offline Software
Loading...
Searching...
No Matches
JetValidationConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3'''@file JetValidationConfig.py
4@author N.Pettersson
5@date 2022-07-04
6@brief Main CA-based python configuration for JetValidation
7'''
8
9def PhysValJetCfg(flags, **kwargs):
10 kwargs.setdefault("EnableLumi", False)
11 from AthenaCommon.Constants import WARNING
12 kwargs.setdefault("OutputLevel", WARNING)
13 kwargs.setdefault("DetailLevel", 10)
14
15 from JetValidation.JetValidationToolsConfig import PhysValJetToolCfg
16 return PhysValJetToolCfg(flags, **kwargs)