Skip to content
Snippets Groups Projects
Commit f0c8001d authored by Susumu Oda's avatar Susumu Oda
Browse files

TrackStateOnSurfaceDecorator is run when tracking is not disabled

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