ATLAS Offline Software
egammaLargeFWDClusterMakerConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2 
3 __doc__ = """Configure egammaLargeFWDClusterMaker,
4  which chooses cells to store in the AOD"""
5 __author__ = "Jovan Mitrevski"
6 
7 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
8 from 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
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
egammaLargeFWDClusterMakerConfig.egammaLargeFWDClusterMakerCfg
def egammaLargeFWDClusterMakerCfg(flags, name="egammaFWDLCMakerTool", **kwargs)
Definition: egammaLargeFWDClusterMakerConfig.py:11