Skip to content
Snippets Groups Projects
Commit 854dcb06 authored by Tamara Vazquez Schroeder's avatar Tamara Vazquez Schroeder
Browse files

Merge branch 'cherry-pick-5f90b328 [formerly 3ab4d329f2]-21.0' into '21.0'

Sweeping !10735 from 21.0-TrigMC to 21.0.
update for FTK truth decoration

See merge request atlas/athena!10797

Former-commit-id: 4abf0028a97d15597d4be6808d08e7fc80e85331
parents 04c322d3 4b68ab53
No related branches found
No related tags found
No related merge requests found
......@@ -68,3 +68,29 @@ if rec.doFTK():
FTKRefitTrackParticleCnvAlg.TrackTruthContainerName = "FTK_RefitTracks_TruthCollection"
FTKRefitTrackParticleCnvAlg.PrintIDSummaryInfo = True
topSequence += FTKRefitTrackParticleCnvAlg
augmentation_tools = []
from DerivationFrameworkInDet.DerivationFrameworkInDetConf import (DerivationFramework__TrackParametersForTruthParticles)
TruthDecor = DerivationFramework__TrackParametersForTruthParticles(
name="TruthTPDecor",
TruthParticleContainerName="TruthParticles",
DecorationPrefix="")
augmentation_tools.append(TruthDecor)
# Set up derivation framework
from AthenaCommon import CfgMgr
theFTKseq = CfgMgr.AthSequencer("FTKSeq")
from DerivationFrameworkCore.DerivationFrameworkCoreConf import (
DerivationFramework__CommonAugmentation)
from AthenaCommon.AppMgr import ToolSvc
ToolSvc += DerivationFramework__TrackParametersForTruthParticles('TruthTPDecor')
theFTKseq += CfgMgr.DerivationFramework__CommonAugmentation(
"TSOS_Kernel",
AugmentationTools=augmentation_tools,
OutputLevel=INFO)
topSequence += theFTKseq
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