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 kwargs.setdefault("dumpVolumes", flags.Acts.TrackingGeometry.ObjDebugOutput)
10 the_tool = CompFactory.ActsTrk.MuonBlueprintNodeBuilder(name, **kwargs)
11 result.setPrivateTools(the_tool)
12 return result
13
MuonBlueprintNodeBuilderCfg(flags, name="MuonBlueprintNodeBuilder", **kwargs)