ATLAS Offline Software
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 
5 from AthenaCommon.ConcurrencyFlags import jobproperties as jp
6 nThreads = jp.ConcurrencyFlags.NumThreads()
7 
8 if (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