ATLAS Offline Software
Loading...
Searching...
No Matches
ml/python/HGTD_GeoModelConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3def HGTD_GeoModelCfg(flags):
4 from AtlasGeoModel.GeoModelConfig import GeoModelCfg
5 acc = GeoModelCfg(flags)
6 geoModelSvc = acc.getPrimary()
7
8 from AthenaConfiguration.ComponentFactory import CompFactory
9 hgtdDetectorTool = CompFactory.HGTD_GMX_DetectorTool()
10 hgtdDetectorTool.DetectorName = "HGTD"
11 if flags.HGTD.Geometry.isLocal:
12 hgtdDetectorTool.GmxFilename = flags.HGTD.Geometry.Filename
13 if flags.HGTD.Geometry.ClobOutputName:
14 hgtdDetectorTool.ClobOutputName = flags.HGTD.Geometry.ClobOutputName
15 geoModelSvc.DetectorTools += [ hgtdDetectorTool ]
16 return acc
17
18
19def HGTD_SimulationGeometryCfg(flags):
20 # main GeoModel config
21 acc = HGTD_GeoModelCfg(flags)
22 return acc
23
24
25def HGTD_ReadoutGeometryCfg(flags):
26 # main GeoModel config
27 acc = HGTD_GeoModelCfg(flags)
28 from HGTD_ConditionsAlgorithms.HGTD_ConditionsAlgorithmsConfig import HGTD_DetectorElementCondAlgCfg
29 acc.merge(HGTD_DetectorElementCondAlgCfg(flags))
30 return acc