ATLAS Offline Software
Loading...
Searching...
No Matches
python.HLT.Menu.EventBuildingInfo Namespace Reference

Functions

 getAllEventBuildingIdentifiers ()
 isRoIBasedPEB (eventBuildType)

Variables

 log = logging.getLogger( __name__ )
dict _PartialEventBuildingIdentifiers

Function Documentation

◆ getAllEventBuildingIdentifiers()

python.HLT.Menu.EventBuildingInfo.getAllEventBuildingIdentifiers ( )

Definition at line 46 of file EventBuildingInfo.py.

46def getAllEventBuildingIdentifiers():
47 return _PartialEventBuildingIdentifiers.keys()
48
49

◆ isRoIBasedPEB()

python.HLT.Menu.EventBuildingInfo.isRoIBasedPEB ( eventBuildType)
Helper function to determine if eventBuildType corresponds to RoI-based PEB

Definition at line 50 of file EventBuildingInfo.py.

50def isRoIBasedPEB(eventBuildType):
51 """Helper function to determine if eventBuildType corresponds to RoI-based PEB"""
52 try:
53 return _PartialEventBuildingIdentifiers[eventBuildType]
54 except KeyError:
55 log.error("'%s' is not a known event building identifier", eventBuildType)
56 raise

Variable Documentation

◆ _PartialEventBuildingIdentifiers

dict python.HLT.Menu.EventBuildingInfo._PartialEventBuildingIdentifiers
protected
Initial value:
1= {
2 'BeamSpotPEB' : False,
3 'MuonTrkPEB' : True,
4 'IDCalibPEB' : True,
5 'LArPEB' : True,
6 'LArPEBCalib' : False,
7 'LArPEBHLT' : True,
8 'LArPEBNoise' : True,
9 'LATOMEPEB' : False,
10 'SCTPEB' : False,
11 'TilePEB' : False,
12 'ZDCPEB' : False,
13 'AFPPEB' : False,
14 'LumiPEB' : False,
15 'Lvl1CaloPEB' : False,
16 # DataScouting identifiers from TrigEDMConfig.DataScoutingInfo:
17 'CostMonDS': False,
18 'MuonDS': False,
19 'PhysicsTLA': False,
20 'DarkJetPEBTLA' : True,
21 'FTagPEBTLA' : True,
22 'EgammaPEBTLA' : True,
23}

Definition at line 21 of file EventBuildingInfo.py.

◆ log

python.HLT.Menu.EventBuildingInfo.log = logging.getLogger( __name__ )

Definition at line 4 of file EventBuildingInfo.py.