ATLAS Offline Software
InDetAlignGenToolsConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 def ITkAlignDBTool(flags, name="ITkAlignDBTool",setAlignmentFolderName="/Indet/AlignITk", **kwargs):
8  kwargs.setdefault("PixelManager","ITkPixel")
9  kwargs.setdefault("SCT_Manager","ITkStrip")
10  kwargs.setdefault("DBRoot",setAlignmentFolderName)
11  acc.setPrivateTools(CompFactory.InDetAlignDBTool(name,**kwargs))
12  return acc
13 
14 def InDetAlignDBTool(flags, name="InDetAlignDBTool", **kwargs):
15  acc = ComponentAccumulator()
16  acc.setPrivateTools(CompFactory.InDetAlignDBTool(name,**kwargs))
17  return acc
InDetAlignGenToolsConfig.ITkAlignDBTool
def ITkAlignDBTool(flags, name="ITkAlignDBTool", setAlignmentFolderName="/Indet/AlignITk", **kwargs)
Definition: InDetAlignGenToolsConfig.py:6
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
InDetAlignGenToolsConfig.InDetAlignDBTool
def InDetAlignDBTool(flags, name="InDetAlignDBTool", **kwargs)
Definition: InDetAlignGenToolsConfig.py:14