ATLAS Offline Software
Loading...
Searching...
No Matches
RecExRecoTests_setupReadID.py
Go to the documentation of this file.
1#This is based on the new style configuration settings:
2#https://gitlab.cern.ch/atlas/athena/blob/master/Tracking/TrkConfig/python/TrackCollectionReadConfig.py
3
4
5from AthenaCommon.ConcurrencyFlags import jobproperties as jp
6nThreads = jp.ConcurrencyFlags.NumThreads()
7
8if (nThreads >= 1):
9
10 from AthenaConfiguration.ComponentFactory import CompFactory
11 AthReadAlg=CompFactory.AthReadAlg
12 AthReadAlg_RecExRecoTests = AthReadAlg ('TrackCollectionRead_CombinedInDetTracks',
13 Key = 'TrackCollection/CombinedInDetTracks',
14 Aliases = [],
15 ExtraInputs = {('InDetDD::SiDetectorElementCollection', 'ConditionStore+PixelDetectorElementCollection'),
16 ('InDetDD::SiDetectorElementCollection', 'ConditionStore+SCT_DetectorElementCollection'),
17 ( 'InDetDD::TRT_DetElementContainer' , 'ConditionStore+TRT_DetElementContainer' ) })
18
19 topSequence += AthReadAlg_RecExRecoTests
20
21
22