ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_LinkMaskingTestAlgConfig.py
Go to the documentation of this file.
1"""Define method to configure and test SCT_LinkMaskingTestAlg
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_LinkMaskingTestAlgCfg(flags, name="SCT_LinkMaskingTestAlg", **kwargs):
9 """Return a configured SCT_LinkMaskingTestAlg"""
10 acc = ComponentAccumulator()
11 from SCT_ConditionsTools.SCT_ConditionsToolsConfig import SCT_LinkMaskingCfg
12 kwargs.setdefault("LinkMaskingTool", acc.popToolsAndMerge(SCT_LinkMaskingCfg(flags)))
13 acc.addEventAlgo(CompFactory.SCT_LinkMaskingTestAlg(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 = False
25 flags.Input.ProjectName = "data16_13TeV"
26 flags.Input.RunNumbers = [310809]
27 flags.Input.TimeStamps = [1476741326] # LB 18 of run 310809, 10/17/2016 @ 9:55pm (UTC)
28 flags.IOVDb.GlobalTag = "CONDBR2-BLKPA-2017-10"
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 cfg.merge(SCT_LinkMaskingTestAlgCfg(flags))
41
42 cfg.run(maxEvents=20)
SCT_LinkMaskingTestAlgCfg(flags, name="SCT_LinkMaskingTestAlg", **kwargs)