ATLAS Offline Software
Loading...
Searching...
No Matches
RDBAccessSvcConfig.py
Go to the documentation of this file.
2# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5from AthenaConfiguration.ComponentFactory import CompFactory
6
7def RDBAccessSvcCfg(flags, name="RDBAccessSvc", **kwargs):
8 result = ComponentAccumulator()
9 result.addService(CompFactory.RDBAccessSvc(name,**kwargs), primary=True)
10 return result
RDBAccessSvcCfg(flags, name="RDBAccessSvc", **kwargs)