Skip to content

Commit d5f8b6d

Browse files
committed
tasso pro 22 gev impl
1 parent f493354 commit d5f8b6d

File tree

5 files changed

+90
-0
lines changed

5 files changed

+90
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
data_central:
2+
- 3.7
3+
- 1.7
4+
- 2.6
5+
- 3.0
6+
- 2.1
7+
- 1.4
8+
- 0.7
9+
- 0.29
10+
- 0.15
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
from filter_core import magic
2+
import yaml
3+
4+
table = "rawdata/Table12.yaml"
5+
var_name = 'z'
6+
7+
data, kin, err = magic(table, var_name)
8+
9+
with open('data.yaml', 'w') as f:
10+
yaml.dump(data, f, sort_keys=False)
11+
with open('kinematics.yaml', 'w') as f:
12+
yaml.dump(kin, f, sort_keys=False)
13+
with open('uncertainties.yaml', 'w') as f:
14+
yaml.dump(err, f, sort_keys=False)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
bins:
2+
- z:
3+
min: 0.092
4+
mid: 0.094
5+
max: 0.096
6+
- z:
7+
min: 0.096
8+
mid: 0.099
9+
max: 0.101
10+
- z:
11+
min: 0.101
12+
mid: 0.104
13+
max: 0.106
14+
- z:
15+
min: 0.106
16+
mid: 0.109
17+
max: 0.112
18+
- z:
19+
min: 0.112
20+
mid: 0.125
21+
max: 0.138
22+
- z:
23+
min: 0.138
24+
mid: 0.152
25+
max: 0.17
26+
- z:
27+
min: 0.17
28+
mid: 0.18
29+
max: 0.2
30+
- z:
31+
min: 0.29
32+
mid: 0.32
33+
max: 0.36
34+
- z:
35+
min: 0.36
36+
mid: 0.39
37+
max: 0.43
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
definitions:
2+
error:
3+
definition: total uncertainty
4+
treatment: ADD
5+
type: UNCORR
6+
sys_norm:
7+
definition: systematic uncertainty - normalisation
8+
treatment: MULT
9+
type: CORR
10+
bins:
11+
- error: 1.3
12+
sys_norm: 0.2331
13+
- error: 0.8
14+
sys_norm: 1.07100000e-01
15+
- error: 0.8
16+
sys_norm: 0.1638
17+
- error: 0.8
18+
sys_norm: 0.189
19+
- error: 0.4
20+
sys_norm: 0.1323
21+
- error: 0.3
22+
sys_norm: 8.82000000e-02
23+
- error: 0.31
24+
sys_norm: 4.41000000e-02
25+
- error: 0.16
26+
sys_norm: 1.82700000e-02
27+
- error: 0.09
28+
sys_norm: 0.00945

0 commit comments

Comments
 (0)