Skip to content
Snippets Groups Projects
Commit b52cb766 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Activate SpacePoint Cache in IDCalo.py test

Former-commit-id: 8d7af496
parent b4cac52a
No related branches found
No related tags found
No related merge requests found
...@@ -338,7 +338,8 @@ if TriggerFlags.doID: ...@@ -338,7 +338,8 @@ if TriggerFlags.doID:
SpacePointsOverlapName = InDetKeys.OverlapSpacePoints(), SpacePointsOverlapName = InDetKeys.OverlapSpacePoints(),
ProcessPixels = DetFlags.haveRIO.pixel_on(), ProcessPixels = DetFlags.haveRIO.pixel_on(),
ProcessSCTs = DetFlags.haveRIO.SCT_on(), ProcessSCTs = DetFlags.haveRIO.SCT_on(),
ProcessOverlaps = DetFlags.haveRIO.SCT_on()) ProcessOverlaps = DetFlags.haveRIO.SCT_on(),
OutputLevel=INFO)
from TrigFastTrackFinder.TrigFastTrackFinder_Config import TrigFastTrackFinder_eGamma from TrigFastTrackFinder.TrigFastTrackFinder_Config import TrigFastTrackFinder_eGamma
...@@ -351,6 +352,8 @@ if TriggerFlags.doID: ...@@ -351,6 +352,8 @@ if TriggerFlags.doID:
allViewAlgorithms.TrigFastTrackFinder_eGamma.RoIs = "EMViewRoIs" allViewAlgorithms.TrigFastTrackFinder_eGamma.RoIs = "EMViewRoIs"
svcMgr.ViewAlgPool.TopAlg += [ "InDetSiTrackerSpacePointFinder", "TrigFastTrackFinder_eGamma" ] svcMgr.ViewAlgPool.TopAlg += [ "InDetSiTrackerSpacePointFinder", "TrigFastTrackFinder_eGamma" ]
topSequence.viewMaker.AlgorithmNameSequence += [ "InDetSiTrackerSpacePointFinder", "TrigFastTrackFinder_eGamma" ] topSequence.viewMaker.AlgorithmNameSequence += [ "InDetSiTrackerSpacePointFinder", "TrigFastTrackFinder_eGamma" ]
InDetSiTrackerSpacePointFinder.SpacePointCacheSCT = topSequence.InDetCacheCreatorTrigViews.SpacePointCacheSCT
InDetSiTrackerSpacePointFinder.SpacePointCachePix = topSequence.InDetCacheCreatorTrigViews.SpacePointCachePix
else: else:
topSequence += InDetSiTrackerSpacePointFinder topSequence += InDetSiTrackerSpacePointFinder
theFTF.RoIs = "EMRoIs" theFTF.RoIs = "EMRoIs"
......
...@@ -348,7 +348,10 @@ if opt.enableViews: ...@@ -348,7 +348,10 @@ if opt.enableViews:
from InDetPrepRawDataFormation.InDetPrepRawDataFormationConf import InDet__CacheCreator from InDetPrepRawDataFormation.InDetPrepRawDataFormationConf import InDet__CacheCreator
InDetCacheCreatorTrigViews = InDet__CacheCreator(name = "InDetCacheCreatorTrigViews", InDetCacheCreatorTrigViews = InDet__CacheCreator(name = "InDetCacheCreatorTrigViews",
Pixel_ClusterKey = "PixelTrigClustersCache", Pixel_ClusterKey = "PixelTrigClustersCache",
SCT_ClusterKey = "SCT_ClustersCache", OutputLevel=INFO) SCT_ClusterKey = "SCT_ClustersCache",
SpacePointCachePix = "PixelSpacePointCache",
SpacePointCacheSCT = "SctSpacePointCache",
OutputLevel=INFO)
topSequence += InDetCacheCreatorTrigViews topSequence += InDetCacheCreatorTrigViews
# Set of view algs # Set of view algs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment