diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/data.yaml new file mode 100644 index 0000000000..141eb05083 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 0.3039 +- 0.2876 +- 0.2773 +- 0.2337 +- 0.2437 +- 0.235 +- 0.2587 +- 0.2673 +- 0.3101 +- 0.2095 +- 0.2068 +- 0.1914 +- 0.1718 +- 0.1658 +- 0.1733 +- 0.1745 +- 0.1936 +- 0.1622 +- 0.1147 +- 0.1111 +- 0.1107 +- 0.1128 +- 0.1052 +- 0.1079 +- 0.1069 +- 0.1203 +- 0.1007 +- 0.0495 +- 0.0469 +- 0.0503 +- 0.0521 +- 0.053 +- 0.0473 +- 0.0487 +- 0.0494 +- 0.0372 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/filter.py new file mode 100644 index 0000000000..f658470e83 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/filter.py @@ -0,0 +1,136 @@ +import yaml +import os + +ECM = 10.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*1.876+1.876^2)= 10.3 in GeV + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/kinematics.yaml new file mode 100644 index 0000000000..2a93918fef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 10.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/metadata.yaml new file mode 100644 index 0000000000..1692fb93cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $K^+$ for the deutron as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 41 + - 42 + - 43 + - 44 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $D \rightarrow K^{+}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/uncertainties.yaml new file mode 100644 index 0000000000..ed149784af --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P36GEV_D-POSITRON-KPLUS/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0056 + sys: 0.0126 +- stat: 0.0049 + sys: 0.0132 +- stat: 0.0044 + sys: 0.0147 +- stat: 0.0043 + sys: 0.0124 +- stat: 0.0046 + sys: 0.013 +- stat: 0.0057 + sys: 0.0125 +- stat: 0.0084 + sys: 0.0156 +- stat: 0.0216 + sys: 0.0186 +- stat: 0.0474 + sys: 0.0227 +- stat: 0.0047 + sys: 0.0078 +- stat: 0.0038 + sys: 0.0075 +- stat: 0.0032 + sys: 0.0082 +- stat: 0.0032 + sys: 0.0075 +- stat: 0.0031 + sys: 0.0079 +- stat: 0.0038 + sys: 0.0089 +- stat: 0.0054 + sys: 0.0091 +- stat: 0.0129 + sys: 0.0092 +- stat: 0.0238 + sys: 0.0077 +- stat: 0.0026 + sys: 0.0033 +- stat: 0.0019 + sys: 0.0038 +- stat: 0.0017 + sys: 0.0046 +- stat: 0.0018 + sys: 0.0048 +- stat: 0.0017 + sys: 0.005 +- stat: 0.0019 + sys: 0.0049 +- stat: 0.0025 + sys: 0.005 +- stat: 0.0057 + sys: 0.0056 +- stat: 0.0108 + sys: 0.0041 +- stat: 0.0019 + sys: 0.0013 +- stat: 0.0013 + sys: 0.0015 +- stat: 0.0012 + sys: 0.0021 +- stat: 0.0014 + sys: 0.0021 +- stat: 0.0012 + sys: 0.0024 +- stat: 0.0013 + sys: 0.0021 +- stat: 0.0017 + sys: 0.0021 +- stat: 0.0037 + sys: 0.0022 +- stat: 0.0087 + sys: 0.0015 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/data.yaml new file mode 100644 index 0000000000..84de5c2322 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 0.2075 +- 0.1947 +- 0.1814 +- 0.143 +- 0.1407 +- 0.141 +- 0.1372 +- 0.1527 +- 0.1851 +- 0.1205 +- 0.1069 +- 0.1031 +- 0.0877 +- 0.0809 +- 0.0792 +- 0.0769 +- 0.077 +- 0.1039 +- 0.0555 +- 0.0525 +- 0.0478 +- 0.0387 +- 0.0357 +- 0.0317 +- 0.0283 +- 0.0313 +- 0.0359 +- 0.0194 +- 0.0141 +- 0.0135 +- 0.0138 +- 0.0112 +- 0.0095 +- 0.0065 +- 0.0078 +- 0.0095 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/filter.py new file mode 100644 index 0000000000..6cdf409b4d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/filter.py @@ -0,0 +1,136 @@ +import yaml +import os + +ECM = 10.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*1.876+1.876^2)= 10.3 in GeV + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/kinematics.yaml new file mode 100644 index 0000000000..60ef5323f4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/metadata.yaml new file mode 100644 index 0000000000..38dcb7b3b2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $K^-$ for the deutron as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 45 + - 46 + - 47 + - 48 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $D \rightarrow K^{-}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/uncertainties.yaml new file mode 100644 index 0000000000..eff7cafee9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-KMIN/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0045 + sys: 0.0136 +- stat: 0.0039 + sys: 0.0111 +- stat: 0.0036 + sys: 0.009 +- stat: 0.0033 + sys: 0.0065 +- stat: 0.0034 + sys: 0.0051 +- stat: 0.0043 + sys: 0.0055 +- stat: 0.0061 + sys: 0.0064 +- stat: 0.0149 + sys: 0.0079 +- stat: 0.0357 + sys: 0.0094 +- stat: 0.0034 + sys: 0.0068 +- stat: 0.0025 + sys: 0.0067 +- stat: 0.0023 + sys: 0.0073 +- stat: 0.0022 + sys: 0.0051 +- stat: 0.0021 + sys: 0.0043 +- stat: 0.0025 + sys: 0.0038 +- stat: 0.0034 + sys: 0.0031 +- stat: 0.0083 + sys: 0.0024 +- stat: 0.0204 + sys: 0.003 +- stat: 0.0016 + sys: 0.0032 +- stat: 0.0012 + sys: 0.0043 +- stat: 0.001 + sys: 0.0027 +- stat: 0.001 + sys: 0.0024 +- stat: 0.0009 + sys: 0.002 +- stat: 0.001 + sys: 0.0017 +- stat: 0.0012 + sys: 0.0011 +- stat: 0.003 + sys: 0.001 +- stat: 0.0067 + sys: 0.0011 +- stat: 0.0012 + sys: 0.0008 +- stat: 0.0007 + sys: 0.0004 +- stat: 0.0006 + sys: 0.0004 +- stat: 0.0006 + sys: 0.0004 +- stat: 0.0005 + sys: 0.0004 +- stat: 0.0005 + sys: 0.0004 +- stat: 0.0006 + sys: 0.0004 +- stat: 0.0014 + sys: 0.0005 +- stat: 0.0052 + sys: 0.0005 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/data.yaml new file mode 100644 index 0000000000..5a5f5a259e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 1.8608 +- 1.7289 +- 1.6091 +- 1.4893 +- 1.4365 +- 1.3778 +- 1.4168 +- 1.4885 +- 1.5469 +- 0.9133 +- 0.8675 +- 0.8335 +- 0.7771 +- 0.7766 +- 0.7416 +- 0.7592 +- 0.7358 +- 0.8095 +- 0.3844 +- 0.3603 +- 0.3618 +- 0.343 +- 0.3351 +- 0.312 +- 0.2975 +- 0.3159 +- 0.3077 +- 0.1218 +- 0.1164 +- 0.1241 +- 0.1384 +- 0.1282 +- 0.1185 +- 0.1059 +- 0.0966 +- 0.09 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/filter.py new file mode 100644 index 0000000000..e4be75afaa --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/filter.py @@ -0,0 +1,136 @@ +import yaml +import os + +ECM = 10.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*1.876+1.876^2)= 10.3 in GeV + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/kinematics.yaml new file mode 100644 index 0000000000..34641fc45b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/metadata.yaml new file mode 100644 index 0000000000..85973868d0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $\pi^-$ for the deutron as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 37 + - 38 + - 39 + - 40 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $D \rightarrow \pi^{-}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/uncertainties.yaml new file mode 100644 index 0000000000..242d23910f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-ELECTRON-PIMIN/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0119 + sys: 0.0386 +- stat: 0.01 + sys: 0.033 +- stat: 0.0092 + sys: 0.0265 +- stat: 0.0096 + sys: 0.0201 +- stat: 0.0096 + sys: 0.0188 +- stat: 0.0114 + sys: 0.022 +- stat: 0.0156 + sys: 0.0271 +- stat: 0.0342 + sys: 0.031 +- stat: 0.0666 + sys: 0.0304 +- stat: 0.0083 + sys: 0.022 +- stat: 0.0067 + sys: 0.0155 +- stat: 0.0061 + sys: 0.0159 +- stat: 0.0062 + sys: 0.0101 +- stat: 0.0062 + sys: 0.0124 +- stat: 0.0071 + sys: 0.0124 +- stat: 0.0095 + sys: 0.0135 +- stat: 0.0209 + sys: 0.0138 +- stat: 0.044 + sys: 0.0203 +- stat: 0.0038 + sys: 0.0119 +- stat: 0.0028 + sys: 0.0105 +- stat: 0.0026 + sys: 0.0079 +- stat: 0.0027 + sys: 0.0052 +- stat: 0.0026 + sys: 0.0054 +- stat: 0.0029 + sys: 0.0041 +- stat: 0.0038 + sys: 0.0064 +- stat: 0.0084 + sys: 0.0066 +- stat: 0.0179 + sys: 0.0092 +- stat: 0.0021 + sys: 0.0046 +- stat: 0.0014 + sys: 0.0039 +- stat: 0.0014 + sys: 0.0033 +- stat: 0.0017 + sys: 0.0049 +- stat: 0.0017 + sys: 0.0043 +- stat: 0.0018 + sys: 0.0038 +- stat: 0.0022 + sys: 0.0024 +- stat: 0.0046 + sys: 0.0026 +- stat: 0.0095 + sys: 0.0022 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/data.yaml new file mode 100644 index 0000000000..dc140930cd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 2.0196 +- 1.8966 +- 1.8073 +- 1.668 +- 1.6224 +- 1.6061 +- 1.6607 +- 1.7349 +- 1.7259 +- 1.0285 +- 1.0252 +- 0.9805 +- 0.9621 +- 0.9254 +- 0.9218 +- 0.937 +- 0.9789 +- 1.0039 +- 0.4434 +- 0.4474 +- 0.4531 +- 0.4526 +- 0.4425 +- 0.4391 +- 0.4218 +- 0.4342 +- 0.4231 +- 0.1458 +- 0.1598 +- 0.1765 +- 0.2015 +- 0.1897 +- 0.1795 +- 0.172 +- 0.1549 +- 0.1754 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/filter.py new file mode 100644 index 0000000000..7c109f53ce --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/filter.py @@ -0,0 +1,136 @@ +import yaml +import os + +ECM = 10.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*1.876+1.876^2)= 10.3 in GeV + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/kinematics.yaml new file mode 100644 index 0000000000..34641fc45b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.033 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 10.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.451 + max: null + sqrts: + min: null + mid: 10.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/metadata.yaml new file mode 100644 index 0000000000..0faf791b87 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $\pi^+$ for the deutron as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 33 + - 34 + - 35 + - 36 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $D \rightarrow \pi^{+}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/uncertainties.yaml new file mode 100644 index 0000000000..deac41119e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_10P3GEV_D-POSITRON-PIPLUS/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0126 + sys: 0.0457 +- stat: 0.0107 + sys: 0.0351 +- stat: 0.0099 + sys: 0.0263 +- stat: 0.0102 + sys: 0.0336 +- stat: 0.0101 + sys: 0.0325 +- stat: 0.0122 + sys: 0.0339 +- stat: 0.0168 + sys: 0.0271 +- stat: 0.0367 + sys: 0.0361 +- stat: 0.0721 + sys: 0.0652 +- stat: 0.009 + sys: 0.0193 +- stat: 0.0074 + sys: 0.0178 +- stat: 0.0068 + sys: 0.0175 +- stat: 0.007 + sys: 0.0184 +- stat: 0.0068 + sys: 0.0207 +- stat: 0.0081 + sys: 0.0187 +- stat: 0.0107 + sys: 0.0152 +- stat: 0.024 + sys: 0.0179 +- stat: 0.0495 + sys: 0.0185 +- stat: 0.0042 + sys: 0.0147 +- stat: 0.0032 + sys: 0.0126 +- stat: 0.003 + sys: 0.0107 +- stat: 0.0032 + sys: 0.0108 +- stat: 0.0032 + sys: 0.0144 +- stat: 0.0036 + sys: 0.0128 +- stat: 0.0045 + sys: 0.0153 +- stat: 0.0099 + sys: 0.0128 +- stat: 0.0208 + sys: 0.013 +- stat: 0.0023 + sys: 0.0041 +- stat: 0.0018 + sys: 0.0052 +- stat: 0.0018 + sys: 0.0028 +- stat: 0.0022 + sys: 0.0042 +- stat: 0.0022 + sys: 0.0069 +- stat: 0.0024 + sys: 0.0058 +- stat: 0.0029 + sys: 0.0061 +- stat: 0.0061 + sys: 0.0055 +- stat: 0.0128 + sys: 0.0056 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/data.yaml new file mode 100644 index 0000000000..31ee3dbbf1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 0.2005 +- 0.197 +- 0.1738 +- 0.144 +- 0.1335 +- 0.1351 +- 0.1513 +- 0.15 +- 0.1182 +- 0.1296 +- 0.1065 +- 0.1034 +- 0.0794 +- 0.0734 +- 0.0713 +- 0.0732 +- 0.0668 +- 0.0832 +- 0.0537 +- 0.0497 +- 0.0442 +- 0.0364 +- 0.0331 +- 0.0298 +- 0.03 +- 0.0325 +- 0.0326 +- 0.0192 +- 0.016 +- 0.0129 +- 0.0122 +- 0.0102 +- 0.0082 +- 0.0063 +- 0.0038 +- 0.0082 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/filter.py new file mode 100644 index 0000000000..f6877c67a9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/filter.py @@ -0,0 +1,138 @@ +import yaml +import os + +ECM = ( + 7.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*0.938+0.938^2)= 7.3 GeV +) + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/kinematics.yaml new file mode 100644 index 0000000000..73ed9da35c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/metadata.yaml new file mode 100644 index 0000000000..dd4248277b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $K^-$ for the proton as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 45 + - 46 + - 47 + - 48 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $P \rightarrow K^{-}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/uncertainties.yaml new file mode 100644 index 0000000000..0cdeedf5d8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-KMIN/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0049 + sys: 0.0126 +- stat: 0.0042 + sys: 0.0117 +- stat: 0.0038 + sys: 0.0091 +- stat: 0.0036 + sys: 0.007 +- stat: 0.0036 + sys: 0.0061 +- stat: 0.0046 + sys: 0.0059 +- stat: 0.0069 + sys: 0.0078 +- stat: 0.0145 + sys: 0.008 +- stat: 0.0277 + sys: 0.0076 +- stat: 0.0039 + sys: 0.009 +- stat: 0.0027 + sys: 0.0065 +- stat: 0.0024 + sys: 0.0056 +- stat: 0.0022 + sys: 0.0049 +- stat: 0.0021 + sys: 0.0046 +- stat: 0.0025 + sys: 0.0044 +- stat: 0.0036 + sys: 0.0032 +- stat: 0.0077 + sys: 0.0027 +- stat: 0.0161 + sys: 0.0034 +- stat: 0.0017 + sys: 0.0026 +- stat: 0.0013 + sys: 0.0022 +- stat: 0.001 + sys: 0.0024 +- stat: 0.001 + sys: 0.0022 +- stat: 0.0009 + sys: 0.002 +- stat: 0.001 + sys: 0.0018 +- stat: 0.0013 + sys: 0.0016 +- stat: 0.0029 + sys: 0.0017 +- stat: 0.0079 + sys: 0.0017 +- stat: 0.0013 + sys: 0.0011 +- stat: 0.0007 + sys: 0.0009 +- stat: 0.0006 + sys: 0.0007 +- stat: 0.0006 + sys: 0.0008 +- stat: 0.0005 + sys: 0.0007 +- stat: 0.0006 + sys: 0.0007 +- stat: 0.0006 + sys: 0.0007 +- stat: 0.0012 + sys: 0.0004 +- stat: 0.0036 + sys: 0.0009 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/data.yaml new file mode 100644 index 0000000000..42335a5e6f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 1.8363 +- 1.6524 +- 1.5355 +- 1.3604 +- 1.3033 +- 1.3047 +- 1.3294 +- 1.3586 +- 1.5521 +- 0.8925 +- 0.8484 +- 0.7933 +- 0.7305 +- 0.6946 +- 0.681 +- 0.6674 +- 0.6824 +- 0.6752 +- 0.3664 +- 0.3355 +- 0.3342 +- 0.3145 +- 0.3037 +- 0.2796 +- 0.2711 +- 0.2703 +- 0.2826 +- 0.1141 +- 0.1104 +- 0.1178 +- 0.1188 +- 0.1121 +- 0.1005 +- 0.0897 +- 0.0853 +- 0.0749 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/filter.py new file mode 100644 index 0000000000..ed93dd8581 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/filter.py @@ -0,0 +1,138 @@ +import yaml +import os + +ECM = ( + 7.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*0.938+0.938^2)= 7.3 GeV +) + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/kinematics.yaml new file mode 100644 index 0000000000..73ed9da35c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/metadata.yaml new file mode 100644 index 0000000000..745f99749c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $\pi^-$ for the proton as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 37 + - 38 + - 39 + - 40 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $P \rightarrow \pi^{-}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/uncertainties.yaml new file mode 100644 index 0000000000..aa1f76d351 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-ELECTRON-PIMIN/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0131 + sys: 0.0457 +- stat: 0.0108 + sys: 0.0367 +- stat: 0.0098 + sys: 0.0373 +- stat: 0.0097 + sys: 0.0359 +- stat: 0.0096 + sys: 0.0406 +- stat: 0.0117 + sys: 0.0499 +- stat: 0.0155 + sys: 0.0585 +- stat: 0.0327 + sys: 0.06 +- stat: 0.0664 + sys: 0.0791 +- stat: 0.009 + sys: 0.0198 +- stat: 0.0071 + sys: 0.0157 +- stat: 0.0064 + sys: 0.0121 +- stat: 0.0063 + sys: 0.0129 +- stat: 0.0061 + sys: 0.0155 +- stat: 0.0071 + sys: 0.0193 +- stat: 0.0093 + sys: 0.0227 +- stat: 0.0201 + sys: 0.024 +- stat: 0.0398 + sys: 0.0233 +- stat: 0.004 + sys: 0.0094 +- stat: 0.0029 + sys: 0.0084 +- stat: 0.0027 + sys: 0.006 +- stat: 0.0027 + sys: 0.0042 +- stat: 0.0026 + sys: 0.0054 +- stat: 0.0029 + sys: 0.0064 +- stat: 0.0036 + sys: 0.0073 +- stat: 0.0078 + sys: 0.0083 +- stat: 0.0164 + sys: 0.0082 +- stat: 0.0022 + sys: 0.0035 +- stat: 0.0015 + sys: 0.0027 +- stat: 0.0014 + sys: 0.0031 +- stat: 0.0016 + sys: 0.0025 +- stat: 0.0015 + sys: 0.0027 +- stat: 0.0017 + sys: 0.0026 +- stat: 0.002 + sys: 0.0025 +- stat: 0.0041 + sys: 0.0025 +- stat: 0.0086 + sys: 0.0023 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/data.yaml new file mode 100644 index 0000000000..109f54468a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 0.3229 +- 0.3152 +- 0.2664 +- 0.2384 +- 0.2194 +- 0.2268 +- 0.2764 +- 0.2809 +- 0.2436 +- 0.2187 +- 0.2102 +- 0.2077 +- 0.1814 +- 0.1777 +- 0.1847 +- 0.1951 +- 0.205 +- 0.2027 +- 0.1227 +- 0.1201 +- 0.1186 +- 0.115 +- 0.1112 +- 0.115 +- 0.1213 +- 0.1117 +- 0.1445 +- 0.0593 +- 0.0522 +- 0.0542 +- 0.0639 +- 0.0602 +- 0.0567 +- 0.0525 +- 0.0573 +- 0.0553 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/filter.py new file mode 100644 index 0000000000..8c497246c3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/filter.py @@ -0,0 +1,138 @@ +import yaml +import os + +ECM = ( + 7.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*0.938+0.938^2)= 7.3 GeV +) + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + # "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/kinematics.yaml new file mode 100644 index 0000000000..73ed9da35c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/metadata.yaml new file mode 100644 index 0000000000..b23981b4d8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $K^+$ for the proton as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 41 + - 42 + - 43 + - 44 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $P \rightarrow K^{+}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/uncertainties.yaml new file mode 100644 index 0000000000..1810acbc5f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-KPLUS/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0063 + sys: 0.0134 +- stat: 0.0054 + sys: 0.0148 +- stat: 0.0047 + sys: 0.0149 +- stat: 0.0047 + sys: 0.0161 +- stat: 0.0045 + sys: 0.0171 +- stat: 0.0058 + sys: 0.0203 +- stat: 0.0092 + sys: 0.0264 +- stat: 0.0215 + sys: 0.0281 +- stat: 0.0639 + sys: 0.0269 +- stat: 0.0052 + sys: 0.0084 +- stat: 0.004 + sys: 0.0079 +- stat: 0.0036 + sys: 0.0082 +- stat: 0.0034 + sys: 0.0084 +- stat: 0.0033 + sys: 0.0093 +- stat: 0.0041 + sys: 0.0117 +- stat: 0.0057 + sys: 0.0131 +- stat: 0.0132 + sys: 0.0139 +- stat: 0.0266 + sys: 0.0136 +- stat: 0.0029 + sys: 0.0061 +- stat: 0.0021 + sys: 0.005 +- stat: 0.0018 + sys: 0.005 +- stat: 0.0018 + sys: 0.0046 +- stat: 0.0018 + sys: 0.0049 +- stat: 0.0021 + sys: 0.0054 +- stat: 0.0028 + sys: 0.0053 +- stat: 0.0056 + sys: 0.0051 +- stat: 0.012 + sys: 0.0063 +- stat: 0.0022 + sys: 0.0037 +- stat: 0.0015 + sys: 0.0028 +- stat: 0.0014 + sys: 0.0028 +- stat: 0.0015 + sys: 0.0027 +- stat: 0.0014 + sys: 0.0024 +- stat: 0.0015 + sys: 0.0025 +- stat: 0.0018 + sys: 0.0019 +- stat: 0.004 + sys: 0.0021 +- stat: 0.0083 + sys: 0.0019 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/data.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/data.yaml new file mode 100644 index 0000000000..575ee46e1a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 2.1622 +- 2.0213 +- 1.8647 +- 1.7446 +- 1.6976 +- 1.7028 +- 1.7601 +- 1.8685 +- 1.9956 +- 1.1253 +- 1.0846 +- 1.0645 +- 0.9866 +- 0.9755 +- 0.9795 +- 1.026 +- 1.0222 +- 1.0953 +- 0.494 +- 0.4729 +- 0.4825 +- 0.4731 +- 0.4691 +- 0.4699 +- 0.4538 +- 0.454 +- 0.4703 +- 0.1688 +- 0.1708 +- 0.1842 +- 0.2167 +- 0.2104 +- 0.1958 +- 0.1803 +- 0.1714 +- 0.1819 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/filter.py b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/filter.py new file mode 100644 index 0000000000..95674e2e32 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/filter.py @@ -0,0 +1,138 @@ +import yaml +import os + +ECM = ( + 7.3 # sqrt(s)=sqrt(2p_lep*m_hadron+m_hadron^2)=sqrt(2*27.6*0.938+0.938^2)= 7.3 GeV +) + + +def read_data(folder_path: str, tables: list, htype: int): + """ + htype: 0 for proton, 1 for deutron + """ + collected_data = dict() + collected_data["values"] = list() + collected_data["errors_stat"] = list() + collected_data["errors_sys"] = list() + collected_data["kinematics_x"] = list() + collected_data["kinematics_z"] = list() + + metadata_dict = {"htype": htype, "tables": tables, "ndata_points": list()} + + for table in tables: + with open(folder_path + f"Table{table}.yaml", "r", encoding="utf-8") as file: + file_dict = yaml.safe_load(file) + z_str = file_dict["dependent_variables"][htype]["qualifiers"][2]["value"] + z_min, z_max = map(float, z_str.split("-")) + values = file_dict["dependent_variables"][htype]["values"] + n_values = len(values) + metadata_dict["ndata_points"].append(n_values) + for i in range(n_values): + collected_data["values"] = collected_data["values"] + [values[i]["value"]] + collected_data["errors_stat"] = collected_data["errors_stat"] + [ + values[i]["errors"][0]["symerror"] + ] + collected_data["errors_sys"] = collected_data["errors_sys"] + [ + values[i]["errors"][1]["symerror"] + ] + collected_data["kinematics_x"] = collected_data["kinematics_x"] + [ + file_dict["independent_variables"][htype]["values"][i]["value"] + ] + collected_data["kinematics_z"] = collected_data["kinematics_z"] + [ + [ + z_min, + z_max, + ] + ] + return collected_data, metadata_dict + + +def write_data(collected_data: dict, folder_path: str): + data_central_yaml = {"data_central": collected_data["values"]} + with open(folder_path + f"data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + n_items = len(collected_data["values"]) + + # Write kin file + kin = [] + for i in range(n_items): + kin_value = { + "z": { + "min": collected_data["kinematics_z"][i][0], + "mid": None, + "max": collected_data["kinematics_z"][i][1], + }, + "x": {"min": None, "mid": collected_data["kinematics_x"][i], "max": None}, + "sqrts": {"min": None, "mid": ECM, "max": None}, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + + with open(folder_path + f"kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(n_items): + # here uncertainties are symmetric + e = { + "stat": collected_data["errors_stat"][i], + "sys": collected_data["errors_sys"][i], + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open(folder_path + f"uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + + # Get the path of the current file + folder_path = os.path.dirname(os.path.abspath(__file__)) + "/" + + # TODO Create a dict for easy running + naming_dict = { + "PiPProton-MLTP": [33, 34, 35, 36], + # "PiPDeutron-MLTP": [33, 34, 35, 36], + # "PiMProton-MLTP": [37, 38, 39, 40], + # "PiMDeutron-MLTP": [37, 38, 39, 40], + # "KaMProton-MLTP": [45, 46, 47, 48], + # "KaMDeutron-MLTP": [45, 46, 47, 48], + # "KaPProton-MLTP": [41, 42, 43, 44], + # "KaPDeutron-MLTP": [41, 42, 43, 44], + } + + # Wp + for name, tables in naming_dict.items(): + if "Proton" in name: + htype = 0 + else: + htype = 1 + + if name.upper() in folder_path: + a = 1 + + collected_data, metadata_dict = read_data( + folder_path + "rawdata/", tables, htype + ) + print(name.split("-")[0].lower(), metadata_dict) + write_data( + collected_data, + folder_path=folder_path, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/kinematics.yaml new file mode 100644 index 0000000000..73ed9da35c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/kinematics.yaml @@ -0,0 +1,433 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.2 + mid: null + max: 0.3 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.3 + mid: null + max: 0.4 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.4 + mid: null + max: 0.6 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.034 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.048 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.065 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.087 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.118 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.166 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.24 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.34 + max: null + sqrts: + min: null + mid: 7.3 + max: null +- z: + min: 0.6 + mid: null + max: 0.8 + x: + min: null + mid: 0.452 + max: null + sqrts: + min: null + mid: 7.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/metadata.yaml new file mode 100644 index 0000000000..50475a6419 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/metadata.yaml @@ -0,0 +1,65 @@ +setname: HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS +version: 1 +version_comment: Initial implementation +arXiv: + url: https://arxiv.org/abs/1212.5407 +iNSPIRE: + url: https://inspirehep.net/literature/1208547 +hepdata: + url: https://www.hepdata.net/record/ins1208547 +nnpdf_metadata: + nnpdf31_process: SIDIS + experiment: HERMES +implemented_observables: +- observable_name: MLTP + observable: + description: Multiplicity M for $\pi^+$ for the proton as a function of $z$, $x$ + and $\sqrts{s}$ + label: $M$ + units: '' + process_type: '' + ndata: 36 + tables: + - 33 + - 34 + - 35 + - 36 + npoints: + - 9 + - 9 + - 9 + - 9 + plotting: + kinematics_override: null + dataset_label: HERMES $P \rightarrow \pi^{+}$ + y_label: $M(z,x)$ + plot_x: null + line_by: [] + figure_by: [] + kinematic_coverage: + - z + - x + - sqrts + kinematics: + variables: + z: + description: fractional energy of hadron h + label: z + units: '' + x: + description: Bjorken scale + label: x + units: '' + sqrts: + description: Center of mass energy + label: $\sqrt{s}$ + units: $GeV$ + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + theory: + FK_tables: + - - null + - - null + operation: ratio diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz new file mode 100644 index 0000000000..7ace1b8513 Binary files /dev/null and b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/HEPData-ins1208547-v1-yaml.tar.gz differ diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table33.yaml new file mode 100644 index 0000000000..6c85e961dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table33.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0144} + - {label: sys, symerror: 0.0457} + value: 2.1622 + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.042} + value: 2.0213 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0336} + value: 1.8647 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0275} + value: 1.7446 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0335} + value: 1.6976 + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0389} + value: 1.7028 + - errors: + - {label: stat, symerror: 0.0176} + - {label: sys, symerror: 0.0464} + value: 1.7601 + - errors: + - {label: stat, symerror: 0.038} + - {label: sys, symerror: 0.0514} + value: 1.8685 + - errors: + - {label: stat, symerror: 0.0748} + - {label: sys, symerror: 0.0584} + value: 1.9956 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0126} + - {label: sys, symerror: 0.0457} + value: 2.0196 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0351} + value: 1.8966 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0263} + value: 1.8073 + - errors: + - {label: stat, symerror: 0.0102} + - {label: sys, symerror: 0.0336} + value: 1.668 + - errors: + - {label: stat, symerror: 0.0101} + - {label: sys, symerror: 0.0325} + value: 1.6224 + - errors: + - {label: stat, symerror: 0.0122} + - {label: sys, symerror: 0.0339} + value: 1.6061 + - errors: + - {label: stat, symerror: 0.0168} + - {label: sys, symerror: 0.0271} + value: 1.6607 + - errors: + - {label: stat, symerror: 0.0367} + - {label: sys, symerror: 0.0361} + value: 1.7349 + - errors: + - {label: stat, symerror: 0.0721} + - {label: sys, symerror: 0.0652} + value: 1.7259 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table34.yaml new file mode 100644 index 0000000000..d37b01c67b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table34.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0229} + value: 1.1253 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0198} + value: 1.0846 + - errors: + - {label: stat, symerror: 0.0075} + - {label: sys, symerror: 0.0133} + value: 1.0645 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0073} + value: 0.9866 + - errors: + - {label: stat, symerror: 0.0073} + - {label: sys, symerror: 0.0132} + value: 0.9755 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0145} + value: 0.9795 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.0166} + value: 1.026 + - errors: + - {label: stat, symerror: 0.0243} + - {label: sys, symerror: 0.0185} + value: 1.0222 + - errors: + - {label: stat, symerror: 0.0511} + - {label: sys, symerror: 0.0184} + value: 1.0953 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0193} + value: 1.0285 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.0178} + value: 1.0252 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0175} + value: 0.9805 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0184} + value: 0.9621 + - errors: + - {label: stat, symerror: 0.0068} + - {label: sys, symerror: 0.0207} + value: 0.9254 + - errors: + - {label: stat, symerror: 0.0081} + - {label: sys, symerror: 0.0187} + value: 0.9218 + - errors: + - {label: stat, symerror: 0.0107} + - {label: sys, symerror: 0.0152} + value: 0.937 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.0179} + value: 0.9789 + - errors: + - {label: stat, symerror: 0.0495} + - {label: sys, symerror: 0.0185} + value: 1.0039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table35.yaml new file mode 100644 index 0000000000..f1cb9c6749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table35.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0149} + value: 0.494 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0149} + value: 0.4729 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0099} + value: 0.4825 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0079} + value: 0.4731 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0082} + value: 0.4691 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0123} + value: 0.4699 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0102} + value: 0.4538 + - errors: + - {label: stat, symerror: 0.0103} + - {label: sys, symerror: 0.0118} + value: 0.454 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0118} + value: 0.4703 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0147} + value: 0.4434 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0126} + value: 0.4474 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0107} + value: 0.4531 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0108} + value: 0.4526 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0144} + value: 0.4425 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0128} + value: 0.4391 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0153} + value: 0.4218 + - errors: + - {label: stat, symerror: 0.0099} + - {label: sys, symerror: 0.0128} + value: 0.4342 + - errors: + - {label: stat, symerror: 0.0208} + - {label: sys, symerror: 0.013} + value: 0.4231 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table36.yaml new file mode 100644 index 0000000000..8a8c05a82c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table36.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0047} + value: 0.1688 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0038} + value: 0.1708 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0051} + value: 0.1842 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0072} + value: 0.2167 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0061} + value: 0.2104 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0062} + value: 0.1958 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0069} + value: 0.1803 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0063} + value: 0.1714 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.0063} + value: 0.1819 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0041} + value: 0.1458 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0052} + value: 0.1598 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0028} + value: 0.1765 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0042} + value: 0.2015 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0069} + value: 0.1897 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0058} + value: 0.1795 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.172 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0055} + value: 0.1549 + - errors: + - {label: stat, symerror: 0.0128} + - {label: sys, symerror: 0.0056} + value: 0.1754 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table37.yaml new file mode 100644 index 0000000000..4c82618902 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table37.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0131} + - {label: sys, symerror: 0.0457} + value: 1.8363 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0367} + value: 1.6524 + - errors: + - {label: stat, symerror: 0.0098} + - {label: sys, symerror: 0.0373} + value: 1.5355 + - errors: + - {label: stat, symerror: 0.0097} + - {label: sys, symerror: 0.0359} + value: 1.3604 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0406} + value: 1.3033 + - errors: + - {label: stat, symerror: 0.0117} + - {label: sys, symerror: 0.0499} + value: 1.3047 + - errors: + - {label: stat, symerror: 0.0155} + - {label: sys, symerror: 0.0585} + value: 1.3294 + - errors: + - {label: stat, symerror: 0.0327} + - {label: sys, symerror: 0.06} + value: 1.3586 + - errors: + - {label: stat, symerror: 0.0664} + - {label: sys, symerror: 0.0791} + value: 1.5521 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0119} + - {label: sys, symerror: 0.0386} + value: 1.8608 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.033} + value: 1.7289 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0265} + value: 1.6091 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0201} + value: 1.4893 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0188} + value: 1.4365 + - errors: + - {label: stat, symerror: 0.0114} + - {label: sys, symerror: 0.022} + value: 1.3778 + - errors: + - {label: stat, symerror: 0.0156} + - {label: sys, symerror: 0.0271} + value: 1.4168 + - errors: + - {label: stat, symerror: 0.0342} + - {label: sys, symerror: 0.031} + value: 1.4885 + - errors: + - {label: stat, symerror: 0.0666} + - {label: sys, symerror: 0.0304} + value: 1.5469 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table38.yaml new file mode 100644 index 0000000000..0668b645d3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table38.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0198} + value: 0.8925 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0157} + value: 0.8484 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0121} + value: 0.7933 + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0129} + value: 0.7305 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0155} + value: 0.6946 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0193} + value: 0.681 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0227} + value: 0.6674 + - errors: + - {label: stat, symerror: 0.0201} + - {label: sys, symerror: 0.024} + value: 0.6824 + - errors: + - {label: stat, symerror: 0.0398} + - {label: sys, symerror: 0.0233} + value: 0.6752 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.022} + value: 0.9133 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0155} + value: 0.8675 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0159} + value: 0.8335 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0101} + value: 0.7771 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0124} + value: 0.7766 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0124} + value: 0.7416 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0135} + value: 0.7592 + - errors: + - {label: stat, symerror: 0.0209} + - {label: sys, symerror: 0.0138} + value: 0.7358 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.0203} + value: 0.8095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table39.yaml new file mode 100644 index 0000000000..576c006127 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table39.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0094} + value: 0.3664 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0084} + value: 0.3355 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.006} + value: 0.3342 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0042} + value: 0.3145 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3037 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0064} + value: 0.2796 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0073} + value: 0.2711 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0083} + value: 0.2703 + - errors: + - {label: stat, symerror: 0.0164} + - {label: sys, symerror: 0.0082} + value: 0.2826 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0119} + value: 0.3844 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0105} + value: 0.3603 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0079} + value: 0.3618 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0052} + value: 0.343 + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0054} + value: 0.3351 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0041} + value: 0.312 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0064} + value: 0.2975 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0066} + value: 0.3159 + - errors: + - {label: stat, symerror: 0.0179} + - {label: sys, symerror: 0.0092} + value: 0.3077 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table40.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table40.yaml new file mode 100644 index 0000000000..f88c0fc22c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table40.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0035} + value: 0.1141 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1104 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0031} + value: 0.1178 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0025} + value: 0.1188 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.1121 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.1005 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.0025} + value: 0.0897 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0025} + value: 0.0853 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0023} + value: 0.0749 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- PI- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.1218 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0039} + value: 0.1164 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0033} + value: 0.1241 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0049} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0043} + value: 0.1282 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0038} + value: 0.1185 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0024} + value: 0.1059 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0026} + value: 0.0966 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0022} + value: 0.09 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table41.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table41.yaml new file mode 100644 index 0000000000..a49130438d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table41.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0063} + - {label: sys, symerror: 0.0134} + value: 0.3229 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0148} + value: 0.3152 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0149} + value: 0.2664 + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0161} + value: 0.2384 + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0171} + value: 0.2194 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0203} + value: 0.2268 + - errors: + - {label: stat, symerror: 0.0092} + - {label: sys, symerror: 0.0264} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0215} + - {label: sys, symerror: 0.0281} + value: 0.2809 + - errors: + - {label: stat, symerror: 0.0639} + - {label: sys, symerror: 0.0269} + value: 0.2436 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0126} + value: 0.3039 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0132} + value: 0.2876 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0147} + value: 0.2773 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0124} + value: 0.2337 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.013} + value: 0.2437 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0125} + value: 0.235 + - errors: + - {label: stat, symerror: 0.0084} + - {label: sys, symerror: 0.0156} + value: 0.2587 + - errors: + - {label: stat, symerror: 0.0216} + - {label: sys, symerror: 0.0186} + value: 0.2673 + - errors: + - {label: stat, symerror: 0.0474} + - {label: sys, symerror: 0.0227} + value: 0.3101 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table42.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table42.yaml new file mode 100644 index 0000000000..503093da94 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table42.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0084} + value: 0.2187 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0079} + value: 0.2102 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0082} + value: 0.2077 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0084} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0093} + value: 0.1777 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0117} + value: 0.1847 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0131} + value: 0.1951 + - errors: + - {label: stat, symerror: 0.0132} + - {label: sys, symerror: 0.0139} + value: 0.205 + - errors: + - {label: stat, symerror: 0.0266} + - {label: sys, symerror: 0.0136} + value: 0.2027 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0047} + - {label: sys, symerror: 0.0078} + value: 0.2095 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0075} + value: 0.2068 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0082} + value: 0.1914 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0075} + value: 0.1718 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0079} + value: 0.1658 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0089} + value: 0.1733 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0091} + value: 0.1745 + - errors: + - {label: stat, symerror: 0.0129} + - {label: sys, symerror: 0.0092} + value: 0.1936 + - errors: + - {label: stat, symerror: 0.0238} + - {label: sys, symerror: 0.0077} + value: 0.1622 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table43.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table43.yaml new file mode 100644 index 0000000000..f5dc64b029 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table43.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0061} + value: 0.1227 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.005} + value: 0.1201 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.005} + value: 0.1186 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0046} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0049} + value: 0.1112 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0054} + value: 0.115 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0053} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.0051} + value: 0.1117 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.0063} + value: 0.1445 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0026} + - {label: sys, symerror: 0.0033} + value: 0.1147 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0038} + value: 0.1111 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0046} + value: 0.1107 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0048} + value: 0.1128 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.005} + value: 0.1052 + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0049} + value: 0.1079 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.005} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0056} + value: 0.1203 + - errors: + - {label: stat, symerror: 0.0108} + - {label: sys, symerror: 0.0041} + value: 0.1007 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table44.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table44.yaml new file mode 100644 index 0000000000..6ff11e9af2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table44.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0037} + value: 0.0593 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0028} + value: 0.0522 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0028} + value: 0.0542 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0027} + value: 0.0639 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0024} + value: 0.0602 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0025} + value: 0.0567 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0019} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0021} + value: 0.0573 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0019} + value: 0.0553 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K+ X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0013} + value: 0.0495 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0469 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0503 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0021} + value: 0.0521 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0024} + value: 0.053 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0473 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0021} + value: 0.0487 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0022} + value: 0.0494 + - errors: + - {label: stat, symerror: 0.0087} + - {label: sys, symerror: 0.0015} + value: 0.0372 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table45.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table45.yaml new file mode 100644 index 0000000000..1be014f202 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table45.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0126} + value: 0.2005 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0117} + value: 0.197 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0091} + value: 0.1738 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.007} + value: 0.144 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0061} + value: 0.1335 + - errors: + - {label: stat, symerror: 0.0046} + - {label: sys, symerror: 0.0059} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0069} + - {label: sys, symerror: 0.0078} + value: 0.1513 + - errors: + - {label: stat, symerror: 0.0145} + - {label: sys, symerror: 0.008} + value: 0.15 + - errors: + - {label: stat, symerror: 0.0277} + - {label: sys, symerror: 0.0076} + value: 0.1182 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.2-0.3} + values: + - errors: + - {label: stat, symerror: 0.0045} + - {label: sys, symerror: 0.0136} + value: 0.2075 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0111} + value: 0.1947 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.009} + value: 0.1814 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0065} + value: 0.143 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0051} + value: 0.1407 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0055} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0064} + value: 0.1372 + - errors: + - {label: stat, symerror: 0.0149} + - {label: sys, symerror: 0.0079} + value: 0.1527 + - errors: + - {label: stat, symerror: 0.0357} + - {label: sys, symerror: 0.0094} + value: 0.1851 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table46.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table46.yaml new file mode 100644 index 0000000000..cfcca89e93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table46.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.009} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0065} + value: 0.1065 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0056} + value: 0.1034 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0049} + value: 0.0794 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0046} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0044} + value: 0.0713 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0032} + value: 0.0732 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0027} + value: 0.0668 + - errors: + - {label: stat, symerror: 0.0161} + - {label: sys, symerror: 0.0034} + value: 0.0832 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.3-0.4} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0068} + value: 0.1205 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0067} + value: 0.1069 + - errors: + - {label: stat, symerror: 0.0023} + - {label: sys, symerror: 0.0073} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0051} + value: 0.0877 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0043} + value: 0.0809 + - errors: + - {label: stat, symerror: 0.0025} + - {label: sys, symerror: 0.0038} + value: 0.0792 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0031} + value: 0.0769 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0024} + value: 0.077 + - errors: + - {label: stat, symerror: 0.0204} + - {label: sys, symerror: 0.003} + value: 0.1039 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table47.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table47.yaml new file mode 100644 index 0000000000..915f148599 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table47.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0026} + value: 0.0537 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0022} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0442 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0022} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0018} + value: 0.0298 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0016} + value: 0.03 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0017} + value: 0.0325 + - errors: + - {label: stat, symerror: 0.0079} + - {label: sys, symerror: 0.0017} + value: 0.0326 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.4-0.6} + values: + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.0032} + value: 0.0555 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0043} + value: 0.0525 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0027} + value: 0.0478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0024} + value: 0.0387 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.002} + value: 0.0357 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0017} + value: 0.0317 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0011} + value: 0.0283 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.001} + value: 0.0313 + - errors: + - {label: stat, symerror: 0.0067} + - {label: sys, symerror: 0.0011} + value: 0.0359 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table48.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table48.yaml new file mode 100644 index 0000000000..ea1bb22c2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/Table48.yaml @@ -0,0 +1,108 @@ +dependent_variables: +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- P --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0011} + value: 0.0192 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0009} + value: 0.016 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0129 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0008} + value: 0.0122 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0007} + value: 0.0102 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0082 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0007} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0004} + value: 0.0038 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0009} + value: 0.0082 +- header: {name: MULT} + qualifiers: + - {name: E(P=1), units: GeV, value: '27.6'} + - {name: RE, value: E+- DEUT --> E+- K- X} + - {name: Z, value: 0.6-0.8} + values: + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0008} + value: 0.0194 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0004} + value: 0.0141 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0135 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0138 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0112 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0004} + value: 0.0095 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0004} + value: 0.0065 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0005} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0005} + value: 0.0095 +independent_variables: +- header: {name: X (proton), units: GEV} + values: + - {value: 0.034} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.452} +- header: {name: X (deuteron), units: GEV} + values: + - {value: 0.033} + - {value: 0.048} + - {value: 0.065} + - {value: 0.087} + - {value: 0.118} + - {value: 0.166} + - {value: 0.24} + - {value: 0.34} + - {value: 0.451} diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/submission.yaml new file mode 100644 index 0000000000..ad1134e411 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/rawdata/submission.yaml @@ -0,0 +1,947 @@ +additional_resources: +- {description: 'Link to the full HERMES multiplicity data ', location: 'http://www-hermes.desy.de/multiplicities'} +comment: | + DESY-HERA. Measurements in semi-inclusive DIS are presented for each charge state of PI+- and K+- from electron/positron collisions of energy 27.6 GeV with hydrogen and deuterium targets. The results are presented as functions of the kinematic quantities X_Bjorken, Q**2, Z and hadron PT, and with and without subtraction of data from exclusive vector meson production. The data shown in this record are those presented in the figures of the paper. The complete dataset can be obtained from the link below. +dateupdated: 09/12/2013 17:15:57 +hepdata_doi: 10.17182/hepdata.62097.v1 +modifications: +- {action: Encoded, date: 11 JUL 2013, who: Mike Whalley} +record_ids: +- {id: 1208547, type: inspire} +- {id: 3550, type: red} +--- +data_file: Table1.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 1 +table_doi: 10.17182/hepdata.62097.v1/t1 +--- +data_file: Table2.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 4 +name: Table 2 +table_doi: 10.17182/hepdata.62097.v1/t2 +--- +data_file: Table3.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 3 +table_doi: 10.17182/hepdata.62097.v1/t3 +--- +data_file: Table4.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 4 +name: Table 4 +table_doi: 10.17182/hepdata.62097.v1/t4 +--- +data_file: Table5.yaml +description: | + pi+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 5 +table_doi: 10.17182/hepdata.62097.v1/t5 +--- +data_file: Table6.yaml +description: | + pi- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 6 +table_doi: 10.17182/hepdata.62097.v1/t6 +--- +data_file: Table7.yaml +description: | + K+ multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 7 +table_doi: 10.17182/hepdata.62097.v1/t7 +--- +data_file: Table8.yaml +description: | + K- multiplicities from HERMES, Target: H, VM subtracted, Not VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ P X, E- P --> E- P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 5 +name: Table 8 +table_doi: 10.17182/hepdata.62097.v1/t8 +--- +data_file: Table9.yaml +description: | + pi+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ DEUT --> E+ PI+ X, E- P --> E- PI+ X, E- DEUT --> + E- PI+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 9 +table_doi: 10.17182/hepdata.62097.v1/t9 +--- +data_file: Table10.yaml +description: | + pi- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E+ DEUT --> E+ PI- X, E- P --> E- PI- X, E- DEUT --> + E- PI- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 6 +name: Table 10 +table_doi: 10.17182/hepdata.62097.v1/t10 +--- +data_file: Table11.yaml +description: | + K+ target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E+ DEUT --> E+ K+ X, E- P --> E- K+ X, E- DEUT --> E- + K+ X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 11 +table_doi: 10.17182/hepdata.62097.v1/t11 +--- +data_file: Table12.yaml +description: | + K- target asymmetries from HERMES, VM subtracted. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E+ DEUT --> E+ K- X, E- P --> E- K- X, E- DEUT --> E- + K- X] +- name: observables + values: [AYSM] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 6 +name: Table 12 +table_doi: 10.17182/hepdata.62097.v1/t12 +--- +data_file: Table13.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 13 +table_doi: 10.17182/hepdata.62097.v1/t13 +--- +data_file: Table14.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 14 +table_doi: 10.17182/hepdata.62097.v1/t14 +--- +data_file: Table15.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 15 +table_doi: 10.17182/hepdata.62097.v1/t15 +--- +data_file: Table16.yaml +description: | + pi+ target asymmetries from HERMES, pi- target asymmetries from HERMES, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E+ P --> E+ PI- X, E- P --> E+- PI+ X, E- P --> E+- + PI- X] +- name: observables + values: [ASYM] +- name: phrases + values: [Inclusive, Asymmetry Measurement, Electron production, Neutral Current, + Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 16 +table_doi: 10.17182/hepdata.62097.v1/t16 +--- +data_file: Table17.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 17 +table_doi: 10.17182/hepdata.62097.v1/t17 +--- +data_file: Table18.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 18 +table_doi: 10.17182/hepdata.62097.v1/t18 +--- +data_file: Table19.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 19 +table_doi: 10.17182/hepdata.62097.v1/t19 +--- +data_file: Table20.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 20 +table_doi: 10.17182/hepdata.62097.v1/t20 +--- +data_file: Table21.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 21 +table_doi: 10.17182/hepdata.62097.v1/t21 +--- +data_file: Table22.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 22 +table_doi: 10.17182/hepdata.62097.v1/t22 +--- +data_file: Table23.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 23 +table_doi: 10.17182/hepdata.62097.v1/t23 +--- +data_file: Table24.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 24 +table_doi: 10.17182/hepdata.62097.v1/t24 +--- +data_file: Table25.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 25 +table_doi: 10.17182/hepdata.62097.v1/t25 +--- +data_file: Table26.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 26 +table_doi: 10.17182/hepdata.62097.v1/t26 +--- +data_file: Table27.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 27 +table_doi: 10.17182/hepdata.62097.v1/t27 +--- +data_file: Table28.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 28 +table_doi: 10.17182/hepdata.62097.v1/t28 +--- +data_file: Table29.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 29 +table_doi: 10.17182/hepdata.62097.v1/t29 +--- +data_file: Table30.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 30 +table_doi: 10.17182/hepdata.62097.v1/t30 +--- +data_file: Table31.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 31 +table_doi: 10.17182/hepdata.62097.v1/t31 +--- +data_file: Table32.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Top) +name: Table 32 +table_doi: 10.17182/hepdata.62097.v1/t32 +--- +data_file: Table33.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 33 +table_doi: 10.17182/hepdata.62097.v1/t33 +--- +data_file: Table34.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 34 +table_doi: 10.17182/hepdata.62097.v1/t34 +--- +data_file: Table35.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 35 +table_doi: 10.17182/hepdata.62097.v1/t35 +--- +data_file: Table36.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 36 +table_doi: 10.17182/hepdata.62097.v1/t36 +--- +data_file: Table37.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 37 +table_doi: 10.17182/hepdata.62097.v1/t37 +--- +data_file: Table38.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 38 +table_doi: 10.17182/hepdata.62097.v1/t38 +--- +data_file: Table39.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 39 +table_doi: 10.17182/hepdata.62097.v1/t39 +--- +data_file: Table40.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 40 +table_doi: 10.17182/hepdata.62097.v1/t40 +--- +data_file: Table41.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 41 +table_doi: 10.17182/hepdata.62097.v1/t41 +--- +data_file: Table42.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 42 +table_doi: 10.17182/hepdata.62097.v1/t42 +--- +data_file: Table43.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 43 +table_doi: 10.17182/hepdata.62097.v1/t43 +--- +data_file: Table44.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 44 +table_doi: 10.17182/hepdata.62097.v1/t44 +--- +data_file: Table45.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 45 +table_doi: 10.17182/hepdata.62097.v1/t45 +--- +data_file: Table46.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 46 +table_doi: 10.17182/hepdata.62097.v1/t46 +--- +data_file: Table47.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 47 +table_doi: 10.17182/hepdata.62097.v1/t47 +--- +data_file: Table48.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Middle) +name: Table 48 +table_doi: 10.17182/hepdata.62097.v1/t48 +--- +data_file: Table49.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 49 +table_doi: 10.17182/hepdata.62097.v1/t49 +--- +data_file: Table50.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 50 +table_doi: 10.17182/hepdata.62097.v1/t50 +--- +data_file: Table51.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 51 +table_doi: 10.17182/hepdata.62097.v1/t51 +--- +data_file: Table52.yaml +description: | + pi+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI+ X, E- P --> E- PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 52 +table_doi: 10.17182/hepdata.62097.v1/t52 +--- +data_file: Table53.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 53 +table_doi: 10.17182/hepdata.62097.v1/t53 +--- +data_file: Table54.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 54 +table_doi: 10.17182/hepdata.62097.v1/t54 +--- +data_file: Table55.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 55 +table_doi: 10.17182/hepdata.62097.v1/t55 +--- +data_file: Table56.yaml +description: | + pi- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ PI- X, E- P --> E- PI- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Electron production, Neutral Current, Deep Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 56 +table_doi: 10.17182/hepdata.62097.v1/t56 +--- +data_file: Table57.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 57 +table_doi: 10.17182/hepdata.62097.v1/t57 +--- +data_file: Table58.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 58 +table_doi: 10.17182/hepdata.62097.v1/t58 +--- +data_file: Table59.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 59 +table_doi: 10.17182/hepdata.62097.v1/t59 +--- +data_file: Table60.yaml +description: | + K+ multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K+ X, E- P --> E- K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 60 +table_doi: 10.17182/hepdata.62097.v1/t60 +--- +data_file: Table61.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.2-0.3. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 61 +table_doi: 10.17182/hepdata.62097.v1/t61 +--- +data_file: Table62.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.3-0.4. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 62 +table_doi: 10.17182/hepdata.62097.v1/t62 +--- +data_file: Table63.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.4-0.6. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 63 +table_doi: 10.17182/hepdata.62097.v1/t63 +--- +data_file: Table64.yaml +description: | + K- multiplicities from HERMES, Target: H, Target: D, VM subtracted, Z in the range 0.6-0.8. +keywords: +- name: reactions + values: [E+ P --> E+ K- X, E- P --> E- K- X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Strange production, Electron production, Neutral Current, Deep + Inelastic Scattering] +location: Data from F 8 (Bottom) +name: Table 64 +table_doi: 10.17182/hepdata.62097.v1/t64 diff --git a/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/uncertainties.yaml new file mode 100644 index 0000000000..da3883e0cb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/HERMES_SIDIS_7P3GEV_P-POSITRON-PIPLUS/uncertainties.yaml @@ -0,0 +1,82 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.0144 + sys: 0.0457 +- stat: 0.0119 + sys: 0.042 +- stat: 0.0107 + sys: 0.0336 +- stat: 0.0109 + sys: 0.0275 +- stat: 0.0109 + sys: 0.0335 +- stat: 0.0131 + sys: 0.0389 +- stat: 0.0176 + sys: 0.0464 +- stat: 0.038 + sys: 0.0514 +- stat: 0.0748 + sys: 0.0584 +- stat: 0.0103 + sys: 0.0229 +- stat: 0.0082 + sys: 0.0198 +- stat: 0.0075 + sys: 0.0133 +- stat: 0.0074 + sys: 0.0073 +- stat: 0.0073 + sys: 0.0132 +- stat: 0.0086 + sys: 0.0145 +- stat: 0.0114 + sys: 0.0166 +- stat: 0.0243 + sys: 0.0185 +- stat: 0.0511 + sys: 0.0184 +- stat: 0.0048 + sys: 0.0149 +- stat: 0.0036 + sys: 0.0149 +- stat: 0.0033 + sys: 0.0099 +- stat: 0.0034 + sys: 0.0079 +- stat: 0.0034 + sys: 0.0082 +- stat: 0.0039 + sys: 0.0123 +- stat: 0.0048 + sys: 0.0102 +- stat: 0.0103 + sys: 0.0118 +- stat: 0.0209 + sys: 0.0118 +- stat: 0.0027 + sys: 0.0047 +- stat: 0.002 + sys: 0.0038 +- stat: 0.002 + sys: 0.0051 +- stat: 0.0024 + sys: 0.0072 +- stat: 0.0024 + sys: 0.0061 +- stat: 0.0026 + sys: 0.0062 +- stat: 0.0031 + sys: 0.0069 +- stat: 0.0063 + sys: 0.0063 +- stat: 0.013 + sys: 0.0063