ATLAS Offline Software
Loading...
Searching...
No Matches
TrigFullScanLRTHypoTool.py
Go to the documentation of this file.
1# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2
3from AthenaCommon.Logging import logging
4log = logging.getLogger('TrigLRTHypoTool')
5
6def TrigLRTHypoToolFromDict( flags, 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