ATLAS Offline Software
Loading...
Searching...
No Matches
TrigHypoCommonTools.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4
5
6def TrigGenericHypoToolFromDict(flags, chainDict):
7 passString = ''
8 if 'mistimemonj400' in chainDict['chainParts'][0]['monType']:
9 passString = "HLT_TrigCompositeMistimeJ400.pass"
10
11 tool = CompFactory.TrigGenericHypoTool(name=chainDict['chainName'],
12 PassString=passString)
13 return tool
TrigGenericHypoToolFromDict(flags, chainDict)