ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_SensorsTestAlgConfig.py
Go to the documentation of this file.
1"""Define method to configure and test SCT_SensorsTestAlg
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_MajorityConditionsTestAlgCfg(flags, name="SCT_SensorsTestAlg", **kwargs):
9 """Return a configured SCT_SensorsTestAlg"""
10 acc = ComponentAccumulator()
11 from SCT_ConditionsTools.SCT_ConditionsToolsConfig import SCT_SensorsCfg
12 kwargs.setdefault("SCT_SensorsTool", acc.popToolsAndMerge(SCT_SensorsCfg(flags, **kwargs)))
13 acc.addEventAlgo(CompFactory.SCT_SensorsTestAlg(name))
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 = False
25 flags.Input.ProjectName = "data12_8TeV"
26 flags.Input.RunNumbers = [142913]
27 flags.Input.TimeStamps = [1260630000] # During run 142913, 12/12/2009 @ 3:00pm (UTC)
28 flags.IOVDb.GlobalTag = "COMCOND-BLKPA-RUN1-09"
29 from AthenaConfiguration.TestDefaults import defaultGeometryTags
30 flags.GeoModel.AtlasVersion = defaultGeometryTags.RUN1_2012
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 kwargs = {}
41 kwargs["folderTag"] = "SctSensors-Sep03-14"
42
43 cfg.merge(SCT_MajorityConditionsTestAlgCfg(flags, **kwargs))
44
45 cfg.run(maxEvents=20)
SCT_MajorityConditionsTestAlgCfg(flags, name="SCT_SensorsTestAlg", **kwargs)