ATLAS Offline Software
Loading...
Searching...
No Matches
egammaLargeFWDClusterMakerConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2
3""" Configure egammaLargeFWDClusterMaker which chooses cells to store in the AOD """
4
5__author__ = "Jovan Mitrevski"
6
7from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
8from AthenaConfiguration.ComponentFactory import CompFactory
9
10
12 flags,
13 name="egammaFWDLCMakerTool",
14 **kwargs):
15
16 acc = ComponentAccumulator()
17
18 kwargs.setdefault("CellsName", flags.Egamma.Keys.Input.CaloCells)
19 kwargs.setdefault("InputClusterCollection",
20 flags.Egamma.Keys.Output.ForwardClusters)
21 kwargs.setdefault("doFWDelesurraundingWindows", True)
22
23 acc.setPrivateTools(CompFactory.egammaLargeClusterMaker(name, **kwargs))
24
25 return acc
egammaLargeFWDClusterMakerCfg(flags, name="egammaFWDLCMakerTool", **kwargs)