ATLAS Offline Software
Loading...
Searching...
No Matches
ThinNegativeEnergyNeutralPFOCfg.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5from AthenaConfiguration.ComponentFactory import CompFactory
6
7def ThinNegativeEnergyNeutralPFOCfg(flags, StreamName="StreamAOD"):
8 acc = ComponentAccumulator()
9
10 thinAlg = CompFactory.ThinNegativeEnergyNeutralPFOsAlg(
11 "ThinNegativeEnergyNeutralPFOsAlg",
12 ThinNegativeEnergyNeutralPFOs = True,
13 StreamName = StreamName,
14 )
15
16 acc.addEventAlgo( thinAlg )
17
18 return acc