ATLAS Offline Software
ActsMuonDetectorCfg.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 
5 def MuonBlueprintNodeBuilderCfg(flags, name = "MuonBlueprintNodeBuilder", **kwargs):
6  result = ComponentAccumulator()
7  from MuonGeoModelR4.MuonGeoModelConfig import MuonGeoModelCfg
8  result.merge(MuonGeoModelCfg(flags))
9  the_tool = CompFactory.ActsTrk.MuonBlueprintNodeBuilder(name, **kwargs)
10  result.setPrivateTools(the_tool)
11  return result
12 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:342
ActsMuonDetectorCfg.MuonBlueprintNodeBuilderCfg
def MuonBlueprintNodeBuilderCfg(flags, name="MuonBlueprintNodeBuilder", **kwargs)
Definition: ActsMuonDetectorCfg.py:5
MuonGeometryConfig.MuonGeoModelCfg
def MuonGeoModelCfg(flags)
Definition: MuonGeometryConfig.py:28