ATLAS Offline Software
Functions | Variables
CheckMonGroups Namespace Reference

Functions

def checkMonGroups (chainDicts)
 

Variables

 __doc__
 
 log
 

Function Documentation

◆ checkMonGroups()

def CheckMonGroups.checkMonGroups (   chainDicts)

Definition at line 15 of file CheckMonGroups.py.

15 def checkMonGroups(chainDicts):
16 
17 
18  MON_OK = True
19  for hlt in chainDicts:
20  if 'express' in hlt['stream']:
21  if 'monGroups' not in hlt or len(hlt['monGroups']) < 1:
22  log.error("Chain %s is streamed to express but does not have a signature or detector monGroup assigned", hlt['chainName'])
23  MON_OK = False
24 
25  if not MON_OK:
26  raise Exception("Express chains found without monGroups")

Variable Documentation

◆ __doc__

CheckMonGroups.__doc__
private

Definition at line 10 of file CheckMonGroups.py.

◆ log

CheckMonGroups.log

Definition at line 13 of file CheckMonGroups.py.

CheckMonGroups.checkMonGroups
def checkMonGroups(chainDicts)
Definition: CheckMonGroups.py:15