diff --git a/src/nectarchain/dqm/trigger_statistics.py b/src/nectarchain/dqm/trigger_statistics.py index 75344fad..75013aec 100644 --- a/src/nectarchain/dqm/trigger_statistics.py +++ b/src/nectarchain/dqm/trigger_statistics.py @@ -101,6 +101,20 @@ def get_results(self): "Others": [len(self.event_other_times)], "Wrong times": [len(self.event_wrong_times)], } + self.TriggerStat_Results_Dict["TRIGGER-EVENT-TIMESTAMPS"] = { + "All": np.array(self.event_times), + "Physical": np.array(self.event_phy_times), + "Pedestals": np.array(self.event_ped_times), + "Others": np.array(self.event_other_times), + "Wrong times": np.array(self.event_wrong_times), + } + self.TriggerStat_Results_Dict["TRIGGER-EVENT-IDS"] = { + "All": np.array(self.event_id), + "Physical": np.array(self.event_phy_id), + "Pedestals": np.array(self.event_ped_id), + "Others": np.array(self.event_other_id), + "Wrong times": np.array(self.event_wrong_id), + } self.TriggerStat_Results_Dict["START-TIMES"] = { "Run start time": [self.run_start1], "First event": [self.run_start],