Skip to content
Snippets Groups Projects
Commit 9d7f59f5 authored by Luke Grazette's avatar Luke Grazette Committed by Nicole Skidmore
Browse files

[RTADPA BW Tests] Read input_rate as a float.

parent 7f67e10f
No related branches found
No related tags found
1 merge request!399[RTADPA BW Tests] Read input_rate as a float.
...@@ -369,7 +369,7 @@ if __name__ == '__main__': ...@@ -369,7 +369,7 @@ if __name__ == '__main__':
] ]
appMgr = GP.AppMgr() appMgr = GP.AppMgr()
evt = appMgr.evtsvc() evt = appMgr.evtsvc()
input_rate = int(input_config['input_rate']) input_rate = float(input_config['input_rate'])
file_totals, line_totals, wg_bws_for_hlt2, wg_event_numbers_for_hlt2 = rate_info_from_file( file_totals, line_totals, wg_bws_for_hlt2, wg_event_numbers_for_hlt2 = rate_info_from_file(
LHCbApp().EvtMax, lines, args.process, args.stream) LHCbApp().EvtMax, lines, args.process, args.stream)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment