Skip to content
Snippets Groups Projects
Commit 1e6f2a97 authored by James Beacham's avatar James Beacham
Browse files

Merge branch '21.0-SCTAxAOD' into '21.0'

TrackStateOnSurfaceDecorator of DAOD_SCTVALID is run only when tracking is not disabled

See merge request atlas/athena!10978

Former-commit-id: bb33c7733fc1e5193167b30ec79e00e25fab02c3
parents 9bd441bd f0c8001d
No related branches found
No related tags found
No related merge requests found
...@@ -105,17 +105,19 @@ svcMgr.DecisionSvc.CalcStats = True ...@@ -105,17 +105,19 @@ svcMgr.DecisionSvc.CalcStats = True
# Add the TSOS augmentation tool to the derivation framework # Add the TSOS augmentation tool to the derivation framework
augmentationTools=[] augmentationTools=[]
from DerivationFrameworkInDet.DerivationFrameworkInDetConf import DerivationFramework__TrackStateOnSurfaceDecorator from InDetRecExample.InDetJobProperties import InDetFlags
DFTSOS = DerivationFramework__TrackStateOnSurfaceDecorator(name = "SCTxAOD_DFTrackStateOnSurfaceDecorator", if not InDetFlags.disableTracking():
ContainerName = "InDetTrackParticles", from DerivationFrameworkInDet.DerivationFrameworkInDetConf import DerivationFramework__TrackStateOnSurfaceDecorator
DecorationPrefix = prefixName, DFTSOS = DerivationFramework__TrackStateOnSurfaceDecorator(name = "SCTxAOD_DFTrackStateOnSurfaceDecorator",
StoreTRT = False, ContainerName = "InDetTrackParticles",
StoreSCT = True, DecorationPrefix = prefixName,
StorePixel = False, StoreTRT = False,
IsSimulation = isSctDxAODSimulation, StoreSCT = True,
OutputLevel = INFO) StorePixel = False,
ToolSvc += DFTSOS IsSimulation = isSctDxAODSimulation,
augmentationTools+=[DFTSOS] OutputLevel = INFO)
ToolSvc += DFTSOS
augmentationTools+=[DFTSOS]
# Add BS error augmentation tool # Add BS error augmentation tool
......
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