Skip to content

Commit

Permalink
Update trigger integtest to use string tc types
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturSztuc committed Oct 21, 2024
1 parent 7d5b09a commit 3f5ad36
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions integtest/td_leakage_between_runs_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,20 +53,19 @@
conf_dict["trigger"]["mlt_merge_overlapping_tcs"] = True
conf_dict["trigger"]["mlt_send_timed_out_tds"] = True
conf_dict["trigger"]["mlt_buffer_timeout"] = 1000
conf_dict["trigger"]["mlt_use_readout_map"] = True
conf_dict["trigger"]["mlt_td_readout_map"] = []
rmap_conf = {}
rmap_conf["candidate_type"] = 1
rmap_conf["tc_type_name"] = "kTiming"
rmap_conf["time_before"] = readout_window_time_before
rmap_conf["time_after"] = readout_window_time_after
conf_dict["trigger"]["mlt_td_readout_map"].append(rmap_conf)
rmap_conf = {}
rmap_conf["candidate_type"] = 2
rmap_conf["tc_type_name"] = "kTPCLowE"
rmap_conf["time_before"] = readout_window_time_before
rmap_conf["time_after"] = readout_window_time_after
conf_dict["trigger"]["mlt_td_readout_map"].append(rmap_conf)
rmap_conf = {}
rmap_conf["candidate_type"] = 3
rmap_conf["tc_type_name"] = "kSupernova"
rmap_conf["time_before"] = readout_window_time_before
rmap_conf["time_after"] = readout_window_time_after
conf_dict["trigger"]["mlt_td_readout_map"].append(rmap_conf)
Expand Down

0 comments on commit 3f5ad36

Please sign in to comment.