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()

getAllEventBuildingIdentifiers ( )

Definition at line 48 of file EventBuildingInfo.py.

48def getAllEventBuildingIdentifiers():
49 return _PartialEventBuildingIdentifiers.keys()
50
51

◆ isRoIBasedPEB()

isRoIBasedPEB ( eventBuildType)
Helper function to determine if eventBuildType corresponds to RoI-based PEB

Definition at line 52 of file EventBuildingInfo.py.

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

Variable Documentation

◆ _PartialEventBuildingIdentifiers

dict python.HLT.Menu.EventBuildingInfo._PartialEventBuildingIdentifiers
protected
Initial value:
= {
'BeamSpotPEB' : False,
'MuonTrkPEB' : True,
'IDCalibPEB' : True,
'LArPEB' : True,
'LArPEBCalib' : False,
'LArPEBHLT' : True,
'LArPEBNoise' : True,
'LATOMEPEB' : False,
'SCTPEB' : False,
'TilePEB' : False,
'ZDCPEB' : False,
'AFPPEB' : False,
'LumiPEB' : False,
'IDScanPEB' : False,
'Lvl1CaloPEB' : False,
'Lvl1CaloLatomePEB' : False,
# DataScouting identifiers from TrigEDMConfig.DataScoutingInfo:
'CostMonDS': False,
'MuonDS': False,
'PhysicsTLA': False,
'DarkJetPEBTLA' : True,
'FTagPEBTLA' : True,
'EgammaPEBTLA' : True,
}

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.