Skip to content

Commit 20092c6

Browse files
committed
Corrected names of kinematic variables
1 parent ae72093 commit 20092c6

File tree

3 files changed

+11
-45
lines changed

3 files changed

+11
-45
lines changed

nnpdf_data/nnpdf_data/commondata/CMS_Z0_13TEV/filter.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def get_kinematics():
2424

2525
for m in input["independent_variables"][0]['values']:
2626
kin_value = {
27-
'eta': {'min': -2.4, 'mid': 0.0, 'max': +2.4},
28-
'mass': {'min': m['low'], 'mid': 0.5 * (m['low'] + m['high']), 'max': m['high']},
27+
'm_ll': {'min': m['low'], 'mid': 0.5 * (m['low'] + m['high']), 'max': m['high']},
2928
}
3029

3130
kin.append(kin_value)
Lines changed: 7 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,29 @@
11
bins:
2-
- eta:
3-
min: -2.4
4-
mid: 0.0
5-
max: 2.4
6-
mass:
2+
- m_ll:
73
min: 170.0
84
mid: 185.0
95
max: 200.0
10-
- eta:
11-
min: -2.4
12-
mid: 0.0
13-
max: 2.4
14-
mass:
6+
- m_ll:
157
min: 200.0
168
mid: 225.0
179
max: 250.0
18-
- eta:
19-
min: -2.4
20-
mid: 0.0
21-
max: 2.4
22-
mass:
10+
- m_ll:
2311
min: 250.0
2412
mid: 285.0
2513
max: 320.0
26-
- eta:
27-
min: -2.4
28-
mid: 0.0
29-
max: 2.4
30-
mass:
14+
- m_ll:
3115
min: 320.0
3216
mid: 415.0
3317
max: 510.0
34-
- eta:
35-
min: -2.4
36-
mid: 0.0
37-
max: 2.4
38-
mass:
18+
- m_ll:
3919
min: 510.0
4020
mid: 605.0
4121
max: 700.0
42-
- eta:
43-
min: -2.4
44-
mid: 0.0
45-
max: 2.4
46-
mass:
22+
- m_ll:
4723
min: 700.0
4824
mid: 850.0
4925
max: 1000.0
50-
- eta:
51-
min: -2.4
52-
mid: 0.0
53-
max: 2.4
54-
mass:
26+
- m_ll:
5527
min: 1000.0
5628
mid: 7000.0
5729
max: 13000.0

nnpdf_data/nnpdf_data/commondata/CMS_Z0_13TEV/metadata.yaml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,13 @@ implemented_observables:
2525
ndata: 7
2626
plotting:
2727
dataset_label: 'CMS 13 TeV $A_{FB}$ $e$ and $\mu$ channels combined'
28-
plot_x: m
28+
plot_x: m_ll
2929
y_label: "$A_{FB}$"
3030
kinematic_coverage:
31-
- eta
32-
- mass
31+
- m_ll
3332
kinematics:
3433
variables:
35-
eta:
36-
description: "lepton pseudorapidity"
37-
label: "$\eta$"
38-
units: ""
39-
mass:
34+
m_ll:
4035
description: "dilepton mass"
4136
label: "$m_{ll}$"
4237
units: "$GeV$"

0 commit comments

Comments
 (0)