ATLAS Offline Software
Loading...
Searching...
No Matches
L1jFexJetThresholdsDecoratorConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3# AnaAlgorithm import(s):
4from AnalysisAlgorithmsConfig.ConfigBlock import ConfigBlock
5
6
8
9 def __init__(self):
10 super().__init__()
11 self.addOption(
12 'l1jFexContainer', 'L1_jFexSRJetRoI', type=str,
13 info="StoreGate key of the Phase-I L1 jFEX SR jet RoI "
14 "container to decorate."
15 )
16 self.addOption(
17 'l1ThresholdType', 'jJ', type=str,
18 info="L1 menu threshold type for the bit-to-name lookup "
19 "(jJ = small-R jFEX jet thresholds)."
20 )
21
22 def makeAlgs(self, config):
23 alg = config.createAlgorithm(
24 'CP::L1jFexJetThresholdsDecoratorAlg',
25 'L1jFexJetThresholdsDecoratorAlg'
26 )
27 alg.l1Jets = self.l1jFexContainer
28 alg.l1ThresholdType = self.l1ThresholdType