Skip to content

Commit

Permalink
Correction metadata and added SIDIS as a process to validphys
Browse files Browse the repository at this point in the history
  • Loading branch information
Gijs van Seeventer committed Dec 11, 2024
1 parent b2fdfc5 commit a920736
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ implemented_observables:
description: Multiplicity M for $K^+$ for the hadron as a function of $x$, $y$, $z$ and $Q^2$
label: $M$
units: ""
process_type: ""
process_type: SIDIS
ndata: 309
tables: [1]
npoints: [309]

# Plotting information
plotting:
kinematics_override:
kinematics_override: identity
dataset_label: COMPAS $\mu^{+}$ d-->$\mu^{+}$ $K^{+/-}$ X
y_label: $M(x,y,z,Q^2)$
plot_x:
line_by: []
figure_by: []
plot_x: x
figure_by: [y,z]
kinematic_coverage: [x,y,z,Q2,sqrts]

kinematics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ implemented_observables:
description: Multiplicity M for $K^-$ for the hadron as a function of $x$, $y$, $z$ and $Q^2$
label: $M$
units: ""
process_type: ""
process_type: SIDIS
ndata: 309
tables: [2]
npoints: [309]

# Plotting information
plotting:
kinematics_override:
kinematics_override: identity
dataset_label: COMPAS $\mu^{+}$ d --> $\mu''^{+}$ $\pi^{-}$ X
y_label: $M(x,y,z,Q^2)$
plot_x:
line_by: []
figure_by: []
plot_x: x
figure_by: [y,z]
kinematic_coverage: [x,y,z,Q2]

kinematics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ implemented_observables:
description: Multiplicity M for $\pi^-$ for the hadron as a function of $x$, $y$, $z$ and $Q^2$
label: $M$
units: ""
process_type: ""
process_type: SIDIS
ndata: 311
tables: [2]
npoints: [311]

# Plotting information
plotting:
kinematics_override:
kinematics_override: identity
dataset_label: COMPAS $\mu^{+}$ d --> $\mu''^{+}$ $\pi^{-}$ X
y_label: $M(x,y,z,Q^2)$
plot_x:
line_by: []
figure_by: []
plot_x: x
figure_by: [y,z]
kinematic_coverage: [x,y,z,Q2]

kinematics:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,18 @@ implemented_observables:
description: Multiplicity M for $\pi^+$ for the hadron as a function of $x$, $y$, $z$ and $Q^2$
label: $M$
units: ""
process_type: ""
process_type: SIDIS
ndata: 311
tables: [1]
npoints: [311]

# Plotting information
plotting:
kinematics_override:
kinematics_override: identity
dataset_label: COMPAS $\mu^{+}$ d --> $\mu''^{+}$ $\pi^{+}$ X
y_label: $M(x,y,z,Q^2)$
plot_x:
line_by: []
figure_by: []
plot_x: x
figure_by: [y,z]
kinematic_coverage: [x,y,z,Q2]

kinematics:
Expand Down
9 changes: 9 additions & 0 deletions validphys2/src/validphys/process_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class _Vars:
eta_2 = "eta_2"
m_ll = "m_ll"
m_ll2 = "m_ll2"
z = "z"


class _KinematicsInformation:
Expand Down Expand Up @@ -482,6 +483,13 @@ def _dymll_xq2map(kin_info):
)


SIDIS = _Process(
"SIDIS",
"Semi-Inclusive Deep Inelastic Scattering",
accepted_variables=(_Vars.x, _Vars.Q2, _Vars.y, _Vars.sqrts, _Vars.z),
xq2map_function=_dis_xq2map,
)

PROCESSES = {
"DIS": DIS,
"DIS_NC": dataclasses.replace(DIS, name="DIS_NC"),
Expand Down Expand Up @@ -515,6 +523,7 @@ def _dymll_xq2map(kin_info):
"POS_DIS": POS_DIS,
"PHT": PHT,
"SINGLETOP": SINGLETOP,
"SIDIS": SIDIS,
}


Expand Down

0 comments on commit a920736

Please sign in to comment.