Skip to content
Snippets Groups Projects
Commit 21c872b4 authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'ATLASRECTS-7207_keep_cells_for_InDetTrackParticlesAssociatedClusters' into 'master'

Add cells for InDetTrackParticlesAssociatedClusters in trying to solve ATLASRECTS-7207

See merge request atlas/athena!56018
parents 1acfb80b 17e510fa
No related branches found
No related tags found
No related merge requests found
......@@ -2,15 +2,18 @@
from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
from AthenaConfiguration.ComponentFactory import CompFactory
def TrackParticleCellAssociationAlgCfg(flags, name="TrackParticleCellAssociationAlg", **kwargs):
result = ComponentAccumulator()
from TrackToCalo.TrackToCaloConfig import ParticleCaloCellAssociationToolCfg
kwargs.setdefault("ParticleCaloCellAssociationTool", result.popToolsAndMerge(ParticleCaloCellAssociationToolCfg(flags)))
kwargs.setdefault("ParticleCaloCellAssociationTool", result.popToolsAndMerge(
ParticleCaloCellAssociationToolCfg(flags)))
result.addEventAlgo(CompFactory.TrackParticleCellAssociationAlg(name, **kwargs))
result.addEventAlgo(
CompFactory.TrackParticleCellAssociationAlg(name, **kwargs))
from OutputStreamAthenaPool.OutputStreamConfig import addToESD,addToAOD
from OutputStreamAthenaPool.OutputStreamConfig import addToESD, addToAOD
toAOD = [
"xAOD::CaloClusterContainer#InDetTrackParticlesAssociatedClusters",
"xAOD::CaloClusterAuxContainer#InDetTrackParticlesAssociatedClustersAux.",
......@@ -18,7 +21,10 @@ def TrackParticleCellAssociationAlgCfg(flags, name="TrackParticleCellAssociation
"xAOD::TrackParticleClusterAssociationContainer#InDetTrackParticlesClusterAssociations",
"xAOD::TrackParticleClusterAssociationAuxContainer#InDetTrackParticlesClusterAssociationsAux."
]
from CaloRec.CaloThinCellsByClusterAlgConfig import CaloThinCellsByClusterAlgCfg
result.merge(CaloThinCellsByClusterAlgCfg(flags, streamName="StreamAOD",
clusters="InDetTrackParticlesAssociatedClusters",
samplings=["TileGap1", "TileGap2", "TileGap3", "TileBar0", "TileExt0", "HEC0"]))
result.merge(addToESD(flags, toAOD))
result.merge(addToAOD(flags, toAOD))
......
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