ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_ConfigurationConditionsTestAlgConfig.py
Go to the documentation of this file.
1"""Define method to configure and test SCT_ConfigurationConditionsTestAlg
2
3Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
4"""
5from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6from AthenaConfiguration.ComponentFactory import CompFactory
7
8def SCT_ConfigurationConditionsTestAlgCfg(flags, name="SCT_ConfigurationConditionsTestAlg", **kwargs):
9 """Return a configured SCT_ConfigurationConditionsTestAlg"""
10 acc = ComponentAccumulator()
11 from SCT_ConditionsTools.SCT_ConditionsToolsConfig import SCT_ConfigurationConditionsToolCfg
12 kwargs.setdefault("SCT_ConfigurationConditionsTool", acc.popToolsAndMerge(SCT_ConfigurationConditionsToolCfg(flags)))
13 acc.addEventAlgo(CompFactory.SCT_ConfigurationConditionsTestAlg(name, **kwargs))
14 return acc
15
16if __name__=="__main__":
17 from AthenaCommon.Logging import log
18 from AthenaCommon.Constants import INFO
19 log.setLevel(INFO)
20
21 from AthenaConfiguration.AllConfigFlags import initConfigFlags
22 flags = initConfigFlags()
23 flags.Input.Files = []
24 flags.Input.isMC = True
25 flags.Input.ProjectName = "mc16_13TeV"
26 flags.Input.RunNumbers = [310000] # MC16e 2018 run number
27 flags.Input.TimeStamps = [1550000000] # MC16e 2018 time stamp
28 flags.IOVDb.GlobalTag = "OFLCOND-MC16-SDR-RUN2-01"
29 from AthenaConfiguration.TestDefaults import defaultGeometryTags
30 flags.GeoModel.AtlasVersion = defaultGeometryTags.RUN2
31 flags.Detector.GeometrySCT = True
32 flags.lock()
33
34 from AthenaConfiguration.MainServicesConfig import MainServicesCfg
35 cfg = MainServicesCfg(flags)
36
37 from McEventSelector.McEventSelectorConfig import McEventSelectorCfg
38 cfg.merge(McEventSelectorCfg(flags))
39
40 algkwargs = {}
41 algkwargs["OutputLevel"] = INFO
42 cfg.merge(SCT_ConfigurationConditionsTestAlgCfg(flags, **algkwargs))
43
44 cfg.run(maxEvents=20)
SCT_ConfigurationConditionsTestAlgCfg(flags, name="SCT_ConfigurationConditionsTestAlg", **kwargs)