ATLAS Offline Software
Loading...
Searching...
No Matches
ActsMuonDetectorCfg.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
3from AthenaConfiguration.ComponentFactory import CompFactory
4
5def 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
MuonBlueprintNodeBuilderCfg(flags, name="MuonBlueprintNodeBuilder", **kwargs)