-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot
executable file
·74 lines (60 loc) · 1.78 KB
/
plot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/python3
import os
import sys
import signal
import subprocess as sp
import matplotlib.pyplot as plt
import numpy as np
pmin = 0.16
pmax = 0.19
plt.ion()
fig, ax = plt.subplots(layout='constrained')
terminating = False
def quit(*args):
global terminating
terminating = True
fig.canvas.stop_event_loop()
def update_errorbar(errobj, x, y, yerr):
ln, caps, bars = errobj
barsy, = bars
ln.set_data(x, y)
barsy.set_segments([
np.array([[x, yt], [x, yb]])
for x, yt, yb in zip(x, y + yerr, y - yerr)
])
def read_data():
sp.run(['scons', '-s'], check=True)
data = {}
for L in sys.argv[1:]:
L = int(L)
path = f'result/{L}'
for fname in sorted(os.listdir(path)):
with open(f'{path}/{fname}') as f:
for line in f:
if not line.strip() or line.startswith('#'):
continue
v = [float(word) for word in line.split()]
p = v[1]
if p < pmin or p > pmax:
continue
if L not in data:
data[L] = []
data[L].append(v)
return {key: np.array(value) for key, value in data.items()}
signal.signal(signal.SIGTERM, quit)
signal.signal(signal.SIGINT, quit)
fig.canvas.mpl_connect('close_event', quit)
graphs = {}
while not terminating:
data = read_data()
for L, v in data.items():
x = v[:, 1]
y = v[:, 3] * L**(-1.75)
yerr = v[:, 4] * L**(-1.75)
if L not in graphs:
graphs[L] = ax.errorbar(x, y, yerr, fmt='+', label=str(int(L)))
else:
update_errorbar(graphs[L], x, y, yerr)
ax.legend()
fig.canvas.draw()
fig.canvas.start_event_loop(2)