ATLAS Offline Software
Loading...
Searching...
No Matches
AthDeviceCompsConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3# Framework import(s).
4from AthenaConfiguration.ComponentFactory import CompFactory
5from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6
7
8def HostCopyToolCfg(flags, **kwargs):
9 '''Default "host side" copy object provider tool
10 '''
11
12 # Create an accumulator to hold the configuration.
13 result = ComponentAccumulator()
14
15 # Create the tool in a simple way.
16 result.setPrivateTools(CompFactory.AthDevice.HostCopyTool(**kwargs))
17
18 # Return the CA.
19 return result