Skip to content
Snippets Groups Projects
Commit 627e6ea1 authored by dpohl's avatar dpohl
Browse files

MAINT: use online analysis for rd53a for now

parent 69e7c1b9
No related branches found
No related tags found
2 merge requests!418Release v1.5.0,!401Fix MacOS bug and enhance online analysis
...@@ -246,7 +246,7 @@ class OccupancyHistogramming(OnlineHistogrammingBase): ...@@ -246,7 +246,7 @@ class OccupancyHistogramming(OnlineHistogrammingBase):
No event building. No event building.
''' '''
def __init__(self, chip_type): def __init__(self, chip_type='rd53a'):
if 'rd53a' in chip_type.lower(): if 'rd53a' in chip_type.lower():
super().__init__(shape=(400, 192)) super().__init__(shape=(400, 192))
self.analysis_function_kwargs = {'is_fe_high_word': -1, 'is_data_header': 0, 'data_word': 0} self.analysis_function_kwargs = {'is_fe_high_word': -1, 'is_data_header': 0, 'data_word': 0}
...@@ -266,7 +266,7 @@ class TotHistogramming(OnlineHistogrammingBase): ...@@ -266,7 +266,7 @@ class TotHistogramming(OnlineHistogrammingBase):
''' '''
_queue_timeout = 0.01 # max blocking time to delete object [s] _queue_timeout = 0.01 # max blocking time to delete object [s]
def __init__(self, chip_type): def __init__(self, chip_type='rd53a'):
if 'rd53a' in chip_type.lower(): if 'rd53a' in chip_type.lower():
super().__init__(shape=(400, 192, 16)) super().__init__(shape=(400, 192, 16))
self.analysis_function_kwargs = {'is_fe_high_word': -1, 'is_data_header': 0, 'data_word': 0} self.analysis_function_kwargs = {'is_fe_high_word': -1, 'is_data_header': 0, 'data_word': 0}
......
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