Skip to content
Snippets Groups Projects
Verified Commit 3548f94b authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Change plot size of triggermap

parent f83eadc5
No related branches found
No related tags found
No related merge requests found
Pipeline #33445 passed
......@@ -133,7 +133,7 @@ class TriggerMap(Module):
self.create_plot(self.triggered_hits, "Trigger Map", 'triggermap')
def create_plot(self, hits, title, filename):
fig, ax = plt.subplots(figsize=(16, 8))
fig, ax = plt.subplots(figsize=(16, 16))
ax.grid(True)
ax.set_axisbelow(True)
hit_matrix = np.array([np.array(x) for x in hits]).transpose()
......
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