ATLAS Offline Software
Loading...
Searching...
No Matches
LArClusterCollisionTimeConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2
3# python fragment to configure LAr cluster collision time algo
4
5from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6from AthenaConfiguration.ComponentFactory import CompFactory
7
9
10 result=ComponentAccumulator()
11
12 LArClusterCollisionTimeAlg=CompFactory.LArClusterCollisionTimeAlg
13 result.addEventAlgo(LArClusterCollisionTimeAlg("LArClusterCollisionTimeAlg",
14 OutputName="ClusterCollTime",
15 InputName="egammaClusters"))
16
17 return result
18