-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathecgconfig.py
30 lines (28 loc) · 842 Bytes
/
ecgconfig.py
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
WADOSERVER = "http://example.com/"
LAYOUT = {'3x4_1': [[0, 3, 6, 9],
[1, 4, 7, 10],
[2, 5, 8, 11],
[1]],
'3x4': [[0, 3, 6, 9],
[1, 4, 7, 10],
[2, 5, 8, 11]],
'6x2': [[0, 6],
[1, 7],
[2, 8],
[3, 9],
[4, 10],
[5, 11]],
'12x1': [[0],
[1],
[2],
[3],
[4],
[5],
[6],
[7],
[8],
[9],
[10],
[11]]}
# If INSTITUTION is set to None the value of the tag InstitutionName is used
INSTITUTION = None