ATLAS Offline Software
Loading...
Searching...
No Matches
TrigTRTHTHCounterConfig.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
4
5def TrigTRTHTHCounterFex(flags, name, RoIs, containerName, RNNOutputName):
6 alg = CompFactory.TrigTRTHTHCounter(
7 name,
8 RoIs = RoIs,
9 TRT_DC_ContainerName = containerName,
10 RNNOutputName = RNNOutputName,
11 EtaHalfWidth = 0.1,
12 PhiHalfWidth = 0.1,
13 doFullScan = False,
14 RoadWidth = 4,
15 nBinCoarse = 14,
16 nBinFine = 14,
17 WedgeMinEta = 0,
18 RoadMaxEta = 1.06,
19 WedgeNBin = 5 )
20
21 return alg
TrigTRTHTHCounterFex(flags, name, RoIs, containerName, RNNOutputName)