Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reimplement ATLAS_Z0_7TEV_49FB_HIMASS #2178

Merged
merged 20 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def get_kinematics():

kin_value = {
'M_ll': {'min': None, 'mid': (0.5 * (M['low'] + M['high'])), 'max': None},
'sqrts': {'min': None, 'mid': 7000.0, 'max': None},
}

kin.append(kin_value)
Expand Down
scarlehoff marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -3,103 +3,51 @@ bins:
min: null
mid: 123.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 140.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 160.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 180.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 200.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 220.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 240.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 275.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 350.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 450.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 600.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 850.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
- M_ll:
min: null
mid: 1250.0
max: null
sqrts:
min: null
mid: 7000.0
max: null
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setname: ATLAS_Z0_7TEV_49FB
version: 1
version: 2
version_comment: Reimplementation of old commondata
nnpdf_metadata:
nnpdf31_process: DY NC
Expand All @@ -18,7 +18,7 @@ implemented_observables:
description: Drell-Yan Mass Distribution
label: ATLAS HM DY 7 TeV
units: ''
process_type: DY_MLL
process_type: "DY_MLL"
tables: [1]
npoints: []
ndata: 13
Expand All @@ -27,21 +27,15 @@ implemented_observables:
dataset_label: ATLAS HM DY 7 TeV
y_label: $d\sigma_{Z/\gamma^{*}}/dM_{ll}$ (fb)
y_scale: log
plot_x: M_ll #Not sure how to change this to M_ll2
plot_x: M_ll
kinematic_coverage:
- M_ll
- sqrts
kinematics:
variables:
M_ll:
description: Mass of lepton pair
label: M_ll
scarlehoff marked this conversation as resolved.
Show resolved Hide resolved
units: 'GeV'
sqrts:
description: Square root of centre of mass energy
label: sqrts
units: 'GeV'

file: kinematics.yaml
theory:
conversion_factor: 1000.0
Expand All @@ -50,5 +44,9 @@ implemented_observables:
- - ATLAS_DY_7TEV_49FB_HIMASS
data_uncertainties:
- uncertainties.yaml
# variants:
# legacy:
# data_uncertainties:
# - uncertainties_legacy_HIMASS.yaml
scarlehoff marked this conversation as resolved.
Show resolved Hide resolved
data_central: data.yaml
ported_from: ATLASZHIGHMASS49FB
2 changes: 2 additions & 0 deletions validphys2/src/validphys/commondataparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ def _quick_yaml_load(filepath):
"SHP_ASY": ("$\\eta$", "$p_T (GeV)$", "$\\sqrt{s} (GeV)$"),
"JET_POL": ("$\\eta$", "$p_T^2 (GeV^2)$", "$\\sqrt{s} (GeV)$"),
"DIJET_POL": ("$\\m_{1,2} (GeV)", "$\\eta_1$", "$\\eta_2$"),
"DY_MLL": ("$M_{ll} (GeV)$", "$M_{ll}^2 (GeV^2)$", "$\\sqrt{s} (GeV)$"),
scarlehoff marked this conversation as resolved.
Show resolved Hide resolved
}

PROCESS_DESCRIPTION_LABEL = {
Expand Down Expand Up @@ -139,6 +140,7 @@ def _quick_yaml_load(filepath):
"JET_POL": "Inclusive Jet longitudinal double-spin asymmetry",
"DIJET_POL": "Dijets longitudinal double-spin asymmetry",
"SHP_ASY": "double spin asymmetry in single hadron production",
"DY_MLL": "Drell-Yan Mass Distribution of Lepton Pairs",
}


Expand Down
Loading