ATLAS Offline Software
SCTSiPropertiesTestAlgConfig.py
Go to the documentation of this file.
1 """Define method to configure and test SCTSiPropertiesTestAlg
2 
3 Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
4 """
5 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6 from AthenaConfiguration.ComponentFactory import CompFactory
7 
8 def SCTSiPropertiesTestAlgCfg(flags, name="SCTSiPropertiesTestAlg", **kwargs):
9  """Return a configured SCTSiPropertiesTestAlg"""
10  acc = ComponentAccumulator()
11  from SiPropertiesTool.SCT_SiPropertiesConfig import SCT_SiPropertiesToolCfg
12  kwargs.setdefault("SCTPropertiesTool", acc.popToolsAndMerge(SCT_SiPropertiesToolCfg(flags)))
13  acc.addEventAlgo(CompFactory.SCTSiPropertiesTestAlg(name, **kwargs))
14  return acc
15 
16 if __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 = [300000] # MC16c 2017 run number
27  flags.Input.TimeStamps = [1500000000] # MC16c 2017 time stamp
28  flags.IOVDb.GlobalTag = "OFLCOND-MC16-SDR-18"
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(SCTSiPropertiesTestAlgCfg(flags))
41 
42  cfg.run(maxEvents=20)
python.SCTSiPropertiesTestAlgConfig.SCTSiPropertiesTestAlgCfg
def SCTSiPropertiesTestAlgCfg(flags, name="SCTSiPropertiesTestAlg", **kwargs)
Definition: SCTSiPropertiesTestAlgConfig.py:8
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.SCT_SiPropertiesConfig.SCT_SiPropertiesToolCfg
def SCT_SiPropertiesToolCfg(flags, name="SCT_SiPropertiesTool", **kwargs)
Definition: SCT_SiPropertiesConfig.py:29
python.MainServicesConfig.MainServicesCfg
def MainServicesCfg(flags, LoopMgr='AthenaEventLoopMgr')
Definition: MainServicesConfig.py:256
Constants
some useful constants -------------------------------------------------—
python.McEventSelectorConfig.McEventSelectorCfg
def McEventSelectorCfg(flags, **kwargs)
Definition: McEventSelectorConfig.py:5
python.AllConfigFlags.initConfigFlags
def initConfigFlags()
Definition: AllConfigFlags.py:19