ATLAS Offline Software
trigbs_dumpHltDsData.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
4 
5 from __future__ import print_function
6 import eformat
7 import argparse
8 
9 __doc__ = """\
10 Dump content of the HLT result and HLT related details from the event header.
11 """
12 parser = argparse.ArgumentParser(description = __doc__)
13 
14 parser.add_argument("files", metavar="FILE", nargs='+',
15  help="RAW file to inspect")
16 
17 parser.add_argument("-n", "--events", metavar="N", action="store", type=int,
18  help="Process N events")
19 
20 parser.add_argument("-s", "--skip", metavar="N", action="store", type=int,
21  help="Skip N events")
22 
23 parser.add_argument("--interactive", action="store_true", default=False,
24  help="after opening the file enter interactive prompt")
25 
26 parser.add_argument("-v", "--verbosity",type=int, choices=[0, 1, 2], default=2,
27  help="change output verbosity (default 2)")
28 
29 args = parser.parse_args()
30 
31 from TrigByteStreamTools.hltResult import hltResult, print_all_navigation
32 res = hltResult()
33 
34 def ds_dump(bsfile):
35  """Runs the dumping routines"""
36 
37  # open a file
38  if (args.verbosity > 0):
39  print("="*100)
40  print("Opening", bsfile)
41 
42  input = eformat.istream(bsfile)
43 
44  if args.interactive:
45  import code
46  code.interact(local=locals())
47 
48  event_count = 0
49  ds_ROB_counts = {}
50  offset = args.skip if args.skip else 0
51  for event in input:
52  if offset>0:
53  offset -= 1
54  continue
55 
56  event_count += 1
57  if args.events is not None and event_count>args.events:
58  event_count -=1
59  break
60 
61  # Extract the DS module IDs and set the flag for finding the corresponding ROB
62  ds_module_ids={}
63  for stag in event.stream_tag():
64  if (stag.type == 'calibration') and ((stag.name).startswith('DataScouting_')):
65  ds_module_ids[int((stag.name).split('_')[1])] = (False, stag.name)
66  if stag.name not in ds_ROB_counts:
67  ds_ROB_counts[stag.name] = {'ROBfound':0, 'ROBnotFound':0, 'noContainers':0, 'emptyContainers':0}
68 
69  # loop over the SubDetFragments and find DS ROBs
70  for f in event.children():
71  if (f.source_id().subdetector_id() == eformat.helper.SubDetector.TDAQ_HLT) and (f.source_id().module_id() in ds_module_ids):
72  if (args.verbosity >= 1):
73  print("======================= RunNumber : %d , Event: %d, LB: %d, LVL1_ID: %d, Global_ID: %d bunch-x: %d TT: x%x =========================="
74  % ( event.run_no(), event_count, event.lumi_block(), event.lvl1_id(), event.global_id(), event.bc_id(), event.lvl1_trigger_type()))
75  # Print the stream tags
76  if (args.verbosity >= 1):
77  print(".. Stream Tags:", [(s.name, s.type) for s in event.stream_tag()])
78 
79  featureSizes={}
80  if (args.verbosity >= 1):
81  print('.. %s %s %s bytes' % (f.__class__.__name__, f.source_id(), f.fragment_size_word()*4))
82  try:
83  res.load(f)
84  ds_module_ids[f.source_id().module_id()] = (True, ds_module_ids[f.source_id().module_id()][1]) # The expected ROB was found
85  if (args.verbosity >= 2):
87  for feature in res.nav_payload:
88  key = feature[0]+'#'+feature[1]
89  if key not in featureSizes:
90  featureSizes[key] = 0
91  featureSizes[key] += feature[2]
92  except Exception as ex:
93  print('... **** problems in analyzing payload', ex)
94  print('... **** raw data[:10]', list(f.rod_data())[:10])
95  # check that feature containers are there and that they are not empty
96  if (featureSizes == {}):
97  if (args.verbosity >= 1):
98  print(" FATAL : No containers are available for Data Scouting HLTResult with module ID = ",f.source_id().module_id(),", Stream name = ",ds_module_ids[f.source_id().module_id()][1])
99  ds_ROB_counts[ ds_module_ids[f.source_id().module_id()][1] ]['noContainers'] += 1
100  for item in featureSizes.items():
101  if (item[1] == 0):
102  if (args.verbosity >= 1):
103  print(" ERROR : Empty container for feature = ",item[0])
104  ds_ROB_counts[ ds_module_ids[f.source_id().module_id()][1] ]['emptyContainers'] += 1
105 
106  if (args.verbosity >= 2):
107  print(".. EOF DS HLTResult with module ID = ", f.source_id().module_id())
108 
109  # check if all expected DS ROBs from the StreamTags were found
110  for item in ds_module_ids.items():
111  if (item[1][0] is False):
112  if (args.verbosity >= 1):
113  print(" FATAL : No Data Scouting HLTResult found for expected module ID = ",item[0],", Stream name = ",item[1][1])
114  ds_ROB_counts[ item[1][1] ]['ROBnotFound'] += 1
115  else:
116  ds_ROB_counts[ item[1][1] ]['ROBfound'] += 1
117 
118  if (args.verbosity >= 0):
119  print("\n Events read: ", event_count)
120  print("\n Summary of Data Scouting information:\n"," -------------------------------------\n", ds_ROB_counts)
121 
122 if __name__ == "__main__":
123  for f in args.files:
124  ds_dump(f)
python.hltResult.print_all_navigation
def print_all_navigation(result)
Definition: hltResult.py:106
histSizes.list
def list(name, path='/')
Definition: histSizes.py:38
trigbs_dumpHltDsData.ds_dump
def ds_dump(bsfile)
Definition: trigbs_dumpHltDsData.py:34
Muon::print
std::string print(const MuPatSegment &)
Definition: MuonTrackSteering.cxx:28
Trk::split
@ split
Definition: LayerMaterialProperties.h:38
trigbs_dumpHltDsData.int
int
Definition: trigbs_dumpHltDsData.py:26