Skip to content
Snippets Groups Projects
Commit 5f90b328 authored by Pedro Teixeira-Dias's avatar Pedro Teixeira-Dias
Browse files

Merge branch 'myRel21TrigMCAODTruthFix' into '21.0-TrigMC'

update for FTK truth decoration

See merge request atlas/athena!10735

Former-commit-id: 3ab4d329f265977d703c3ecbfee0817db183d863
parents 6369c4c4 f18dab75
No related branches found
No related tags found
No related merge requests found
......@@ -63,3 +63,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