ATLAS Offline Software
TrigFullScanLRTHypoTool.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaCommon.Logging import logging
4 log = logging.getLogger('TrigLRTHypoTool')
5 
6 def TrigLRTHypoToolFromDict( chainDict ):
7  """ Use menu decoded chain dictionary to configure the tool """
8 
9  name = chainDict['chainName']
10  from AthenaConfiguration.ComponentFactory import CompFactory
11  tool = CompFactory.FastTrackFinderLRTHypoTool(name)
12 
13  return tool
python.TrigFullScanLRTHypoTool.TrigLRTHypoToolFromDict
def TrigLRTHypoToolFromDict(chainDict)
Definition: TrigFullScanLRTHypoTool.py:6