ATLAS Offline Software
Loading...
Searching...
No Matches
TrigLongLivedParticlesConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5from TrigEDMConfig.TriggerEDM import recordable
6
7def MuonClusterConfig(flags, name="MuonClusterConfig"):
8 from TrigLongLivedParticles.TrigLongLivedParticlesMonitoring import trigMuonClusterAlgorithmMonitoring
9 acc = ComponentAccumulator()
10 alg = CompFactory.MuonCluster(
11 name,
12 TrigRoIs_CompositeContainer = recordable("HLT_MuRoICluster_Composites"),
13 DeltaR = 0.4, # muClu Parameters
14 MonTool = trigMuonClusterAlgorithmMonitoring(flags))
15 acc.addEventAlgo(alg)
16 return acc
MuonClusterConfig(flags, name="MuonClusterConfig")