Skip to content
Snippets Groups Projects
Commit bfd6c1ad authored by Alex Pearce's avatar Alex Pearce
Browse files

Copy Particle to RelatedInfo maps.

Towards fixing LBHLT-421.
parent df21f358
No related branches found
No related tags found
1 merge request!179Copy Particle to RelatedInfo maps in Tesla.
......@@ -13,6 +13,7 @@ from Configurables import (
ChargedPP2MC,
CopyLinePersistenceLocations,
CopyParticle2PVRelationsFromLinePersistenceLocations,
CopyParticle2RelatedInfoFromLinePersistenceLocations,
CopyProtoParticle2MCRelations,
CopySignalMCParticles,
DataOnDemandSvc,
......@@ -1113,11 +1114,24 @@ class Tesla(LHCbConfigurableUser):
ILinePersistenceSvc=persistence_svc
)
p2ri_cloner = CopyParticle2RelatedInfoFromLinePersistenceLocations(
namer('CopyP2RelatedInfoFromLinePersistenceLocations'),
# Search for all LHCb::RelatedInfoMap objects at the same TES
# level as the container of LHCb::Particle objects using the
# CLID, rather than a name
RelationsBaseName="",
UseRelationsCLID=True,
OutputPrefix=output_prefix,
LinesToCopy=decisions,
ILinePersistenceSvc=persistence_svc
)
copy_line_outputs_seq = GaudiSequencer(
namer('TeslaCopyLineOutputsSequence'),
Members=[
container_cloner,
p2pv_cloner
p2pv_cloner,
p2ri_cloner
],
IgnoreFilterPassed=True
)
......
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