From a837ab95bdeaa66c6383fa42c4bcadebaf70af0c Mon Sep 17 00:00:00 2001 From: Tomasz Bold <tomasz.bold@gmail.com> Date: Fri, 17 Sep 2021 16:01:21 +0200 Subject: [PATCH] One step of egamma reco --- .../python/EMBremCollectionBuilderConfig.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Reconstruction/egamma/egammaAlgs/python/EMBremCollectionBuilderConfig.py diff --git a/Reconstruction/egamma/egammaAlgs/python/EMBremCollectionBuilderConfig.py b/Reconstruction/egamma/egammaAlgs/python/EMBremCollectionBuilderConfig.py new file mode 100644 index 000000000000..47ed195389b1 --- /dev/null +++ b/Reconstruction/egamma/egammaAlgs/python/EMBremCollectionBuilderConfig.py @@ -0,0 +1,19 @@ +# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration + +from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator +from AthenaConfiguration.ComponentFactory import CompFactory + +def EMBremCollectionBuilderCfg(flags, + name="EMBremCollectionBuilder", + **kwargs): + acc = ComponentAccumulator() + if "TrackParticleCreatorTool" not in kwargs: + from InDetConfig.TrackRecoConfig import TrackParticleCreatorToolCfg + kwargs["TrackParticleCreatorTool"] = acc.popToolsAndMerge(TrackParticleCreatorToolCfg(flags, "GSFBuildInDetParticleCreatorTool")) + # TBC + # if "TrackRefitTool" not in kwargs: + # kwargs["TrackRefitTool"] = acc.popToolsAndMerge( ) + + alg = CompFactory.EMBremCollectionBuilder(name, **kwargs) + acc.addEventAlgo(alg) + return acc \ No newline at end of file -- GitLab