Loading [MathJax]/jax/output/SVG/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
TrigHIFwdGapHypoConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 
6  """Configure the FCal-based forward gap hypo tool"""
7 
8  tool = CompFactory.TrigHIFwdGapHypoTool(chainDict['chainName'])
9 
10  FgapInfo = chainDict['chainParts'][0]['hypoFgapInfo'][0]
11  if 'AC' in FgapInfo:
12  tool.maxFCalEt = int(FgapInfo.strip('FgapAC'))
13  tool.useDoubleSidedGap = True
14  elif 'A' in FgapInfo:
15  tool.maxFCalEt = int(FgapInfo.strip('FgapA'))
16  tool.useSideA = True
17  elif 'C' in FgapInfo:
18  tool.maxFCalEt = int(FgapInfo.strip('FgapC'))
19  tool.useSideA = False
20 
21  return tool
22 
python.LArMinBiasAlgConfig.int
int
Definition: LArMinBiasAlgConfig.py:59
TrigHIFwdGapHypoConfig.TrigHIFwdGapHypoToolFromDict
def TrigHIFwdGapHypoToolFromDict(chainDict)
Definition: TrigHIFwdGapHypoConfig.py:5