diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..32d93f8579 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/data.yaml @@ -0,0 +1,30 @@ +data_central: +- 12.4 +- 13.27 +- 15.33 +- 17.43 +- 18.33 +- 19.62 +- 20.02 +- 21.66 +- 25.84 +- 27.46 +- 27.63 +- 10.6 +- 9.53 +- 9.15 +- 8.41 +- 7.96 +- 7.26 +- 6.34 +- 5.63 +- 4.94 +- 4.39 +- 4.22 +- 3.63 +- 3.1 +- 2.245 +- 1.538 +- 0.841 +- 0.2936 +- 0.0596 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..06d7941c6f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +ndat = 29 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter_core.py new file mode 100644 index 0000000000..cd864dc781 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/filter_core.py @@ -0,0 +1,63 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + if i < 8: + error_value['sys_norm'] = pta(5, data_central_value) + else: + error_value['sys_norm'] = pta(3, data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..c9f52aea59 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,117 @@ +bins: +- xp: + min: 0.0055 + mid: 0.00574 + max: 0.006 +- xp: + min: 0.006 + mid: 0.00622 + max: 0.0065 +- xp: + min: 0.0065 + mid: 0.00673 + max: 0.007 +- xp: + min: 0.007 + mid: 0.00722 + max: 0.0075 +- xp: + min: 0.0075 + mid: 0.00773 + max: 0.008 +- xp: + min: 0.008 + mid: 0.00822 + max: 0.0085 +- xp: + min: 0.0085 + mid: 0.00871 + max: 0.009 +- xp: + min: 0.009 + mid: 0.00922 + max: 0.0095 +- xp: + min: 0.013 + mid: 0.0135 + max: 0.014 +- xp: + min: 0.014 + mid: 0.0147 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0167 + max: 0.018 +- xp: + min: 0.07 + mid: 0.0719 + max: 0.075 +- xp: + min: 0.075 + mid: 0.0769 + max: 0.08 +- xp: + min: 0.08 + mid: 0.0819 + max: 0.085 +- xp: + min: 0.085 + mid: 0.087 + max: 0.09 +- xp: + min: 0.09 + mid: 0.0942 + max: 0.1 +- xp: + min: 0.1 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.114 + max: 0.12 +- xp: + min: 0.12 + mid: 0.124 + max: 0.13 +- xp: + min: 0.13 + mid: 0.134 + max: 0.14 +- xp: + min: 0.14 + mid: 0.144 + max: 0.15 +- xp: + min: 0.15 + mid: 0.154 + max: 0.16 +- xp: + min: 0.16 + mid: 0.169 + max: 0.18 +- xp: + min: 0.18 + mid: 0.189 + max: 0.2 +- xp: + min: 0.2 + mid: 0.222 + max: 0.25 +- xp: + min: 0.25 + mid: 0.272 + max: 0.3 +- xp: + min: 0.3 + mid: 0.342 + max: 0.4 +- xp: + min: 0.4 + mid: 0.476 + max: 0.6 +- xp: + min: 0.6 + mid: 0.674 + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..869ba71df7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'ALEPH_SIA-KA_91P2GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "ALEPH" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/382179" +hepdata: + url: "https://www.hepdata.net/record/ins382179" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: ''} + observable_name: XP + process_type: SIA_XP + ndata: 29 + tables: [2] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'ALEPH SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: log + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..399af00193 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..e20310929f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,101 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 1.12 + sys: 0.01 + sys_norm: 0.62 +- stat: 0.91 + sys: 0.01 + sys_norm: 0.6635 +- stat: 0.9 + sys: 0.01 + sys_norm: 7.66500000e-01 +- stat: 0.92 + sys: 0.02 + sys_norm: 0.8715 +- stat: 0.88 + sys: 0.02 + sys_norm: 0.9165 +- stat: 0.9 + sys: 0.02 + sys_norm: 9.81000000e-01 +- stat: 0.86 + sys: 0.05 + sys_norm: 1.001 +- stat: 0.88 + sys: 0.12 + sys_norm: 1.083 +- stat: 0.66 + sys: 0.5 + sys_norm: 0.7752 +- stat: 0.47 + sys: 0.68 + sys_norm: 0.8238 +- stat: 0.53 + sys: 2.2 + sys_norm: 0.8289 +- stat: 0.3 + sys: 1.28 + sys_norm: 0.318 +- stat: 0.26 + sys: 0.98 + sys_norm: 0.2859 +- stat: 0.23 + sys: 0.83 + sys_norm: 0.2745 +- stat: 0.21 + sys: 0.71 + sys_norm: 0.2523 +- stat: 0.14 + sys: 0.56 + sys_norm: 2.38800000e-01 +- stat: 0.13 + sys: 0.47 + sys_norm: 2.17800000e-01 +- stat: 0.11 + sys: 0.37 + sys_norm: 0.1902 +- stat: 0.11 + sys: 0.32 + sys_norm: 1.68900000e-01 +- stat: 0.1 + sys: 0.28 + sys_norm: 0.1482 +- stat: 0.09 + sys: 0.24 + sys_norm: 1.31700000e-01 +- stat: 0.09 + sys: 0.22 + sys_norm: 0.1266 +- stat: 0.06 + sys: 0.18 + sys_norm: 1.08900000e-01 +- stat: 0.05 + sys: 0.15 + sys_norm: 9.30000000e-02 +- stat: 0.029 + sys: 0.109 + sys_norm: 6.73500000e-02 +- stat: 0.025 + sys: 0.076 + sys_norm: 0.04614 +- stat: 0.013 + sys: 0.043 + sys_norm: 0.02523 +- stat: 0.0053 + sys: 0.0146 + sys_norm: 0.008808 +- stat: 0.0022 + sys: 0.0031 + sys_norm: 0.001788 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..80420751e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/data.yaml @@ -0,0 +1,40 @@ +data_central: +- 482.9 +- 462.6 +- 496.5 +- 511.2 +- 507.7 +- 538.5 +- 484.2 +- 499.7 +- 494.6 +- 473.9 +- 460.9 +- 425.6 +- 420.7 +- 380.5 +- 360.8 +- 324.0 +- 103.96 +- 89.95 +- 78.96 +- 69.36 +- 61.35 +- 55.27 +- 49.91 +- 44.33 +- 40.24 +- 35.38 +- 29.51 +- 24.91 +- 21.06 +- 18.16 +- 15.46 +- 13.64 +- 11.0 +- 8.484 +- 5.621 +- 3.181 +- 1.563 +- 0.4495 +- 0.0767 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..48c159e4d4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table1.yaml" +ndat = 39 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..b1783acd91 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/filter_core.py @@ -0,0 +1,60 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + error_value['sys_norm'] = pta(values[i]['errors'][2]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..4cf96bb377 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,157 @@ +bins: +- xp: + min: 0.005 + mid: 0.00526 + max: 0.0055 +- xp: + min: 0.0055 + mid: 0.00574 + max: 0.006 +- xp: + min: 0.006 + mid: 0.00622 + max: 0.0065 +- xp: + min: 0.0065 + mid: 0.00673 + max: 0.007 +- xp: + min: 0.007 + mid: 0.00722 + max: 0.0075 +- xp: + min: 0.0075 + mid: 0.00773 + max: 0.008 +- xp: + min: 0.008 + mid: 0.00822 + max: 0.0085 +- xp: + min: 0.0085 + mid: 0.00871 + max: 0.009 +- xp: + min: 0.009 + mid: 0.00922 + max: 0.0095 +- xp: + min: 0.0095 + mid: 0.00972 + max: 0.01 +- xp: + min: 0.01 + mid: 1.05000000e-02 + max: 0.011 +- xp: + min: 0.011 + mid: 0.0115 + max: 0.012 +- xp: + min: 0.012 + mid: 0.0125 + max: 0.013 +- xp: + min: 0.013 + mid: 0.0135 + max: 0.014 +- xp: + min: 0.014 + mid: 0.0147 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0167 + max: 0.018 +- xp: + min: 0.045 + mid: 0.047 + max: 0.05 +- xp: + min: 0.05 + mid: 0.052 + max: 0.055 +- xp: + min: 0.055 + mid: 0.057 + max: 0.06 +- xp: + min: 0.06 + mid: 0.0619 + max: 0.065 +- xp: + min: 0.065 + mid: 0.0669 + max: 0.07 +- xp: + min: 0.07 + mid: 0.0719 + max: 0.075 +- xp: + min: 0.075 + mid: 0.0769 + max: 0.08 +- xp: + min: 0.08 + mid: 0.0819 + max: 0.085 +- xp: + min: 0.085 + mid: 0.087 + max: 0.09 +- xp: + min: 0.09 + mid: 0.0942 + max: 0.1 +- xp: + min: 0.1 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.114 + max: 0.12 +- xp: + min: 0.12 + mid: 0.124 + max: 0.13 +- xp: + min: 0.13 + mid: 0.134 + max: 0.14 +- xp: + min: 0.14 + mid: 0.144 + max: 0.15 +- xp: + min: 0.15 + mid: 0.154 + max: 0.16 +- xp: + min: 0.16 + mid: 0.169 + max: 0.18 +- xp: + min: 0.18 + mid: 0.189 + max: 0.2 +- xp: + min: 0.2 + mid: 0.222 + max: 0.25 +- xp: + min: 0.25 + mid: 0.272 + max: 0.3 +- xp: + min: 0.3 + mid: 0.342 + max: 0.4 +- xp: + min: 0.4 + mid: 0.476 + max: 0.6 +- xp: + min: 0.6 + mid: 0.674 + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..9afbba4e62 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'ALEPH_SIA-PI_91P2GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "ALEPH" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/382179" +hepdata: + url: "https://www.hepdata.net/record/ins382179" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: ''} + observable_name: XP + process_type: SIA_XP + ndata: 39 + tables: [1] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'ALEPH SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: log + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..3cc9a5c7f0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,243 @@ +dependent_variables: +- header: {name: (1/SIG) D(SIG)/DZ} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '0.216'} + values: + - errors: + - {label: stat, symerror: 5.9} + - {label: sys, symerror: 1.3} + - {label: sys, symerror: 3.0%} + value: 482.9 + - errors: + - {label: stat, symerror: 4.8} + - {label: sys, symerror: 0.9} + - {label: sys, symerror: 3.0%} + value: 462.6 + - errors: + - {label: stat, symerror: 4.6} + - {label: sys, symerror: 0.8} + - {label: sys, symerror: 3.0%} + value: 496.5 + - errors: + - {label: stat, symerror: 4.4} + - {label: sys, symerror: 0.8} + - {label: sys, symerror: 3.0%} + value: 511.2 + - errors: + - {label: stat, symerror: 4.2} + - {label: sys, symerror: 0.7} + - {label: sys, symerror: 3.0%} + value: 507.7 + - errors: + - {label: stat, symerror: 4.4} + - {label: sys, symerror: 0.7} + - {label: sys, symerror: 3.0%} + value: 538.5 + - errors: + - {label: stat, symerror: 3.9} + - {label: sys, symerror: 0.6} + - {label: sys, symerror: 3.0%} + value: 484.2 + - errors: + - {label: stat, symerror: 3.9} + - {label: sys, symerror: 0.7} + - {label: sys, symerror: 3.0%} + value: 499.7 + - errors: + - {label: stat, symerror: 3.8} + - {label: sys, symerror: 0.6} + - {label: sys, symerror: 3.0%} + value: 494.6 + - errors: + - {label: stat, symerror: 3.6} + - {label: sys, symerror: 0.5} + - {label: sys, symerror: 3.0%} + value: 473.9 + - errors: + - {label: stat, symerror: 2.5} + - {label: sys, symerror: 0.5} + - {label: sys, symerror: 3.0%} + value: 460.9 + - errors: + - {label: stat, symerror: 2.3} + - {label: sys, symerror: 0.5} + - {label: sys, symerror: 3.0%} + value: 425.6 + - errors: + - {label: stat, symerror: 2.3} + - {label: sys, symerror: 0.4} + - {label: sys, symerror: 3.0%} + value: 420.7 + - errors: + - {label: stat, symerror: 2.2} + - {label: sys, symerror: 0.4} + - {label: sys, symerror: 3.0%} + value: 380.5 + - errors: + - {label: stat, symerror: 1.5} + - {label: sys, symerror: 0.6} + - {label: sys, symerror: 3.0%} + value: 360.8 + - errors: + - {label: stat, symerror: 1.4} + - {label: sys, symerror: 1.8} + - {label: sys, symerror: 3.0%} + value: 324.0 + - errors: + - {label: stat, symerror: 0.61} + - {label: sys, symerror: 2.09} + - {label: sys, symerror: 3.0%} + value: 103.96 + - errors: + - {label: stat, symerror: 0.53} + - {label: sys, symerror: 1.02} + - {label: sys, symerror: 3.0%} + value: 89.95 + - errors: + - {label: stat, symerror: 0.5} + - {label: sys, symerror: 0.9} + - {label: sys, symerror: 3.0%} + value: 78.96 + - errors: + - {label: stat, symerror: 0.35} + - {label: sys, symerror: 0.72} + - {label: sys, symerror: 3.0%} + value: 69.36 + - errors: + - {label: stat, symerror: 0.33} + - {label: sys, symerror: 0.6} + - {label: sys, symerror: 3.0%} + value: 61.35 + - errors: + - {label: stat, symerror: 0.32} + - {label: sys, symerror: 0.49} + - {label: sys, symerror: 3.0%} + value: 55.27 + - errors: + - {label: stat, symerror: 0.3} + - {label: sys, symerror: 0.44} + - {label: sys, symerror: 3.0%} + value: 49.91 + - errors: + - {label: stat, symerror: 0.29} + - {label: sys, symerror: 0.38} + - {label: sys, symerror: 3.0%} + value: 44.33 + - errors: + - {label: stat, symerror: 0.27} + - {label: sys, symerror: 0.34} + - {label: sys, symerror: 3.0%} + value: 40.24 + - errors: + - {label: stat, symerror: 0.18} + - {label: sys, symerror: 0.3} + - {label: sys, symerror: 3.0%} + value: 35.38 + - errors: + - {label: stat, symerror: 0.17} + - {label: sys, symerror: 0.25} + - {label: sys, symerror: 3.0%} + value: 29.51 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.22} + - {label: sys, symerror: 3.0%} + value: 24.91 + - errors: + - {label: stat, symerror: 0.14} + - {label: sys, symerror: 0.18} + - {label: sys, symerror: 3.0%} + value: 21.06 + - errors: + - {label: stat, symerror: 0.13} + - {label: sys, symerror: 0.16} + - {label: sys, symerror: 3.0%} + value: 18.16 + - errors: + - {label: stat, symerror: 0.12} + - {label: sys, symerror: 0.15} + - {label: sys, symerror: 3.0%} + value: 15.46 + - errors: + - {label: stat, symerror: 0.12} + - {label: sys, symerror: 0.13} + - {label: sys, symerror: 3.0%} + value: 13.64 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.11} + - {label: sys, symerror: 3.0%} + value: 11.0 + - errors: + - {label: stat, symerror: 0.066} + - {label: sys, symerror: 0.094} + - {label: sys, symerror: 3.0%} + value: 8.484 + - errors: + - {label: stat, symerror: 0.035} + - {label: sys, symerror: 0.071} + - {label: sys, symerror: 3.0%} + value: 5.621 + - errors: + - {label: stat, symerror: 0.026} + - {label: sys, symerror: 0.047} + - {label: sys, symerror: 3.0%} + value: 3.181 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.028} + - {label: sys, symerror: 3.0%} + value: 1.563 + - errors: + - {label: stat, symerror: 0.0051} + - {label: sys, symerror: 0.01} + - {label: sys, symerror: 3.0%} + value: 0.4495 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0021} + - {label: sys, symerror: 3.0%} + value: 0.0767 +independent_variables: +- header: {name: Z(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0055, low: 0.005, value: 0.00526} + - {high: 0.006, low: 0.0055, value: 0.00574} + - {high: 0.0065, low: 0.006, value: 0.00622} + - {high: 0.007, low: 0.0065, value: 0.00673} + - {high: 0.0075, low: 0.007, value: 0.00722} + - {high: 0.008, low: 0.0075, value: 0.00773} + - {high: 0.0085, low: 0.008, value: 0.00822} + - {high: 0.009, low: 0.0085, value: 0.00871} + - {high: 0.0095, low: 0.009, value: 0.00922} + - {high: 0.01, low: 0.0095, value: 0.00972} + - {high: 0.011, low: 0.01} + - {high: 0.012, low: 0.011} + - {high: 0.013, low: 0.012} + - {high: 0.014, low: 0.013} + - {high: 0.016, low: 0.014, value: 0.0147} + - {high: 0.018, low: 0.016, value: 0.0167} + - {high: 0.05, low: 0.045, value: 0.047} + - {high: 0.055, low: 0.05, value: 0.052} + - {high: 0.06, low: 0.055, value: 0.057} + - {high: 0.065, low: 0.06, value: 0.0619} + - {high: 0.07, low: 0.065, value: 0.0669} + - {high: 0.075, low: 0.07, value: 0.0719} + - {high: 0.08, low: 0.075, value: 0.0769} + - {high: 0.085, low: 0.08, value: 0.0819} + - {high: 0.09, low: 0.085, value: 0.087} + - {high: 0.1, low: 0.09, value: 0.0942} + - {high: 0.11, low: 0.1, value: 0.104} + - {high: 0.12, low: 0.11, value: 0.114} + - {high: 0.13, low: 0.12, value: 0.124} + - {high: 0.14, low: 0.13, value: 0.134} + - {high: 0.15, low: 0.14, value: 0.144} + - {high: 0.16, low: 0.15, value: 0.154} + - {high: 0.18, low: 0.16, value: 0.169} + - {high: 0.2, low: 0.18, value: 0.189} + - {high: 0.25, low: 0.2, value: 0.222} + - {high: 0.3, low: 0.25, value: 0.272} + - {high: 0.4, low: 0.3, value: 0.342} + - {high: 0.6, low: 0.4, value: 0.476} + - {high: 0.8, low: 0.6, value: 0.674} diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..a8bf402284 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,154 @@ +dependent_variables: +- header: {name: (1/SIG) D(SIG)/DZ} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '0.216'} + values: + - errors: + - {label: stat, symerror: 1.12} + - {label: sys, symerror: 0.01} + value: 12.4 + - errors: + - {label: stat, symerror: 0.91} + - {label: sys, symerror: 0.01} + value: 13.27 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.01} + value: 15.33 + - errors: + - {label: stat, symerror: 0.92} + - {label: sys, symerror: 0.02} + value: 17.43 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.02} + value: 18.33 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.02} + value: 19.62 + - errors: + - {label: stat, symerror: 0.86} + - {label: sys, symerror: 0.05} + value: 20.02 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.12} + value: 21.66 + - errors: + - {label: stat, symerror: 0.66} + - {label: sys, symerror: 0.5} + value: 25.84 + - errors: + - {label: stat, symerror: 0.47} + - {label: sys, symerror: 0.68} + value: 27.46 + - errors: + - {label: stat, symerror: 0.53} + - {label: sys, symerror: 2.2} + value: 27.63 + - errors: + - {label: stat, symerror: 0.3} + - {label: sys, symerror: 1.28} + value: 10.6 + - errors: + - {label: stat, symerror: 0.26} + - {label: sys, symerror: 0.98} + value: 9.53 + - errors: + - {label: stat, symerror: 0.23} + - {label: sys, symerror: 0.83} + value: 9.15 + - errors: + - {label: stat, symerror: 0.21} + - {label: sys, symerror: 0.71} + value: 8.41 + - errors: + - {label: stat, symerror: 0.14} + - {label: sys, symerror: 0.56} + value: 7.96 + - errors: + - {label: stat, symerror: 0.13} + - {label: sys, symerror: 0.47} + value: 7.26 + - errors: + - {label: stat, symerror: 0.11} + - {label: sys, symerror: 0.37} + value: 6.34 + - errors: + - {label: stat, symerror: 0.11} + - {label: sys, symerror: 0.32} + value: 5.63 + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.28} + value: 4.94 + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.24} + value: 4.39 + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.22} + value: 4.22 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.18} + value: 3.63 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.15} + value: 3.1 + - errors: + - {label: stat, symerror: 0.029} + - {label: sys, symerror: 0.109} + value: 2.245 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.076} + value: 1.538 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.043} + value: 0.841 + - errors: + - {label: stat, symerror: 0.0053} + - {label: sys, symerror: 0.0146} + value: 0.2936 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0031} + value: 0.0596 +independent_variables: +- header: {name: Z(DEF=P(P=1)/P(P=3))} + values: + - {high: 0.006, low: 0.0055, value: 0.00574} + - {high: 0.0065, low: 0.006, value: 0.00622} + - {high: 0.007, low: 0.0065, value: 0.00673} + - {high: 0.0075, low: 0.007, value: 0.00722} + - {high: 0.008, low: 0.0075, value: 0.00773} + - {high: 0.0085, low: 0.008, value: 0.00822} + - {high: 0.009, low: 0.0085, value: 0.00871} + - {high: 0.0095, low: 0.009, value: 0.00922} + - {high: 0.014, low: 0.013} + - {high: 0.016, low: 0.014, value: 0.0147} + - {high: 0.018, low: 0.016, value: 0.0167} + - {high: 0.075, low: 0.07, value: 0.0719} + - {high: 0.08, low: 0.075, value: 0.0769} + - {high: 0.085, low: 0.08, value: 0.0819} + - {high: 0.09, low: 0.085, value: 0.087} + - {high: 0.1, low: 0.09, value: 0.0942} + - {high: 0.11, low: 0.1, value: 0.104} + - {high: 0.12, low: 0.11, value: 0.114} + - {high: 0.13, low: 0.12, value: 0.124} + - {high: 0.14, low: 0.13, value: 0.134} + - {high: 0.15, low: 0.14, value: 0.144} + - {high: 0.16, low: 0.15, value: 0.154} + - {high: 0.18, low: 0.16, value: 0.169} + - {high: 0.2, low: 0.18, value: 0.189} + - {high: 0.25, low: 0.2, value: 0.222} + - {high: 0.3, low: 0.25, value: 0.272} + - {high: 0.4, low: 0.3, value: 0.342} + - {high: 0.6, low: 0.4, value: 0.476} + - {high: 0.8, low: 0.6, value: 0.674} diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..371071a09d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,139 @@ +dependent_variables: +- header: {name: (1/SIG) D(SIG)/DZ} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '0.216'} + values: + - errors: + - {label: stat, symerror: 0.35} + - {label: sys, symerror: 0.0} + value: 8.32 + - errors: + - {label: stat, symerror: 0.36} + - {label: sys, symerror: 0.0} + value: 8.95 + - errors: + - {label: stat, symerror: 0.36} + - {label: sys, symerror: 0.01} + value: 9.8 + - errors: + - {label: stat, symerror: 0.38} + - {label: sys, symerror: 0.01} + value: 10.3 + - errors: + - {label: stat, symerror: 0.26} + - {label: sys, symerror: 0.01} + value: 10.7 + - errors: + - {label: stat, symerror: 0.27} + - {label: sys, symerror: 0.04} + value: 11.58 + - errors: + - {label: stat, symerror: 0.18} + - {label: sys, symerror: 0.23} + value: 12.37 + - errors: + - {label: stat, symerror: 0.18} + - {label: sys, symerror: 0.44} + value: 12.46 + - errors: + - {label: stat, symerror: 0.216} + - {label: sys, symerror: 0.876} + value: 5.315 + - errors: + - {label: stat, symerror: 0.183} + - {label: sys, symerror: 0.639} + value: 5.008 + - errors: + - {label: stat, symerror: 0.162} + - {label: sys, symerror: 0.549} + value: 4.445 + - errors: + - {label: stat, symerror: 0.154} + - {label: sys, symerror: 0.474} + value: 4.555 + - errors: + - {label: stat, symerror: 0.092} + - {label: sys, symerror: 0.355} + value: 3.742 + - errors: + - {label: stat, symerror: 0.084} + - {label: sys, symerror: 0.292} + value: 3.355 + - errors: + - {label: stat, symerror: 0.077} + - {label: sys, symerror: 0.232} + value: 2.905 + - errors: + - {label: stat, symerror: 0.072} + - {label: sys, symerror: 0.205} + value: 2.653 + - errors: + - {label: stat, symerror: 0.068} + - {label: sys, symerror: 0.178} + value: 2.371 + - errors: + - {label: stat, symerror: 0.064} + - {label: sys, symerror: 0.162} + value: 2.137 + - errors: + - {label: stat, symerror: 0.061} + - {label: sys, symerror: 0.146} + value: 1.878 + - errors: + - {label: stat, symerror: 0.041} + - {label: sys, symerror: 0.118} + value: 1.696 + - errors: + - {label: stat, symerror: 0.036} + - {label: sys, symerror: 0.099} + value: 1.299 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.073} + value: 0.966 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.054} + value: 0.614 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.031} + value: 0.305 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.011} + value: 0.0784 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0022} + value: 0.0054 +independent_variables: +- header: {name: Z(DEF=P(P=1)/P(P=3))} + values: + - {high: 0.011, low: 0.01} + - {high: 0.012, low: 0.011} + - {high: 0.013, low: 0.012} + - {high: 0.014, low: 0.013} + - {high: 0.016, low: 0.014, value: 0.0147} + - {high: 0.018, low: 0.016, value: 0.0167} + - {high: 0.026, low: 0.024, value: 0.0247} + - {high: 0.028, low: 0.026, value: 0.0268} + - {high: 0.075, low: 0.07, value: 0.0719} + - {high: 0.08, low: 0.075, value: 0.0769} + - {high: 0.085, low: 0.08, value: 0.0819} + - {high: 0.09, low: 0.085, value: 0.087} + - {high: 0.1, low: 0.09, value: 0.0942} + - {high: 0.11, low: 0.1, value: 0.104} + - {high: 0.12, low: 0.11, value: 0.114} + - {high: 0.13, low: 0.12, value: 0.124} + - {high: 0.14, low: 0.13, value: 0.134} + - {high: 0.15, low: 0.14, value: 0.144} + - {high: 0.16, low: 0.15, value: 0.154} + - {high: 0.18, low: 0.16, value: 0.169} + - {high: 0.2, low: 0.18, value: 0.189} + - {high: 0.25, low: 0.2, value: 0.222} + - {high: 0.3, low: 0.25, value: 0.272} + - {high: 0.4, low: 0.3, value: 0.342} + - {high: 0.6, low: 0.4, value: 0.476} + - {high: 0.8, low: 0.6, value: 0.674} diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..f6ff31d7e8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,56 @@ +--- +comment: | + ALEPH Collaboration. Study of inclusive pi+-, K+- and p pbar differential cross sections in hadronic decays of the Z as a function of the scaled momentum. The results are based on approximately 520 000 events measured by the ALEPH detector at LEP during 1992. +dateupdated: 23/02/1995 00:00:00 +modifications: +- {action: Encoded, date: 23 FEB 1995, who: Mike Whalley.} +record_ids: +- {id: 382179, type: inspire} +- {id: 1742, type: red} + +--- +data_file: Table1.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> HADRONS, E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Exclusive, Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [0.216] +location: Data from T 1 +name: Table 1 + +--- +data_file: Table2.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> HADRONS, E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Exclusive, Inclusive, Single Differential Cross Section, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [0.216] +location: Data from T 2 +name: Table 2 + +--- +data_file: Table3.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> HADRONS, E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Exclusive, Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [0.216] +location: Data from T 3 +name: Table 3 + diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..97b2f05ab3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,131 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 5.9 + sys: 1.3 + sys_norm: 1.44870000e+01 +- stat: 4.8 + sys: 0.9 + sys_norm: 1.38780000e+01 +- stat: 4.6 + sys: 0.8 + sys_norm: 14.895 +- stat: 4.4 + sys: 0.8 + sys_norm: 1.53360000e+01 +- stat: 4.2 + sys: 0.7 + sys_norm: 15.231 +- stat: 4.4 + sys: 0.7 + sys_norm: 16.155 +- stat: 3.9 + sys: 0.6 + sys_norm: 14.526 +- stat: 3.9 + sys: 0.7 + sys_norm: 14.991 +- stat: 3.8 + sys: 0.6 + sys_norm: 1.48380000e+01 +- stat: 3.6 + sys: 0.5 + sys_norm: 1.42170000e+01 +- stat: 2.5 + sys: 0.5 + sys_norm: 1.38270000e+01 +- stat: 2.3 + sys: 0.5 + sys_norm: 1.27680000e+01 +- stat: 2.3 + sys: 0.4 + sys_norm: 1.26210000e+01 +- stat: 2.2 + sys: 0.4 + sys_norm: 1.14150000e+01 +- stat: 1.5 + sys: 0.6 + sys_norm: 1.08240000e+01 +- stat: 1.4 + sys: 1.8 + sys_norm: 9.72 +- stat: 0.61 + sys: 2.09 + sys_norm: 3.11880000e+00 +- stat: 0.53 + sys: 1.02 + sys_norm: 2.6985 +- stat: 0.5 + sys: 0.9 + sys_norm: 2.3688 +- stat: 0.35 + sys: 0.72 + sys_norm: 2.0808 +- stat: 0.33 + sys: 0.6 + sys_norm: 1.84050000e+00 +- stat: 0.32 + sys: 0.49 + sys_norm: 1.65810000e+00 +- stat: 0.3 + sys: 0.44 + sys_norm: 1.49730000e+00 +- stat: 0.29 + sys: 0.38 + sys_norm: 1.3299 +- stat: 0.27 + sys: 0.34 + sys_norm: 1.2072 +- stat: 0.18 + sys: 0.3 + sys_norm: 1.06140000e+00 +- stat: 0.17 + sys: 0.25 + sys_norm: 0.8853 +- stat: 0.16 + sys: 0.22 + sys_norm: 7.47300000e-01 +- stat: 0.14 + sys: 0.18 + sys_norm: 6.31800000e-01 +- stat: 0.13 + sys: 0.16 + sys_norm: 5.44800000e-01 +- stat: 0.12 + sys: 0.15 + sys_norm: 4.63800000e-01 +- stat: 0.12 + sys: 0.13 + sys_norm: 0.4092 +- stat: 0.07 + sys: 0.11 + sys_norm: 0.33 +- stat: 0.066 + sys: 0.094 + sys_norm: 2.54520000e-01 +- stat: 0.035 + sys: 0.071 + sys_norm: 0.16863 +- stat: 0.026 + sys: 0.047 + sys_norm: 0.09543 +- stat: 0.013 + sys: 0.028 + sys_norm: 0.04689 +- stat: 0.0051 + sys: 0.01 + sys_norm: 0.013485 +- stat: 0.0021 + sys: 0.0021 + sys_norm: 2.30100000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..e7e1bc0817 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml @@ -0,0 +1,27 @@ +data_central: +- 8.32 +- 8.95 +- 9.8 +- 10.3 +- 10.7 +- 11.58 +- 12.37 +- 12.46 +- 5.315 +- 5.008 +- 4.445 +- 4.555 +- 3.742 +- 3.355 +- 2.905 +- 2.653 +- 2.371 +- 2.137 +- 1.878 +- 1.696 +- 1.299 +- 0.966 +- 0.614 +- 0.305 +- 0.0784 +- 0.0054 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..87eb3bab21 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table3.yaml" +ndat = 26 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py new file mode 100644 index 0000000000..b96a11b1c8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py @@ -0,0 +1,63 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + if i < 6: + error_value['sys_norm'] = pta(5, data_central_value) + else: + error_value['sys_norm'] = pta(3, data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..de7a8c7801 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,105 @@ +bins: +- xp: + min: 0.01 + mid: 1.05000000e-02 + max: 0.011 +- xp: + min: 0.011 + mid: 0.0115 + max: 0.012 +- xp: + min: 0.012 + mid: 0.0125 + max: 0.013 +- xp: + min: 0.013 + mid: 0.0135 + max: 0.014 +- xp: + min: 0.014 + mid: 0.0147 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0167 + max: 0.018 +- xp: + min: 0.024 + mid: 0.0247 + max: 0.026 +- xp: + min: 0.026 + mid: 0.0268 + max: 0.028 +- xp: + min: 0.07 + mid: 0.0719 + max: 0.075 +- xp: + min: 0.075 + mid: 0.0769 + max: 0.08 +- xp: + min: 0.08 + mid: 0.0819 + max: 0.085 +- xp: + min: 0.085 + mid: 0.087 + max: 0.09 +- xp: + min: 0.09 + mid: 0.0942 + max: 0.1 +- xp: + min: 0.1 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.114 + max: 0.12 +- xp: + min: 0.12 + mid: 0.124 + max: 0.13 +- xp: + min: 0.13 + mid: 0.134 + max: 0.14 +- xp: + min: 0.14 + mid: 0.144 + max: 0.15 +- xp: + min: 0.15 + mid: 0.154 + max: 0.16 +- xp: + min: 0.16 + mid: 0.169 + max: 0.18 +- xp: + min: 0.18 + mid: 0.189 + max: 0.2 +- xp: + min: 0.2 + mid: 0.222 + max: 0.25 +- xp: + min: 0.25 + mid: 0.272 + max: 0.3 +- xp: + min: 0.3 + mid: 0.342 + max: 0.4 +- xp: + min: 0.4 + mid: 0.476 + max: 0.6 +- xp: + min: 0.6 + mid: 0.674 + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..adac09c03c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'ALEPH_SIA-PRO_91P2GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "ALEPH" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/382179" +hepdata: + url: "https://www.hepdata.net/record/ins382179" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: ''} + observable_name: XP + process_type: SIA_XP + ndata: 26 + tables: [3] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'ALEPH SIA P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: log + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..399af00193 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../ALEPH_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..b5514efb6c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/ALEPH_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,92 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.35 + sys: 0.0 + sys_norm: 4.16000000e-01 +- stat: 0.36 + sys: 0.0 + sys_norm: 0.4475 +- stat: 0.36 + sys: 0.01 + sys_norm: 0.49 +- stat: 0.38 + sys: 0.01 + sys_norm: 0.515 +- stat: 0.26 + sys: 0.01 + sys_norm: 0.535 +- stat: 0.27 + sys: 0.04 + sys_norm: 0.579 +- stat: 0.18 + sys: 0.23 + sys_norm: 0.3711 +- stat: 0.18 + sys: 0.44 + sys_norm: 0.3738 +- stat: 0.216 + sys: 0.876 + sys_norm: 0.15945 +- stat: 0.183 + sys: 0.639 + sys_norm: 0.15024 +- stat: 0.162 + sys: 0.549 + sys_norm: 1.33350000e-01 +- stat: 0.154 + sys: 0.474 + sys_norm: 0.13665 +- stat: 0.092 + sys: 0.355 + sys_norm: 0.11226 +- stat: 0.084 + sys: 0.292 + sys_norm: 0.10065 +- stat: 0.077 + sys: 0.232 + sys_norm: 0.08715 +- stat: 0.072 + sys: 0.205 + sys_norm: 0.07959 +- stat: 0.068 + sys: 0.178 + sys_norm: 0.07113 +- stat: 0.064 + sys: 0.162 + sys_norm: 0.06411 +- stat: 0.061 + sys: 0.146 + sys_norm: 5.63400000e-02 +- stat: 0.041 + sys: 0.118 + sys_norm: 0.05088 +- stat: 0.036 + sys: 0.099 + sys_norm: 0.03897 +- stat: 0.02 + sys: 0.073 + sys_norm: 0.02898 +- stat: 0.017 + sys: 0.054 + sys_norm: 1.84200000e-02 +- stat: 0.009 + sys: 0.031 + sys_norm: 0.00915 +- stat: 0.0034 + sys: 0.011 + sys_norm: 0.002352 +- stat: 0.0011 + sys: 0.0022 + sys_norm: 0.000162 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_conventional.yaml new file mode 100644 index 0000000000..1469d1dccf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_conventional.yaml @@ -0,0 +1,46 @@ +data_central: +- 0.291 +- 0.383 +- 0.468 +- 0.538 +- 0.591 +- 0.633 +- 0.669 +- 0.683 +- 0.689 +- 0.687 +- 0.677 +- 0.658 +- 0.636 +- 0.616 +- 0.593 +- 0.568 +- 0.531 +- 0.482 +- 0.435 +- 0.389 +- 0.347 +- 0.308 +- 0.2731 +- 0.2427 +- 0.2161 +- 0.1921 +- 0.1698 +- 0.1503 +- 0.1323 +- 0.1167 +- 0.1031 +- 0.0909 +- 0.0802 +- 0.0704 +- 0.0622 +- 0.0546 +- 0.0436 +- 0.0306 +- 0.0209 +- 0.0139 +- 0.0091 +- 0.00568 +- 0.00324 +- 0.00149 +- 0.0005 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_prompt.yaml new file mode 100644 index 0000000000..8927fd250e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/data_prompt.yaml @@ -0,0 +1,46 @@ +data_central: +- 0.291 +- 0.382 +- 0.468 +- 0.538 +- 0.591 +- 0.633 +- 0.669 +- 0.682 +- 0.689 +- 0.687 +- 0.676 +- 0.658 +- 0.636 +- 0.616 +- 0.593 +- 0.568 +- 0.531 +- 0.482 +- 0.435 +- 0.389 +- 0.347 +- 0.308 +- 0.2731 +- 0.2427 +- 0.2161 +- 0.1921 +- 0.1698 +- 0.1503 +- 0.1323 +- 0.1167 +- 0.1031 +- 0.0909 +- 0.0802 +- 0.0704 +- 0.0622 +- 0.0546 +- 0.0436 +- 0.0306 +- 0.0209 +- 0.0139 +- 0.0091 +- 0.00568 +- 0.00324 +- 0.00149 +- 0.0005 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..a3c7436d10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter.py @@ -0,0 +1,25 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +table_2 = "rawdata/Table2.yaml" +ndat = 45 +var_name = 'ph' + +data_prompt, kin_prompt, err_prompt = magic(table_1, ndat, var_name, 1) + +with open('data_prompt.yaml', 'w') as f: + yaml.dump(data_prompt, f, sort_keys=False) +with open('kinematics_prompt.yaml', 'w') as f: + yaml.dump(kin_prompt, f, sort_keys=False) +with open('uncertainties_prompt.yaml', 'w') as f: + yaml.dump(err_prompt, f, sort_keys=False) + +data_conventional, kin_conventional, err_conventional = magic(table_2, ndat, var_name, 1) + +with open('data_conventional.yaml', 'w') as f: + yaml.dump(data_conventional, f, sort_keys=False) +with open('kinematics_conventional.yaml', 'w') as f: + yaml.dump(kin_conventional, f, sort_keys=False) +with open('uncertainties_conventional.yaml', 'w') as f: + yaml.dump(err_conventional, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..d890d53a20 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../BABAR_SIA-PI_10P54GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_conventional.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_conventional.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_prompt.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/kinematics_prompt.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..46e9a54bbc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,64 @@ +setname: 'BABAR_SIA-KA_10P54GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BABAR" + +arXiv: + url: "https://arxiv.org/abs/1306.2895" +iNSPIRE: + url: "https://inspirehep.net/literature/1238276" +hepdata: + url: "https://www.hepdata.net/record/ins1238276" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$ (prompt)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-PROMPT + process_type: SIA_PH + ndata: 45 + tables: [1] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_prompt.yaml + data_central: data_prompt.yaml + data_uncertainties: + - uncertainties_prompt.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (conventional)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-CONVENTIONAL + process_type: SIA_PH + ndata: 45 + tables: [2] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_conventional.yaml + data_central: data_conventional.yaml + data_uncertainties: + - uncertainties_conventional.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..94cee5459b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_conventional.yaml new file mode 100644 index 0000000000..b666952e32 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_conventional.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.003 + sys: 0.007 + sys,norm: 2.85180000e-03 +- stat: 0.003 + sys: 0.007 + sys,norm: 3.75340000e-03 +- stat: 0.003 + sys: 0.008 + sys,norm: 4.58640000e-03 +- stat: 0.003 + sys: 0.009 + sys,norm: 5.27240000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 5.79180000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.20340000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.55620000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.69340000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.75220000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.73260000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.63460000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.44840000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.23280000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.03680000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 5.81140000e-03 +- stat: 0.002 + sys: 0.007 + sys,norm: 5.56640000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 5.20380000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 4.72360000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 0.004263 +- stat: 0.001 + sys: 0.006 + sys,norm: 3.81220000e-03 +- stat: 0.001 + sys: 0.005 + sys,norm: 3.40060000e-03 +- stat: 0.0009 + sys: 0.0047 + sys,norm: 3.01840000e-03 +- stat: 0.0008 + sys: 0.0043 + sys,norm: 2.67638000e-03 +- stat: 0.0008 + sys: 0.004 + sys,norm: 2.37846000e-03 +- stat: 0.0007 + sys: 0.0037 + sys,norm: 2.11778000e-03 +- stat: 0.0007 + sys: 0.0034 + sys,norm: 1.88258000e-03 +- stat: 0.0006 + sys: 0.0031 + sys,norm: 1.66404000e-03 +- stat: 0.0006 + sys: 0.0029 + sys,norm: 1.47294000e-03 +- stat: 0.0005 + sys: 0.0026 + sys,norm: 1.29654000e-03 +- stat: 0.0005 + sys: 0.0024 + sys,norm: 1.14366000e-03 +- stat: 0.0005 + sys: 0.0022 + sys,norm: 1.01038000e-03 +- stat: 0.0004 + sys: 0.002 + sys,norm: 8.90820000e-04 +- stat: 0.0004 + sys: 0.0018 + sys,norm: 7.85960000e-04 +- stat: 0.0004 + sys: 0.0016 + sys,norm: 6.89920000e-04 +- stat: 0.0004 + sys: 0.0015 + sys,norm: 6.09560000e-04 +- stat: 0.0003 + sys: 0.0014 + sys,norm: 5.35080000e-04 +- stat: 0.0003 + sys: 0.0011 + sys,norm: 4.27280000e-04 +- stat: 0.0003 + sys: 0.0009 + sys,norm: 2.99880000e-04 +- stat: 0.0002 + sys: 0.0007 + sys,norm: 2.04820000e-04 +- stat: 0.0002 + sys: 0.0005 + sys,norm: 1.36220000e-04 +- stat: 0.00019 + sys: 0.00041 + sys,norm: 8.91800000e-05 +- stat: 0.00017 + sys: 0.0003 + sys,norm: 5.56640000e-05 +- stat: 0.00015 + sys: 0.00021 + sys,norm: 3.17520000e-05 +- stat: 0.00012 + sys: 0.00015 + sys,norm: 1.46020000e-05 +- stat: 7.0e-05 + sys: 7.0e-05 + sys,norm: 4.9e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_prompt.yaml new file mode 100644 index 0000000000..da3b2a5ce0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-KA_10P54GEV_EE-KASUM/uncertainties_prompt.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.003 + sys: 0.007 + sys,norm: 2.85180000e-03 +- stat: 0.003 + sys: 0.007 + sys,norm: 3.74360000e-03 +- stat: 0.003 + sys: 0.008 + sys,norm: 4.58640000e-03 +- stat: 0.003 + sys: 0.009 + sys,norm: 5.27240000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 5.79180000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.20340000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.55620000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.68360000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.75220000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.73260000e-03 +- stat: 0.002 + sys: 0.009 + sys,norm: 6.62480000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.44840000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.23280000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 6.03680000e-03 +- stat: 0.002 + sys: 0.008 + sys,norm: 5.81140000e-03 +- stat: 0.002 + sys: 0.007 + sys,norm: 5.56640000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 5.20380000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 4.72360000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 0.004263 +- stat: 0.001 + sys: 0.006 + sys,norm: 3.81220000e-03 +- stat: 0.001 + sys: 0.005 + sys,norm: 3.40060000e-03 +- stat: 0.0009 + sys: 0.0047 + sys,norm: 3.01840000e-03 +- stat: 0.0008 + sys: 0.0043 + sys,norm: 2.67638000e-03 +- stat: 0.0008 + sys: 0.004 + sys,norm: 2.37846000e-03 +- stat: 0.0007 + sys: 0.0037 + sys,norm: 2.11778000e-03 +- stat: 0.0007 + sys: 0.0034 + sys,norm: 1.88258000e-03 +- stat: 0.0006 + sys: 0.0031 + sys,norm: 1.66404000e-03 +- stat: 0.0006 + sys: 0.0029 + sys,norm: 1.47294000e-03 +- stat: 0.0005 + sys: 0.0026 + sys,norm: 1.29654000e-03 +- stat: 0.0005 + sys: 0.0024 + sys,norm: 1.14366000e-03 +- stat: 0.0005 + sys: 0.0022 + sys,norm: 1.01038000e-03 +- stat: 0.0004 + sys: 0.002 + sys,norm: 8.90820000e-04 +- stat: 0.0004 + sys: 0.0018 + sys,norm: 7.85960000e-04 +- stat: 0.0004 + sys: 0.0016 + sys,norm: 6.89920000e-04 +- stat: 0.0004 + sys: 0.0015 + sys,norm: 6.09560000e-04 +- stat: 0.0003 + sys: 0.0014 + sys,norm: 5.35080000e-04 +- stat: 0.0003 + sys: 0.0011 + sys,norm: 4.27280000e-04 +- stat: 0.0003 + sys: 0.0009 + sys,norm: 2.99880000e-04 +- stat: 0.0002 + sys: 0.0007 + sys,norm: 2.04820000e-04 +- stat: 0.0002 + sys: 0.0005 + sys,norm: 1.36220000e-04 +- stat: 0.00019 + sys: 0.00041 + sys,norm: 8.91800000e-05 +- stat: 0.00017 + sys: 0.0003 + sys,norm: 5.56640000e-05 +- stat: 0.00015 + sys: 0.00021 + sys,norm: 3.17520000e-05 +- stat: 0.00012 + sys: 0.00015 + sys,norm: 1.46020000e-05 +- stat: 7.0e-05 + sys: 7.0e-05 + sys,norm: 4.9e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_conventional.yaml new file mode 100644 index 0000000000..5015aac9c6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_conventional.yaml @@ -0,0 +1,46 @@ +data_central: +- 9.25 +- 9.45 +- 9.14 +- 8.51 +- 7.82 +- 7.15 +- 6.47 +- 5.83 +- 5.23 +- 4.69 +- 4.21 +- 3.778 +- 3.401 +- 3.067 +- 2.768 +- 2.504 +- 2.159 +- 1.775 +- 1.472 +- 1.221 +- 1.02 +- 0.857 +- 0.723 +- 0.611 +- 0.518 +- 0.439 +- 0.372 +- 0.317 +- 0.27 +- 0.231 +- 0.198 +- 0.17 +- 0.1471 +- 0.1276 +- 0.1099 +- 0.095 +- 0.0734 +- 0.0513 +- 0.0359 +- 0.0251 +- 0.0169 +- 0.0108 +- 0.00682 +- 0.00418 +- 0.00153 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_prompt.yaml new file mode 100644 index 0000000000..5187be7ecd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/data_prompt.yaml @@ -0,0 +1,46 @@ +data_central: +- 8.01 +- 8.25 +- 8.04 +- 7.52 +- 6.93 +- 6.36 +- 5.78 +- 5.21 +- 4.69 +- 4.21 +- 3.781 +- 3.402 +- 3.065 +- 2.765 +- 2.495 +- 2.258 +- 1.948 +- 1.603 +- 1.332 +- 1.106 +- 0.926 +- 0.78 +- 0.659 +- 0.559 +- 0.475 +- 0.404 +- 0.343 +- 0.294 +- 0.251 +- 0.216 +- 0.186 +- 0.161 +- 0.1394 +- 0.1213 +- 0.1048 +- 0.091 +- 0.0706 +- 0.0497 +- 0.035 +- 0.0246 +- 0.0167 +- 0.0107 +- 0.00681 +- 0.00418 +- 0.00153 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..f033f4c45e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter.py @@ -0,0 +1,25 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +table_2 = "rawdata/Table2.yaml" +ndat = 45 +var_name = 'ph' + +data_prompt, kin_prompt, err_prompt = magic(table_1, ndat, var_name, 0) + +with open('data_prompt.yaml', 'w') as f: + yaml.dump(data_prompt, f, sort_keys=False) +with open('kinematics_prompt.yaml', 'w') as f: + yaml.dump(kin_prompt, f, sort_keys=False) +with open('uncertainties_prompt.yaml', 'w') as f: + yaml.dump(err_prompt, f, sort_keys=False) + +data_conventional, kin_conventional, err_conventional = magic(table_2, ndat, var_name, 0) + +with open('data_conventional.yaml', 'w') as f: + yaml.dump(data_conventional, f, sort_keys=False) +with open('kinematics_conventional.yaml', 'w') as f: + yaml.dump(kin_conventional, f, sort_keys=False) +with open('uncertainties_conventional.yaml', 'w') as f: + yaml.dump(err_conventional, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..7a064ec549 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/filter_core.py @@ -0,0 +1,56 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name, index): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][index]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + + kin_value = {var_name: {'min': kin_min, 'mid': None, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + error_value['sys,norm'] = pta(values[i]['errors'][2]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys,norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_conventional.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_conventional.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_prompt.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/kinematics_prompt.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..1e70b22347 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,64 @@ +setname: 'BABAR_SIA-PI_10P54GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BABAR" + +arXiv: + url: "https://arxiv.org/abs/1306.2895" +iNSPIRE: + url: "https://inspirehep.net/literature/1238276" +hepdata: + url: "https://www.hepdata.net/record/ins1238276" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$ (prompt)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-PROMPT + process_type: SIA_PH + ndata: 45 + tables: [1] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_prompt.yaml + data_central: data_prompt.yaml + data_uncertainties: + - uncertainties_prompt.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (conventional)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-CONVENTIONAL + process_type: SIA_PH + ndata: 45 + tables: [2] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_conventional.yaml + data_central: data_conventional.yaml + data_uncertainties: + - uncertainties_conventional.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..500a987b4e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,739 @@ +dependent_variables: +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.22} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 8.01 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.21} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 8.25 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.17} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 8.04 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.14} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 7.52 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.11} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 6.93 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.1} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 6.36 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.08} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 5.78 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.07} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 5.21 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.06} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 4.69 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 4.21 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.048} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.781 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.043} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.402 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.039} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.065 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.035} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.765 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.032} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.495 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.03} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.258 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.027} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.948 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.023} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.603 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.02} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.332 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.106 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.016} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.926 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.78 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.013} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.659 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.559 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.01} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.475 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.404 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.343 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.294 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.251 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.216 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.186 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0048} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.161 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0043} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1394 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0038} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1213 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0034} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1048 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.003} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.091 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0706 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0497 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.035 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.001} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0246 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0167 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0107 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.00036} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00681 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00418 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.00011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00153 +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.291 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.382 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.468 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.538 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.591 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.633 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.669 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.682 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.689 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.687 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.676 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.658 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.636 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.616 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.593 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.568 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.531 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.482 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.435 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.389 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.347 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0047} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.308 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0043} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2731 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.004} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2427 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0037} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2161 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0034} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1921 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0031} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1698 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0029} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1503 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0026} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1323 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1167 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0022} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.002} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0909 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0802 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0016} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0704 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0622 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0546 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0436 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0306 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0209 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0139 + - errors: + - {label: stat, symerror: 0.00019} + - {label: sys, symerror: 0.00041} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0091 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.0003} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00568 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00021} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00324 + - errors: + - {label: stat, symerror: 0.00012} + - {label: sys, symerror: 0.00015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00149 + - errors: + - {label: stat, symerror: 7.0e-05} + - {label: sys, symerror: 7.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0005 +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (PBAR + P) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.0019} + - {label: sys, symerror: 0.0033} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0479 + - errors: + - {label: stat, symerror: 0.0016} + - {label: sys, symerror: 0.004} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0672 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0047} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0879 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1046 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0051} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1167 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0048} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1237 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0045} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1296 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0045} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1356 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0044} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.138 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0046} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1384 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0045} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1363 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0045} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1331 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0044} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1292 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0043} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1256 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0042} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.12 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0041} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1135 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.004} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1033 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0038} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0919 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0035} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0823 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0032} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0029} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0655 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0026} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0588 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0023} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0526 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.002} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0466 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0017} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0416 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0374 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0013} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0331 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0293 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.001} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0259 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0227 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0201 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0176 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0154 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0133 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00044} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.01146 + - errors: + - {label: stat, symerror: 0.00014} + - {label: sys, symerror: 0.00038} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00979 + - errors: + - {label: stat, symerror: 0.00011} + - {label: sys, symerror: 0.00029} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00733 + - errors: + - {label: stat, symerror: 9.0e-05} + - {label: sys, symerror: 0.00019} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00448 + - errors: + - {label: stat, symerror: 7.0e-05} + - {label: sys, symerror: 0.00012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0026 + - errors: + - {label: stat, symerror: 5.0e-05} + - {label: sys, symerror: 8.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00143 + - errors: + - {label: stat, symerror: 4.0e-05} + - {label: sys, symerror: 5.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00073 + - errors: + - {label: stat, symerror: 3.0e-05} + - {label: sys, symerror: 3.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00036 + - errors: + - {label: stat, symerror: 2.0e-05} + - {label: sys, symerror: 2.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00017 + - errors: + - {label: stat, symerror: 2.0e-05} + - {label: sys, symerror: 1.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 7.0e-05 + - errors: + - {label: stat, symerror: 1.0e-05} + - {label: sys, symerror: 1.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.0e-05 +independent_variables: +- header: {name: 'P(P=3,RF=CM)', units: GEV} + values: + - {high: 0.25, low: 0.2} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.45, low: 0.4} + - {high: 0.5, low: 0.45} + - {high: 0.55, low: 0.5} + - {high: 0.6, low: 0.55} + - {high: 0.65, low: 0.6} + - {high: 0.7, low: 0.65} + - {high: 0.75, low: 0.7} + - {high: 0.8, low: 0.75} + - {high: 0.85, low: 0.8} + - {high: 0.9, low: 0.85} + - {high: 0.95, low: 0.9} + - {high: 1.0, low: 0.95} + - {high: 1.1, low: 1.0} + - {high: 1.2, low: 1.1} + - {high: 1.3, low: 1.2} + - {high: 1.4, low: 1.3} + - {high: 1.5, low: 1.4} + - {high: 1.6, low: 1.5} + - {high: 1.7, low: 1.6} + - {high: 1.8, low: 1.7} + - {high: 1.9, low: 1.8} + - {high: 2.0, low: 1.9} + - {high: 2.1, low: 2.0} + - {high: 2.2, low: 2.1} + - {high: 2.3, low: 2.2} + - {high: 2.4, low: 2.3} + - {high: 2.5, low: 2.4} + - {high: 2.6, low: 2.5} + - {high: 2.7, low: 2.6} + - {high: 2.8, low: 2.7} + - {high: 2.9, low: 2.8} + - {high: 3.0, low: 2.9} + - {high: 3.25, low: 3.0} + - {high: 3.5, low: 3.25} + - {high: 3.75, low: 3.5} + - {high: 4.0, low: 3.75} + - {high: 4.25, low: 4.0} + - {high: 4.5, low: 4.25} + - {high: 4.75, low: 4.5} + - {high: 5.0, low: 4.75} + - {high: 5.27, low: 5.0} diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..a9174145b9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,739 @@ +dependent_variables: +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.24} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 9.25 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.23} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 9.45 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.2} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 9.14 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.16} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 8.51 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.14} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 7.82 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.11} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 7.15 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.1} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 6.47 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.08} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 5.83 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.07} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 5.23 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.06} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 4.69 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 4.21 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.049} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.778 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.044} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.401 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.041} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 3.067 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.038} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.768 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.035} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.504 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.031} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 2.159 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.027} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.775 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.472 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.021} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.221 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.02 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.016} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.857 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.723 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.013} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.611 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.518 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.439 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.372 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.317 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.27 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.231 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.198 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.17 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0048} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1471 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0042} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1276 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0037} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1099 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0033} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.095 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0026} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0734 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0019} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0513 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0359 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0251 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0169 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0108 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.00036} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00682 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00418 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.00011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00153 +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.291 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.383 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.468 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.538 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.591 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.633 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.669 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.683 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.689 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.687 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.677 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.658 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.636 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.616 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.593 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.568 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.531 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.482 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.435 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.389 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.347 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0047} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.308 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0043} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2731 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.004} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2427 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0037} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.2161 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0034} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1921 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0031} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1698 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0029} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1503 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0026} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1323 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1167 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0022} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1031 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.002} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0909 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0802 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0016} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0704 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0622 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0546 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0436 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0306 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0209 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0139 + - errors: + - {label: stat, symerror: 0.00019} + - {label: sys, symerror: 0.00041} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0091 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.0003} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00568 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00021} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00324 + - errors: + - {label: stat, symerror: 0.00012} + - {label: sys, symerror: 0.00015} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00149 + - errors: + - {label: stat, symerror: 7.0e-05} + - {label: sys, symerror: 7.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0005 +- header: {name: '(1/Nevt)*D(N)/DP(P=3,RF=CM)'} + qualifiers: + - {name: RE, value: E+ E- --> (PBAR + P) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.068 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.094 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.122 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.145 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.161 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.171 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.18 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.188 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.192 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.193 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.191 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.187 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.183 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.179 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.173 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.165 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.153 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.139 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.126 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.113 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0046} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.1006 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0042} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.09 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0037} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0799 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0032} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0704 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0028} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.062 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0024} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0548 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0021} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.048 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0018} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0419 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0016} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0364 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0014} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0315 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0275 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0011} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0237 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.001} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0206 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0009} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0176 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0008} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.015 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0007} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0128 + - errors: + - {label: stat, symerror: 0.00012} + - {label: sys, symerror: 0.00049} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00926 + - errors: + - {label: stat, symerror: 9.0e-05} + - {label: sys, symerror: 0.00034} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00564 + - errors: + - {label: stat, symerror: 7.0e-05} + - {label: sys, symerror: 0.00021} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00324 + - errors: + - {label: stat, symerror: 5.0e-05} + - {label: sys, symerror: 0.00012} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00173 + - errors: + - {label: stat, symerror: 4.0e-05} + - {label: sys, symerror: 6.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00087 + - errors: + - {label: stat, symerror: 3.0e-05} + - {label: sys, symerror: 3.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.0004 + - errors: + - {label: stat, symerror: 2.0e-05} + - {label: sys, symerror: 2.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 0.00017 + - errors: + - {label: stat, symerror: 2.0e-05} + - {label: sys, symerror: 1.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 7.0e-05 + - errors: + - {label: stat, symerror: 1.0e-05} + - {label: sys, symerror: 1.0e-05} + - {label: 'sys,normalization uncertainty', symerror: 0.98%} + value: 1.0e-05 +independent_variables: +- header: {name: 'P(P=3,RF=CM)', units: GEV} + values: + - {high: 0.25, low: 0.2} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.45, low: 0.4} + - {high: 0.5, low: 0.45} + - {high: 0.55, low: 0.5} + - {high: 0.6, low: 0.55} + - {high: 0.65, low: 0.6} + - {high: 0.7, low: 0.65} + - {high: 0.75, low: 0.7} + - {high: 0.8, low: 0.75} + - {high: 0.85, low: 0.8} + - {high: 0.9, low: 0.85} + - {high: 0.95, low: 0.9} + - {high: 1.0, low: 0.95} + - {high: 1.1, low: 1.0} + - {high: 1.2, low: 1.1} + - {high: 1.3, low: 1.2} + - {high: 1.4, low: 1.3} + - {high: 1.5, low: 1.4} + - {high: 1.6, low: 1.5} + - {high: 1.7, low: 1.6} + - {high: 1.8, low: 1.7} + - {high: 1.9, low: 1.8} + - {high: 2.0, low: 1.9} + - {high: 2.1, low: 2.0} + - {high: 2.2, low: 2.1} + - {high: 2.3, low: 2.2} + - {high: 2.4, low: 2.3} + - {high: 2.5, low: 2.4} + - {high: 2.6, low: 2.5} + - {high: 2.7, low: 2.6} + - {high: 2.8, low: 2.7} + - {high: 2.9, low: 2.8} + - {high: 3.0, low: 2.9} + - {high: 3.25, low: 3.0} + - {high: 3.5, low: 3.25} + - {high: 3.75, low: 3.5} + - {high: 4.0, low: 3.75} + - {high: 4.25, low: 4.0} + - {high: 4.5, low: 4.25} + - {high: 4.75, low: 4.5} + - {high: 5.0, low: 4.75} + - {high: 5.27, low: 5.0} diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..0a35fb8eaa --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,35 @@ +dependent_variables: +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.08} + - {label: sys, symerror: 0.019} + value: 5.364 +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.012} + - {label: sys, symerror: 0.016} + value: 0.946 +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (PBAR + P) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0058} + - {label: sys, symerror: 0.007} + value: 0.1819 +independent_variables: +- header: {name: 'P(P=3,RF=CM)', units: GEV} + values: + - {high: 5.27, low: 0.2} diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..70cb1d17b4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,35 @@ +dependent_variables: +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.092} + - {label: sys, symerror: 0.02} + value: 6.002 +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.012} + - {label: sys, symerror: 0.016} + value: 0.946 +- header: {name: N/Nevt} + qualifiers: + - {name: RE, value: E+ E- --> (PBAR + P) X} + - {name: SQRT(S), units: GeV, value: '10.54'} + values: + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0095} + - {label: sys, symerror: 0.008} + value: 0.2612 +independent_variables: +- header: {name: 'P(P=3,RF=CM)', units: GEV} + values: + - {high: 5.27, low: 0.2} diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..ac17feb4a1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,84 @@ +--- +additional_resources: +- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#BABAR_2013_I1238276'} +comment: | + SLAC-PEP2. Measurement of the inclusive production of PI+-, K+- and PBAR/P in E+E- annihilations at a centre of mass energy of 10.54 GeV, below the threshold for BBAR-B pair production. +dateupdated: 09/12/2013 17:16:16 +modifications: +- {action: Encoded, date: 16 Sep 2013, who: Mike Whalley} +record_ids: +- {id: 1238276, type: inspire} +- {id: 5288, type: red} + +--- +data_file: Table1.yaml +description: | + Differential cross section for prompt PI+-, K+- and PBAR/P production. +keywords: +- name: reactions + values: [E+ E- --> PI+ X, E+ E- --> PI- X, E+ E- --> K+ X, E+ E- --> K+ X, E+ E- + --> PBAR X, E+ E- --> P X] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Single Differential Distribution, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [10.54] +location: Data from T 1 +name: Table 1 + +--- +data_file: Table2.yaml +description: | + Differential cross section for conventional PI+-, K+- and PBAR/P production. +keywords: +- name: reactions + values: [E+ E- --> PI+ X, E+ E- --> PI- X, E+ E- --> K+ X, E+ E- --> K+ X, E+ E- + --> PBAR X, E+ E- --> P X] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Single Differential Distribution, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [10.54] +location: Data from T 2 +name: Table 2 + +--- +data_file: Table3.yaml +description: | + Integrated cross sections for prompt PI+-, K+- and PBAR/P production. The second (sys) error is the uncertainty due to the model dependence of the extrapolation. +keywords: +- name: reactions + values: [E+ E- --> PI+ X, E+ E- --> PI- X, E+ E- --> K+ X, E+ E- --> K+ X, E+ E- + --> PBAR X, E+ E- --> P X] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Single Differential Distribution, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [10.54] +location: Data from T 1 +name: Table 3 + +--- +data_file: Table4.yaml +description: | + Integrated cross sections for conventional PI+-, K+- and PBAR/P production. The second (sys) error is the uncertainty due to the model dependence of the extrapolation. +keywords: +- name: reactions + values: [E+ E- --> PI+ X, E+ E- --> PI- X, E+ E- --> K+ X, E+ E- --> K+ X, E+ E- + --> PBAR X, E+ E- --> P X] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Single Differential Distribution, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [10.54] +location: Data from T 2 +name: Table 4 + diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_conventional.yaml new file mode 100644 index 0000000000..80a5a5c056 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_conventional.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.02 + sys: 0.24 + sys,norm: 0.09065 +- stat: 0.01 + sys: 0.23 + sys,norm: 0.09261 +- stat: 0.01 + sys: 0.2 + sys,norm: 0.089572 +- stat: 0.01 + sys: 0.16 + sys,norm: 0.083398 +- stat: 0.01 + sys: 0.14 + sys,norm: 0.076636 +- stat: 0.01 + sys: 0.11 + sys,norm: 7.00700000e-02 +- stat: 0.01 + sys: 0.1 + sys,norm: 6.34060000e-02 +- stat: 0.01 + sys: 0.08 + sys,norm: 5.71340000e-02 +- stat: 0.01 + sys: 0.07 + sys,norm: 0.051254 +- stat: 0.01 + sys: 0.06 + sys,norm: 0.045962 +- stat: 0.01 + sys: 0.05 + sys,norm: 0.041258 +- stat: 0.004 + sys: 0.049 + sys,norm: 3.70244000e-02 +- stat: 0.004 + sys: 0.044 + sys,norm: 3.33298000e-02 +- stat: 0.004 + sys: 0.041 + sys,norm: 3.00566000e-02 +- stat: 0.003 + sys: 0.038 + sys,norm: 2.71264000e-02 +- stat: 0.003 + sys: 0.035 + sys,norm: 2.45392000e-02 +- stat: 0.003 + sys: 0.031 + sys,norm: 2.11582000e-02 +- stat: 0.002 + sys: 0.027 + sys,norm: 1.73950000e-02 +- stat: 0.002 + sys: 0.024 + sys,norm: 1.44256000e-02 +- stat: 0.002 + sys: 0.021 + sys,norm: 1.19658000e-02 +- stat: 0.002 + sys: 0.018 + sys,norm: 9.99600000e-03 +- stat: 0.002 + sys: 0.016 + sys,norm: 8.39860000e-03 +- stat: 0.001 + sys: 0.015 + sys,norm: 7.08540000e-03 +- stat: 0.001 + sys: 0.013 + sys,norm: 5.98780000e-03 +- stat: 0.001 + sys: 0.012 + sys,norm: 5.07640000e-03 +- stat: 0.001 + sys: 0.011 + sys,norm: 4.30220000e-03 +- stat: 0.001 + sys: 0.009 + sys,norm: 3.64560000e-03 +- stat: 0.001 + sys: 0.008 + sys,norm: 3.10660000e-03 +- stat: 0.001 + sys: 0.008 + sys,norm: 0.002646 +- stat: 0.001 + sys: 0.007 + sys,norm: 2.26380000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.94040000e-03 +- stat: 0.001 + sys: 0.005 + sys,norm: 0.001666 +- stat: 0.0006 + sys: 0.0048 + sys,norm: 1.44158000e-03 +- stat: 0.0005 + sys: 0.0042 + sys,norm: 1.25048000e-03 +- stat: 0.0005 + sys: 0.0037 + sys,norm: 1.07702000e-03 +- stat: 0.0004 + sys: 0.0033 + sys,norm: 9.31000000e-04 +- stat: 0.0004 + sys: 0.0026 + sys,norm: 7.19320000e-04 +- stat: 0.0003 + sys: 0.0019 + sys,norm: 5.02740000e-04 +- stat: 0.0003 + sys: 0.0014 + sys,norm: 3.51820000e-04 +- stat: 0.0003 + sys: 0.0011 + sys,norm: 2.45980000e-04 +- stat: 0.0002 + sys: 0.0008 + sys,norm: 1.65620000e-04 +- stat: 0.0002 + sys: 0.0005 + sys,norm: 1.05840000e-04 +- stat: 0.00017 + sys: 0.00036 + sys,norm: 6.68360000e-05 +- stat: 0.00015 + sys: 0.00024 + sys,norm: 4.09640000e-05 +- stat: 0.0001 + sys: 0.00011 + sys,norm: 1.49940000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_prompt.yaml new file mode 100644 index 0000000000..7b5bad7ac3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PI_10P54GEV_EE-PISUM/uncertainties_prompt.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.02 + sys: 0.22 + sys,norm: 0.078498 +- stat: 0.01 + sys: 0.21 + sys,norm: 8.08500000e-02 +- stat: 0.01 + sys: 0.17 + sys,norm: 7.87920000e-02 +- stat: 0.01 + sys: 0.14 + sys,norm: 0.073696 +- stat: 0.01 + sys: 0.11 + sys,norm: 0.067914 +- stat: 0.01 + sys: 0.1 + sys,norm: 0.062328 +- stat: 0.01 + sys: 0.08 + sys,norm: 5.66440000e-02 +- stat: 0.01 + sys: 0.07 + sys,norm: 5.10580000e-02 +- stat: 0.01 + sys: 0.06 + sys,norm: 0.045962 +- stat: 0.01 + sys: 0.05 + sys,norm: 0.041258 +- stat: 0.005 + sys: 0.048 + sys,norm: 3.70538000e-02 +- stat: 0.004 + sys: 0.043 + sys,norm: 3.33396000e-02 +- stat: 0.004 + sys: 0.039 + sys,norm: 3.00370000e-02 +- stat: 0.004 + sys: 0.035 + sys,norm: 2.70970000e-02 +- stat: 0.003 + sys: 0.032 + sys,norm: 0.024451 +- stat: 0.003 + sys: 0.03 + sys,norm: 2.21284000e-02 +- stat: 0.002 + sys: 0.027 + sys,norm: 1.90904000e-02 +- stat: 0.002 + sys: 0.023 + sys,norm: 1.57094000e-02 +- stat: 0.002 + sys: 0.02 + sys,norm: 1.30536000e-02 +- stat: 0.002 + sys: 0.018 + sys,norm: 1.08388000e-02 +- stat: 0.002 + sys: 0.016 + sys,norm: 9.07480000e-03 +- stat: 0.002 + sys: 0.014 + sys,norm: 0.007644 +- stat: 0.001 + sys: 0.013 + sys,norm: 6.45820000e-03 +- stat: 0.001 + sys: 0.012 + sys,norm: 5.47820000e-03 +- stat: 0.001 + sys: 0.01 + sys,norm: 4.65500000e-03 +- stat: 0.001 + sys: 0.009 + sys,norm: 3.95920000e-03 +- stat: 0.001 + sys: 0.008 + sys,norm: 3.36140000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 2.88120000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 2.45980000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 2.11680000e-03 +- stat: 0.001 + sys: 0.005 + sys,norm: 1.82280000e-03 +- stat: 0.0006 + sys: 0.0048 + sys,norm: 1.57780000e-03 +- stat: 0.0005 + sys: 0.0043 + sys,norm: 1.36612000e-03 +- stat: 0.0005 + sys: 0.0038 + sys,norm: 1.18874000e-03 +- stat: 0.0005 + sys: 0.0034 + sys,norm: 1.02704000e-03 +- stat: 0.0004 + sys: 0.003 + sys,norm: 8.91800000e-04 +- stat: 0.0004 + sys: 0.0024 + sys,norm: 6.91880000e-04 +- stat: 0.0003 + sys: 0.0018 + sys,norm: 4.87060000e-04 +- stat: 0.0003 + sys: 0.0014 + sys,norm: 3.43000000e-04 +- stat: 0.0003 + sys: 0.001 + sys,norm: 2.41080000e-04 +- stat: 0.0002 + sys: 0.0008 + sys,norm: 1.63660000e-04 +- stat: 0.0002 + sys: 0.0005 + sys,norm: 1.04860000e-04 +- stat: 0.00017 + sys: 0.00036 + sys,norm: 6.67380000e-05 +- stat: 0.00015 + sys: 0.00024 + sys,norm: 4.09640000e-05 +- stat: 0.0001 + sys: 0.00011 + sys,norm: 1.49940000e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_conventional.yaml new file mode 100644 index 0000000000..c7e2475be6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_conventional.yaml @@ -0,0 +1,46 @@ +data_central: +- 0.068 +- 0.094 +- 0.122 +- 0.145 +- 0.161 +- 0.171 +- 0.18 +- 0.188 +- 0.192 +- 0.193 +- 0.191 +- 0.187 +- 0.183 +- 0.179 +- 0.173 +- 0.165 +- 0.153 +- 0.139 +- 0.126 +- 0.113 +- 0.1006 +- 0.09 +- 0.0799 +- 0.0704 +- 0.062 +- 0.0548 +- 0.048 +- 0.0419 +- 0.0364 +- 0.0315 +- 0.0275 +- 0.0237 +- 0.0206 +- 0.0176 +- 0.015 +- 0.0128 +- 0.00926 +- 0.00564 +- 0.00324 +- 0.00173 +- 0.00087 +- 0.0004 +- 0.00017 +- 7.0e-05 +- 1.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_prompt.yaml new file mode 100644 index 0000000000..b4b087f7ce --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/data_prompt.yaml @@ -0,0 +1,46 @@ +data_central: +- 0.0479 +- 0.0672 +- 0.0879 +- 0.1046 +- 0.1167 +- 0.1237 +- 0.1296 +- 0.1356 +- 0.138 +- 0.1384 +- 0.1363 +- 0.1331 +- 0.1292 +- 0.1256 +- 0.12 +- 0.1135 +- 0.1033 +- 0.0919 +- 0.0823 +- 0.0734 +- 0.0655 +- 0.0588 +- 0.0526 +- 0.0466 +- 0.0416 +- 0.0374 +- 0.0331 +- 0.0293 +- 0.0259 +- 0.0227 +- 0.0201 +- 0.0176 +- 0.0154 +- 0.0133 +- 0.01146 +- 0.00979 +- 0.00733 +- 0.00448 +- 0.0026 +- 0.00143 +- 0.00073 +- 0.00036 +- 0.00017 +- 7.0e-05 +- 1.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..f3562bbdf0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter.py @@ -0,0 +1,25 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +table_2 = "rawdata/Table2.yaml" +ndat = 45 +var_name = 'ph' + +data_prompt, kin_prompt, err_prompt = magic(table_1, ndat, var_name, 2) + +with open('data_prompt.yaml', 'w') as f: + yaml.dump(data_prompt, f, sort_keys=False) +with open('kinematics_prompt.yaml', 'w') as f: + yaml.dump(kin_prompt, f, sort_keys=False) +with open('uncertainties_prompt.yaml', 'w') as f: + yaml.dump(err_prompt, f, sort_keys=False) + +data_conventional, kin_conventional, err_conventional = magic(table_2, ndat, var_name, 2) + +with open('data_conventional.yaml', 'w') as f: + yaml.dump(data_conventional, f, sort_keys=False) +with open('kinematics_conventional.yaml', 'w') as f: + yaml.dump(kin_conventional, f, sort_keys=False) +with open('uncertainties_conventional.yaml', 'w') as f: + yaml.dump(err_conventional, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..d890d53a20 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../BABAR_SIA-PI_10P54GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_conventional.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_conventional.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_prompt.yaml new file mode 100644 index 0000000000..222e18ac51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/kinematics_prompt.yaml @@ -0,0 +1,181 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.5 +- ph: + min: 1.5 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.7 +- ph: + min: 1.7 + mid: null + max: 1.8 +- ph: + min: 1.8 + mid: null + max: 1.9 +- ph: + min: 1.9 + mid: null + max: 2.0 +- ph: + min: 2.0 + mid: null + max: 2.1 +- ph: + min: 2.1 + mid: null + max: 2.2 +- ph: + min: 2.2 + mid: null + max: 2.3 +- ph: + min: 2.3 + mid: null + max: 2.4 +- ph: + min: 2.4 + mid: null + max: 2.5 +- ph: + min: 2.5 + mid: null + max: 2.6 +- ph: + min: 2.6 + mid: null + max: 2.7 +- ph: + min: 2.7 + mid: null + max: 2.8 +- ph: + min: 2.8 + mid: null + max: 2.9 +- ph: + min: 2.9 + mid: null + max: 3.0 +- ph: + min: 3.0 + mid: null + max: 3.25 +- ph: + min: 3.25 + mid: null + max: 3.5 +- ph: + min: 3.5 + mid: null + max: 3.75 +- ph: + min: 3.75 + mid: null + max: 4.0 +- ph: + min: 4.0 + mid: null + max: 4.25 +- ph: + min: 4.25 + mid: null + max: 4.5 +- ph: + min: 4.5 + mid: null + max: 4.75 +- ph: + min: 4.75 + mid: null + max: 5.0 +- ph: + min: 5.0 + mid: null + max: 5.27 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..6b6f6b9092 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,64 @@ +setname: 'BABAR_SIA-PRO_10P54GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "BABAR" + +arXiv: + url: "https://arxiv.org/abs/1306.2895" +iNSPIRE: + url: "https://inspirehep.net/literature/1238276" +hepdata: + url: "https://www.hepdata.net/record/ins1238276" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$ (prompt)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-PROMPT + process_type: SIA_PH + ndata: 45 + tables: [1] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_prompt.yaml + data_central: data_prompt.yaml + data_uncertainties: + - uncertainties_prompt.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (conventional)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: ''} + observable_name: PH-CONVENTIONAL + process_type: SIA_PH + ndata: 45 + tables: [2] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_conventional.yaml + data_central: data_conventional.yaml + data_uncertainties: + - uncertainties_conventional.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BABAR SIA P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..94cee5459b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../BABAR_SIA-PI_10P54GEV_EE-PISUM/rawdata \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_conventional.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_conventional.yaml new file mode 100644 index 0000000000..1be7a1f824 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_conventional.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.002 + sys: 0.006 + sys,norm: 6.66400000e-04 +- stat: 0.002 + sys: 0.007 + sys,norm: 9.21200000e-04 +- stat: 0.001 + sys: 0.008 + sys,norm: 1.19560000e-03 +- stat: 0.001 + sys: 0.009 + sys,norm: 1.42100000e-03 +- stat: 0.001 + sys: 0.008 + sys,norm: 1.57780000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.67580000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 0.001764 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.84240000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.88160000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.89140000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.87180000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.83260000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.79340000e-03 +- stat: 0.001 + sys: 0.007 + sys,norm: 1.75420000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.69540000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.61700000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.49940000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.36220000e-03 +- stat: 0.001 + sys: 0.006 + sys,norm: 1.23480000e-03 +- stat: 0.001 + sys: 0.005 + sys,norm: 1.10740000e-03 +- stat: 0.0005 + sys: 0.0046 + sys,norm: 9.85880000e-04 +- stat: 0.0005 + sys: 0.0042 + sys,norm: 0.000882 +- stat: 0.0004 + sys: 0.0037 + sys,norm: 7.83020000e-04 +- stat: 0.0004 + sys: 0.0032 + sys,norm: 6.89920000e-04 +- stat: 0.0004 + sys: 0.0028 + sys,norm: 6.07600000e-04 +- stat: 0.0003 + sys: 0.0024 + sys,norm: 5.37040000e-04 +- stat: 0.0003 + sys: 0.0021 + sys,norm: 4.70400000e-04 +- stat: 0.0003 + sys: 0.0018 + sys,norm: 4.10620000e-04 +- stat: 0.0003 + sys: 0.0016 + sys,norm: 3.56720000e-04 +- stat: 0.0002 + sys: 0.0014 + sys,norm: 3.08700000e-04 +- stat: 0.0002 + sys: 0.0012 + sys,norm: 2.69500000e-04 +- stat: 0.0002 + sys: 0.0011 + sys,norm: 2.32260000e-04 +- stat: 0.0002 + sys: 0.001 + sys,norm: 2.01880000e-04 +- stat: 0.0002 + sys: 0.0009 + sys,norm: 1.72480000e-04 +- stat: 0.0002 + sys: 0.0008 + sys,norm: 0.000147 +- stat: 0.0001 + sys: 0.0007 + sys,norm: 1.25440000e-04 +- stat: 0.00012 + sys: 0.00049 + sys,norm: 9.07480000e-05 +- stat: 9.0e-05 + sys: 0.00034 + sys,norm: 5.52720000e-05 +- stat: 7.0e-05 + sys: 0.00021 + sys,norm: 3.17520000e-05 +- stat: 5.0e-05 + sys: 0.00012 + sys,norm: 1.69540000e-05 +- stat: 4.0e-05 + sys: 6.0e-05 + sys,norm: 8.52600000e-06 +- stat: 3.0e-05 + sys: 3.0e-05 + sys,norm: 3.92e-06 +- stat: 2.0e-05 + sys: 2.0e-05 + sys,norm: 1.66600000e-06 +- stat: 2.0e-05 + sys: 1.0e-05 + sys,norm: 6.86000000e-07 +- stat: 1.0e-05 + sys: 1.0e-05 + sys,norm: 9.80000000e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_prompt.yaml b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_prompt.yaml new file mode 100644 index 0000000000..4a39364519 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BABAR_SIA-PRO_10P54GEV_EE-PROSUM/uncertainties_prompt.yaml @@ -0,0 +1,149 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.0019 + sys: 0.0033 + sys,norm: 4.69420000e-04 +- stat: 0.0016 + sys: 0.004 + sys,norm: 6.58560000e-04 +- stat: 0.0013 + sys: 0.0047 + sys,norm: 8.61420000e-04 +- stat: 0.0012 + sys: 0.005 + sys,norm: 1.02508000e-03 +- stat: 0.0011 + sys: 0.0051 + sys,norm: 1.14366000e-03 +- stat: 0.0011 + sys: 0.0048 + sys,norm: 1.21226000e-03 +- stat: 0.001 + sys: 0.0045 + sys,norm: 1.27008000e-03 +- stat: 0.0009 + sys: 0.0045 + sys,norm: 1.32888000e-03 +- stat: 0.0009 + sys: 0.0044 + sys,norm: 1.35240000e-03 +- stat: 0.0009 + sys: 0.0046 + sys,norm: 1.35632000e-03 +- stat: 0.0009 + sys: 0.0045 + sys,norm: 1.33574000e-03 +- stat: 0.0009 + sys: 0.0045 + sys,norm: 1.30438000e-03 +- stat: 0.0008 + sys: 0.0044 + sys,norm: 1.26616000e-03 +- stat: 0.0008 + sys: 0.0043 + sys,norm: 1.23088000e-03 +- stat: 0.0008 + sys: 0.0042 + sys,norm: 0.001176 +- stat: 0.0008 + sys: 0.0041 + sys,norm: 1.11230000e-03 +- stat: 0.0007 + sys: 0.004 + sys,norm: 1.01234000e-03 +- stat: 0.0006 + sys: 0.0038 + sys,norm: 9.00620000e-04 +- stat: 0.0006 + sys: 0.0035 + sys,norm: 8.06540000e-04 +- stat: 0.0005 + sys: 0.0032 + sys,norm: 7.19320000e-04 +- stat: 0.0005 + sys: 0.0029 + sys,norm: 6.41900000e-04 +- stat: 0.0005 + sys: 0.0026 + sys,norm: 5.76240000e-04 +- stat: 0.0004 + sys: 0.0023 + sys,norm: 5.15480000e-04 +- stat: 0.0004 + sys: 0.002 + sys,norm: 4.56680000e-04 +- stat: 0.0004 + sys: 0.0017 + sys,norm: 4.07680000e-04 +- stat: 0.0003 + sys: 0.0015 + sys,norm: 3.66520000e-04 +- stat: 0.0003 + sys: 0.0013 + sys,norm: 3.24380000e-04 +- stat: 0.0003 + sys: 0.0012 + sys,norm: 2.87140000e-04 +- stat: 0.0003 + sys: 0.001 + sys,norm: 2.53820000e-04 +- stat: 0.0002 + sys: 0.0009 + sys,norm: 2.22460000e-04 +- stat: 0.0002 + sys: 0.0008 + sys,norm: 1.96980000e-04 +- stat: 0.0002 + sys: 0.0007 + sys,norm: 1.72480000e-04 +- stat: 0.0002 + sys: 0.0006 + sys,norm: 1.50920000e-04 +- stat: 0.0002 + sys: 0.0005 + sys,norm: 1.30340000e-04 +- stat: 0.00015 + sys: 0.00044 + sys,norm: 1.12308000e-04 +- stat: 0.00014 + sys: 0.00038 + sys,norm: 9.59420000e-05 +- stat: 0.00011 + sys: 0.00029 + sys,norm: 7.18340000e-05 +- stat: 9.0e-05 + sys: 0.00019 + sys,norm: 4.39040000e-05 +- stat: 7.0e-05 + sys: 0.00012 + sys,norm: 2.54800000e-05 +- stat: 5.0e-05 + sys: 8.0e-05 + sys,norm: 1.40140000e-05 +- stat: 4.0e-05 + sys: 5.0e-05 + sys,norm: 7.15400000e-06 +- stat: 3.0e-05 + sys: 3.0e-05 + sys,norm: 3.52800000e-06 +- stat: 2.0e-05 + sys: 2.0e-05 + sys,norm: 1.66600000e-06 +- stat: 2.0e-05 + sys: 1.0e-05 + sys,norm: 6.86000000e-07 +- stat: 1.0e-05 + sys: 1.0e-05 + sys,norm: 9.80000000e-08 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/data.yaml new file mode 100644 index 0000000000..c1fd90ff56 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/data.yaml @@ -0,0 +1,79 @@ +data_central: +- 6.37375000e+06 +- 5.98160000e+06 +- 5.59130000e+06 +- 5.23430000e+06 +- 4.90660000e+06 +- 4.57835000e+06 +- 4.25675000e+06 +- 3.94750000e+06 +- 3.65895000e+06 +- 3.39605000e+06 +- 3.15835000e+06 +- 2.94800000e+06 +- 2.75220000e+06 +- 2.56615000e+06 +- 2.39605000e+06 +- 2.23890000e+06 +- 2.09175000e+06 +- 1.94870000e+06 +- 1.81470000e+06 +- 1.69060000e+06 +- 1.58045000e+06 +- 1.48025000e+06 +- 1.38900000e+06 +- 1.30000000e+06 +- 1.21450000e+06 +- 1.13380000e+06 +- 1.05880000e+06 +- 985950.0 +- 919250.0 +- 857350.0 +- 799900.0 +- 748550.0 +- 700450.0 +- 656050.0 +- 613450.0 +- 573750.0 +- 534950.0 +- 497850.0 +- 462750.0 +- 430600.0 +- 401120.0 +- 372245.0 +- 345955.0 +- 321060.0 +- 297295.0 +- 274670.0 +- 253685.0 +- 234525.0 +- 216530.0 +- 198895.0 +- 184000.0 +- 168805.0 +- 155665.0 +- 142915.0 +- 130980.0 +- 119680.0 +- 109835.0 +- 99520.0 +- 90825.0 +- 82675.0 +- 74625.0 +- 67355.0 +- 60630.0 +- 54135.0 +- 47235.0 +- 42035.0 +- 36840.0 +- 32245.0 +- 27735.0 +- 23285.0 +- 19920.0 +- 16895.0 +- 14135.0 +- 11650.0 +- 8715.0 +- 6275.0 +- 4575.0 +- 5730.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter.py new file mode 100644 index 0000000000..36592ca020 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +ndat = 78 +var_name = 'z' + +data, kin, err = magic(table_1, ndat, var_name, 1) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..97e800b1e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..0f3a084d8d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/kinematics.yaml @@ -0,0 +1,313 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.21 +- z: + min: 0.21 + mid: null + max: 0.22 +- z: + min: 0.22 + mid: null + max: 0.23 +- z: + min: 0.23 + mid: null + max: 0.24 +- z: + min: 0.24 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.26 +- z: + min: 0.26 + mid: null + max: 0.27 +- z: + min: 0.27 + mid: null + max: 0.28 +- z: + min: 0.28 + mid: null + max: 0.29 +- z: + min: 0.29 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.31 +- z: + min: 0.31 + mid: null + max: 0.32 +- z: + min: 0.32 + mid: null + max: 0.33 +- z: + min: 0.33 + mid: null + max: 0.34 +- z: + min: 0.34 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.36 +- z: + min: 0.36 + mid: null + max: 0.37 +- z: + min: 0.37 + mid: null + max: 0.38 +- z: + min: 0.38 + mid: null + max: 0.39 +- z: + min: 0.39 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.41 +- z: + min: 0.41 + mid: null + max: 0.42 +- z: + min: 0.42 + mid: null + max: 0.43 +- z: + min: 0.43 + mid: null + max: 0.44 +- z: + min: 0.44 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.46 +- z: + min: 0.46 + mid: null + max: 0.47 +- z: + min: 0.47 + mid: null + max: 0.48 +- z: + min: 0.48 + mid: null + max: 0.49 +- z: + min: 0.49 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.51 +- z: + min: 0.51 + mid: null + max: 0.52 +- z: + min: 0.52 + mid: null + max: 0.53 +- z: + min: 0.53 + mid: null + max: 0.54 +- z: + min: 0.54 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.56 +- z: + min: 0.56 + mid: null + max: 0.57 +- z: + min: 0.57 + mid: null + max: 0.58 +- z: + min: 0.58 + mid: null + max: 0.59 +- z: + min: 0.59 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.61 +- z: + min: 0.61 + mid: null + max: 0.62 +- z: + min: 0.62 + mid: null + max: 0.63 +- z: + min: 0.63 + mid: null + max: 0.64 +- z: + min: 0.64 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.66 +- z: + min: 0.66 + mid: null + max: 0.67 +- z: + min: 0.67 + mid: null + max: 0.68 +- z: + min: 0.68 + mid: null + max: 0.69 +- z: + min: 0.69 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.71 +- z: + min: 0.71 + mid: null + max: 0.72 +- z: + min: 0.72 + mid: null + max: 0.73 +- z: + min: 0.73 + mid: null + max: 0.74 +- z: + min: 0.74 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.76 +- z: + min: 0.76 + mid: null + max: 0.77 +- z: + min: 0.77 + mid: null + max: 0.78 +- z: + min: 0.78 + mid: null + max: 0.79 +- z: + min: 0.79 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.81 +- z: + min: 0.81 + mid: null + max: 0.82 +- z: + min: 0.82 + mid: null + max: 0.83 +- z: + min: 0.83 + mid: null + max: 0.84 +- z: + min: 0.84 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.86 +- z: + min: 0.86 + mid: null + max: 0.87 +- z: + min: 0.87 + mid: null + max: 0.88 +- z: + min: 0.88 + mid: null + max: 0.89 +- z: + min: 0.89 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.91 +- z: + min: 0.91 + mid: null + max: 0.92 +- z: + min: 0.92 + mid: null + max: 0.93 +- z: + min: 0.93 + mid: null + max: 0.94 +- z: + min: 0.94 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.96 +- z: + min: 0.96 + mid: null + max: 0.97 +- z: + min: 0.97 + mid: null + max: 0.98 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..05a7e5c47c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BELLE" + +arXiv: + url: "https://arxiv.org/abs/1301.6183" +iNSPIRE: + url: "https://inspirehep.net/literature/1216515" +hepdata: + url: "https://www.hepdata.net/record/ins1216515" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "differential x-sec wrt z", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z + process_type: SIA_Z + ndata: 78 + tables: [1] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.52 GeV KA- + KA+: $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/rawdata new file mode 120000 index 0000000000..1463e24019 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/rawdata @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..9d59dbaa6b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P52GEV_68FB-1_EE-KASUM/uncertainties.yaml @@ -0,0 +1,248 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 4000.0 + sys: 1.43150017e+05 + sys,norm: 89232.5 +- stat: 3900.0 + sys: 139700.0 + sys,norm: 83742.4 +- stat: 3700.0 + sys: 128100.0 + sys,norm: 78278.2 +- stat: 3600.0 + sys: 121200.0 + sys,norm: 73280.2 +- stat: 3500.0 + sys: 118600.0 + sys,norm: 68692.4 +- stat: 3300.0 + sys: 1.16450021e+05 + sys,norm: 64096.9 +- stat: 3200.0 + sys: 1.07350023e+05 + sys,norm: 59594.5 +- stat: 3100.0 + sys: 101300.0 + sys,norm: 55265.0 +- stat: 3000.0 + sys: 9.11500274e+04 + sys,norm: 51225.3 +- stat: 2900.0 + sys: 9.06500276e+04 + sys,norm: 4.75447000e+04 +- stat: 2700.0 + sys: 8.58500291e+04 + sys,norm: 44216.9 +- stat: 2600.0 + sys: 85800.0 + sys,norm: 4.12720000e+04 +- stat: 2600.0 + sys: 78500.0 + sys,norm: 3.85308000e+04 +- stat: 2500.0 + sys: 7.57500330e+04 + sys,norm: 35926.1 +- stat: 2400.0 + sys: 7.18500348e+04 + sys,norm: 33544.7 +- stat: 2300.0 + sys: 68800.0 + sys,norm: 3.13446000e+04 +- stat: 2200.0 + sys: 6.42500389e+04 + sys,norm: 29284.5 +- stat: 2100.0 + sys: 62900.0 + sys,norm: 27281.8 +- stat: 2100.0 + sys: 60300.0 + sys,norm: 25405.8 +- stat: 2000.0 + sys: 56400.0 + sys,norm: 23668.4 +- stat: 1900.0 + sys: 5.29500472e+04 + sys,norm: 22126.3 +- stat: 1900.0 + sys: 5.30500471e+04 + sys,norm: 2.07235000e+04 +- stat: 1800.0 + sys: 51000.0 + sys,norm: 1.94460000e+04 +- stat: 1700.0 + sys: 48500.0 + sys,norm: 18200.0 +- stat: 1700.0 + sys: 46500.0 + sys,norm: 17003.0 +- stat: 1600.0 + sys: 44200.0 + sys,norm: 15873.2 +- stat: 1600.0 + sys: 40600.0 + sys,norm: 14823.2 +- stat: 1500.0 + sys: 4.00500624e+04 + sys,norm: 1.38033000e+04 +- stat: 1500.0 + sys: 3.71500673e+04 + sys,norm: 12869.5 +- stat: 1400.0 + sys: 3.61500692e+04 + sys,norm: 12002.9 +- stat: 1400.0 + sys: 31900.0 + sys,norm: 11198.6 +- stat: 1300.0 + sys: 3.09500808e+04 + sys,norm: 1.04797000e+04 +- stat: 1300.0 + sys: 2.99500835e+04 + sys,norm: 9806.3 +- stat: 1200.0 + sys: 2.72500917e+04 + sys,norm: 9.18470000e+03 +- stat: 1200.0 + sys: 2.56500975e+04 + sys,norm: 8588.3 +- stat: 1200.0 + sys: 2.36501057e+04 + sys,norm: 8032.5 +- stat: 1100.0 + sys: 2.29501089e+04 + sys,norm: 7489.3 +- stat: 1100.0 + sys: 2.04501222e+04 + sys,norm: 6.96990000e+03 +- stat: 1000.0 + sys: 1.93501292e+04 + sys,norm: 6478.5 +- stat: 1000.0 + sys: 20700.0 + sys,norm: 6.02840000e+03 +- stat: 970.0 + sys: 1.64000549e+04 + sys,norm: 5615.68 +- stat: 940.0 + sys: 1.55650402e+04 + sys,norm: 5.21143000e+03 +- stat: 910.0 + sys: 1.35750460e+04 + sys,norm: 4843.37 +- stat: 880.0 + sys: 1.42300632e+04 + sys,norm: 4494.84 +- stat: 850.0 + sys: 1.29952328e+04 + sys,norm: 4162.13 +- stat: 810.0 + sys: 1.33403673e+04 + sys,norm: 3845.38 +- stat: 780.0 + sys: 1.37556561e+04 + sys,norm: 3551.59 +- stat: 760.0 + sys: 1.20565117e+04 + sys,norm: 3283.35 +- stat: 730.0 + sys: 1.27717618e+04 + sys,norm: 3031.42 +- stat: 700.0 + sys: 1.16379412e+04 + sys,norm: 2784.53 +- stat: 680.0 + sys: 1.25228831e+04 + sys,norm: 2.57600000e+03 +- stat: 650.0 + sys: 1.25880211e+04 + sys,norm: 2363.27 +- stat: 630.0 + sys: 1.15889894e+04 + sys,norm: 2179.31 +- stat: 610.0 + sys: 1.14494225e+04 + sys,norm: 2000.81 +- stat: 580.0 + sys: 1.17637494e+04 + sys,norm: 1833.72 +- stat: 560.0 + sys: 1.11539545e+04 + sys,norm: 1675.52 +- stat: 540.0 + sys: 1.09588355e+04 + sys,norm: 1537.69 +- stat: 510.0 + sys: 1.01043654e+04 + sys,norm: 1393.28 +- stat: 500.0 + sys: 9.17004226e+03 + sys,norm: 1271.55 +- stat: 480.0 + sys: 9.33907249e+03 + sys,norm: 1.15745000e+03 +- stat: 460.0 + sys: 9.05877889e+03 + sys,norm: 1044.75 +- stat: 440.0 + sys: 8.35909535e+03 + sys,norm: 942.97 +- stat: 420.0 + sys: 8.07358037e+03 + sys,norm: 848.82 +- stat: 400.0 + sys: 7.33917400e+03 + sys,norm: 757.89 +- stat: 370.0 + sys: 7.02841910e+03 + sys,norm: 661.29 +- stat: 360.0 + sys: 6.83807539e+03 + sys,norm: 5.88490000e+02 +- stat: 340.0 + sys: 6.35308586e+03 + sys,norm: 515.76 +- stat: 320.0 + sys: 5.83812256e+03 + sys,norm: 451.43 +- stat: 310.0 + sys: 5.25846698e+03 + sys,norm: 388.29 +- stat: 280.0 + sys: 5.20754021e+03 + sys,norm: 3.25990000e+02 +- stat: 270.0 + sys: 4.70257376e+03 + sys,norm: 278.88 +- stat: 260.0 + sys: 4.72733276e+03 + sys,norm: 236.53 +- stat: 240.0 + sys: 4.11767835e+03 + sys,norm: 1.97890000e+02 +- stat: 240.0 + sys: 3.91255671e+03 + sys,norm: 163.1 +- stat: 220.0 + sys: 3.65746839e+03 + sys,norm: 122.01 +- stat: 210.0 + sys: 3.49758131e+03 + sys,norm: 8.78500000e+01 +- stat: 220.0 + sys: 3.59750956e+03 + sys,norm: 64.05 +- stat: 440.0 + sys: 7.53479263e+03 + sys,norm: 80.22 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data.yaml new file mode 100644 index 0000000000..496d72be0a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 1.60389060e+07 +- 1.44795960e+07 +- 1.24707480e+07 +- 1.10674290e+07 +- 9.10542000e+06 +- 7.55409900e+06 +- 6.27975000e+06 +- 5.06601220e+06 +- 4.23486959e+06 +- 3.59047096e+06 +- 3.04943235e+06 +- 2.57719015e+06 +- 2.20034650e+06 +- 1.86354800e+06 +- 1.57445500e+06 +- 1.31791900e+06 +- 1.11183100e+06 +- 946927.2 +- 796546.5 +- 6.65558750e+05 +- 558296.8 +- 461954.4 +- 381749.5 +- 3.10584750e+05 +- 250166.2 +- 2.01170750e+05 +- 1.60130850e+05 +- 126490.2 +- 97845.25 +- 74320.15 +- 55052.8 +- 39395.4 +- 26390.4 +- 15546.6 +- 7.29390000e+03 +- 2.69305000e+03 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data_strong.yaml new file mode 100644 index 0000000000..f87a5a4233 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/data_strong.yaml @@ -0,0 +1,37 @@ +data_central: +- 1.13819265e+07 +- 9.40360000e+06 +- 7.45163250e+06 +- 6.18859300e+06 +- 4.85719350e+06 +- 3.90876100e+06 +- 3.19344600e+06 +- 2.55088150e+06 +- 2.12533800e+06 +- 1.80792690e+06 +- 1.55138665e+06 +- 1.32999215e+06 +- 1.15448615e+06 +- 9.97207950e+05 +- 8.62176950e+05 +- 7.40731050e+05 +- 643332.3 +- 5.66552750e+05 +- 4.94314350e+05 +- 430277.2 +- 376746.5 +- 3.25063450e+05 +- 2.80122650e+05 +- 2.37994450e+05 +- 1.99718750e+05 +- 167359.2 +- 138461.4 +- 113269.2 +- 90542.4 +- 70551.6 +- 53344.6 +- 38791.8 +- 26182.8 +- 15495.8 +- 7285.55 +- 2.69290000e+03 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter.py new file mode 100644 index 0000000000..de26b1ba14 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter.py @@ -0,0 +1,23 @@ +from filter_core import magic +import yaml + +table1 = "rawdata/finalxsecs_z_Kpm.dat" +table2 = "rawdata/finalxsecs_z_Kpm_strong.dat" +var = 'z' + +data, kin, err = magic(table1, var) +data2, kin2, err2 = magic(table2, var) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) + +with open('data_strong.yaml', 'w') as f: + yaml.dump(data2, f, sort_keys=False) +with open('kinematics_strong.yaml', 'w') as f: + yaml.dump(kin2, f, sort_keys=False) +with open('uncertainties_strong.yaml', 'w') as f: + yaml.dump(err2, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..c054ab2c8d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..575494cad2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics.yaml @@ -0,0 +1,145 @@ +bins: +- z: + min: 0.1 + mid: null + max: 0.125 +- z: + min: 0.125 + mid: null + max: 0.15 +- z: + min: 0.15 + mid: null + max: 0.175 +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.925 +- z: + min: 0.925 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.975 +- z: + min: 0.975 + mid: null + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics_strong.yaml new file mode 100644 index 0000000000..575494cad2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/kinematics_strong.yaml @@ -0,0 +1,145 @@ +bins: +- z: + min: 0.1 + mid: null + max: 0.125 +- z: + min: 0.125 + mid: null + max: 0.15 +- z: + min: 0.15 + mid: null + max: 0.175 +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.925 +- z: + min: 0.925 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.975 +- z: + min: 0.975 + mid: null + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..f0eca4849a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/metadata.yaml @@ -0,0 +1,62 @@ +setname: 'BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BELLE" + +arXiv: + url: "https://arxiv.org/abs/2001.10194" +iNSPIRE: + url: "https://inspirehep.net/literature/1777678" +hepdata: + url: "N/A" + version: 0 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "differential x-sec wrt z", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z + process_type: SIA_Z + ndata: 36 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) KA- + KA+ production: $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "differential x-sec wrt z (weak decay subtracted)", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z-STRONG + process_type: SIA_Z + ndata: 36 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics_strong.yaml + data_central: data_strong.yaml + data_uncertainties: + - uncertainties_strong.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) KA- + KA+ production (strong): $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/rawdata new file mode 120000 index 0000000000..432b325cd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/rawdata @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..49155469d5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 3808.0 + sys_1: 6.06682477e+05 + sys_2: 4.08647786e+04 +- stat: 1389.0 + sys_1: 5.46610165e+05 + sys_2: 6.08702763e+05 +- stat: 859.5 + sys_1: 5.07499130e+05 + sys_2: 8.64139657e+05 +- stat: 1129.0 + sys_1: 4.46634012e+05 + sys_2: 9.27583220e+05 +- stat: 913.4 + sys_1: 3.79700659e+05 + sys_2: 2.79514910e+05 +- stat: 1039.0 + sys_1: 3.17676850e+05 + sys_2: 1.27139915e+04 +- stat: 725.6 + sys_1: 2.65500956e+05 + sys_2: 2.73977422e+03 +- stat: 1078.0 + sys_1: 2.22278254e+05 + sys_2: 5.61988107e+04 +- stat: 597.2 + sys_1: 1.84530626e+05 + sys_2: 2.63873990e+04 +- stat: 682.2 + sys_1: 1.54580071e+05 + sys_2: 2.57319870e+04 +- stat: 695.8 + sys_1: 1.30503474e+05 + sys_2: 2.38306526e+04 +- stat: 650.0 + sys_1: 1.09540932e+05 + sys_2: 2.10820967e+04 +- stat: 658.9 + sys_1: 9.07379427e+04 + sys_2: 1.07036343e+04 +- stat: 583.7 + sys_1: 7.67068346e+04 + sys_2: 3.77033407e+03 +- stat: 501.7 + sys_1: 6.33378190e+04 + sys_2: 1.73433525e+03 +- stat: 456.1 + sys_1: 5.35641954e+04 + sys_2: 1.11665706e+03 +- stat: 477.0 + sys_1: 4.47170899e+04 + sys_2: 1.05597857e+03 +- stat: 418.8 + sys_1: 3.67469920e+04 + sys_2: 1.11253596e+03 +- stat: 411.1 + sys_1: 3.09850246e+04 + sys_2: 1.52016997e+03 +- stat: 289.4 + sys_1: 2.53564767e+04 + sys_2: 1.32726794e+03 +- stat: 294.8 + sys_1: 2.13584245e+04 + sys_2: 1.05708991e+03 +- stat: 314.6 + sys_1: 1.80922655e+04 + sys_2: 7.53690938e+02 +- stat: 324.0 + sys_1: 1.59296296e+04 + sys_2: 7.18076117e+02 +- stat: 238.7 + sys_1: 1.36900710e+04 + sys_2: 6.55311321e+02 +- stat: 206.8 + sys_1: 1.29551795e+04 + sys_2: 6.02246735e+02 +- stat: 199.6 + sys_1: 1.29029066e+04 + sys_2: 5.48835064e+02 +- stat: 188.9 + sys_1: 1.24545765e+04 + sys_2: 5.01151541e+02 +- stat: 184.3 + sys_1: 1.18882074e+04 + sys_2: 4.60302205e+02 +- stat: 180.6 + sys_1: 1.11860449e+04 + sys_2: 4.04725027e+02 +- stat: 157.9 + sys_1: 8.96889328e+03 + sys_2: 3.62172124e+02 +- stat: 122.1 + sys_1: 6.00577147e+03 + sys_2: 3.03710668e+02 +- stat: 122.4 + sys_1: 4.88699609e+03 + sys_2: 2.66303042e+02 +- stat: 68.41 + sys_1: 2.26889356e+03 + sys_2: 2.22408813e+02 +- stat: 56.74 + sys_1: 1.30013490e+03 + sys_2: 1.81043724e+02 +- stat: 47.07 + sys_1: 5.72429600e+02 + sys_2: 1.88566242e+02 +- stat: 32.25 + sys_1: 5.42788882e+02 + sys_2: 1.62448476e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties_strong.yaml new file mode 100644 index 0000000000..e263b18ac5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-KA_10P58GEV_558FB-1_EE-KASUM/uncertainties_strong.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 2859.0 + sys_1: 1.09314166e+06 + sys_2: 3.06772508e+04 +- stat: 942.1 + sys_1: 6.77011019e+05 + sys_2: 4.12753595e+05 +- stat: 530.7 + sys_1: 4.64557887e+05 + sys_2: 5.33493000e+05 +- stat: 648.6 + sys_1: 3.40711520e+05 + sys_2: 5.32950050e+05 +- stat: 499.3 + sys_1: 2.55776010e+05 + sys_2: 1.52739939e+05 +- stat: 550.5 + sys_1: 1.95982958e+05 + sys_2: 6.76870763e+03 +- stat: 376.8 + sys_1: 1.52075795e+05 + sys_2: 1.58084060e+03 +- stat: 553.0 + sys_1: 1.18527443e+05 + sys_2: 2.88043618e+04 +- stat: 304.7 + sys_1: 9.44578488e+04 + sys_2: 1.34359820e+04 +- stat: 347.5 + sys_1: 7.84363863e+04 + sys_2: 1.30751088e+04 +- stat: 355.1 + sys_1: 6.77177576e+04 + sys_2: 1.21386857e+04 +- stat: 333.4 + sys_1: 5.89651598e+04 + sys_2: 1.07871012e+04 +- stat: 340.4 + sys_1: 5.31774642e+04 + sys_2: 5.51683978e+03 +- stat: 304.5 + sys_1: 4.83609189e+04 + sys_2: 1.99725374e+03 +- stat: 265.1 + sys_1: 4.42817691e+04 + sys_2: 1.00689737e+03 +- stat: 244.9 + sys_1: 3.95478874e+04 + sys_2: 7.27443817e+02 +- stat: 261.5 + sys_1: 3.67955038e+04 + sys_2: 7.03045760e+02 +- stat: 235.8 + sys_1: 3.42401869e+04 + sys_2: 7.38003758e+02 +- stat: 239.0 + sys_1: 3.09965881e+04 + sys_2: 9.63895309e+02 +- stat: 174.6 + sys_1: 2.77971235e+04 + sys_2: 8.84449727e+02 +- stat: 185.5 + sys_1: 2.46604314e+04 + sys_2: 7.57520732e+02 +- stat: 207.1 + sys_1: 2.21974880e+04 + sys_2: 6.02971282e+02 +- stat: 223.6 + sys_1: 2.03762828e+04 + sys_2: 5.94613410e+02 +- stat: 172.9 + sys_1: 1.79286168e+04 + sys_2: 5.67418106e+02 +- stat: 157.2 + sys_1: 1.58983104e+04 + sys_2: 5.41799066e+02 +- stat: 159.0 + sys_1: 1.46247829e+04 + sys_2: 5.13193063e+02 +- stat: 157.5 + sys_1: 1.30580665e+04 + sys_2: 4.84868106e+02 +- stat: 160.6 + sys_1: 1.22105331e+04 + sys_2: 4.58698528e+02 +- stat: 164.2 + sys_1: 1.12779519e+04 + sys_2: 4.16469363e+02 +- stat: 148.5 + sys_1: 9.16661775e+03 + sys_2: 3.80082517e+02 +- stat: 117.8 + sys_1: 6.27397633e+03 + sys_2: 3.26107850e+02 +- stat: 120.3 + sys_1: 4.96359980e+03 + sys_2: 2.86802232e+02 +- stat: 67.82 + sys_1: 2.32234294e+03 + sys_2: 2.38907074e+02 +- stat: 56.57 + sys_1: 1.32598718e+03 + sys_2: 1.92119963e+02 +- stat: 47.06 + sys_1: 5.81294013e+02 + sys_2: 1.93160626e+02 +- stat: 32.25 + sys_1: 5.42788882e+02 + sys_2: 1.63639787e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/data.yaml new file mode 100644 index 0000000000..e9b9c149a9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/data.yaml @@ -0,0 +1,79 @@ +data_central: +- 2.03780000e+07 +- 1.83247000e+07 +- 1.65093500e+07 +- 1.48789500e+07 +- 1.34435500e+07 +- 1.21936500e+07 +- 1.10808500e+07 +- 1.00835500e+07 +- 9.17885000e+06 +- 8.36610000e+06 +- 7.63960000e+06 +- 6.98930000e+06 +- 6.40205000e+06 +- 5.86050000e+06 +- 5.37155000e+06 +- 4.92455000e+06 +- 4.52275000e+06 +- 4.15130000e+06 +- 3.81355000e+06 +- 3.50435000e+06 +- 3.22465000e+06 +- 2.97150000e+06 +- 2.73835000e+06 +- 2.52960000e+06 +- 2.33780000e+06 +- 2.15780000e+06 +- 1.99700000e+06 +- 1.84320000e+06 +- 1.70760000e+06 +- 1.58170000e+06 +- 1.46480000e+06 +- 1.35680000e+06 +- 1.25650000e+06 +- 1.16300000e+06 +- 1.07860000e+06 +- 1.00100000e+06 +- 927300.0 +- 859800.0 +- 797300.0 +- 740500.0 +- 687200.0 +- 637650.0 +- 593600.0 +- 551200.0 +- 511750.0 +- 473700.0 +- 441550.0 +- 410240.0 +- 380420.0 +- 353915.0 +- 328435.0 +- 303245.0 +- 281290.0 +- 259455.0 +- 240505.0 +- 221825.0 +- 203670.0 +- 187880.0 +- 172210.0 +- 157750.0 +- 144685.0 +- 131575.0 +- 119645.0 +- 108245.0 +- 96735.0 +- 86100.0 +- 76145.0 +- 67380.0 +- 58110.0 +- 49145.0 +- 41995.0 +- 34960.0 +- 29450.0 +- 24690.0 +- 19140.0 +- 13750.0 +- 9900.0 +- 11675.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter.py new file mode 100644 index 0000000000..3ed5806be9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +ndat = 78 +var_name = 'z' + +data, kin, err = magic(table_1, ndat, var_name, 0) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..d32b94205c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/filter_core.py @@ -0,0 +1,65 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float +from nnpdf_data.filter_utils.utils import symmetrize_errors as se + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name, index): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][index]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + + kin_value = {var_name: {'min': kin_min, 'mid': None, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + if 'asymerror' in values[i]['errors'][1]: + data_sigma, error_value['sys'] = se( + values[i]['errors'][1]['asymerror']['plus'], + values[i]['errors'][1]['asymerror']['minus'], + ) + data_central_value = data_central_value + data_sigma + else: + error_value['sys'] = values[i]['errors'][1]['symerror'] + + error_value['sys,norm'] = pta(values[i]['errors'][2]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys,norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..0f3a084d8d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/kinematics.yaml @@ -0,0 +1,313 @@ +bins: +- z: + min: 0.2 + mid: null + max: 0.21 +- z: + min: 0.21 + mid: null + max: 0.22 +- z: + min: 0.22 + mid: null + max: 0.23 +- z: + min: 0.23 + mid: null + max: 0.24 +- z: + min: 0.24 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.26 +- z: + min: 0.26 + mid: null + max: 0.27 +- z: + min: 0.27 + mid: null + max: 0.28 +- z: + min: 0.28 + mid: null + max: 0.29 +- z: + min: 0.29 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.31 +- z: + min: 0.31 + mid: null + max: 0.32 +- z: + min: 0.32 + mid: null + max: 0.33 +- z: + min: 0.33 + mid: null + max: 0.34 +- z: + min: 0.34 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.36 +- z: + min: 0.36 + mid: null + max: 0.37 +- z: + min: 0.37 + mid: null + max: 0.38 +- z: + min: 0.38 + mid: null + max: 0.39 +- z: + min: 0.39 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.41 +- z: + min: 0.41 + mid: null + max: 0.42 +- z: + min: 0.42 + mid: null + max: 0.43 +- z: + min: 0.43 + mid: null + max: 0.44 +- z: + min: 0.44 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.46 +- z: + min: 0.46 + mid: null + max: 0.47 +- z: + min: 0.47 + mid: null + max: 0.48 +- z: + min: 0.48 + mid: null + max: 0.49 +- z: + min: 0.49 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.51 +- z: + min: 0.51 + mid: null + max: 0.52 +- z: + min: 0.52 + mid: null + max: 0.53 +- z: + min: 0.53 + mid: null + max: 0.54 +- z: + min: 0.54 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.56 +- z: + min: 0.56 + mid: null + max: 0.57 +- z: + min: 0.57 + mid: null + max: 0.58 +- z: + min: 0.58 + mid: null + max: 0.59 +- z: + min: 0.59 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.61 +- z: + min: 0.61 + mid: null + max: 0.62 +- z: + min: 0.62 + mid: null + max: 0.63 +- z: + min: 0.63 + mid: null + max: 0.64 +- z: + min: 0.64 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.66 +- z: + min: 0.66 + mid: null + max: 0.67 +- z: + min: 0.67 + mid: null + max: 0.68 +- z: + min: 0.68 + mid: null + max: 0.69 +- z: + min: 0.69 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.71 +- z: + min: 0.71 + mid: null + max: 0.72 +- z: + min: 0.72 + mid: null + max: 0.73 +- z: + min: 0.73 + mid: null + max: 0.74 +- z: + min: 0.74 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.76 +- z: + min: 0.76 + mid: null + max: 0.77 +- z: + min: 0.77 + mid: null + max: 0.78 +- z: + min: 0.78 + mid: null + max: 0.79 +- z: + min: 0.79 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.81 +- z: + min: 0.81 + mid: null + max: 0.82 +- z: + min: 0.82 + mid: null + max: 0.83 +- z: + min: 0.83 + mid: null + max: 0.84 +- z: + min: 0.84 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.86 +- z: + min: 0.86 + mid: null + max: 0.87 +- z: + min: 0.87 + mid: null + max: 0.88 +- z: + min: 0.88 + mid: null + max: 0.89 +- z: + min: 0.89 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.91 +- z: + min: 0.91 + mid: null + max: 0.92 +- z: + min: 0.92 + mid: null + max: 0.93 +- z: + min: 0.93 + mid: null + max: 0.94 +- z: + min: 0.94 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.96 +- z: + min: 0.96 + mid: null + max: 0.97 +- z: + min: 0.97 + mid: null + max: 0.98 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..33a7bb304a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BELLE" + +arXiv: + url: "https://arxiv.org/abs/1301.6183" +iNSPIRE: + url: "https://inspirehep.net/literature/1216515" +hepdata: + url: "https://www.hepdata.net/record/ins1216515" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "differential x-sec wrt z", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z + process_type: SIA_Z + ndata: 78 + tables: [1] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.52 GeV PI- + PI+ production: $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..86d4311b59 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,981 @@ +dependent_variables: +- header: {name: D(SIG)/DZ, units: FB} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '10.52'} + values: + - errors: + - {label: stat, symerror: 7000.0} + - asymerror: {minus: -384400.0, plus: 384600.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 20377900.0 + - errors: + - {label: stat, symerror: 6600.0} + - asymerror: {minus: -356000.0, plus: 356200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 18324600.0 + - errors: + - {label: stat, symerror: 6300.0} + - asymerror: {minus: -331700.0, plus: 331800.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 16509300.0 + - errors: + - {label: stat, symerror: 5900.0} + - asymerror: {minus: -296300.0, plus: 296400.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 14878900.0 + - errors: + - {label: stat, symerror: 5600.0} + - asymerror: {minus: -276800.0, plus: 276900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 13443500.0 + - errors: + - {label: stat, symerror: 5400.0} + - asymerror: {minus: -256900.0, plus: 257000.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 12193600.0 + - errors: + - {label: stat, symerror: 5100.0} + - asymerror: {minus: -242700.0, plus: 242800.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 11080800.0 + - errors: + - {label: stat, symerror: 4900.0} + - asymerror: {minus: -222800.0, plus: 222900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 10083500.0 + - errors: + - {label: stat, symerror: 4600.0} + - asymerror: {minus: -207000.0, plus: 207100.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 9178800.0 + - errors: + - {label: stat, symerror: 4400.0} + - {label: sys, symerror: 190600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 8366100.0 + - errors: + - {label: stat, symerror: 4200.0} + - {label: sys, symerror: 187600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 7639600.0 + - errors: + - {label: stat, symerror: 4000.0} + - {label: sys, symerror: 177400.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 6989300.0 + - errors: + - {label: stat, symerror: 3800.0} + - asymerror: {minus: -165100.0, plus: 165200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 6402000.0 + - errors: + - {label: stat, symerror: 3700.0} + - {label: sys, symerror: 155300.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5860500.0 + - errors: + - {label: stat, symerror: 3500.0} + - asymerror: {minus: -149200.0, plus: 149300.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5371500.0 + - errors: + - {label: stat, symerror: 3400.0} + - asymerror: {minus: -133900.0, plus: 134000.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4924500.0 + - errors: + - {label: stat, symerror: 3200.0} + - asymerror: {minus: -124100.0, plus: 124200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4522700.0 + - errors: + - {label: stat, symerror: 3100.0} + - {label: sys, symerror: 117700.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4151300.0 + - errors: + - {label: stat, symerror: 2900.0} + - asymerror: {minus: -108600.0, plus: 108700.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3813500.0 + - errors: + - {label: stat, symerror: 2800.0} + - asymerror: {minus: -104100.0, plus: 104200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3504300.0 + - errors: + - {label: stat, symerror: 2700.0} + - asymerror: {minus: -95500.0, plus: 95600.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3224600.0 + - errors: + - {label: stat, symerror: 2600.0} + - {label: sys, symerror: 89500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2971500.0 + - errors: + - {label: stat, symerror: 2500.0} + - asymerror: {minus: -83900.0, plus: 84000.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2738300.0 + - errors: + - {label: stat, symerror: 2400.0} + - {label: sys, symerror: 79400.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2529600.0 + - errors: + - {label: stat, symerror: 2300.0} + - {label: sys, symerror: 76500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2337800.0 + - errors: + - {label: stat, symerror: 2200.0} + - {label: sys, symerror: 68300.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2157800.0 + - errors: + - {label: stat, symerror: 2100.0} + - {label: sys, symerror: 65500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1997000.0 + - errors: + - {label: stat, symerror: 2000.0} + - {label: sys, symerror: 57800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1843200.0 + - errors: + - {label: stat, symerror: 2000.0} + - {label: sys, symerror: 57800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1707600.0 + - errors: + - {label: stat, symerror: 1900.0} + - {label: sys, symerror: 53100.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1581700.0 + - errors: + - {label: stat, symerror: 1800.0} + - {label: sys, symerror: 49200.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1464800.0 + - errors: + - {label: stat, symerror: 1700.0} + - {label: sys, symerror: 47800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1356800.0 + - errors: + - {label: stat, symerror: 1700.0} + - {label: sys, symerror: 44100.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1256500.0 + - errors: + - {label: stat, symerror: 1600.0} + - {label: sys, symerror: 40800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1163000.0 + - errors: + - {label: stat, symerror: 1600.0} + - {label: sys, symerror: 39400.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1078600.0 + - errors: + - {label: stat, symerror: 1500.0} + - {label: sys, symerror: 38800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1001000.0 + - errors: + - {label: stat, symerror: 1400.0} + - {label: sys, symerror: 35400.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 927300.0 + - errors: + - {label: stat, symerror: 1400.0} + - {label: sys, symerror: 32800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 859800.0 + - errors: + - {label: stat, symerror: 1300.0} + - {label: sys, symerror: 32600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 797300.0 + - errors: + - {label: stat, symerror: 1300.0} + - {label: sys, symerror: 29500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 740500.0 + - errors: + - {label: stat, symerror: 1200.0} + - {label: sys, symerror: 27800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 687200.0 + - errors: + - {label: stat, symerror: 1200.0} + - asymerror: {minus: -26800.0, plus: 26900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 637600.0 + - errors: + - {label: stat, symerror: 1200.0} + - {label: sys, symerror: 24000.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 593600.0 + - errors: + - {label: stat, symerror: 1100.0} + - {label: sys, symerror: 23700.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 551200.0 + - errors: + - {label: stat, symerror: 1100.0} + - asymerror: {minus: -21600.0, plus: 21700.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 511700.0 + - errors: + - {label: stat, symerror: 1000.0} + - {label: sys, symerror: 19600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 473700.0 + - errors: + - {label: stat, symerror: 1000.0} + - asymerror: {minus: -20200.0, plus: 20300.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 441500.0 + - errors: + - {label: stat, symerror: 970.0} + - asymerror: {minus: -19450.0, plus: 19470.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 410230.0 + - errors: + - {label: stat, symerror: 940.0} + - asymerror: {minus: -20530.0, plus: 20550.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 380410.0 + - errors: + - {label: stat, symerror: 910.0} + - asymerror: {minus: -16160.0, plus: 16210.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 353890.0 + - errors: + - {label: stat, symerror: 880.0} + - asymerror: {minus: -16880.0, plus: 16930.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 328410.0 + - errors: + - {label: stat, symerror: 850.0} + - asymerror: {minus: -16800.0, plus: 16850.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 303220.0 + - errors: + - {label: stat, symerror: 820.0} + - asymerror: {minus: -14980.0, plus: 15040.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 281260.0 + - errors: + - {label: stat, symerror: 790.0} + - asymerror: {minus: -15260.0, plus: 15310.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 259430.0 + - errors: + - {label: stat, symerror: 760.0} + - asymerror: {minus: -14360.0, plus: 14410.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 240480.0 + - errors: + - {label: stat, symerror: 740.0} + - asymerror: {minus: -13540.0, plus: 13590.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 221800.0 + - errors: + - {label: stat, symerror: 710.0} + - asymerror: {minus: -12790.0, plus: 12850.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 203640.0 + - errors: + - {label: stat, symerror: 680.0} + - asymerror: {minus: -11910.0, plus: 11970.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 187850.0 + - errors: + - {label: stat, symerror: 660.0} + - asymerror: {minus: -10950.0, plus: 11010.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 172180.0 + - errors: + - {label: stat, symerror: 630.0} + - asymerror: {minus: -10730.0, plus: 10790.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 157720.0 + - errors: + - {label: stat, symerror: 610.0} + - asymerror: {minus: -10840.0, plus: 10890.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 144660.0 + - errors: + - {label: stat, symerror: 590.0} + - asymerror: {minus: -11190.0, plus: 11240.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 131550.0 + - errors: + - {label: stat, symerror: 570.0} + - asymerror: {minus: -8810.0, plus: 8860.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 119620.0 + - errors: + - {label: stat, symerror: 540.0} + - asymerror: {minus: -10500.0, plus: 10530.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 108230.0 + - errors: + - {label: stat, symerror: 520.0} + - asymerror: {minus: -8060.0, plus: 8090.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 96720.0 + - errors: + - {label: stat, symerror: 490.0} + - asymerror: {minus: -8270.0, plus: 8290.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 86090.0 + - errors: + - {label: stat, symerror: 470.0} + - asymerror: {minus: -7900.0, plus: 7910.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 76140.0 + - errors: + - {label: stat, symerror: 450.0} + - {label: sys, symerror: 7260.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 67380.0 + - errors: + - {label: stat, symerror: 420.0} + - {label: sys, symerror: 6960.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 58110.0 + - errors: + - {label: stat, symerror: 390.0} + - asymerror: {minus: -7710.0, plus: 7700.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 49150.0 + - errors: + - {label: stat, symerror: 370.0} + - asymerror: {minus: -6380.0, plus: 6370.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 42000.0 + - errors: + - {label: stat, symerror: 350.0} + - asymerror: {minus: -5010.0, plus: 4990.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 34970.0 + - errors: + - {label: stat, symerror: 330.0} + - asymerror: {minus: -6160.0, plus: 6140.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 29460.0 + - errors: + - {label: stat, symerror: 320.0} + - asymerror: {minus: -4820.0, plus: 4800.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 24700.0 + - errors: + - {label: stat, symerror: 290.0} + - asymerror: {minus: -5420.0, plus: 5400.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 19150.0 + - errors: + - {label: stat, symerror: 280.0} + - asymerror: {minus: -3760.0, plus: 3740.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 13760.0 + - errors: + - {label: stat, symerror: 290.0} + - asymerror: {minus: -4930.0, plus: 4910.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 9910.0 + - errors: + - {label: stat, symerror: 540.0} + - asymerror: {minus: -6480.0, plus: 6430.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 11700.0 +- header: {name: D(SIG)/DZ, units: FB} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '10.52'} + values: + - errors: + - {label: stat, symerror: 4000.0} + - asymerror: {minus: -143200.0, plus: 143100.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 6373800.0 + - errors: + - {label: stat, symerror: 3900.0} + - {label: sys, symerror: 139700.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5981600.0 + - errors: + - {label: stat, symerror: 3700.0} + - {label: sys, symerror: 128100.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5591300.0 + - errors: + - {label: stat, symerror: 3600.0} + - {label: sys, symerror: 121200.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5234300.0 + - errors: + - {label: stat, symerror: 3500.0} + - {label: sys, symerror: 118600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4906600.0 + - errors: + - {label: stat, symerror: 3300.0} + - asymerror: {minus: -116500.0, plus: 116400.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4578400.0 + - errors: + - {label: stat, symerror: 3200.0} + - asymerror: {minus: -107400.0, plus: 107300.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4256800.0 + - errors: + - {label: stat, symerror: 3100.0} + - {label: sys, symerror: 101300.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3947500.0 + - errors: + - {label: stat, symerror: 3000.0} + - asymerror: {minus: -91100.0, plus: 91200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3658900.0 + - errors: + - {label: stat, symerror: 2900.0} + - asymerror: {minus: -90600.0, plus: 90700.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3396000.0 + - errors: + - {label: stat, symerror: 2700.0} + - asymerror: {minus: -85800.0, plus: 85900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 3158300.0 + - errors: + - {label: stat, symerror: 2600.0} + - {label: sys, symerror: 85800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2948000.0 + - errors: + - {label: stat, symerror: 2600.0} + - {label: sys, symerror: 78500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2752200.0 + - errors: + - {label: stat, symerror: 2500.0} + - asymerror: {minus: -75700.0, plus: 75800.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2566100.0 + - errors: + - {label: stat, symerror: 2400.0} + - asymerror: {minus: -71800.0, plus: 71900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2396000.0 + - errors: + - {label: stat, symerror: 2300.0} + - {label: sys, symerror: 68800.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2238900.0 + - errors: + - {label: stat, symerror: 2200.0} + - asymerror: {minus: -64200.0, plus: 64300.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 2091700.0 + - errors: + - {label: stat, symerror: 2100.0} + - {label: sys, symerror: 62900.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1948700.0 + - errors: + - {label: stat, symerror: 2100.0} + - {label: sys, symerror: 60300.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1814700.0 + - errors: + - {label: stat, symerror: 2000.0} + - {label: sys, symerror: 56400.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1690600.0 + - errors: + - {label: stat, symerror: 1900.0} + - asymerror: {minus: -52900.0, plus: 53000.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1580400.0 + - errors: + - {label: stat, symerror: 1900.0} + - asymerror: {minus: -53000.0, plus: 53100.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1480200.0 + - errors: + - {label: stat, symerror: 1800.0} + - {label: sys, symerror: 51000.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1389000.0 + - errors: + - {label: stat, symerror: 1700.0} + - {label: sys, symerror: 48500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1300000.0 + - errors: + - {label: stat, symerror: 1700.0} + - {label: sys, symerror: 46500.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1214500.0 + - errors: + - {label: stat, symerror: 1600.0} + - {label: sys, symerror: 44200.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1133800.0 + - errors: + - {label: stat, symerror: 1600.0} + - {label: sys, symerror: 40600.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 1058800.0 + - errors: + - {label: stat, symerror: 1500.0} + - asymerror: {minus: -40100.0, plus: 40000.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 986000.0 + - errors: + - {label: stat, symerror: 1500.0} + - asymerror: {minus: -37200.0, plus: 37100.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 919300.0 + - errors: + - {label: stat, symerror: 1400.0} + - asymerror: {minus: -36200.0, plus: 36100.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 857400.0 + - errors: + - {label: stat, symerror: 1400.0} + - {label: sys, symerror: 31900.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 799900.0 + - errors: + - {label: stat, symerror: 1300.0} + - asymerror: {minus: -31000.0, plus: 30900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 748600.0 + - errors: + - {label: stat, symerror: 1300.0} + - asymerror: {minus: -30000.0, plus: 29900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 700500.0 + - errors: + - {label: stat, symerror: 1200.0} + - asymerror: {minus: -27300.0, plus: 27200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 656100.0 + - errors: + - {label: stat, symerror: 1200.0} + - asymerror: {minus: -25700.0, plus: 25600.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 613500.0 + - errors: + - {label: stat, symerror: 1200.0} + - asymerror: {minus: -23700.0, plus: 23600.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 573800.0 + - errors: + - {label: stat, symerror: 1100.0} + - asymerror: {minus: -23000.0, plus: 22900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 535000.0 + - errors: + - {label: stat, symerror: 1100.0} + - asymerror: {minus: -20500.0, plus: 20400.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 497900.0 + - errors: + - {label: stat, symerror: 1000.0} + - asymerror: {minus: -19400.0, plus: 19300.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 462800.0 + - errors: + - {label: stat, symerror: 1000.0} + - {label: sys, symerror: 20700.0} + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 430600.0 + - errors: + - {label: stat, symerror: 970.0} + - asymerror: {minus: -16430.0, plus: 16370.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 401150.0 + - errors: + - {label: stat, symerror: 940.0} + - asymerror: {minus: -15590.0, plus: 15540.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 372270.0 + - errors: + - {label: stat, symerror: 910.0} + - asymerror: {minus: -13600.0, plus: 13550.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 345980.0 + - errors: + - {label: stat, symerror: 880.0} + - asymerror: {minus: -14260.0, plus: 14200.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 321090.0 + - errors: + - {label: stat, symerror: 850.0} + - asymerror: {minus: -13050.0, plus: 12940.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 297350.0 + - errors: + - {label: stat, symerror: 810.0} + - asymerror: {minus: -13410.0, plus: 13270.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 274740.0 + - errors: + - {label: stat, symerror: 780.0} + - asymerror: {minus: -13850.0, plus: 13660.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 253780.0 + - errors: + - {label: stat, symerror: 760.0} + - asymerror: {minus: -12190.0, plus: 11920.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 234660.0 + - errors: + - {label: stat, symerror: 730.0} + - asymerror: {minus: -12920.0, plus: 12620.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 216680.0 + - errors: + - {label: stat, symerror: 700.0} + - asymerror: {minus: -11820.0, plus: 11450.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 199080.0 + - errors: + - {label: stat, symerror: 680.0} + - asymerror: {minus: -12710.0, plus: 12330.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 184190.0 + - errors: + - {label: stat, symerror: 650.0} + - asymerror: {minus: -12780.0, plus: 12390.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 169000.0 + - errors: + - {label: stat, symerror: 630.0} + - asymerror: {minus: -11800.0, plus: 11370.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 155880.0 + - errors: + - {label: stat, symerror: 610.0} + - asymerror: {minus: -11670.0, plus: 11220.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 143140.0 + - errors: + - {label: stat, symerror: 580.0} + - asymerror: {minus: -11970.0, plus: 11550.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 131190.0 + - errors: + - {label: stat, symerror: 560.0} + - asymerror: {minus: -11360.0, plus: 10940.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 119890.0 + - errors: + - {label: stat, symerror: 540.0} + - asymerror: {minus: -11160.0, plus: 10750.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 110040.0 + - errors: + - {label: stat, symerror: 510.0} + - asymerror: {minus: -10310.0, plus: 9890.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 99730.0 + - errors: + - {label: stat, symerror: 500.0} + - asymerror: {minus: -9380.0, plus: 8950.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 91040.0 + - errors: + - {label: stat, symerror: 480.0} + - asymerror: {minus: -9530.0, plus: 9140.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 82870.0 + - errors: + - {label: stat, symerror: 460.0} + - asymerror: {minus: -9240.0, plus: 8870.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 74810.0 + - errors: + - {label: stat, symerror: 440.0} + - asymerror: {minus: -8540.0, plus: 8170.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 67540.0 + - errors: + - {label: stat, symerror: 420.0} + - asymerror: {minus: -8240.0, plus: 7900.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 60800.0 + - errors: + - {label: stat, symerror: 400.0} + - asymerror: {minus: -7510.0, plus: 7160.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 54310.0 + - errors: + - {label: stat, symerror: 370.0} + - asymerror: {minus: -7180.0, plus: 6870.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 47390.0 + - errors: + - {label: stat, symerror: 360.0} + - asymerror: {minus: -6980.0, plus: 6690.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 42180.0 + - errors: + - {label: stat, symerror: 340.0} + - asymerror: {minus: -6490.0, plus: 6210.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 36980.0 + - errors: + - {label: stat, symerror: 320.0} + - asymerror: {minus: -5970.0, plus: 5700.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 32380.0 + - errors: + - {label: stat, symerror: 310.0} + - asymerror: {minus: -5390.0, plus: 5120.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 27870.0 + - errors: + - {label: stat, symerror: 280.0} + - asymerror: {minus: -5320.0, plus: 5090.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 23400.0 + - errors: + - {label: stat, symerror: 270.0} + - asymerror: {minus: -4810.0, plus: 4590.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 20030.0 + - errors: + - {label: stat, symerror: 260.0} + - asymerror: {minus: -4830.0, plus: 4620.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 17000.0 + - errors: + - {label: stat, symerror: 240.0} + - asymerror: {minus: -4220.0, plus: 4010.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 14240.0 + - errors: + - {label: stat, symerror: 240.0} + - asymerror: {minus: -4010.0, plus: 3810.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 11750.0 + - errors: + - {label: stat, symerror: 220.0} + - asymerror: {minus: -3750.0, plus: 3560.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 8810.0 + - errors: + - {label: stat, symerror: 210.0} + - asymerror: {minus: -3590.0, plus: 3400.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 6370.0 + - errors: + - {label: stat, symerror: 220.0} + - asymerror: {minus: -3690.0, plus: 3500.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 4670.0 + - errors: + - {label: stat, symerror: 440.0} + - asymerror: {minus: -7720.0, plus: 7340.0} + label: sys + - {label: 'sys,normalization uncertainty', symerror: 1.4%} + value: 5920.0 +independent_variables: +- header: {name: Z} + values: + - {high: 0.21, low: 0.2} + - {high: 0.22, low: 0.21} + - {high: 0.23, low: 0.22} + - {high: 0.24, low: 0.23} + - {high: 0.25, low: 0.24} + - {high: 0.26, low: 0.25} + - {high: 0.27, low: 0.26} + - {high: 0.28, low: 0.27} + - {high: 0.29, low: 0.28} + - {high: 0.3, low: 0.29} + - {high: 0.31, low: 0.3} + - {high: 0.32, low: 0.31} + - {high: 0.33, low: 0.32} + - {high: 0.34, low: 0.33} + - {high: 0.35, low: 0.34} + - {high: 0.36, low: 0.35} + - {high: 0.37, low: 0.36} + - {high: 0.38, low: 0.37} + - {high: 0.39, low: 0.38} + - {high: 0.4, low: 0.39} + - {high: 0.41, low: 0.4} + - {high: 0.42, low: 0.41} + - {high: 0.43, low: 0.42} + - {high: 0.44, low: 0.43} + - {high: 0.45, low: 0.44} + - {high: 0.46, low: 0.45} + - {high: 0.47, low: 0.46} + - {high: 0.48, low: 0.47} + - {high: 0.49, low: 0.48} + - {high: 0.5, low: 0.49} + - {high: 0.51, low: 0.5} + - {high: 0.52, low: 0.51} + - {high: 0.53, low: 0.52} + - {high: 0.54, low: 0.53} + - {high: 0.55, low: 0.54} + - {high: 0.56, low: 0.55} + - {high: 0.57, low: 0.56} + - {high: 0.58, low: 0.57} + - {high: 0.59, low: 0.58} + - {high: 0.6, low: 0.59} + - {high: 0.61, low: 0.6} + - {high: 0.62, low: 0.61} + - {high: 0.63, low: 0.62} + - {high: 0.64, low: 0.63} + - {high: 0.65, low: 0.64} + - {high: 0.66, low: 0.65} + - {high: 0.67, low: 0.66} + - {high: 0.68, low: 0.67} + - {high: 0.69, low: 0.68} + - {high: 0.7, low: 0.69} + - {high: 0.71, low: 0.7} + - {high: 0.72, low: 0.71} + - {high: 0.73, low: 0.72} + - {high: 0.74, low: 0.73} + - {high: 0.75, low: 0.74} + - {high: 0.76, low: 0.75} + - {high: 0.77, low: 0.76} + - {high: 0.78, low: 0.77} + - {high: 0.79, low: 0.78} + - {high: 0.8, low: 0.79} + - {high: 0.81, low: 0.8} + - {high: 0.82, low: 0.81} + - {high: 0.83, low: 0.82} + - {high: 0.84, low: 0.83} + - {high: 0.85, low: 0.84} + - {high: 0.86, low: 0.85} + - {high: 0.87, low: 0.86} + - {high: 0.88, low: 0.87} + - {high: 0.89, low: 0.88} + - {high: 0.9, low: 0.89} + - {high: 0.91, low: 0.9} + - {high: 0.92, low: 0.91} + - {high: 0.93, low: 0.92} + - {high: 0.94, low: 0.93} + - {high: 0.95, low: 0.94} + - {high: 0.96, low: 0.95} + - {high: 0.97, low: 0.96} + - {high: 0.98, low: 0.97} diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..690bd56770 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,29 @@ +--- +additional_resources: +- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#BELLE_2013_I1216515'} +comment: | + KEK-KEKB. Precise measurements of inclusive differential cross sections of charged pions and kaons produced in E+ E- collisions at a centre-of-mass energy of 10.52 GeV. The analysis is based on a data sample of integrated luminosity of 68.0 fb-1 collected from the asymmmetric KEKB collider with beam energies 3.5 on 8 GeV operating 60 MeV below the upsilon(4s) resonance, resulting in 113M q-qbar events. The cross sections are tabulated as a function of the fractional hadron energy Z. As reported in the paper, all weakly produced pions and kaons are included in the cross section values, and all decayed pions and kaons are recovered. An initial state radiation restriction is also part of the data results given here, as also reported in the PRL paper: Only events with less than 0.5% * sqrt(s) ISR energy loss are accepted in the analysis. +dateupdated: 13/01/2014 16:16:54 +modifications: +- {action: Encoded, date: 27 JUN 2013, who: Mike Whalley} +record_ids: +- {id: 1216515, type: inspire} +- {id: 5292, type: red} + +--- +data_file: Table1.yaml +description: | + Measured charged-integrated differential cross sections for charged pion and kaon production as a function of the fractional hadron energy Z (=2*Eh/sqrt(s)). +keywords: +- name: reactions + values: [E+ E- --> PI+ X, E+ E- --> PI- X, E+ E- --> K+ X, E+ E- --> K- X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [10.52] +location: Data from F 2 +name: Table 1 + diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..4b91607f4c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P52GEV_68FB-1_EE-PISUM/uncertainties.yaml @@ -0,0 +1,248 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys,norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 7000.0 + sys: 3.84500026e+05 + sys,norm: 285292.0 +- stat: 6600.0 + sys: 3.56100028e+05 + sys,norm: 2.56545800e+05 +- stat: 6300.0 + sys: 3.31750008e+05 + sys,norm: 231130.9 +- stat: 5900.0 + sys: 2.96350008e+05 + sys,norm: 2.08305300e+05 +- stat: 5600.0 + sys: 2.76850009e+05 + sys,norm: 188209.7 +- stat: 5400.0 + sys: 2.56950010e+05 + sys,norm: 170711.1 +- stat: 5100.0 + sys: 2.42750010e+05 + sys,norm: 155131.9 +- stat: 4900.0 + sys: 2.22850011e+05 + sys,norm: 141169.7 +- stat: 4600.0 + sys: 2.07050012e+05 + sys,norm: 1.28503900e+05 +- stat: 4400.0 + sys: 190600.0 + sys,norm: 1.17125400e+05 +- stat: 4200.0 + sys: 187600.0 + sys,norm: 1.06954400e+05 +- stat: 4000.0 + sys: 177400.0 + sys,norm: 97850.2 +- stat: 3800.0 + sys: 1.65150015e+05 + sys,norm: 89628.7 +- stat: 3700.0 + sys: 155300.0 + sys,norm: 8.20470000e+04 +- stat: 3500.0 + sys: 1.49250017e+05 + sys,norm: 75201.7 +- stat: 3400.0 + sys: 1.33950019e+05 + sys,norm: 68943.7 +- stat: 3200.0 + sys: 1.24150020e+05 + sys,norm: 63318.5 +- stat: 3100.0 + sys: 117700.0 + sys,norm: 5.81182000e+04 +- stat: 2900.0 + sys: 1.08650023e+05 + sys,norm: 5.33897000e+04 +- stat: 2800.0 + sys: 1.04150024e+05 + sys,norm: 49060.9 +- stat: 2700.0 + sys: 9.55500262e+04 + sys,norm: 45145.1 +- stat: 2600.0 + sys: 89500.0 + sys,norm: 4.16010000e+04 +- stat: 2500.0 + sys: 8.39500298e+04 + sys,norm: 3.83369000e+04 +- stat: 2400.0 + sys: 79400.0 + sys,norm: 35414.4 +- stat: 2300.0 + sys: 76500.0 + sys,norm: 32729.2 +- stat: 2200.0 + sys: 68300.0 + sys,norm: 30209.2 +- stat: 2100.0 + sys: 65500.0 + sys,norm: 27958.0 +- stat: 2000.0 + sys: 57800.0 + sys,norm: 25804.8 +- stat: 2000.0 + sys: 57800.0 + sys,norm: 23906.4 +- stat: 1900.0 + sys: 53100.0 + sys,norm: 22143.8 +- stat: 1800.0 + sys: 49200.0 + sys,norm: 2.05072000e+04 +- stat: 1700.0 + sys: 47800.0 + sys,norm: 1.89952000e+04 +- stat: 1700.0 + sys: 44100.0 + sys,norm: 17591.0 +- stat: 1600.0 + sys: 40800.0 + sys,norm: 16282.0 +- stat: 1600.0 + sys: 39400.0 + sys,norm: 15100.4 +- stat: 1500.0 + sys: 38800.0 + sys,norm: 14014.0 +- stat: 1400.0 + sys: 35400.0 + sys,norm: 12982.2 +- stat: 1400.0 + sys: 32800.0 + sys,norm: 12037.2 +- stat: 1300.0 + sys: 32600.0 + sys,norm: 11162.2 +- stat: 1300.0 + sys: 29500.0 + sys,norm: 1.03670000e+04 +- stat: 1200.0 + sys: 27800.0 + sys,norm: 9620.8 +- stat: 1200.0 + sys: 2.68500931e+04 + sys,norm: 8927.1 +- stat: 1200.0 + sys: 24000.0 + sys,norm: 8310.4 +- stat: 1100.0 + sys: 23700.0 + sys,norm: 7716.8 +- stat: 1100.0 + sys: 2.16501155e+04 + sys,norm: 7164.5 +- stat: 1000.0 + sys: 19600.0 + sys,norm: 6631.8 +- stat: 1000.0 + sys: 2.02501235e+04 + sys,norm: 6181.7 +- stat: 970.0 + sys: 1.94600051e+04 + sys,norm: 5743.36 +- stat: 940.0 + sys: 2.05400049e+04 + sys,norm: 5325.88 +- stat: 910.0 + sys: 1.61850386e+04 + sys,norm: 4.95481000e+03 +- stat: 880.0 + sys: 1.69050370e+04 + sys,norm: 4.59809000e+03 +- stat: 850.0 + sys: 1.68250371e+04 + sys,norm: 4245.43 +- stat: 820.0 + sys: 1.50100600e+04 + sys,norm: 3938.06 +- stat: 790.0 + sys: 1.52850409e+04 + sys,norm: 3632.37 +- stat: 760.0 + sys: 1.43850434e+04 + sys,norm: 3367.07 +- stat: 740.0 + sys: 1.35650461e+04 + sys,norm: 3105.55 +- stat: 710.0 + sys: 1.28200702e+04 + sys,norm: 2851.38 +- stat: 680.0 + sys: 1.19400754e+04 + sys,norm: 2630.32 +- stat: 660.0 + sys: 1.09800820e+04 + sys,norm: 2.41094000e+03 +- stat: 630.0 + sys: 1.07600836e+04 + sys,norm: 2208.5 +- stat: 610.0 + sys: 1.08650575e+04 + sys,norm: 2.02559000e+03 +- stat: 590.0 + sys: 1.12150557e+04 + sys,norm: 1842.05 +- stat: 570.0 + sys: 8.83507074e+03 + sys,norm: 1675.03 +- stat: 540.0 + sys: 1.05150214e+04 + sys,norm: 1515.43 +- stat: 520.0 + sys: 8.07502786e+03 + sys,norm: 1354.29 +- stat: 490.0 + sys: 8.28001208e+03 + sys,norm: 1.20540000e+03 +- stat: 470.0 + sys: 7.90500316e+03 + sys,norm: 1066.03 +- stat: 450.0 + sys: 7260.0 + sys,norm: 943.32 +- stat: 420.0 + sys: 6960.0 + sys,norm: 813.54 +- stat: 390.0 + sys: 7.70500324e+03 + sys,norm: 688.03 +- stat: 370.0 + sys: 6.37500392e+03 + sys,norm: 587.93 +- stat: 350.0 + sys: 5.00002000e+03 + sys,norm: 489.44 +- stat: 330.0 + sys: 6.15001626e+03 + sys,norm: 412.3 +- stat: 320.0 + sys: 4.81002079e+03 + sys,norm: 345.66 +- stat: 290.0 + sys: 5.41001848e+03 + sys,norm: 267.96 +- stat: 280.0 + sys: 3.75002667e+03 + sys,norm: 192.5 +- stat: 290.0 + sys: 4.92002033e+03 + sys,norm: 138.6 +- stat: 540.0 + sys: 6.45509682e+03 + sys,norm: 163.45 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data.yaml new file mode 100644 index 0000000000..b4fd99eaba --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data.yaml @@ -0,0 +1,37 @@ +data_central: +- 1.00316692e+08 +- 6.71650515e+07 +- 4.91861800e+07 +- 3.55745685e+07 +- 2.70046955e+07 +- 2.08302450e+07 +- 1.64560450e+07 +- 1.31021217e+07 +- 1.05542828e+07 +- 8.59504256e+06 +- 7.03124360e+06 +- 5.73539621e+06 +- 4.63558750e+06 +- 3.78256250e+06 +- 3.08959250e+06 +- 2.53858750e+06 +- 2.09391250e+06 +- 1.72647100e+06 +- 1.42881500e+06 +- 1.17983900e+06 +- 978940.0 +- 814667.5 +- 675405.5 +- 560559.0 +- 4.65807250e+05 +- 3.84922350e+05 +- 315009.1 +- 2.54276250e+05 +- 203148.7 +- 1.57545650e+05 +- 1.19043050e+05 +- 85873.5 +- 57916.4 +- 35905.65 +- 19306.0 +- 14630.95 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data_strong.yaml new file mode 100644 index 0000000000..5d5d45e829 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/data_strong.yaml @@ -0,0 +1,37 @@ +data_central: +- 7.08026990e+07 +- 4.73946040e+07 +- 3.44680850e+07 +- 2.48305750e+07 +- 1.88396185e+07 +- 1.45648830e+07 +- 1.15563785e+07 +- 9.27754150e+06 +- 7.54339350e+06 +- 6.20779300e+06 +- 5.13830150e+06 +- 4.24399350e+06 +- 3.47301550e+06 +- 2.87126000e+06 +- 2.37731500e+06 +- 1.98476700e+06 +- 1.66433900e+06 +- 1.39915600e+06 +- 1.18058350e+06 +- 994222.0 +- 839949.5 +- 7.13352850e+05 +- 6.03185850e+05 +- 5.10823750e+05 +- 4.31887150e+05 +- 362808.0 +- 301240.9 +- 2.46661150e+05 +- 1.98746450e+05 +- 1.55805850e+05 +- 1.18258450e+05 +- 85562.0 +- 57870.6 +- 35891.5 +- 19305.9 +- 14630.8 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter.py new file mode 100644 index 0000000000..3948f39c90 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter.py @@ -0,0 +1,23 @@ +from filter_core import magic +import yaml + +table1 = "rawdata/finalxsecs_z_pipm.dat" +table2 = "rawdata/finalxsecs_z_pipm_strong.dat" +var = 'z' + +data, kin, err = magic(table1, var) +data2, kin2, err2 = magic(table2, var) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) + +with open('data_strong.yaml', 'w') as f: + yaml.dump(data2, f, sort_keys=False) +with open('kinematics_strong.yaml', 'w') as f: + yaml.dump(kin2, f, sort_keys=False) +with open('uncertainties_strong.yaml', 'w') as f: + yaml.dump(err2, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..d12f01dbfc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter_core.py @@ -0,0 +1,69 @@ +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float +from nnpdf_data.filter_utils.utils import symmetrize_errors as se + +yaml.add_representer(float, prettify_float) + + +def magic(table, var_name): + + data_dict = {} + + with open(table, 'r') as f: + for _ in range(2): + next(f) + for i, line in enumerate(f): + data_dict['bin' + str(i)] = [] + for elements in line.split(): + data_dict['bin' + str(i)].append(float(elements)) + + data_central = [] + kin = [] + error = [] + + ndat = len(data_dict) + + for i in range(ndat): + kin_min = data_dict['bin' + str(i)][0] + kin_max = data_dict['bin' + str(i)][1] + + kin_value = {var_name: {'min': kin_min, 'mid': None, 'max': kin_max}} + + data_central_value = data_dict['bin' + str(i)][2] + error_value = {} + error_value['stat'] = data_dict['bin' + str(i)][3] + data_shift1, error_value['sys_1'] = se( + data_dict['bin' + str(i)][4], data_dict['bin' + str(i)][5] + ) + data_shift2, error_value['sys_2'] = se( + data_dict['bin' + str(i)][6], data_dict['bin' + str(i)][7] + ) + data_central_value = data_central_value + data_shift1 + data_shift2 + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_1'] = { + 'definition': 'systematic uncertainty (correlated)', + 'treatment': 'MULT', + 'type': 'CORR', + } + error_definition['sys_2'] = { + 'definition': 'systematic uncertainty (uncorrelated)', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..575494cad2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics.yaml @@ -0,0 +1,145 @@ +bins: +- z: + min: 0.1 + mid: null + max: 0.125 +- z: + min: 0.125 + mid: null + max: 0.15 +- z: + min: 0.15 + mid: null + max: 0.175 +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.925 +- z: + min: 0.925 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.975 +- z: + min: 0.975 + mid: null + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics_strong.yaml new file mode 100644 index 0000000000..575494cad2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/kinematics_strong.yaml @@ -0,0 +1,145 @@ +bins: +- z: + min: 0.1 + mid: null + max: 0.125 +- z: + min: 0.125 + mid: null + max: 0.15 +- z: + min: 0.15 + mid: null + max: 0.175 +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 +- z: + min: 0.9 + mid: null + max: 0.925 +- z: + min: 0.925 + mid: null + max: 0.95 +- z: + min: 0.95 + mid: null + max: 0.975 +- z: + min: 0.975 + mid: null + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..a5e6e0de05 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/metadata.yaml @@ -0,0 +1,62 @@ +setname: 'BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BELLE" + +arXiv: + url: "https://arxiv.org/abs/2001.10194" +iNSPIRE: + url: "https://inspirehep.net/literature/1777678" +hepdata: + url: "N/A" + version: 0 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "differential x-sec wrt z", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z + process_type: SIA_Z + ndata: 36 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) PI- + PI+ production: $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "differential x-sec wrt z (weak decay subtracted)", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z-STRONG + process_type: SIA_Z + ndata: 36 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics_strong.yaml + data_central: data_strong.yaml + data_uncertainties: + - uncertainties_strong.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) PI- + PI+ production (strong): $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm.dat new file mode 100644 index 0000000000..3f37170622 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm.dat @@ -0,0 +1,38 @@ +#Final cross sections d2sigma / dz in microb/GeV for the K+- data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.100 0.125 1.617e+07 3.808e+03 +4.154e+05 -7.193e+05 +4.914e+04 -7.428e+03 + 0.125 0.150 1.442e+07 1.389e+03 +6.981e+04 -6.510e+05 +7.041e+05 -3.718e+03 + 0.150 0.175 1.226e+07 8.595e+02 +1.714e+04 -5.915e+05 +9.988e+05 -2.944e+03 + 0.175 0.200 1.079e+07 1.129e+03 +2.025e+03 -5.164e+05 +1.072e+06 -2.767e+03 + 0.200 0.225 9.162e+06 9.134e+02 +6.299e+03 -4.405e+05 +3.236e+05 -2.559e+03 + 0.225 0.250 7.729e+06 1.039e+03 +6.069e+03 -3.688e+05 +1.530e+04 -2.371e+03 + 0.250 0.275 6.432e+06 7.256e+02 +2.505e+03 -3.074e+05 +2.923e+03 -2.528e+03 + 0.275 0.300 5.226e+06 1.078e+03 +4.064e+02 -2.568e+05 +1.928e+03 -6.551e+04 + 0.300 0.325 4.356e+06 5.972e+02 +6.719e+01 -2.131e+05 +1.792e+03 -3.102e+04 + 0.325 0.350 3.694e+06 6.822e+02 +1.893e+01 -1.785e+05 +1.643e+03 -3.022e+04 + 0.350 0.375 3.138e+06 6.958e+02 +2.271e+01 -1.507e+05 +1.532e+03 -2.799e+04 + 0.375 0.400 2.652e+06 6.500e+02 +3.403e+02 -1.266e+05 +1.420e+03 -2.478e+04 + 0.400 0.425 2.257e+06 6.589e+02 +4.199e+03 -1.061e+05 +1.334e+03 -1.274e+04 + 0.425 0.450 1.908e+06 5.837e+02 +4.390e+03 -8.994e+04 +1.254e+03 -4.608e+03 + 0.450 0.475 1.609e+06 5.017e+02 +6.955e+03 -7.516e+04 +1.175e+03 -2.060e+03 + 0.475 0.500 1.346e+06 4.561e+02 +7.974e+03 -6.405e+04 +1.072e+03 -1.158e+03 + 0.500 0.525 1.135e+06 4.770e+02 +7.361e+03 -5.362e+04 +1.015e+03 -1.094e+03 + 0.525 0.550 9.651e+05 4.188e+02 +8.425e+03 -4.449e+04 +9.544e+02 -1.235e+03 + 0.550 0.575 8.120e+05 4.111e+02 +7.622e+03 -3.759e+04 +8.980e+02 -1.837e+03 + 0.575 0.600 6.774e+05 2.894e+02 +8.029e+03 -3.096e+04 +8.405e+02 -1.592e+03 + 0.600 0.625 5.679e+05 2.948e+02 +7.367e+03 -2.612e+04 +7.806e+02 -1.234e+03 + 0.625 0.650 4.684e+05 3.146e+02 +9.221e+03 -2.207e+04 +7.320e+02 -7.742e+02 + 0.650 0.675 3.861e+05 3.240e+02 +1.028e+04 -1.906e+04 +7.554e+02 -6.764e+02 + 0.675 0.700 3.138e+05 2.387e+02 +9.662e+03 -1.614e+04 +6.782e+02 -6.307e+02 + 0.700 0.725 2.522e+05 2.068e+02 +1.057e+04 -1.468e+04 +6.227e+02 -5.803e+02 + 0.725 0.750 2.023e+05 1.996e+02 +1.165e+04 -1.395e+04 +5.688e+02 -5.273e+02 + 0.750 0.775 1.609e+05 1.889e+02 +1.162e+04 -1.319e+04 +5.165e+02 -4.848e+02 + 0.775 0.800 1.270e+05 1.843e+02 +1.134e+04 -1.239e+04 +4.750e+02 -4.446e+02 + 0.800 0.825 9.809e+04 1.806e+02 +1.092e+04 -1.144e+04 +4.194e+02 -3.889e+02 + 0.825 0.850 7.446e+04 1.579e+02 +8.820e+03 -9.113e+03 +3.687e+02 -3.554e+02 + 0.850 0.875 5.518e+04 1.221e+02 +5.874e+03 -6.132e+03 +3.055e+02 -3.019e+02 + 0.875 0.900 3.948e+04 1.224e+02 +4.800e+03 -4.971e+03 +2.672e+02 -2.654e+02 + 0.900 0.925 2.647e+04 6.841e+01 +2.185e+03 -2.347e+03 +2.238e+02 -2.210e+02 + 0.925 0.950 1.560e+04 5.674e+01 +1.239e+03 -1.356e+03 +1.860e+02 -1.758e+02 + 0.950 0.975 7.372e+03 4.707e+01 +4.538e+02 -6.551e+02 +2.084e+02 -1.633e+02 + 0.975 1.000 2.467e+03 3.225e+01 +6.639e+02 -2.535e+02 +1.806e+02 -1.389e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm_strong.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm_strong.dat new file mode 100644 index 0000000000..798c2ccfc4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_Kpm_strong.dat @@ -0,0 +1,38 @@ +#Final weak decays subtracted cross sections d2sigma / dz in microb/GeV for the K+- data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.100 0.125 1.147e+07 2.859e+03 +9.795e+05 -1.187e+06 +3.688e+04 -5.527e+03 + 0.125 0.150 9.302e+06 9.421e+02 +5.134e+05 -7.850e+05 +4.775e+05 -2.700e+03 + 0.150 0.175 7.266e+06 5.307e+02 +3.098e+05 -5.532e+05 +6.167e+05 -2.035e+03 + 0.175 0.200 5.977e+06 6.486e+02 +2.173e+05 -4.083e+05 +6.160e+05 -1.814e+03 + 0.200 0.225 4.838e+06 4.993e+02 +1.683e+05 -3.052e+05 +1.769e+05 -1.613e+03 + 0.225 0.250 3.955e+06 5.505e+02 +1.334e+05 -2.326e+05 +8.180e+03 -1.458e+03 + 0.250 0.275 3.231e+06 3.768e+02 +1.048e+05 -1.801e+05 +1.671e+03 -1.479e+03 + 0.275 0.300 2.599e+06 5.530e+02 +7.773e+04 -1.415e+05 +1.163e+03 -3.363e+04 + 0.300 0.325 2.160e+06 3.047e+02 +5.894e+04 -1.135e+05 +1.076e+03 -1.584e+04 + 0.325 0.350 1.835e+06 3.475e+02 +5.336e+04 -9.310e+04 +9.938e+02 -1.540e+04 + 0.350 0.375 1.569e+06 3.551e+02 +5.500e+04 -7.686e+04 +9.333e+02 -1.430e+04 + 0.375 0.400 1.341e+06 3.334e+02 +5.344e+04 -6.361e+04 +8.743e+02 -1.272e+04 + 0.400 0.425 1.158e+06 3.404e+02 +5.254e+04 -5.380e+04 +8.313e+02 -6.599e+03 + 0.425 0.450 9.975e+05 3.045e+02 +4.889e+04 -4.782e+04 +7.919e+02 -2.446e+03 + 0.450 0.475 8.608e+05 2.651e+02 +4.581e+04 -4.264e+04 +7.549e+02 -1.171e+03 + 0.475 0.500 7.397e+05 2.449e+02 +4.057e+04 -3.847e+04 +7.080e+02 -7.459e+02 + 0.500 0.525 6.429e+05 2.615e+02 +3.724e+04 -3.634e+04 +6.849e+02 -7.203e+02 + 0.525 0.550 5.667e+05 2.358e+02 +3.416e+04 -3.432e+04 +6.646e+02 -7.991e+02 + 0.550 0.575 4.957e+05 2.390e+02 +2.982e+04 -3.209e+04 +6.457e+02 -1.147e+03 + 0.575 0.600 4.319e+05 1.746e+02 +2.631e+04 -2.914e+04 +6.264e+02 -1.042e+03 + 0.600 0.625 3.787e+05 1.855e+02 +2.270e+04 -2.635e+04 +6.069e+02 -8.639e+02 + 0.625 0.650 3.279e+05 2.071e+02 +1.901e+04 -2.466e+04 +5.912e+02 -6.143e+02 + 0.650 0.675 2.837e+05 2.236e+02 +1.613e+04 -2.333e+04 +6.164e+02 -5.711e+02 + 0.675 0.700 2.419e+05 1.729e+02 +1.313e+04 -2.097e+04 +5.815e+02 -5.526e+02 + 0.700 0.725 2.034e+05 1.572e+02 +1.132e+04 -1.871e+04 +5.552e+02 -5.277e+02 + 0.725 0.750 1.703e+05 1.590e+02 +1.106e+04 -1.697e+04 +5.270e+02 -4.986e+02 + 0.750 0.775 1.409e+05 1.575e+02 +1.014e+04 -1.504e+04 +4.960e+02 -4.732e+02 + 0.775 0.800 1.152e+05 1.606e+02 +9.955e+03 -1.384e+04 +4.701e+02 -4.467e+02 + 0.800 0.825 9.186e+04 1.642e+02 +9.790e+03 -1.245e+04 +4.285e+02 -4.037e+02 + 0.825 0.850 7.147e+04 1.485e+02 +8.149e+03 -9.997e+03 +3.856e+02 -3.744e+02 + 0.850 0.875 5.397e+04 1.178e+02 +5.584e+03 -6.838e+03 +3.277e+02 -3.245e+02 + 0.875 0.900 3.906e+04 1.203e+02 +4.680e+03 -5.218e+03 +2.876e+02 -2.860e+02 + 0.900 0.925 2.634e+04 6.782e+01 +2.153e+03 -2.470e+03 +2.402e+02 -2.376e+02 + 0.925 0.950 1.558e+04 5.657e+01 +1.231e+03 -1.409e+03 +1.968e+02 -1.872e+02 + 0.950 0.975 7.371e+03 4.706e+01 +4.537e+02 -6.685e+02 +2.126e+02 -1.687e+02 + 0.975 1.000 2.467e+03 3.225e+01 +6.639e+02 -2.535e+02 +1.817e+02 -1.403e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm.dat new file mode 100644 index 0000000000..a9f0d847d4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm.dat @@ -0,0 +1,38 @@ +#Final cross sections d2sigma / dz in microb/GeV for the pi+- data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.100 0.125 1.007e+08 4.209e+03 +4.096e+06 -4.872e+06 +1.921e+04 -9.826e+03 + 0.125 0.150 6.723e+07 2.728e+03 +1.674e+05 -1.940e+06 +1.650e+06 -7.297e+03 + 0.150 0.175 4.930e+07 1.883e+03 +1.452e+05 -1.433e+06 +1.075e+06 -1.484e+04 + 0.175 0.200 3.669e+07 2.286e+03 +1.116e+05 -1.079e+06 +9.537e+03 -1.273e+06 + 0.200 0.225 2.784e+07 1.718e+03 +3.328e+04 -8.223e+05 +4.611e+03 -8.862e+05 + 0.225 0.250 2.140e+07 1.822e+03 +1.317e+04 -6.338e+05 +4.020e+03 -5.229e+05 + 0.250 0.275 1.675e+07 1.219e+03 +3.582e+03 -4.923e+05 +3.608e+03 -1.028e+05 + 0.275 0.300 1.329e+07 1.774e+03 +8.134e+01 -3.855e+05 +1.327e+04 -3.608e+03 + 0.300 0.325 1.069e+07 9.537e+02 +1.050e+01 -3.030e+05 +3.449e+04 -2.935e+03 + 0.325 0.350 8.702e+06 1.059e+03 +5.712e+01 -2.419e+05 +3.059e+04 -2.662e+03 + 0.350 0.375 7.128e+06 1.042e+03 +1.242e+02 -1.938e+05 +2.686e+03 -2.523e+03 + 0.375 0.400 5.825e+06 9.394e+02 +4.241e+01 -1.572e+05 +2.250e+03 -2.430e+04 + 0.400 0.425 4.705e+06 9.050e+02 +3.467e+03 -1.262e+05 +2.048e+03 -1.814e+04 + 0.425 0.450 3.834e+06 7.885e+02 +6.904e+03 -1.032e+05 +1.839e+03 -8.418e+03 + 0.450 0.475 3.129e+06 6.830e+02 +1.006e+04 -8.565e+04 +1.669e+03 -4.894e+03 + 0.475 0.500 2.569e+06 6.247e+02 +9.261e+03 -6.954e+04 +1.544e+03 -2.090e+03 + 0.500 0.525 2.117e+06 6.444e+02 +1.087e+04 -5.739e+04 +1.745e+03 -1.400e+03 + 0.525 0.550 1.745e+06 5.568e+02 +8.821e+03 -4.665e+04 +2.059e+03 -1.288e+03 + 0.550 0.575 1.442e+06 5.415e+02 +9.288e+03 -3.734e+04 +2.883e+03 -1.201e+03 + 0.575 0.600 1.191e+06 3.793e+02 +7.194e+03 -3.048e+04 +2.083e+03 -1.119e+03 + 0.600 0.625 9.868e+05 3.844e+02 +8.289e+03 -2.441e+04 +1.432e+03 -1.031e+03 + 0.625 0.650 8.202e+05 4.131e+02 +7.726e+03 -1.872e+04 +1.116e+03 -1.187e+03 + 0.650 0.675 6.795e+05 4.260e+02 +7.012e+03 -1.512e+04 +1.178e+03 -1.259e+03 + 0.675 0.700 5.639e+05 3.168e+02 +5.664e+03 -1.237e+04 +1.142e+03 -1.118e+03 + 0.700 0.725 4.679e+05 2.792e+02 +5.386e+03 -9.423e+03 +8.785e+02 -1.027e+03 + 0.725 0.750 3.863e+05 2.738e+02 +5.252e+03 -7.850e+03 +7.426e+02 -8.999e+02 + 0.750 0.775 3.156e+05 2.619e+02 +4.321e+03 -5.446e+03 +6.840e+02 -7.408e+02 + 0.775 0.800 2.548e+05 2.589e+02 +3.190e+03 -4.239e+03 +6.294e+02 -6.279e+02 + 0.800 0.825 2.030e+05 2.586e+02 +3.363e+03 -3.079e+03 +5.985e+02 -5.851e+02 + 0.825 0.850 1.573e+05 2.274e+02 +3.082e+03 -2.598e+03 +5.494e+02 -5.421e+02 + 0.850 0.875 1.187e+05 1.761e+02 +2.587e+03 -1.903e+03 +4.821e+02 -4.800e+02 + 0.875 0.900 8.551e+04 1.761e+02 +1.987e+03 -1.261e+03 +4.272e+02 -4.262e+02 + 0.900 0.925 5.778e+04 1.004e+02 +1.202e+03 -9.312e+02 +3.595e+02 -3.575e+02 + 0.925 0.950 3.587e+04 8.210e+01 +1.183e+03 -1.116e+03 +2.859e+02 -2.816e+02 + 0.950 0.975 1.920e+04 5.600e+01 +1.040e+03 -8.306e+02 +2.407e+02 -2.381e+02 + 0.975 1.000 1.455e+04 4.294e+01 +1.726e+03 -1.580e+03 +4.027e+02 -3.868e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm_strong.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm_strong.dat new file mode 100644 index 0000000000..9c3cffd9f1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_pipm_strong.dat @@ -0,0 +1,38 @@ +#Final weak decays subtracted cross sections d2sigma / dz in microb/GeV for the pi+- data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.100 0.125 7.114e+07 3.056e+03 +3.501e+06 -4.182e+06 +1.442e+04 -8.022e+03 + 0.125 0.150 4.732e+07 1.962e+03 +9.192e+05 -1.950e+06 +1.186e+06 -5.992e+03 + 0.150 0.175 3.446e+07 1.338e+03 +6.603e+05 -1.397e+06 +7.637e+05 -1.083e+04 + 0.175 0.200 2.549e+07 1.610e+03 +5.956e+05 -1.025e+06 +7.050e+03 -8.965e+05 + 0.200 0.225 1.929e+07 1.204e+03 +4.910e+05 -7.745e+05 +3.737e+03 -6.210e+05 + 0.225 0.250 1.484e+07 1.276e+03 +3.990e+05 -5.864e+05 +3.266e+03 -3.661e+05 + 0.250 0.275 1.166e+07 8.558e+02 +3.114e+05 -4.494e+05 +2.937e+03 -7.218e+04 + 0.275 0.300 9.322e+06 1.251e+03 +2.432e+05 -3.388e+05 +9.563e+03 -2.880e+03 + 0.300 0.325 7.565e+06 6.769e+02 +1.906e+05 -2.559e+05 +2.451e+04 -2.423e+03 + 0.325 0.350 6.225e+06 7.571e+02 +1.434e+05 -1.975e+05 +2.191e+04 -2.224e+03 + 0.350 0.375 5.160e+06 7.515e+02 +1.096e+05 -1.531e+05 +2.215e+03 -2.112e+03 + 0.375 0.400 4.271e+06 6.838e+02 +8.398e+04 -1.222e+05 +1.917e+03 -1.771e+04 + 0.400 0.425 3.497e+06 6.651e+02 +6.633e+04 -1.027e+05 +1.761e+03 -1.336e+04 + 0.425 0.450 2.892e+06 5.857e+02 +5.225e+04 -8.902e+04 +1.606e+03 -6.316e+03 + 0.450 0.475 2.397e+06 5.136e+02 +4.092e+04 -7.800e+04 +1.479e+03 -3.769e+03 + 0.475 0.500 2.003e+06 4.765e+02 +3.194e+04 -6.803e+04 +1.385e+03 -1.761e+03 + 0.500 0.525 1.681e+06 4.997e+02 +2.325e+04 -5.681e+04 +1.519e+03 -1.281e+03 + 0.525 0.550 1.414e+06 4.401e+02 +1.625e+04 -4.649e+04 +1.751e+03 -1.199e+03 + 0.550 0.575 1.194e+06 4.371e+02 +1.093e+04 -3.903e+04 +2.403e+03 -1.136e+03 + 0.575 0.600 1.008e+06 3.132e+02 +5.212e+03 -3.350e+04 +1.809e+03 -1.077e+03 + 0.600 0.625 8.539e+05 3.250e+02 +1.108e+03 -2.932e+04 +1.324e+03 -1.013e+03 + 0.625 0.650 7.255e+05 3.578e+02 +6.717e+02 -2.491e+04 +1.083e+03 -1.139e+03 + 0.650 0.675 6.137e+05 3.776e+02 +4.697e+02 -2.143e+04 +1.142e+03 -1.210e+03 + 0.675 0.700 5.192e+05 2.870e+02 +8.155e+02 -1.759e+04 +1.123e+03 -1.101e+03 + 0.700 0.725 4.383e+05 2.581e+02 +7.823e+02 -1.348e+04 +9.020e+02 -1.030e+03 + 0.725 0.750 3.676e+05 2.579e+02 +1.782e+03 -1.123e+04 +7.876e+02 -9.236e+02 + 0.750 0.775 3.044e+05 2.508e+02 +2.543e+03 -8.812e+03 +7.344e+02 -7.836e+02 + 0.775 0.800 2.486e+05 2.514e+02 +2.523e+03 -6.402e+03 +6.816e+02 -6.803e+02 + 0.800 0.825 1.998e+05 2.540e+02 +3.041e+03 -5.160e+03 +6.475e+02 -6.356e+02 + 0.825 0.850 1.559e+05 2.251e+02 +3.081e+03 -3.276e+03 +5.943e+02 -5.876e+02 + 0.850 0.875 1.181e+05 1.752e+02 +2.624e+03 -2.309e+03 +5.230e+02 -5.211e+02 + 0.875 0.900 8.535e+04 1.757e+02 +1.977e+03 -1.554e+03 +4.614e+02 -4.604e+02 + 0.900 0.925 5.775e+04 1.003e+02 +1.190e+03 -9.507e+02 +3.863e+02 -3.844e+02 + 0.925 0.950 3.587e+04 8.208e+01 +1.184e+03 -1.145e+03 +3.055e+02 -3.015e+02 + 0.950 0.975 1.920e+04 5.600e+01 +1.040e+03 -8.306e+02 +2.534e+02 -2.510e+02 + 0.975 1.000 1.455e+04 4.294e+01 +1.726e+03 -1.580e+03 +4.113e+02 -3.957e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar.dat new file mode 100644 index 0000000000..dc6293e427 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar.dat @@ -0,0 +1,31 @@ +#Final cross sections d2sigma / dz in microb/GeV for the p/pbar data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.175 0.200 4.706e+06 1.665e+03 +7.895e+05 -7.549e+05 +8.827e+03 -1.514e+04 + 0.200 0.225 5.375e+06 8.909e+02 +7.427e+05 -7.492e+05 +1.468e+05 -2.007e+03 + 0.225 0.250 4.098e+06 8.438e+02 +5.218e+05 -5.290e+05 +2.211e+05 -1.608e+03 + 0.250 0.275 2.991e+06 5.344e+02 +2.218e+05 -2.425e+05 +1.527e+05 -1.323e+03 + 0.275 0.300 2.304e+06 7.643e+02 +6.550e+04 -8.982e+04 +7.880e+04 -1.158e+03 + 0.300 0.325 1.894e+06 4.275e+02 +2.527e+04 -5.256e+04 +8.218e+03 -1.167e+03 + 0.325 0.350 1.629e+06 4.814e+02 +9.959e+03 -3.730e+04 +1.255e+03 -6.963e+03 + 0.350 0.375 1.377e+06 4.853e+02 +8.222e+03 -3.089e+04 +9.580e+02 -9.766e+03 + 0.375 0.400 1.158e+06 4.425e+02 +9.945e+03 -2.720e+04 +8.617e+02 -1.386e+04 + 0.400 0.425 9.556e+05 4.331e+02 +4.482e+03 -2.009e+04 +7.904e+02 -1.565e+04 + 0.425 0.450 7.756e+05 3.658e+02 +1.012e+04 -2.163e+04 +7.167e+02 -1.019e+04 + 0.450 0.475 6.308e+05 2.981e+02 +1.943e+04 -2.696e+04 +6.373e+02 -5.425e+03 + 0.475 0.500 5.109e+05 2.563e+02 +1.229e+04 -1.879e+04 +5.690e+02 -3.433e+03 + 0.500 0.525 4.113e+05 2.607e+02 +7.495e+03 -1.241e+04 +5.132e+02 -1.634e+03 + 0.525 0.550 3.179e+05 2.271e+02 +3.307e+03 -7.879e+03 +4.431e+02 -7.745e+02 + 0.550 0.575 2.407e+05 2.087e+02 +1.968e+03 -6.411e+03 +4.085e+02 -5.602e+02 + 0.575 0.600 1.879e+05 1.410e+02 +5.098e+03 -6.972e+03 +3.847e+02 -3.717e+02 + 0.600 0.625 1.495e+05 1.402e+02 +9.316e+03 -9.160e+03 +4.106e+02 -2.988e+02 + 0.625 0.650 1.193e+05 1.410e+02 +1.323e+04 -1.242e+04 +4.443e+02 -2.656e+02 + 0.650 0.675 9.470e+04 1.337e+02 +1.552e+04 -1.510e+04 +3.948e+02 -2.400e+02 + 0.675 0.700 7.347e+04 9.741e+01 +1.297e+04 -1.295e+04 +3.380e+02 -2.147e+02 + 0.700 0.725 5.558e+04 8.052e+01 +1.184e+04 -1.183e+04 +3.889e+02 -1.910e+02 + 0.725 0.750 4.000e+04 7.182e+01 +1.138e+04 -1.141e+04 +4.072e+02 -1.662e+02 + 0.750 0.775 2.842e+04 6.489e+01 +1.184e+04 -1.187e+04 +3.229e+02 -1.416e+02 + 0.775 0.800 1.916e+04 5.651e+01 +1.436e+04 -1.437e+04 +2.124e+02 -1.233e+02 + 0.800 0.825 1.205e+04 4.894e+01 +1.725e+04 -1.726e+04 +1.337e+02 -1.079e+02 + 0.825 0.850 7.001e+03 3.809e+01 +1.674e+04 -1.676e+04 +7.892e+01 -9.067e+01 + 0.850 0.875 3.111e+03 2.496e+01 +1.275e+04 -1.279e+04 +4.417e+01 -5.132e+01 + 0.875 0.900 6.578e+02 2.111e+01 +8.611e+03 -8.644e+03 +1.704e+01 -2.516e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar_strong.dat b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar_strong.dat new file mode 100644 index 0000000000..986212e16f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/finalxsecs_z_ppbar_strong.dat @@ -0,0 +1,31 @@ +#Final weak decays subtracted cross sections d2sigma / dz in microb/GeV for the p/pbar data. +#zbin range xsec[fb/GeV] stat systematic errors (correlated) systematic errors(uncorrelated) + 0.175 0.200 3.464e+06 1.287e+03 +6.793e+05 -5.998e+05 +6.843e+03 -1.172e+04 + 0.200 0.225 3.981e+06 6.915e+02 +6.247e+05 -5.750e+05 +1.139e+05 -1.694e+03 + 0.225 0.250 2.994e+06 6.445e+02 +4.286e+05 -3.876e+05 +1.689e+05 -1.363e+03 + 0.250 0.275 2.139e+06 3.997e+02 +2.006e+05 -1.731e+05 +1.142e+05 -1.103e+03 + 0.275 0.300 1.616e+06 5.618e+02 +8.732e+04 -6.245e+04 +5.792e+04 -9.471e+02 + 0.300 0.325 1.312e+06 3.111e+02 +6.007e+04 -3.532e+04 +5.998e+03 -9.300e+02 + 0.325 0.350 1.125e+06 3.494e+02 +5.091e+04 -2.491e+04 +9.822e+02 -5.067e+03 + 0.350 0.375 9.535e+05 3.534e+02 +4.277e+04 -2.047e+04 +7.755e+02 -7.123e+03 + 0.375 0.400 8.087e+05 3.250e+02 +3.773e+04 -1.801e+04 +7.077e+02 -1.019e+04 + 0.400 0.425 6.760e+05 3.219e+02 +3.083e+04 -1.474e+04 +6.562e+02 -1.164e+04 + 0.425 0.450 5.571e+05 2.760e+02 +2.776e+04 -1.802e+04 +6.019e+02 -7.690e+03 + 0.450 0.475 4.613e+05 2.285e+02 +2.833e+04 -2.287e+04 +5.451e+02 -4.166e+03 + 0.475 0.500 3.804e+05 1.995e+02 +2.003e+04 -1.852e+04 +4.950e+02 -2.682e+03 + 0.500 0.525 3.120e+05 2.057e+02 +1.418e+04 -1.447e+04 +4.531e+02 -1.306e+03 + 0.525 0.550 2.457e+05 1.819e+02 +8.956e+03 -1.131e+04 +3.974e+02 -6.500e+02 + 0.550 0.575 1.898e+05 1.700e+02 +6.354e+03 -9.705e+03 +3.669e+02 -4.843e+02 + 0.575 0.600 1.513e+05 1.169e+02 +6.334e+03 -8.803e+03 +3.475e+02 -3.377e+02 + 0.600 0.625 1.230e+05 1.185e+02 +8.604e+03 -9.648e+03 +3.698e+02 -2.814e+02 + 0.625 0.650 1.002e+05 1.213e+02 +1.165e+04 -1.167e+04 +4.009e+02 -2.551e+02 + 0.650 0.675 8.126e+04 1.172e+02 +1.376e+04 -1.368e+04 +3.627e+02 -2.344e+02 + 0.675 0.700 6.434e+04 8.691e+01 +1.166e+04 -1.178e+04 +3.162e+02 -2.127e+02 + 0.700 0.725 4.959e+04 7.304e+01 +1.083e+04 -1.085e+04 +3.633e+02 -1.912e+02 + 0.725 0.750 3.634e+04 6.623e+01 +1.054e+04 -1.055e+04 +3.831e+02 -1.675e+02 + 0.750 0.775 2.623e+04 6.071e+01 +1.109e+04 -1.112e+04 +3.082e+02 -1.440e+02 + 0.775 0.800 1.796e+04 5.362e+01 +1.363e+04 -1.363e+04 +2.069e+02 -1.254e+02 + 0.800 0.825 1.145e+04 4.704e+01 +1.658e+04 -1.659e+04 +1.328e+02 -1.091e+02 + 0.825 0.850 6.736e+03 3.700e+01 +1.626e+04 -1.628e+04 +8.031e+01 -9.131e+01 + 0.850 0.875 3.027e+03 2.449e+01 +1.252e+04 -1.256e+04 +4.534e+01 -5.225e+01 + 0.875 0.900 6.464e+02 2.089e+01 +8.517e+03 -8.549e+03 +1.757e+01 -2.555e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..8526a07335 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 4209.0 + sys_1: 4.51744884e+06 + sys_2: 1.59625202e+04 +- stat: 2728.0 + sys_1: 1.63747949e+06 + sys_2: 1.42684789e+06 +- stat: 1883.0 + sys_1: 1.20494532e+06 + sys_2: 9.26772582e+05 +- stat: 2286.0 + sys_1: 9.06815014e+05 + sys_2: 1.09972481e+06 +- stat: 1718.0 + sys_1: 7.03050897e+05 + sys_2: 7.66149882e+05 +- stat: 1822.0 + sys_1: 5.45191107e+05 + sys_2: 4.51696135e+05 +- stat: 1219.0 + sys_1: 4.25320328e+05 + sys_2: 8.80351751e+04 +- stat: 1774.0 + sys_1: 3.33829319e+05 + sys_2: 1.08578931e+04 +- stat: 953.7 + sys_1: 2.62402666e+05 + sys_2: 2.91207258e+04 +- stat: 1059.0 + sys_1: 2.09475061e+05 + sys_2: 2.58149272e+04 +- stat: 1042.0 + sys_1: 1.67799900e+05 + sys_2: 2.60704905e+03 +- stat: 939.4 + sys_1: 1.36126955e+05 + sys_2: 2.04774724e+04 +- stat: 905.0 + sys_1: 1.08328562e+05 + sys_2: 1.52106893e+04 +- stat: 788.5 + sys_1: 8.75624492e+04 + sys_2: 6.92409797e+03 +- stat: 683.0 + sys_1: 7.17427702e+04 + sys_2: 3.99606741e+03 +- stat: 624.7 + sys_1: 5.80446235e+04 + sys_2: 1.85756480e+03 +- stat: 644.4 + sys_1: 4.74016044e+04 + sys_2: 1.59131039e+03 +- stat: 556.8 + sys_1: 3.85327728e+04 + sys_2: 1.76006328e+03 +- stat: 541.5 + sys_1: 3.06104549e+04 + sys_2: 2.36311786e+03 +- stat: 379.3 + sys_1: 2.50190221e+04 + sys_2: 1.74007155e+03 +- stat: 384.4 + sys_1: 1.99311182e+04 + sys_2: 1.26372179e+03 +- stat: 413.1 + sys_1: 1.53388965e+04 + sys_2: 1.15259392e+03 +- stat: 426.0 + sys_1: 1.24629927e+04 + sys_2: 1.21984538e+03 +- stat: 316.8 + sys_1: 1.01878117e+04 + sys_2: 1.13012743e+03 +- stat: 279.2 + sys_1: 7.93569813e+03 + sys_2: 9.58519007e+02 +- stat: 273.8 + sys_1: 6.80370509e+03 + sys_2: 8.28747976e+02 +- stat: 261.9 + sys_1: 4.94786669e+03 + sys_2: 7.13531275e+02 +- stat: 258.9 + sys_1: 3.78783721e+03 + sys_2: 6.28650895e+02 +- stat: 258.6 + sys_1: 3.22725410e+03 + sys_2: 5.91875848e+02 +- stat: 227.4 + sys_1: 2.86054680e+03 + sys_2: 5.45774411e+02 +- stat: 176.1 + sys_1: 2.29650887e+03 + sys_2: 4.81052292e+02 +- stat: 176.1 + sys_1: 1.70320698e+03 + sys_2: 4.26700586e+02 +- stat: 100.4 + sys_1: 1.08365210e+03 + sys_2: 3.58502789e+02 +- stat: 82.1 + sys_1: 1.15047588e+03 + sys_2: 2.83766290e+02 +- stat: 56.0 + sys_1: 9.46947871e+02 + sys_2: 2.39407059e+02 +- stat: 42.94 + sys_1: 1.65622070e+03 + sys_2: 3.94910075e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties_strong.yaml new file mode 100644 index 0000000000..c80876b991 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/uncertainties_strong.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 3056.0 + sys_1: 3.87156335e+06 + sys_2: 1.20986794e+04 +- stat: 1962.0 + sys_1: 1.60914620e+06 + sys_2: 1.02538806e+06 +- stat: 1338.0 + sys_1: 1.15303264e+06 + sys_2: 6.58316640e+05 +- stat: 1610.0 + sys_1: 8.65319750e+05 + sys_2: 7.74378010e+05 +- stat: 1204.0 + sys_1: 6.63745951e+05 + sys_2: 5.36731670e+05 +- stat: 1276.0 + sys_1: 5.10208457e+05 + sys_2: 3.16120335e+05 +- stat: 855.8 + sys_1: 3.92716386e+05 + sys_2: 6.17084876e+04 +- stat: 1251.0 + sys_1: 2.98748523e+05 + sys_2: 7.81270163e+03 +- stat: 676.9 + sys_1: 2.27975015e+05 + sys_2: 2.06219399e+04 +- stat: 757.1 + sys_1: 1.74690033e+05 + sys_2: 1.84223176e+04 +- stat: 751.5 + sys_1: 1.34903475e+05 + sys_2: 2.16472556e+03 +- stat: 683.8 + sys_1: 1.06573600e+05 + sys_2: 1.48665466e+04 +- stat: 665.1 + sys_1: 8.83412343e+04 + sys_2: 1.11547999e+04 +- stat: 585.7 + sys_1: 7.52683179e+04 + sys_2: 5.17509140e+03 +- stat: 513.6 + sys_1: 6.49842658e+04 + sys_2: 3.08341142e+03 +- stat: 476.5 + sys_1: 5.61225826e+04 + sys_2: 1.59531094e+03 +- stat: 499.7 + sys_1: 4.65353382e+04 + sys_2: 1.41007872e+03 +- stat: 440.1 + sys_1: 3.79645321e+04 + sys_2: 1.52577095e+03 +- stat: 437.1 + sys_1: 3.19187312e+04 + sys_2: 1.98337459e+03 +- stat: 313.2 + sys_1: 2.78345147e+04 + sys_2: 1.53302348e+03 +- stat: 325.0 + sys_1: 2.50883293e+04 + sys_2: 1.18901335e+03 +- stat: 357.8 + sys_1: 2.13858233e+04 + sys_2: 1.11170545e+03 +- stat: 377.6 + sys_1: 1.84273249e+04 + sys_2: 1.17698258e+03 +- stat: 287.0 + sys_1: 1.50127457e+04 + sys_2: 1.11210881e+03 +- stat: 258.1 + sys_1: 1.14659973e+04 + sys_2: 9.70230900e+02 +- stat: 257.9 + sys_1: 9.32525539e+03 + sys_2: 8.60987433e+02 +- stat: 250.8 + sys_1: 7.20306787e+03 + sys_2: 7.59796894e+02 +- stat: 251.4 + sys_1: 5.23805563e+03 + sys_2: 6.80950620e+02 +- stat: 254.0 + sys_1: 4.36568216e+03 + sys_2: 6.41605180e+02 +- stat: 225.1 + sys_1: 3.18148939e+03 + sys_2: 5.90968990e+02 +- stat: 175.2 + sys_1: 2.47653685e+03 + sys_2: 5.22051729e+02 +- stat: 175.7 + sys_1: 1.79065763e+03 + sys_2: 4.60900542e+02 +- stat: 100.3 + sys_1: 1.08364264e+03 + sys_2: 3.85352342e+02 +- stat: 82.08 + sys_1: 1.16482649e+03 + sys_2: 3.03513179e+02 +- stat: 56.0 + sys_1: 9.46947871e+02 + sys_2: 2.52205710e+02 +- stat: 42.94 + sys_1: 1.65622070e+03 + sys_2: 4.03650753e+02 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..cdf6e9b0bc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data.yaml @@ -0,0 +1,30 @@ +data_central: +- 4.72014350e+06 +- 5.44414650e+06 +- 4.20414600e+06 +- 3.05633850e+06 +- 2.33066100e+06 +- 1.88388050e+06 +- 1.61247550e+06 +- 1.36126200e+06 +- 1.14287335e+06 +- 940366.2 +- 7.65108350e+05 +- 6.24641150e+05 +- 506218.0 +- 408282.1 +- 315448.3 +- 2.38402650e+05 +- 186969.5 +- 149633.9 +- 1.19794350e+05 +- 94987.4 +- 73541.65 +- 55683.95 +- 40105.5 +- 28495.65 +- 19199.55 +- 12057.9 +- 6985.125 +- 3087.425 +- 637.24 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data_strong.yaml new file mode 100644 index 0000000000..39c58456d9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/data_strong.yaml @@ -0,0 +1,30 @@ +data_central: +- 3.50131150e+06 +- 4.06195300e+06 +- 3.09826850e+06 +- 2.20929850e+06 +- 1.65692145e+06 +- 1.32690900e+06 +- 1.13595760e+06 +- 9.61476250e+05 +- 8.13818850e+05 +- 678553.1 +- 5.58425950e+05 +- 4.62219550e+05 +- 380061.5 +- 3.11428550e+05 +- 244396.7 +- 188065.8 +- 150070.4 +- 122522.2 +- 100262.9 +- 81364.15 +- 64331.75 +- 49666.05 +- 36442.8 +- 26297.1 +- 18000.75 +- 11456.85 +- 6720.5 +- 3003.545 +- 626.41 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter.py new file mode 100644 index 0000000000..2f80cdc225 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter.py @@ -0,0 +1,23 @@ +from filter_core import magic +import yaml + +table1 = "rawdata/finalxsecs_z_ppbar.dat" +table2 = "rawdata/finalxsecs_z_ppbar_strong.dat" +var = 'z' + +data, kin, err = magic(table1, var) +data2, kin2, err2 = magic(table2, var) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) + +with open('data_strong.yaml', 'w') as f: + yaml.dump(data2, f, sort_keys=False) +with open('kinematics_strong.yaml', 'w') as f: + yaml.dump(kin2, f, sort_keys=False) +with open('uncertainties_strong.yaml', 'w') as f: + yaml.dump(err2, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..c054ab2c8d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..5e8aaa16db --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics.yaml @@ -0,0 +1,117 @@ +bins: +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics_strong.yaml new file mode 100644 index 0000000000..5e8aaa16db --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/kinematics_strong.yaml @@ -0,0 +1,117 @@ +bins: +- z: + min: 0.175 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.225 +- z: + min: 0.225 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.275 +- z: + min: 0.275 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.325 +- z: + min: 0.325 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.375 +- z: + min: 0.375 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.425 +- z: + min: 0.425 + mid: null + max: 0.45 +- z: + min: 0.45 + mid: null + max: 0.475 +- z: + min: 0.475 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.525 +- z: + min: 0.525 + mid: null + max: 0.55 +- z: + min: 0.55 + mid: null + max: 0.575 +- z: + min: 0.575 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.625 +- z: + min: 0.625 + mid: null + max: 0.65 +- z: + min: 0.65 + mid: null + max: 0.675 +- z: + min: 0.675 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.725 +- z: + min: 0.725 + mid: null + max: 0.75 +- z: + min: 0.75 + mid: null + max: 0.775 +- z: + min: 0.775 + mid: null + max: 0.8 +- z: + min: 0.8 + mid: null + max: 0.825 +- z: + min: 0.825 + mid: null + max: 0.85 +- z: + min: 0.85 + mid: null + max: 0.875 +- z: + min: 0.875 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..c04c21e355 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/metadata.yaml @@ -0,0 +1,62 @@ +setname: 'BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "BELLE" + +arXiv: + url: "https://arxiv.org/abs/2001.10194" +iNSPIRE: + url: "https://inspirehep.net/literature/1777678" +hepdata: + url: "N/A" + version: 0 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "differential x-sec wrt z", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z + process_type: SIA_Z + ndata: 29 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) P + PBAR production: $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "differential x-sec wrt z (weak decay subtracted)", label: '$\frac{d\sigma}{dz}$', units: '$fb$'} + observable_name: Z-STRONG + process_type: SIA_Z + ndata: 29 + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics_strong.yaml + data_central: data_strong.yaml + data_uncertainties: + - uncertainties_strong.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'BELLE SIA 10.58 GeV (558 $fb^{-1}$) P + PBAR production (strong): $\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/rawdata new file mode 120000 index 0000000000..432b325cd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../BELLE_SIA-PI_10P58GEV_558FB-1_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..29784461da --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,101 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 1665.0 + sys_1: 7.72587484e+05 + sys_2: 1.27879340e+04 +- stat: 890.9 + sys_1: 7.45964160e+05 + sys_2: 1.26563767e+05 +- stat: 843.8 + sys_1: 5.25424666e+05 + sys_2: 1.91018539e+05 +- stat: 534.4 + sys_1: 2.32610979e+05 + sys_2: 1.31864587e+05 +- stat: 764.3 + sys_1: 7.95412270e+04 + sys_2: 6.79150979e+04 +- stat: 427.5 + sys_1: 4.34367273e+04 + sys_2: 6.84674059e+03 +- stat: 481.4 + sys_1: 3.05306143e+04 + sys_2: 5.75973203e+03 +- stat: 485.3 + sys_1: 2.52854948e+04 + sys_2: 8.21836212e+03 +- stat: 442.5 + sys_1: 2.22217297e+04 + sys_2: 1.17753987e+04 +- stat: 433.1 + sys_1: 1.65151636e+04 + sys_2: 1.33407475e+04 +- stat: 365.8 + sys_1: 1.78397218e+04 + sys_2: 8.63775044e+03 +- stat: 298.1 + sys_1: 2.37982872e+04 + sys_2: 4.54410673e+03 +- stat: 256.3 + sys_1: 1.62054497e+04 + sys_2: 2.84697190e+03 +- stat: 260.7 + sys_1: 1.05418627e+04 + sys_2: 1.33443369e+03 +- stat: 227.1 + sys_1: 6.46012701e+03 + sys_2: 6.52342257e+02 +- stat: 208.7 + sys_1: 5.23660527e+03 + sys_2: 4.96086048e+02 +- stat: 141.0 + sys_1: 6.17876711e+03 + sys_2: 3.78311697e+02 +- stat: 140.2 + sys_1: 9.23865856e+03 + sys_2: 3.63402958e+02 +- stat: 141.0 + sys_1: 1.28377831e+04 + sys_2: 3.76770948e+02 +- stat: 133.7 + sys_1: 1.53128802e+04 + sys_2: 3.35744367e+02 +- stat: 97.41 + sys_1: 1.29600077e+04 + sys_2: 2.89777100e+02 +- stat: 80.52 + sys_1: 1.18350021e+04 + sys_2: 3.21952182e+02 +- stat: 71.82 + sys_1: 1.13950197e+04 + sys_2: 3.33522698e+02 +- stat: 64.89 + sys_1: 1.18550190e+04 + sys_2: 2.65282694e+02 +- stat: 56.51 + sys_1: 1.43650017e+04 + sys_2: 1.79284767e+02 +- stat: 48.94 + sys_1: 1.72550014e+04 + sys_2: 1.22169800e+02 +- stat: 38.09 + sys_1: 1.67500060e+04 + sys_2: 8.52010756e+01 +- stat: 24.96 + sys_1: 1.27700313e+04 + sys_2: 4.80119389e+01 +- stat: 21.11 + sys_1: 8.62753156e+03 + sys_2: 2.18672632e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties_strong.yaml b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties_strong.yaml new file mode 100644 index 0000000000..a8c2124503 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BELLE_SIA-PRO_10P58GEV_558FB-1_EE-PROSUM/uncertainties_strong.yaml @@ -0,0 +1,101 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys_1: + definition: systematic uncertainty (correlated) + treatment: MULT + type: CORR + sys_2: + definition: systematic uncertainty (uncorrelated) + treatment: ADD + type: UNCORR +bins: +- stat: 1287.0 + sys_1: 6.42015831e+05 + sys_2: 9.90145478e+03 +- stat: 691.5 + sys_1: 6.00878580e+05 + sys_2: 9.81610230e+04 +- stat: 644.5 + sys_1: 4.09128476e+05 + sys_2: 1.45882471e+05 +- stat: 399.7 + sys_1: 1.87859116e+05 + sys_2: 9.85858061e+04 +- stat: 561.8 + sys_1: 7.69221793e+04 + sys_2: 4.98927804e+04 +- stat: 311.1 + sys_1: 5.08044710e+04 + sys_2: 4.98413563e+03 +- stat: 349.4 + sys_1: 4.21327438e+04 + sys_2: 4.18222437e+03 +- stat: 353.4 + sys_1: 3.53336865e+04 + sys_2: 5.97845747e+03 +- stat: 325.0 + sys_1: 3.11636984e+04 + sys_2: 8.63984797e+03 +- stat: 321.9 + sys_1: 2.54676319e+04 + sys_2: 9.90560775e+03 +- stat: 276.0 + sys_1: 2.39036796e+04 + sys_2: 6.50457395e+03 +- stat: 228.5 + sys_1: 2.58894921e+04 + sys_2: 3.47909100e+03 +- stat: 199.5 + sys_1: 1.93045506e+04 + sys_2: 2.21693860e+03 +- stat: 205.7 + sys_1: 1.43264676e+04 + sys_2: 1.06645553e+03 +- stat: 181.9 + sys_1: 1.02688046e+04 + sys_2: 5.53321850e+02 +- stat: 170.0 + sys_1: 8.37182601e+03 + sys_2: 4.33620502e+02 +- stat: 116.9 + sys_1: 7.76725001e+03 + sys_2: 3.42670075e+02 +- stat: 118.5 + sys_1: 9.15580930e+03 + sys_2: 3.31545834e+02 +- stat: 121.3 + sys_1: 1.16600086e+04 + sys_2: 3.43820913e+02 +- stat: 117.2 + sys_1: 1.37201166e+04 + sys_2: 3.12029722e+02 +- stat: 86.91 + sys_1: 1.17203072e+04 + sys_2: 2.74390101e+02 +- stat: 73.04 + sys_1: 1.08400092e+04 + sys_2: 3.02781716e+02 +- stat: 66.23 + sys_1: 1.05450024e+04 + sys_2: 3.14693136e+02 +- stat: 60.71 + sys_1: 1.11050203e+04 + sys_2: 2.54169294e+02 +- stat: 53.62 + sys_1: 13630.0 + sys_2: 1.75860591e+02 +- stat: 47.04 + sys_1: 1.65850015e+04 + sys_2: 1.22105477e+02 +- stat: 37.0 + sys_1: 1.62700061e+04 + sys_2: 8.61618019e+01 +- stat: 24.49 + sys_1: 1.25400319e+04 + sys_2: 4.90390260e+01 +- stat: 20.89 + sys_1: 8.53303000e+03 + sys_2: 2.22861796e+01 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..7444fb769b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/data.yaml @@ -0,0 +1,13 @@ +data_central: +- 0.394 +- 0.455 +- 0.481 +- 0.478 +- 0.453 +- 0.354 +- 0.266 +- 0.188 +- 0.112 +- 0.079 +- 0.045 +- 0.011 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..668ce24dc0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2 + +dat_2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..eefcc016c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,49 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..177468459a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 12 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py new file mode 100644 index 0000000000..cee4f36412 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py @@ -0,0 +1,219 @@ +gev2 = [ + (0.20, 0.25, 2.0, 0.394, 0.006, 0.033), + (0.25, 0.30, 2.0, 0.455, 0.006, 0.023), + (0.30, 0.35, 2.0, 0.481, 0.006, 0.023), + (0.35, 0.40, 2.0, 0.478, 0.006, 0.023), + (0.40, 0.45, 2.0, 0.453, 0.006, 0.025), + (0.45, 0.50, 2.0, 0.354, 0.005, 0.013), + (0.50, 0.55, 2.0, 0.266, 0.005, 0.009), + (0.55, 0.60, 2.0, 0.188, 0.004, 0.005), + (0.60, 0.65, 2.0, 0.112, 0.004, 0.023), + (0.65, 0.70, 2.0, 0.079, 0.004, 0.015), + (0.70, 0.75, 2.0, 0.045, 0.005, 0.010), + (0.75, 0.80, 2.0, 0.011, 0.005, 0.004), +] + +gev2p2 = [ + (0.20, 0.25, 2.2, 0.298, 0.005, 0.034), + (0.25, 0.30, 2.2, 0.332, 0.005, 0.021), + (0.30, 0.35, 2.2, 0.340, 0.005, 0.013), + (0.35, 0.40, 2.2, 0.329, 0.005, 0.018), + (0.40, 0.45, 2.2, 0.323, 0.004, 0.009), + (0.45, 0.50, 2.2, 0.341, 0.005, 0.006), + (0.50, 0.55, 2.2, 0.320, 0.004, 0.007), + (0.55, 0.60, 2.2, 0.267, 0.004, 0.005), + (0.60, 0.65, 2.2, 0.216, 0.004, 0.011), + (0.65, 0.70, 2.2, 0.137, 0.003, 0.012), + (0.70, 0.75, 2.2, 0.092, 0.003, 0.007), + (0.75, 0.80, 2.2, 0.044, 0.003, 0.003), + (0.80, 0.85, 2.2, 0.037, 0.004, 0.009), + (0.85, 0.90, 2.2, 0.013, 0.004, 0.003), +] + +gev2p396 = [ + (0.20, 0.25, 2.396, 0.298, 0.002, 0.035), + (0.25, 0.30, 2.396, 0.329, 0.002, 0.018), + (0.30, 0.35, 2.396, 0.349, 0.002, 0.011), + (0.35, 0.40, 2.396, 0.341, 0.002, 0.008), + (0.40, 0.45, 2.396, 0.319, 0.002, 0.008), + (0.45, 0.50, 2.396, 0.287, 0.002, 0.009), + (0.50, 0.55, 2.396, 0.260, 0.002, 0.007), + (0.55, 0.60, 2.396, 0.239, 0.002, 0.013), + (0.60, 0.65, 2.396, 0.245, 0.002, 0.004), + (0.65, 0.70, 2.396, 0.246, 0.002, 0.004), + (0.70, 0.75, 2.396, 0.206, 0.002, 0.005), + (0.75, 0.80, 2.396, 0.173, 0.002, 0.004), + (0.80, 0.85, 2.396, 0.091, 0.002, 0.004), + (0.85, 0.90, 2.396, 0.050, 0.002, 0.002), + (0.90, 0.95, 2.396, 0.019, 0.002, 0.002), + (0.95, 1.00, 2.396, 0.016, 0.002, 0.003), + (1.00, 1.05, 2.396, 0.005, 0.002, 0.002), +] + +gev2p6444 = [ + (0.20, 0.25, 2.6444, 0.297, 0.004, 0.040), + (0.25, 0.30, 2.6444, 0.336, 0.004, 0.021), + (0.30, 0.35, 2.6444, 0.364, 0.004, 0.012), + (0.35, 0.40, 2.6444, 0.356, 0.003, 0.012), + (0.40, 0.45, 2.6444, 0.354, 0.003, 0.014), + (0.45, 0.50, 2.6444, 0.332, 0.003, 0.022), + (0.50, 0.55, 2.6444, 0.302, 0.003, 0.024), + (0.55, 0.60, 2.6444, 0.269, 0.003, 0.020), + (0.60, 0.65, 2.6444, 0.225, 0.003, 0.019), + (0.65, 0.70, 2.6444, 0.192, 0.003, 0.016), + (0.70, 0.75, 2.6444, 0.164, 0.003, 0.014), + (0.75, 0.80, 2.6444, 0.154, 0.003, 0.013), + (0.80, 0.85, 2.6444, 0.151, 0.003, 0.012), + (0.85, 0.90, 2.6444, 0.140, 0.003, 0.006), + (0.90, 0.95, 2.6444, 0.124, 0.003, 0.006), + (0.95, 1.00, 2.6444, 0.080, 0.003, 0.007), + (1.00, 1.05, 2.6444, 0.035, 0.003, 0.002), + (1.05, 1.10, 2.6444, 0.011, 0.002, 0.002), +] + +gev2p9 = [ + (0.20, 0.25, 2.9, 0.285, 0.002, 0.041), + (0.25, 0.30, 2.9, 0.319, 0.002, 0.020), + (0.30, 0.35, 2.9, 0.340, 0.002, 0.012), + (0.35, 0.40, 2.9, 0.346, 0.002, 0.016), + (0.40, 0.45, 2.9, 0.338, 0.002, 0.025), + (0.45, 0.50, 2.9, 0.327, 0.002, 0.026), + (0.50, 0.55, 2.9, 0.309, 0.002, 0.028), + (0.55, 0.60, 2.9, 0.284, 0.002, 0.024), + (0.60, 0.65, 2.9, 0.255, 0.002, 0.018), + (0.65, 0.70, 2.9, 0.232, 0.002, 0.016), + (0.70, 0.75, 2.9, 0.202, 0.002, 0.017), + (0.75, 0.80, 2.9, 0.169, 0.002, 0.016), + (0.80, 0.85, 2.9, 0.140, 0.002, 0.012), + (0.85, 0.90, 2.9, 0.114, 0.002, 0.009), + (0.90, 0.95, 2.9, 0.096, 0.002, 0.009), + (0.95, 1.00, 2.9, 0.090, 0.002, 0.007), + (1.00, 1.05, 2.9, 0.100, 0.002, 0.006), + (1.05, 1.10, 2.9, 0.091, 0.002, 0.004), + (1.10, 1.15, 2.9, 0.069, 0.002, 0.004), + (1.15, 1.20, 2.9, 0.031, 0.002, 0.003), + (1.20, 1.25, 2.9, 0.011, 0.001, 0.001), + (1.25, 1.30, 2.9, 0.009, 0.002, 0.003), +] + +gev3p05 = [ + (0.20, 0.25, 3.05, 0.268, 0.006, 0.041), + (0.25, 0.30, 3.05, 0.317, 0.006, 0.032), + (0.30, 0.35, 3.05, 0.359, 0.006, 0.033), + (0.35, 0.40, 3.05, 0.359, 0.006, 0.032), + (0.40, 0.45, 3.05, 0.351, 0.006, 0.037), + (0.45, 0.50, 3.05, 0.325, 0.006, 0.042), + (0.50, 0.55, 3.05, 0.305, 0.005, 0.034), + (0.55, 0.60, 3.05, 0.285, 0.005, 0.036), + (0.60, 0.65, 3.05, 0.257, 0.005, 0.033), + (0.65, 0.70, 3.05, 0.228, 0.005, 0.032), + (0.70, 0.75, 3.05, 0.202, 0.005, 0.024), + (0.75, 0.80, 3.05, 0.181, 0.005, 0.024), + (0.80, 0.85, 3.05, 0.155, 0.005, 0.020), + (0.85, 0.90, 3.05, 0.132, 0.004, 0.021), + (0.90, 0.95, 3.05, 0.119, 0.005, 0.013), + (0.95, 1.00, 3.05, 0.093, 0.004, 0.014), + (1.00, 1.05, 3.05, 0.080, 0.004, 0.011), + (1.05, 1.10, 3.05, 0.066, 0.004, 0.008), + (1.10, 1.15, 3.05, 0.088, 0.005, 0.007), + (1.15, 1.20, 3.05, 0.076, 0.005, 0.010), + (1.20, 1.25, 3.05, 0.047, 0.004, 0.012), +] + +gev3p5 = [ + (0.20, 0.25, 3.5, 0.262, 0.013, 0.068), + (0.25, 0.30, 3.5, 0.311, 0.014, 0.066), + (0.30, 0.35, 3.5, 0.368, 0.014, 0.080), + (0.35, 0.40, 3.5, 0.355, 0.013, 0.075), + (0.40, 0.45, 3.5, 0.358, 0.013, 0.064), + (0.45, 0.50, 3.5, 0.357, 0.013, 0.055), + (0.50, 0.55, 3.5, 0.354, 0.013, 0.049), + (0.55, 0.60, 3.5, 0.312, 0.012, 0.033), + (0.60, 0.65, 3.5, 0.284, 0.012, 0.027), + (0.65, 0.70, 3.5, 0.274, 0.012, 0.023), + (0.70, 0.75, 3.5, 0.241, 0.011, 0.013), + (0.75, 0.80, 3.5, 0.225, 0.011, 0.010), + (0.80, 0.85, 3.5, 0.189, 0.010, 0.005), + (0.85, 0.90, 3.5, 0.172, 0.010, 0.004), + (0.90, 0.95, 3.5, 0.136, 0.010, 0.004), + (0.95, 1.00, 3.5, 0.104, 0.009, 0.006), + (1.00, 1.05, 3.5, 0.123, 0.010, 0.006), + (1.05, 1.10, 3.5, 0.097, 0.010, 0.006), + (1.10, 1.15, 3.5, 0.095, 0.010, 0.006), + (1.15, 1.20, 3.5, 0.078, 0.010, 0.008), + (1.20, 1.25, 3.5, 0.070, 0.009, 0.008), +] + +gev3p671 = [ + (0.20, 0.25, 3.671, 0.256, 0.012, 0.055), + (0.25, 0.30, 3.671, 0.320, 0.013, 0.052), + (0.30, 0.35, 3.671, 0.378, 0.013, 0.059), + (0.35, 0.40, 3.671, 0.378, 0.013, 0.056), + (0.40, 0.45, 3.671, 0.344, 0.012, 0.048), + (0.45, 0.50, 3.671, 0.355, 0.012, 0.043), + (0.50, 0.55, 3.671, 0.338, 0.012, 0.030), + (0.55, 0.60, 3.671, 0.322, 0.012, 0.024), + (0.60, 0.65, 3.671, 0.280, 0.011, 0.013), + (0.65, 0.70, 3.671, 0.267, 0.011, 0.009), + (0.70, 0.75, 3.671, 0.228, 0.010, 0.004), + (0.75, 0.80, 3.671, 0.211, 0.010, 0.003), + (0.80, 0.85, 3.671, 0.178, 0.010, 0.010), + (0.85, 0.90, 3.671, 0.171, 0.010, 0.010), + (0.90, 0.95, 3.671, 0.154, 0.010, 0.014), + (0.95, 1.00, 3.671, 0.133, 0.010, 0.012), + (1.00, 1.05, 3.671, 0.123, 0.010, 0.010), + (1.05, 1.10, 3.671, 0.092, 0.009, 0.012), + (1.10, 1.15, 3.671, 0.084, 0.009, 0.010), + (1.15, 1.20, 3.671, 0.087, 0.009, 0.014), + (1.20, 1.25, 3.671, 0.072, 0.009, 0.010), + (1.25, 1.30, 3.671, 0.069, 0.008, 0.012), + (1.30, 1.35, 3.671, 0.056, 0.008, 0.009), +] + +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +class magic: + def __init__(self, dataset): + self.data_central = [] + self.kin = [] + self.error = [] + for tpl in dataset: + kin_min, kin_max, q, value, stat, sys = tpl + kin_value = {'ph': {'min': kin_min, 'mid': None, 'max': kin_max}} + data_central_value = value + error_value = {'stat': stat, 'sys': sys} + self.data_central.append(data_central_value) + self.kin.append(kin_value) + self.error.append(error_value) + + self.error_definition = { + 'stat': {'definition': 'statistical uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + 'sys': {'definition': 'systematic uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + } + + self.data_central_yaml = {'data_central': self.data_central} + self.kin_yaml = {'bins': self.kin} + self.uncertainties_yaml = {'definitions': self.error_definition, 'bins': self.error} + + def __call__(self): + with open('data.yaml', 'w') as f: + yaml.dump(self.data_central_yaml, f, sort_keys=False) + with open('kinematics.yaml', 'w') as f: + yaml.dump(self.kin_yaml, f, sort_keys=False) + with open('uncertainties.yaml', 'w') as f: + yaml.dump(self.uncertainties_yaml, f, sort_keys=False) + + +dat_2 = magic(gev2) +dat_2p2 = magic(gev2p2) +dat_2p396 = magic(gev2p396) +dat_2p6444 = magic(gev2p6444) +dat_2p9 = magic(gev2p9) +dat_3p05 = magic(gev3p05) +dat_3p5 = magic(gev3p5) +dat_3p671 = magic(gev3p671) diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..68750d49a9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,34 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.033 +- stat: 0.006 + sys: 0.023 +- stat: 0.006 + sys: 0.023 +- stat: 0.006 + sys: 0.023 +- stat: 0.006 + sys: 0.025 +- stat: 0.005 + sys: 0.013 +- stat: 0.005 + sys: 0.009 +- stat: 0.004 + sys: 0.005 +- stat: 0.004 + sys: 0.023 +- stat: 0.004 + sys: 0.015 +- stat: 0.005 + sys: 0.01 +- stat: 0.005 + sys: 0.004 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..fd8000661a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/data.yaml @@ -0,0 +1,13 @@ +data_central: +- 0.376 +- 0.44 +- 0.474 +- 0.467 +- 0.449 +- 0.357 +- 0.264 +- 0.185 +- 0.112 +- 0.076 +- 0.053 +- 0.018 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..668ce24dc0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2 + +dat_2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..eefcc016c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,49 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..52beeed396 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 12 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py new file mode 100644 index 0000000000..01fb2a9b8c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py @@ -0,0 +1,219 @@ +gev2 = [ + (0.20, 0.25, 2.0, 0.376, 0.006, 0.031), + (0.25, 0.30, 2.0, 0.440, 0.006, 0.024), + (0.30, 0.35, 2.0, 0.474, 0.006, 0.024), + (0.35, 0.40, 2.0, 0.467, 0.006, 0.032), + (0.40, 0.45, 2.0, 0.449, 0.006, 0.024), + (0.45, 0.50, 2.0, 0.357, 0.005, 0.018), + (0.50, 0.55, 2.0, 0.264, 0.005, 0.018), + (0.55, 0.60, 2.0, 0.185, 0.004, 0.013), + (0.60, 0.65, 2.0, 0.112, 0.004, 0.013), + (0.65, 0.70, 2.0, 0.076, 0.004, 0.008), + (0.70, 0.75, 2.0, 0.053, 0.005, 0.009), + (0.75, 0.80, 2.0, 0.018, 0.005, 0.004), +] + +gev2p2 = [ + (0.20, 0.25, 2.2, 0.303, 0.005, 0.035), + (0.25, 0.30, 2.2, 0.326, 0.005, 0.017), + (0.30, 0.35, 2.2, 0.340, 0.005, 0.011), + (0.35, 0.40, 2.2, 0.325, 0.004, 0.017), + (0.40, 0.45, 2.2, 0.313, 0.004, 0.013), + (0.45, 0.50, 2.2, 0.342, 0.005, 0.018), + (0.50, 0.55, 2.2, 0.313, 0.004, 0.011), + (0.55, 0.60, 2.2, 0.261, 0.004, 0.008), + (0.60, 0.65, 2.2, 0.219, 0.004, 0.006), + (0.65, 0.70, 2.2, 0.138, 0.004, 0.005), + (0.70, 0.75, 2.2, 0.086, 0.003, 0.005), + (0.75, 0.80, 2.2, 0.049, 0.003, 0.003), + (0.80, 0.85, 2.2, 0.032, 0.004, 0.006), + (0.85, 0.90, 2.2, 0.016, 0.004, 0.004), +] + +gev2p396 = [ + (0.20, 0.25, 2.396, 0.295, 0.002, 0.036), + (0.25, 0.30, 2.396, 0.321, 0.002, 0.018), + (0.30, 0.35, 2.396, 0.344, 0.002, 0.011), + (0.35, 0.40, 2.396, 0.339, 0.002, 0.008), + (0.40, 0.45, 2.396, 0.316, 0.002, 0.007), + (0.45, 0.50, 2.396, 0.281, 0.002, 0.015), + (0.50, 0.55, 2.396, 0.254, 0.002, 0.011), + (0.55, 0.60, 2.396, 0.231, 0.002, 0.014), + (0.60, 0.65, 2.396, 0.244, 0.002, 0.007), + (0.65, 0.70, 2.396, 0.244, 0.002, 0.004), + (0.70, 0.75, 2.396, 0.204, 0.002, 0.010), + (0.75, 0.80, 2.396, 0.168, 0.002, 0.003), + (0.80, 0.85, 2.396, 0.091, 0.002, 0.005), + (0.85, 0.90, 2.396, 0.051, 0.002, 0.002), + (0.90, 0.95, 2.396, 0.023, 0.002, 0.002), + (0.95, 1.00, 2.396, 0.019, 0.002, 0.003), + (1.00, 1.05, 2.396, 0.003, 0.002, 0.001), +] + +gev2p6444 = [ + (0.20, 0.25, 2.6444, 0.287, 0.004, 0.037), + (0.25, 0.30, 2.6444, 0.334, 0.004, 0.022), + (0.30, 0.35, 2.6444, 0.346, 0.004, 0.011), + (0.35, 0.40, 2.6444, 0.356, 0.003, 0.013), + (0.40, 0.45, 2.6444, 0.348, 0.003, 0.016), + (0.45, 0.50, 2.6444, 0.326, 0.003, 0.023), + (0.50, 0.55, 2.6444, 0.303, 0.003, 0.024), + (0.55, 0.60, 2.6444, 0.267, 0.003, 0.024), + (0.60, 0.65, 2.6444, 0.224, 0.003, 0.024), + (0.65, 0.70, 2.6444, 0.191, 0.003, 0.017), + (0.70, 0.75, 2.6444, 0.165, 0.003, 0.014), + (0.75, 0.80, 2.6444, 0.144, 0.003, 0.016), + (0.80, 0.85, 2.6444, 0.150, 0.003, 0.010), + (0.85, 0.90, 2.6444, 0.145, 0.003, 0.007), + (0.90, 0.95, 2.6444, 0.129, 0.003, 0.004), + (0.95, 1.00, 2.6444, 0.082, 0.003, 0.004), + (1.00, 1.05, 2.6444, 0.034, 0.002, 0.003), + (1.05, 1.10, 2.6444, 0.013, 0.002, 0.002), +] + +gev2p9 = [ + (0.20, 0.25, 2.9, 0.270, 0.002, 0.038), + (0.25, 0.30, 2.9, 0.311, 0.002, 0.019), + (0.30, 0.35, 2.9, 0.336, 0.002, 0.012), + (0.35, 0.40, 2.9, 0.346, 0.002, 0.015), + (0.40, 0.45, 2.9, 0.335, 0.002, 0.025), + (0.45, 0.50, 2.9, 0.321, 0.002, 0.033), + (0.50, 0.55, 2.9, 0.304, 0.002, 0.032), + (0.55, 0.60, 2.9, 0.283, 0.002, 0.026), + (0.60, 0.65, 2.9, 0.254, 0.002, 0.024), + (0.65, 0.70, 2.9, 0.228, 0.002, 0.018), + (0.70, 0.75, 2.9, 0.200, 0.002, 0.019), + (0.75, 0.80, 2.9, 0.165, 0.002, 0.014), + (0.80, 0.85, 2.9, 0.137, 0.002, 0.011), + (0.85, 0.90, 2.9, 0.116, 0.002, 0.008), + (0.90, 0.95, 2.9, 0.093, 0.002, 0.008), + (0.95, 1.00, 2.9, 0.087, 0.001, 0.006), + (1.00, 1.05, 2.9, 0.096, 0.002, 0.005), + (1.05, 1.10, 2.9, 0.087, 0.002, 0.004), + (1.10, 1.15, 2.9, 0.068, 0.002, 0.002), + (1.15, 1.20, 2.9, 0.034, 0.002, 0.002), + (1.20, 1.25, 2.9, 0.013, 0.001, 0.002), + (1.25, 1.30, 2.9, 0.011, 0.002, 0.002), +] + +gev3p05 = [ + (0.20, 0.25, 3.05, 0.256, 0.006, 0.035), + (0.25, 0.30, 3.05, 0.318, 0.006, 0.035), + (0.30, 0.35, 3.05, 0.342, 0.006, 0.037), + (0.35, 0.40, 3.05, 0.352, 0.006, 0.033), + (0.40, 0.45, 3.05, 0.349, 0.006, 0.038), + (0.45, 0.50, 3.05, 0.326, 0.006, 0.040), + (0.50, 0.55, 3.05, 0.311, 0.005, 0.034), + (0.55, 0.60, 3.05, 0.288, 0.005, 0.046), + (0.60, 0.65, 3.05, 0.258, 0.005, 0.033), + (0.65, 0.70, 3.05, 0.234, 0.005, 0.031), + (0.70, 0.75, 3.05, 0.197, 0.005, 0.024), + (0.75, 0.80, 3.05, 0.181, 0.005, 0.022), + (0.80, 0.85, 3.05, 0.163, 0.005, 0.024), + (0.85, 0.90, 3.05, 0.127, 0.004, 0.020), + (0.90, 0.95, 3.05, 0.115, 0.004, 0.017), + (0.95, 1.00, 3.05, 0.093, 0.004, 0.014), + (1.00, 1.05, 3.05, 0.080, 0.004, 0.010), + (1.05, 1.10, 3.05, 0.073, 0.004, 0.010), + (1.10, 1.15, 3.05, 0.082, 0.004, 0.009), + (1.15, 1.20, 3.05, 0.070, 0.005, 0.008), + (1.20, 1.25, 3.05, 0.054, 0.004, 0.007), +] + +gev3p5 = [ + (0.20, 0.25, 3.5, 0.259, 0.013, 0.064), + (0.25, 0.30, 3.5, 0.307, 0.013, 0.069), + (0.30, 0.35, 3.5, 0.365, 0.014, 0.079), + (0.35, 0.40, 3.5, 0.378, 0.014, 0.077), + (0.40, 0.45, 3.5, 0.377, 0.013, 0.071), + (0.45, 0.50, 3.5, 0.354, 0.013, 0.056), + (0.50, 0.55, 3.5, 0.347, 0.013, 0.047), + (0.55, 0.60, 3.5, 0.301, 0.012, 0.040), + (0.60, 0.65, 3.5, 0.284, 0.012, 0.027), + (0.65, 0.70, 3.5, 0.276, 0.012, 0.021), + (0.70, 0.75, 3.5, 0.242, 0.011, 0.011), + (0.75, 0.80, 3.5, 0.223, 0.011, 0.005), + (0.80, 0.85, 3.5, 0.181, 0.010, 0.004), + (0.85, 0.90, 3.5, 0.163, 0.010, 0.005), + (0.90, 0.95, 3.5, 0.139, 0.010, 0.008), + (0.95, 1.00, 3.5, 0.118, 0.010, 0.005), + (1.00, 1.05, 3.5, 0.112, 0.010, 0.007), + (1.05, 1.10, 3.5, 0.093, 0.010, 0.008), + (1.10, 1.15, 3.5, 0.089, 0.010, 0.011), + (1.15, 1.20, 3.5, 0.066, 0.009, 0.007), + (1.20, 1.25, 3.5, 0.083, 0.009, 0.009), +] + +gev3p671 = [ + (0.20, 0.25, 3.671, 0.222, 0.011, 0.050), + (0.25, 0.30, 3.671, 0.270, 0.012, 0.048), + (0.30, 0.35, 3.671, 0.336, 0.012, 0.057), + (0.35, 0.40, 3.671, 0.350, 0.012, 0.052), + (0.40, 0.45, 3.671, 0.375, 0.013, 0.053), + (0.45, 0.50, 3.671, 0.361, 0.012, 0.040), + (0.50, 0.55, 3.671, 0.323, 0.012, 0.030), + (0.55, 0.60, 3.671, 0.307, 0.011, 0.023), + (0.60, 0.65, 3.671, 0.297, 0.011, 0.016), + (0.65, 0.70, 3.671, 0.274, 0.011, 0.006), + (0.70, 0.75, 3.671, 0.264, 0.011, 0.005), + (0.75, 0.80, 3.671, 0.202, 0.010, 0.006), + (0.80, 0.85, 3.671, 0.199, 0.010, 0.009), + (0.85, 0.90, 3.671, 0.168, 0.010, 0.011), + (0.90, 0.95, 3.671, 0.153, 0.010, 0.011), + (0.95, 1.00, 3.671, 0.144, 0.010, 0.009), + (1.00, 1.05, 3.671, 0.121, 0.009, 0.013), + (1.05, 1.10, 3.671, 0.111, 0.009, 0.014), + (1.10, 1.15, 3.671, 0.107, 0.010, 0.018), + (1.15, 1.20, 3.671, 0.090, 0.009, 0.012), + (1.20, 1.25, 3.671, 0.078, 0.008, 0.012), + (1.25, 1.30, 3.671, 0.065, 0.008, 0.009), + (1.30, 1.35, 3.671, 0.051, 0.007, 0.009), +] + +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +class magic: + def __init__(self, dataset): + self.data_central = [] + self.kin = [] + self.error = [] + for tpl in dataset: + kin_min, kin_max, q, value, stat, sys = tpl + kin_value = {'ph': {'min': kin_min, 'mid': None, 'max': kin_max}} + data_central_value = value + error_value = {'stat': stat, 'sys': sys} + self.data_central.append(data_central_value) + self.kin.append(kin_value) + self.error.append(error_value) + + self.error_definition = { + 'stat': {'definition': 'statistical uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + 'sys': {'definition': 'systematic uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + } + + self.data_central_yaml = {'data_central': self.data_central} + self.kin_yaml = {'bins': self.kin} + self.uncertainties_yaml = {'definitions': self.error_definition, 'bins': self.error} + + def __call__(self): + with open('data.yaml', 'w') as f: + yaml.dump(self.data_central_yaml, f, sort_keys=False) + with open('kinematics.yaml', 'w') as f: + yaml.dump(self.kin_yaml, f, sort_keys=False) + with open('uncertainties.yaml', 'w') as f: + yaml.dump(self.uncertainties_yaml, f, sort_keys=False) + + +dat_2 = magic(gev2) +dat_2p2 = magic(gev2p2) +dat_2p396 = magic(gev2p396) +dat_2p6444 = magic(gev2p6444) +dat_2p9 = magic(gev2p9) +dat_3p05 = magic(gev3p05) +dat_3p5 = magic(gev3p5) +dat_3p671 = magic(gev3p671) diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..3deacb8c62 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,34 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.031 +- stat: 0.006 + sys: 0.024 +- stat: 0.006 + sys: 0.024 +- stat: 0.006 + sys: 0.032 +- stat: 0.006 + sys: 0.024 +- stat: 0.005 + sys: 0.018 +- stat: 0.005 + sys: 0.018 +- stat: 0.004 + sys: 0.013 +- stat: 0.004 + sys: 0.013 +- stat: 0.004 + sys: 0.008 +- stat: 0.005 + sys: 0.009 +- stat: 0.005 + sys: 0.004 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..8d80425cac --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/data.yaml @@ -0,0 +1,15 @@ +data_central: +- 0.298 +- 0.332 +- 0.34 +- 0.329 +- 0.323 +- 0.341 +- 0.32 +- 0.267 +- 0.216 +- 0.137 +- 0.092 +- 0.044 +- 0.037 +- 0.013 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..0f95fa86ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p2 + +dat_2p2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..f49ed01ffb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,57 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..dad59624b1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P2GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 14 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.2 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..ccb9467987 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,38 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.005 + sys: 0.034 +- stat: 0.005 + sys: 0.021 +- stat: 0.005 + sys: 0.013 +- stat: 0.005 + sys: 0.018 +- stat: 0.004 + sys: 0.009 +- stat: 0.005 + sys: 0.006 +- stat: 0.004 + sys: 0.007 +- stat: 0.004 + sys: 0.005 +- stat: 0.004 + sys: 0.011 +- stat: 0.003 + sys: 0.012 +- stat: 0.003 + sys: 0.007 +- stat: 0.003 + sys: 0.003 +- stat: 0.004 + sys: 0.009 +- stat: 0.004 + sys: 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..4cf2f1d816 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/data.yaml @@ -0,0 +1,15 @@ +data_central: +- 0.303 +- 0.326 +- 0.34 +- 0.325 +- 0.313 +- 0.342 +- 0.313 +- 0.261 +- 0.219 +- 0.138 +- 0.086 +- 0.049 +- 0.032 +- 0.016 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..0f95fa86ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p2 + +dat_2p2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..f49ed01ffb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,57 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..c12ac6e0fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P2GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 14 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.2 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..7e8f250031 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P2GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,38 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.005 + sys: 0.035 +- stat: 0.005 + sys: 0.017 +- stat: 0.005 + sys: 0.011 +- stat: 0.004 + sys: 0.017 +- stat: 0.004 + sys: 0.013 +- stat: 0.005 + sys: 0.018 +- stat: 0.004 + sys: 0.011 +- stat: 0.004 + sys: 0.008 +- stat: 0.004 + sys: 0.006 +- stat: 0.004 + sys: 0.005 +- stat: 0.003 + sys: 0.005 +- stat: 0.003 + sys: 0.003 +- stat: 0.004 + sys: 0.006 +- stat: 0.004 + sys: 0.004 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..ccf740f3f0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/data.yaml @@ -0,0 +1,18 @@ +data_central: +- 0.298 +- 0.329 +- 0.349 +- 0.341 +- 0.319 +- 0.287 +- 0.26 +- 0.239 +- 0.245 +- 0.246 +- 0.206 +- 0.173 +- 0.091 +- 0.05 +- 0.019 +- 0.016 +- 0.005 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..b450fede42 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p396 + +dat_2p396() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..f092835bf4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,69 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..9c95469c88 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P396GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 17 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.396 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..5afd9f0a47 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,44 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.002 + sys: 0.035 +- stat: 0.002 + sys: 0.018 +- stat: 0.002 + sys: 0.011 +- stat: 0.002 + sys: 0.008 +- stat: 0.002 + sys: 0.008 +- stat: 0.002 + sys: 0.009 +- stat: 0.002 + sys: 0.007 +- stat: 0.002 + sys: 0.013 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.005 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.002 +- stat: 0.002 + sys: 0.002 +- stat: 0.002 + sys: 0.003 +- stat: 0.002 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..f484f4b725 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/data.yaml @@ -0,0 +1,18 @@ +data_central: +- 0.295 +- 0.321 +- 0.344 +- 0.339 +- 0.316 +- 0.281 +- 0.254 +- 0.231 +- 0.244 +- 0.244 +- 0.204 +- 0.168 +- 0.091 +- 0.051 +- 0.023 +- 0.019 +- 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..b450fede42 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p396 + +dat_2p396() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..f092835bf4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,69 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..fd209706e8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P396GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 17 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.396 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..ec6c8b25f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P396GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,44 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.002 + sys: 0.036 +- stat: 0.002 + sys: 0.018 +- stat: 0.002 + sys: 0.011 +- stat: 0.002 + sys: 0.008 +- stat: 0.002 + sys: 0.007 +- stat: 0.002 + sys: 0.015 +- stat: 0.002 + sys: 0.011 +- stat: 0.002 + sys: 0.014 +- stat: 0.002 + sys: 0.007 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.01 +- stat: 0.002 + sys: 0.003 +- stat: 0.002 + sys: 0.005 +- stat: 0.002 + sys: 0.002 +- stat: 0.002 + sys: 0.002 +- stat: 0.002 + sys: 0.003 +- stat: 0.002 + sys: 0.001 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..8dae819823 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/data.yaml @@ -0,0 +1,19 @@ +data_central: +- 0.297 +- 0.336 +- 0.364 +- 0.356 +- 0.354 +- 0.332 +- 0.302 +- 0.269 +- 0.225 +- 0.192 +- 0.164 +- 0.154 +- 0.151 +- 0.14 +- 0.124 +- 0.08 +- 0.035 +- 0.011 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..d112a8b506 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p6444 + +dat_2p6444() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..cc093572a3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,73 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..31d82689eb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P6444GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 18 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.6444 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..f8ee59c1e9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,46 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.004 + sys: 0.04 +- stat: 0.004 + sys: 0.021 +- stat: 0.004 + sys: 0.012 +- stat: 0.003 + sys: 0.012 +- stat: 0.003 + sys: 0.014 +- stat: 0.003 + sys: 0.022 +- stat: 0.003 + sys: 0.024 +- stat: 0.003 + sys: 0.02 +- stat: 0.003 + sys: 0.019 +- stat: 0.003 + sys: 0.016 +- stat: 0.003 + sys: 0.014 +- stat: 0.003 + sys: 0.013 +- stat: 0.003 + sys: 0.012 +- stat: 0.003 + sys: 0.006 +- stat: 0.003 + sys: 0.006 +- stat: 0.003 + sys: 0.007 +- stat: 0.003 + sys: 0.002 +- stat: 0.002 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..4d2fc40cea --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/data.yaml @@ -0,0 +1,19 @@ +data_central: +- 0.287 +- 0.334 +- 0.346 +- 0.356 +- 0.348 +- 0.326 +- 0.303 +- 0.267 +- 0.224 +- 0.191 +- 0.165 +- 0.144 +- 0.15 +- 0.145 +- 0.129 +- 0.082 +- 0.034 +- 0.013 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..d112a8b506 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p6444 + +dat_2p6444() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..cc093572a3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,73 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..a26d7cc887 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P6444GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 18 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.6444 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..03d24dec81 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P6444GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,46 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.004 + sys: 0.037 +- stat: 0.004 + sys: 0.022 +- stat: 0.004 + sys: 0.011 +- stat: 0.003 + sys: 0.013 +- stat: 0.003 + sys: 0.016 +- stat: 0.003 + sys: 0.023 +- stat: 0.003 + sys: 0.024 +- stat: 0.003 + sys: 0.024 +- stat: 0.003 + sys: 0.024 +- stat: 0.003 + sys: 0.017 +- stat: 0.003 + sys: 0.014 +- stat: 0.003 + sys: 0.016 +- stat: 0.003 + sys: 0.01 +- stat: 0.003 + sys: 0.007 +- stat: 0.003 + sys: 0.004 +- stat: 0.003 + sys: 0.004 +- stat: 0.002 + sys: 0.003 +- stat: 0.002 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..743e2d9366 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/data.yaml @@ -0,0 +1,23 @@ +data_central: +- 0.285 +- 0.319 +- 0.34 +- 0.346 +- 0.338 +- 0.327 +- 0.309 +- 0.284 +- 0.255 +- 0.232 +- 0.202 +- 0.169 +- 0.14 +- 0.114 +- 0.096 +- 0.09 +- 0.1 +- 0.091 +- 0.069 +- 0.031 +- 0.011 +- 0.009 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..5d3b18ce7a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p9 + +dat_2p9() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..3db66ab716 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,89 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..0f7ca74132 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P9GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 22 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.9 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..ffe7402053 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,54 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.002 + sys: 0.041 +- stat: 0.002 + sys: 0.02 +- stat: 0.002 + sys: 0.012 +- stat: 0.002 + sys: 0.016 +- stat: 0.002 + sys: 0.025 +- stat: 0.002 + sys: 0.026 +- stat: 0.002 + sys: 0.028 +- stat: 0.002 + sys: 0.024 +- stat: 0.002 + sys: 0.018 +- stat: 0.002 + sys: 0.016 +- stat: 0.002 + sys: 0.017 +- stat: 0.002 + sys: 0.016 +- stat: 0.002 + sys: 0.012 +- stat: 0.002 + sys: 0.009 +- stat: 0.002 + sys: 0.009 +- stat: 0.002 + sys: 0.007 +- stat: 0.002 + sys: 0.006 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.003 +- stat: 0.001 + sys: 0.001 +- stat: 0.002 + sys: 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..2b6124c306 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/data.yaml @@ -0,0 +1,23 @@ +data_central: +- 0.27 +- 0.311 +- 0.336 +- 0.346 +- 0.335 +- 0.321 +- 0.304 +- 0.283 +- 0.254 +- 0.228 +- 0.2 +- 0.165 +- 0.137 +- 0.116 +- 0.093 +- 0.087 +- 0.096 +- 0.087 +- 0.068 +- 0.034 +- 0.013 +- 0.011 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..5d3b18ce7a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p9 + +dat_2p9() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..3db66ab716 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,89 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..987eacc74e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_2P9GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 22 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.9 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..1018095794 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_2P9GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,54 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.002 + sys: 0.038 +- stat: 0.002 + sys: 0.019 +- stat: 0.002 + sys: 0.012 +- stat: 0.002 + sys: 0.015 +- stat: 0.002 + sys: 0.025 +- stat: 0.002 + sys: 0.033 +- stat: 0.002 + sys: 0.032 +- stat: 0.002 + sys: 0.026 +- stat: 0.002 + sys: 0.024 +- stat: 0.002 + sys: 0.018 +- stat: 0.002 + sys: 0.019 +- stat: 0.002 + sys: 0.014 +- stat: 0.002 + sys: 0.011 +- stat: 0.002 + sys: 0.008 +- stat: 0.002 + sys: 0.008 +- stat: 0.001 + sys: 0.006 +- stat: 0.002 + sys: 0.005 +- stat: 0.002 + sys: 0.004 +- stat: 0.002 + sys: 0.002 +- stat: 0.002 + sys: 0.002 +- stat: 0.001 + sys: 0.002 +- stat: 0.002 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..4646ee686d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 0.268 +- 0.317 +- 0.359 +- 0.359 +- 0.351 +- 0.325 +- 0.305 +- 0.285 +- 0.257 +- 0.228 +- 0.202 +- 0.181 +- 0.155 +- 0.132 +- 0.119 +- 0.093 +- 0.08 +- 0.066 +- 0.088 +- 0.076 +- 0.047 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..68aca02609 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p05 + +dat_3p05() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..021173f5a6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P05GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.05 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..4075d80c2d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.041 +- stat: 0.006 + sys: 0.032 +- stat: 0.006 + sys: 0.033 +- stat: 0.006 + sys: 0.032 +- stat: 0.006 + sys: 0.037 +- stat: 0.006 + sys: 0.042 +- stat: 0.005 + sys: 0.034 +- stat: 0.005 + sys: 0.036 +- stat: 0.005 + sys: 0.033 +- stat: 0.005 + sys: 0.032 +- stat: 0.005 + sys: 0.024 +- stat: 0.005 + sys: 0.024 +- stat: 0.005 + sys: 0.02 +- stat: 0.004 + sys: 0.021 +- stat: 0.005 + sys: 0.013 +- stat: 0.004 + sys: 0.014 +- stat: 0.004 + sys: 0.011 +- stat: 0.004 + sys: 0.008 +- stat: 0.005 + sys: 0.007 +- stat: 0.005 + sys: 0.01 +- stat: 0.004 + sys: 0.012 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..e92ad5e3da --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 0.256 +- 0.318 +- 0.342 +- 0.352 +- 0.349 +- 0.326 +- 0.311 +- 0.288 +- 0.258 +- 0.234 +- 0.197 +- 0.181 +- 0.163 +- 0.127 +- 0.115 +- 0.093 +- 0.08 +- 0.073 +- 0.082 +- 0.07 +- 0.054 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..68aca02609 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p05 + +dat_3p05() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..bc67cd7d5b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P05GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.05 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..89c6a78e82 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P05GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.035 +- stat: 0.006 + sys: 0.035 +- stat: 0.006 + sys: 0.037 +- stat: 0.006 + sys: 0.033 +- stat: 0.006 + sys: 0.038 +- stat: 0.006 + sys: 0.04 +- stat: 0.005 + sys: 0.034 +- stat: 0.005 + sys: 0.046 +- stat: 0.005 + sys: 0.033 +- stat: 0.005 + sys: 0.031 +- stat: 0.005 + sys: 0.024 +- stat: 0.005 + sys: 0.022 +- stat: 0.005 + sys: 0.024 +- stat: 0.004 + sys: 0.02 +- stat: 0.004 + sys: 0.017 +- stat: 0.004 + sys: 0.014 +- stat: 0.004 + sys: 0.01 +- stat: 0.004 + sys: 0.01 +- stat: 0.004 + sys: 0.009 +- stat: 0.005 + sys: 0.008 +- stat: 0.004 + sys: 0.007 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..cf634a5a51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 0.262 +- 0.311 +- 0.368 +- 0.355 +- 0.358 +- 0.357 +- 0.354 +- 0.312 +- 0.284 +- 0.274 +- 0.241 +- 0.225 +- 0.189 +- 0.172 +- 0.136 +- 0.104 +- 0.123 +- 0.097 +- 0.095 +- 0.078 +- 0.07 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..56e80a2672 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p5 + +dat_3p5() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..537d565d50 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P5GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.5 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..3908b07ea5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.013 + sys: 0.068 +- stat: 0.014 + sys: 0.066 +- stat: 0.014 + sys: 0.08 +- stat: 0.013 + sys: 0.075 +- stat: 0.013 + sys: 0.064 +- stat: 0.013 + sys: 0.055 +- stat: 0.013 + sys: 0.049 +- stat: 0.012 + sys: 0.033 +- stat: 0.012 + sys: 0.027 +- stat: 0.012 + sys: 0.023 +- stat: 0.011 + sys: 0.013 +- stat: 0.011 + sys: 0.01 +- stat: 0.01 + sys: 0.005 +- stat: 0.01 + sys: 0.004 +- stat: 0.01 + sys: 0.004 +- stat: 0.009 + sys: 0.006 +- stat: 0.01 + sys: 0.006 +- stat: 0.01 + sys: 0.006 +- stat: 0.01 + sys: 0.006 +- stat: 0.01 + sys: 0.008 +- stat: 0.009 + sys: 0.008 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..7c04c8f63c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 0.259 +- 0.307 +- 0.365 +- 0.378 +- 0.377 +- 0.354 +- 0.347 +- 0.301 +- 0.284 +- 0.276 +- 0.242 +- 0.223 +- 0.181 +- 0.163 +- 0.139 +- 0.118 +- 0.112 +- 0.093 +- 0.089 +- 0.066 +- 0.083 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..56e80a2672 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p5 + +dat_3p5() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..b0ee6a675f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P5GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.5 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..d020ff4ae2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P5GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.013 + sys: 0.064 +- stat: 0.013 + sys: 0.069 +- stat: 0.014 + sys: 0.079 +- stat: 0.014 + sys: 0.077 +- stat: 0.013 + sys: 0.071 +- stat: 0.013 + sys: 0.056 +- stat: 0.013 + sys: 0.047 +- stat: 0.012 + sys: 0.04 +- stat: 0.012 + sys: 0.027 +- stat: 0.012 + sys: 0.021 +- stat: 0.011 + sys: 0.011 +- stat: 0.011 + sys: 0.005 +- stat: 0.01 + sys: 0.004 +- stat: 0.01 + sys: 0.005 +- stat: 0.01 + sys: 0.008 +- stat: 0.01 + sys: 0.005 +- stat: 0.01 + sys: 0.007 +- stat: 0.01 + sys: 0.008 +- stat: 0.01 + sys: 0.011 +- stat: 0.009 + sys: 0.007 +- stat: 0.009 + sys: 0.009 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/data.yaml new file mode 100644 index 0000000000..705e1d55c1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/data.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.256 +- 0.32 +- 0.378 +- 0.378 +- 0.344 +- 0.355 +- 0.338 +- 0.322 +- 0.28 +- 0.267 +- 0.228 +- 0.211 +- 0.178 +- 0.171 +- 0.154 +- 0.133 +- 0.123 +- 0.092 +- 0.084 +- 0.087 +- 0.072 +- 0.069 +- 0.056 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/filter.py new file mode 100644 index 0000000000..01cbf18d10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p671 + +dat_3p671() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/kinematics.yaml new file mode 100644 index 0000000000..c0993fb3be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/kinematics.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/metadata.yaml new file mode 100644 index 0000000000..96e326eec4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P671GEV_EE-KAM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 23 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.671 GeV KA- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/rawdata.py new file mode 120000 index 0000000000..94edd3715f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/uncertainties.yaml new file mode 100644 index 0000000000..1c0b699e7b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAM/uncertainties.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.012 + sys: 0.055 +- stat: 0.013 + sys: 0.052 +- stat: 0.013 + sys: 0.059 +- stat: 0.013 + sys: 0.056 +- stat: 0.012 + sys: 0.048 +- stat: 0.012 + sys: 0.043 +- stat: 0.012 + sys: 0.03 +- stat: 0.012 + sys: 0.024 +- stat: 0.011 + sys: 0.013 +- stat: 0.011 + sys: 0.009 +- stat: 0.01 + sys: 0.004 +- stat: 0.01 + sys: 0.003 +- stat: 0.01 + sys: 0.01 +- stat: 0.01 + sys: 0.01 +- stat: 0.01 + sys: 0.014 +- stat: 0.01 + sys: 0.012 +- stat: 0.01 + sys: 0.01 +- stat: 0.009 + sys: 0.012 +- stat: 0.009 + sys: 0.01 +- stat: 0.009 + sys: 0.014 +- stat: 0.009 + sys: 0.01 +- stat: 0.008 + sys: 0.012 +- stat: 0.008 + sys: 0.009 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/data.yaml new file mode 100644 index 0000000000..34f520e524 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/data.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.222 +- 0.27 +- 0.336 +- 0.35 +- 0.375 +- 0.361 +- 0.323 +- 0.307 +- 0.297 +- 0.274 +- 0.264 +- 0.202 +- 0.199 +- 0.168 +- 0.153 +- 0.144 +- 0.121 +- 0.111 +- 0.107 +- 0.09 +- 0.078 +- 0.065 +- 0.051 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/filter.py new file mode 100644 index 0000000000..14dae8256b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p671 + +dat_3p671() \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/kinematics.yaml new file mode 100644 index 0000000000..c0993fb3be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/kinematics.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/metadata.yaml new file mode 100644 index 0000000000..adae55179c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-KA_3P671GEV_EE-KAP' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 23 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.671 GeV KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/rawdata.py new file mode 120000 index 0000000000..6fc3065e06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-KA_2GEV_EE-KAP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/uncertainties.yaml new file mode 100644 index 0000000000..a74289a040 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-KA_3P671GEV_EE-KAP/uncertainties.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.011 + sys: 0.05 +- stat: 0.012 + sys: 0.048 +- stat: 0.012 + sys: 0.057 +- stat: 0.012 + sys: 0.052 +- stat: 0.013 + sys: 0.053 +- stat: 0.012 + sys: 0.04 +- stat: 0.012 + sys: 0.03 +- stat: 0.011 + sys: 0.023 +- stat: 0.011 + sys: 0.016 +- stat: 0.011 + sys: 0.006 +- stat: 0.011 + sys: 0.005 +- stat: 0.01 + sys: 0.006 +- stat: 0.01 + sys: 0.009 +- stat: 0.01 + sys: 0.011 +- stat: 0.01 + sys: 0.011 +- stat: 0.01 + sys: 0.009 +- stat: 0.009 + sys: 0.013 +- stat: 0.009 + sys: 0.014 +- stat: 0.01 + sys: 0.018 +- stat: 0.009 + sys: 0.012 +- stat: 0.008 + sys: 0.012 +- stat: 0.008 + sys: 0.009 +- stat: 0.007 + sys: 0.009 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..bb48f6c05f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/data.yaml @@ -0,0 +1,16 @@ +data_central: +- 3.062 +- 3.23 +- 3.077 +- 2.708 +- 2.267 +- 1.847 +- 1.519 +- 1.244 +- 0.932 +- 0.791 +- 0.61 +- 0.403 +- 0.257 +- 0.16 +- 0.058 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..668ce24dc0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2 + +dat_2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..8c6aa94d8e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,61 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..32f3a3a591 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 15 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py new file mode 100644 index 0000000000..5a6e107ad3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py @@ -0,0 +1,240 @@ +gev2 = [ + (0.20, 0.25, 2.0, 3.062, 0.014, 0.081), + (0.25, 0.30, 2.0, 3.230, 0.014, 0.106), + (0.30, 0.35, 2.0, 3.077, 0.013, 0.118), + (0.35, 0.40, 2.0, 2.708, 0.012, 0.099), + (0.40, 0.45, 2.0, 2.267, 0.011, 0.071), + (0.45, 0.50, 2.0, 1.847, 0.010, 0.032), + (0.50, 0.55, 2.0, 1.519, 0.009, 0.016), + (0.55, 0.60, 2.0, 1.244, 0.008, 0.067), + (0.60, 0.65, 2.0, 0.932, 0.007, 0.101), + (0.65, 0.70, 2.0, 0.791, 0.007, 0.072), + (0.70, 0.75, 2.0, 0.610, 0.006, 0.052), + (0.75, 0.80, 2.0, 0.403, 0.005, 0.036), + (0.80, 0.85, 2.0, 0.257, 0.005, 0.010), + (0.85, 0.90, 2.0, 0.160, 0.004, 0.025), + (0.90, 0.95, 2.0, 0.058, 0.003, 0.018), +] + +gev2p2 = [ + (0.20, 0.25, 2.2, 3.329, 0.013, 0.063), + (0.25, 0.30, 2.2, 3.509, 0.013, 0.096), + (0.30, 0.35, 2.2, 3.255, 0.012, 0.105), + (0.35, 0.40, 2.2, 2.828, 0.011, 0.091), + (0.40, 0.45, 2.2, 2.387, 0.010, 0.086), + (0.45, 0.50, 2.2, 1.941, 0.009, 0.051), + (0.50, 0.55, 2.2, 1.544, 0.008, 0.038), + (0.55, 0.60, 2.2, 1.237, 0.008, 0.025), + (0.60, 0.65, 2.2, 0.964, 0.007, 0.011), + (0.65, 0.70, 2.2, 0.822, 0.006, 0.007), + (0.70, 0.75, 2.2, 0.670, 0.006, 0.038), + (0.75, 0.80, 2.2, 0.534, 0.005, 0.043), + (0.80, 0.85, 2.2, 0.414, 0.005, 0.034), + (0.85, 0.90, 2.2, 0.272, 0.004, 0.030), + (0.90, 0.95, 2.2, 0.150, 0.003, 0.007), + (0.95, 1.00, 2.2, 0.084, 0.003, 0.015), + (1.00, 1.05, 2.2, 0.027, 0.002, 0.011), +] + +gev2p396 = [ + (0.20, 0.25, 2.396, 3.280, 0.006, 0.083), + (0.25, 0.30, 2.396, 3.467, 0.006, 0.092), + (0.30, 0.35, 2.396, 3.325, 0.006, 0.072), + (0.35, 0.40, 2.396, 2.979, 0.006, 0.043), + (0.40, 0.45, 2.396, 2.513, 0.005, 0.011), + (0.45, 0.50, 2.396, 2.067, 0.005, 0.009), + (0.50, 0.55, 2.396, 1.678, 0.004, 0.008), + (0.55, 0.60, 2.396, 1.355, 0.004, 0.012), + (0.60, 0.65, 2.396, 1.082, 0.004, 0.015), + (0.65, 0.70, 2.396, 0.835, 0.003, 0.028), + (0.70, 0.75, 2.396, 0.652, 0.003, 0.026), + (0.75, 0.80, 2.396, 0.536, 0.003, 0.031), + (0.80, 0.85, 2.396, 0.470, 0.002, 0.039), + (0.85, 0.90, 2.396, 0.376, 0.002, 0.042), + (0.90, 0.95, 2.396, 0.285, 0.002, 0.034), + (0.95, 1.00, 2.396, 0.183, 0.002, 0.027), + (1.00, 1.05, 2.396, 0.087, 0.001, 0.010), + (1.05, 1.10, 2.396, 0.046, 0.001, 0.006), + (1.10, 1.15, 2.396, 0.013, 0.001, 0.005), +] + +gev2p6444 = [ + (0.20, 0.25, 2.6444, 3.450, 0.010, 0.146), + (0.25, 0.30, 2.6444, 3.586, 0.010, 0.115), + (0.30, 0.35, 2.6444, 3.401, 0.010, 0.109), + (0.35, 0.40, 2.6444, 3.019, 0.009, 0.062), + (0.40, 0.45, 2.6444, 2.595, 0.008, 0.027), + (0.45, 0.50, 2.6444, 2.172, 0.007, 0.030), + (0.50, 0.55, 2.6444, 1.795, 0.007, 0.042), + (0.55, 0.60, 2.6444, 1.461, 0.006, 0.054), + (0.60, 0.65, 2.6444, 1.190, 0.006, 0.039), + (0.65, 0.70, 2.6444, 0.919, 0.005, 0.041), + (0.70, 0.75, 2.6444, 0.732, 0.005, 0.035), + (0.75, 0.80, 2.6444, 0.583, 0.004, 0.038), + (0.80, 0.85, 2.6444, 0.455, 0.004, 0.045), + (0.85, 0.90, 2.6444, 0.379, 0.003, 0.041), + (0.90, 0.95, 2.6444, 0.305, 0.003, 0.038), + (0.95, 1.00, 2.6444, 0.284, 0.003, 0.040), + (1.00, 1.05, 2.6444, 0.226, 0.003, 0.036), + (1.05, 1.10, 2.6444, 0.159, 0.003, 0.031), + (1.10, 1.15, 2.6444, 0.095, 0.002, 0.019), + (1.15, 1.20, 2.6444, 0.039, 0.002, 0.005), + (1.20, 1.25, 2.6444, 0.013, 0.002, 0.003), +] + +gev2p9 = [ + (0.20, 0.25, 2.9, 3.530, 0.006, 0.194), + (0.25, 0.30, 2.9, 3.668, 0.006, 0.185), + (0.30, 0.35, 2.9, 3.507, 0.006, 0.146), + (0.35, 0.40, 2.9, 3.144, 0.006, 0.082), + (0.40, 0.45, 2.9, 2.708, 0.005, 0.024), + (0.45, 0.50, 2.9, 2.304, 0.005, 0.017), + (0.50, 0.55, 2.9, 1.899, 0.004, 0.035), + (0.55, 0.60, 2.9, 1.556, 0.004, 0.049), + (0.60, 0.65, 2.9, 1.258, 0.004, 0.053), + (0.65, 0.70, 2.9, 1.013, 0.003, 0.056), + (0.70, 0.75, 2.9, 0.828, 0.003, 0.059), + (0.75, 0.80, 2.9, 0.671, 0.003, 0.055), + (0.80, 0.85, 2.9, 0.541, 0.003, 0.050), + (0.85, 0.90, 2.9, 0.431, 0.002, 0.047), + (0.90, 0.95, 2.9, 0.344, 0.002, 0.041), + (0.95, 1.00, 2.9, 0.277, 0.002, 0.042), + (1.00, 1.05, 2.9, 0.224, 0.002, 0.037), + (1.05, 1.10, 2.9, 0.184, 0.002, 0.032), + (1.10, 1.15, 2.9, 0.167, 0.002, 0.028), + (1.15, 1.20, 2.9, 0.132, 0.002, 0.029), + (1.20, 1.25, 2.9, 0.088, 0.001, 0.022), + (1.25, 1.30, 2.9, 0.047, 0.001, 0.012), + (1.30, 1.35, 2.9, 0.017, 0.001, 0.002), +] + +gev3p05 = [ + (0.20, 0.25, 3.05, 3.542, 0.018, 0.460), + (0.25, 0.30, 3.05, 3.678, 0.018, 0.450), + (0.30, 0.35, 3.05, 3.498, 0.017, 0.425), + (0.35, 0.40, 3.05, 3.174, 0.016, 0.354), + (0.40, 0.45, 3.05, 2.766, 0.015, 0.297), + (0.45, 0.50, 3.05, 2.349, 0.013, 0.261), + (0.50, 0.55, 3.05, 1.946, 0.012, 0.199), + (0.55, 0.60, 3.05, 1.601, 0.011, 0.158), + (0.60, 0.65, 3.05, 1.316, 0.010, 0.126), + (0.65, 0.70, 3.05, 1.064, 0.009, 0.119), + (0.70, 0.75, 3.05, 0.864, 0.008, 0.104), + (0.75, 0.80, 3.05, 0.710, 0.008, 0.097), + (0.80, 0.85, 3.05, 0.567, 0.007, 0.088), + (0.85, 0.90, 3.05, 0.480, 0.007, 0.073), + (0.90, 0.95, 3.05, 0.384, 0.006, 0.064), + (0.95, 1.00, 3.05, 0.313, 0.006, 0.054), + (1.00, 1.05, 3.05, 0.244, 0.005, 0.053), + (1.05, 1.10, 3.05, 0.205, 0.005, 0.044), + (1.10, 1.15, 3.05, 0.169, 0.005, 0.040), + (1.15, 1.20, 3.05, 0.136, 0.004, 0.032), + (1.20, 1.25, 3.05, 0.126, 0.004, 0.029), + (1.25, 1.30, 3.05, 0.093, 0.004, 0.026), + (1.30, 1.35, 3.05, 0.058, 0.003, 0.017), + (1.35, 1.40, 3.05, 0.030, 0.003, 0.011), +] + +gev3p5 = [ + (0.20, 0.25, 3.5, 3.666, 0.040, 0.343), + (0.25, 0.30, 3.5, 3.824, 0.039, 0.341), + (0.30, 0.35, 3.5, 3.752, 0.038, 0.283), + (0.35, 0.40, 3.5, 3.375, 0.036, 0.210), + (0.40, 0.45, 3.5, 2.860, 0.032, 0.106), + (0.45, 0.50, 3.5, 2.511, 0.030, 0.040), + (0.50, 0.55, 3.5, 2.042, 0.027, 0.019), + (0.55, 0.60, 3.5, 1.688, 0.024, 0.053), + (0.60, 0.65, 3.5, 1.371, 0.022, 0.086), + (0.65, 0.70, 3.5, 1.130, 0.020, 0.095), + (0.70, 0.75, 3.5, 0.879, 0.017, 0.095), + (0.75, 0.80, 3.5, 0.762, 0.017, 0.096), + (0.80, 0.85, 3.5, 0.598, 0.015, 0.087), + (0.85, 0.90, 3.5, 0.498, 0.014, 0.078), + (0.90, 0.95, 3.5, 0.418, 0.013, 0.067), + (0.95, 1.00, 3.5, 0.343, 0.012, 0.060), + (1.00, 1.05, 3.5, 0.270, 0.012, 0.046), + (1.05, 1.10, 3.5, 0.247, 0.012, 0.044), + (1.10, 1.15, 3.5, 0.207, 0.011, 0.032), + (1.15, 1.20, 3.5, 0.182, 0.010, 0.028), + (1.20, 1.25, 3.5, 0.143, 0.009, 0.023), + (1.25, 1.30, 3.5, 0.111, 0.008, 0.019), + (1.30, 1.35, 3.5, 0.113, 0.009, 0.025), + (1.35, 1.40, 3.5, 0.082, 0.008, 0.018), + (1.40, 1.45, 3.5, 0.046, 0.006, 0.009), +] + +gev3p671 = [ + (0.20, 0.25, 3.671, 3.804, 0.038, 0.294), + (0.25, 0.30, 3.671, 4.033, 0.039, 0.292), + (0.30, 0.35, 3.671, 3.809, 0.037, 0.221), + (0.35, 0.40, 3.671, 3.483, 0.035, 0.158), + (0.40, 0.45, 3.671, 2.932, 0.032, 0.076), + (0.45, 0.50, 3.671, 2.478, 0.029, 0.026), + (0.50, 0.55, 3.671, 2.080, 0.026, 0.032), + (0.55, 0.60, 3.671, 1.740, 0.024, 0.055), + (0.60, 0.65, 3.671, 1.363, 0.021, 0.064), + (0.65, 0.70, 3.671, 1.129, 0.020, 0.073), + (0.70, 0.75, 3.671, 0.927, 0.018, 0.078), + (0.75, 0.80, 3.671, 0.760, 0.017, 0.075), + (0.80, 0.85, 3.671, 0.636, 0.016, 0.074), + (0.85, 0.90, 3.671, 0.543, 0.015, 0.075), + (0.90, 0.95, 3.671, 0.424, 0.013, 0.066), + (0.95, 1.00, 3.671, 0.374, 0.013, 0.062), + (1.00, 1.05, 3.671, 0.311, 0.012, 0.058), + (1.05, 1.10, 3.671, 0.255, 0.012, 0.049), + (1.10, 1.15, 3.671, 0.210, 0.011, 0.040), + (1.15, 1.20, 3.671, 0.186, 0.010, 0.038), + (1.20, 1.25, 3.671, 0.174, 0.010, 0.038), + (1.25, 1.30, 3.671, 0.135, 0.009, 0.028), + (1.30, 1.35, 3.671, 0.120, 0.008, 0.026), + (1.35, 1.40, 3.671, 0.093, 0.008, 0.024), + (1.40, 1.45, 3.671, 0.074, 0.007, 0.024), +] + +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +class magic: + def __init__(self, dataset): + self.data_central = [] + self.kin = [] + self.error = [] + for tpl in dataset: + kin_min, kin_max, q, value, stat, sys = tpl + kin_value = {'ph': {'min': kin_min, 'mid': None, 'max': kin_max}} + data_central_value = value + error_value = {'stat': stat, 'sys': sys} + self.data_central.append(data_central_value) + self.kin.append(kin_value) + self.error.append(error_value) + + self.error_definition = { + 'stat': {'definition': 'statistical uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + 'sys': {'definition': 'systematic uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + } + + self.data_central_yaml = {'data_central': self.data_central} + self.kin_yaml = {'bins': self.kin} + self.uncertainties_yaml = {'definitions': self.error_definition, 'bins': self.error} + + def __call__(self): + with open('data.yaml', 'w') as f: + yaml.dump(self.data_central_yaml, f, sort_keys=False) + with open('kinematics.yaml', 'w') as f: + yaml.dump(self.kin_yaml, f, sort_keys=False) + with open('uncertainties.yaml', 'w') as f: + yaml.dump(self.uncertainties_yaml, f, sort_keys=False) + + +dat_2 = magic(gev2) +dat_2p2 = magic(gev2p2) +dat_2p396 = magic(gev2p396) +dat_2p6444 = magic(gev2p6444) +dat_2p9 = magic(gev2p9) +dat_3p05 = magic(gev3p05) +dat_3p5 = magic(gev3p5) +dat_3p671 = magic(gev3p671) diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..3b615db4c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,40 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.014 + sys: 0.081 +- stat: 0.014 + sys: 0.106 +- stat: 0.013 + sys: 0.118 +- stat: 0.012 + sys: 0.099 +- stat: 0.011 + sys: 0.071 +- stat: 0.01 + sys: 0.032 +- stat: 0.009 + sys: 0.016 +- stat: 0.008 + sys: 0.067 +- stat: 0.007 + sys: 0.101 +- stat: 0.007 + sys: 0.072 +- stat: 0.006 + sys: 0.052 +- stat: 0.005 + sys: 0.036 +- stat: 0.005 + sys: 0.01 +- stat: 0.004 + sys: 0.025 +- stat: 0.003 + sys: 0.018 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..84e3425357 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/data.yaml @@ -0,0 +1,16 @@ +data_central: +- 3.038 +- 3.24 +- 3.084 +- 2.713 +- 2.286 +- 1.862 +- 1.53 +- 1.238 +- 0.955 +- 0.767 +- 0.601 +- 0.396 +- 0.26 +- 0.157 +- 0.057 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..668ce24dc0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2 + +dat_2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..8c6aa94d8e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,61 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..1ba5baffb1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 15 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py new file mode 100644 index 0000000000..c882929bc8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py @@ -0,0 +1,240 @@ +gev2 = [ + (0.20, 0.25, 2.0, 3.038, 0.014, 0.078), + (0.25, 0.30, 2.0, 3.240, 0.014, 0.122), + (0.30, 0.35, 2.0, 3.084, 0.013, 0.132), + (0.35, 0.40, 2.0, 2.713, 0.012, 0.123), + (0.40, 0.45, 2.0, 2.286, 0.011, 0.076), + (0.45, 0.50, 2.0, 1.862, 0.010, 0.037), + (0.50, 0.55, 2.0, 1.530, 0.009, 0.008), + (0.55, 0.60, 2.0, 1.238, 0.008, 0.056), + (0.60, 0.65, 2.0, 0.955, 0.008, 0.097), + (0.65, 0.70, 2.0, 0.767, 0.007, 0.069), + (0.70, 0.75, 2.0, 0.601, 0.006, 0.049), + (0.75, 0.80, 2.0, 0.396, 0.005, 0.034), + (0.80, 0.85, 2.0, 0.260, 0.005, 0.017), + (0.85, 0.90, 2.0, 0.157, 0.004, 0.025), + (0.90, 0.95, 2.0, 0.057, 0.003, 0.017), +] + +gev2p2 = [ + (0.20, 0.25, 2.2, 3.343, 0.013, 0.061), + (0.25, 0.30, 2.2, 3.482, 0.013, 0.096), + (0.30, 0.35, 2.2, 3.244, 0.012, 0.124), + (0.35, 0.40, 2.2, 2.824, 0.011, 0.108), + (0.40, 0.45, 2.2, 2.384, 0.010, 0.091), + (0.45, 0.50, 2.2, 1.950, 0.009, 0.054), + (0.50, 0.55, 2.2, 1.555, 0.008, 0.034), + (0.55, 0.60, 2.2, 1.242, 0.008, 0.031), + (0.60, 0.65, 2.2, 0.986, 0.007, 0.045), + (0.65, 0.70, 2.2, 0.836, 0.006, 0.020), + (0.70, 0.75, 2.2, 0.669, 0.006, 0.033), + (0.75, 0.80, 2.2, 0.533, 0.005, 0.037), + (0.80, 0.85, 2.2, 0.415, 0.005, 0.035), + (0.85, 0.90, 2.2, 0.265, 0.004, 0.025), + (0.90, 0.95, 2.2, 0.147, 0.003, 0.006), + (0.95, 1.00, 2.2, 0.089, 0.003, 0.017), + (1.00, 1.05, 2.2, 0.031, 0.003, 0.013), +] + +gev2p396 = [ + (0.20, 0.25, 2.396, 3.287, 0.006, 0.082), + (0.25, 0.30, 2.396, 3.471, 0.006, 0.092), + (0.30, 0.35, 2.396, 3.306, 0.006, 0.080), + (0.35, 0.40, 2.396, 2.972, 0.006, 0.049), + (0.40, 0.45, 2.396, 2.532, 0.005, 0.023), + (0.45, 0.50, 2.396, 2.082, 0.005, 0.020), + (0.50, 0.55, 2.396, 1.674, 0.004, 0.005), + (0.55, 0.60, 2.396, 1.369, 0.004, 0.007), + (0.60, 0.65, 2.396, 1.086, 0.004, 0.012), + (0.65, 0.70, 2.396, 0.847, 0.003, 0.018), + (0.70, 0.75, 2.396, 0.664, 0.003, 0.022), + (0.75, 0.80, 2.396, 0.539, 0.003, 0.024), + (0.80, 0.85, 2.396, 0.472, 0.002, 0.034), + (0.85, 0.90, 2.396, 0.376, 0.002, 0.041), + (0.90, 0.95, 2.396, 0.284, 0.002, 0.032), + (0.95, 1.00, 2.396, 0.182, 0.002, 0.025), + (1.00, 1.05, 2.396, 0.087, 0.001, 0.010), + (1.05, 1.10, 2.396, 0.045, 0.001, 0.005), + (1.10, 1.15, 2.396, 0.015, 0.001, 0.006), +] + +gev2p6444 = [ + (0.20, 0.25, 2.6444, 3.397, 0.010, 0.128), + (0.25, 0.30, 2.6444, 3.567, 0.010, 0.119), + (0.30, 0.35, 2.6444, 3.367, 0.010, 0.097), + (0.35, 0.40, 2.6444, 3.021, 0.009, 0.065), + (0.40, 0.45, 2.6444, 2.586, 0.008, 0.018), + (0.45, 0.50, 2.6444, 2.178, 0.008, 0.019), + (0.50, 0.55, 2.6444, 1.816, 0.007, 0.024), + (0.55, 0.60, 2.6444, 1.467, 0.006, 0.033), + (0.60, 0.65, 2.6444, 1.190, 0.006, 0.034), + (0.65, 0.70, 2.6444, 0.924, 0.005, 0.038), + (0.70, 0.75, 2.6444, 0.732, 0.005, 0.033), + (0.75, 0.80, 2.6444, 0.585, 0.004, 0.039), + (0.80, 0.85, 2.6444, 0.466, 0.004, 0.042), + (0.85, 0.90, 2.6444, 0.366, 0.003, 0.039), + (0.90, 0.95, 2.6444, 0.310, 0.003, 0.035), + (0.95, 1.00, 2.6444, 0.282, 0.003, 0.035), + (1.00, 1.05, 2.6444, 0.225, 0.003, 0.039), + (1.05, 1.10, 2.6444, 0.154, 0.003, 0.026), + (1.10, 1.15, 2.6444, 0.089, 0.002, 0.016), + (1.15, 1.20, 2.6444, 0.039, 0.002, 0.005), + (1.20, 1.25, 2.6444, 0.017, 0.002, 0.003), +] + +gev2p9 = [ + (0.20, 0.25, 2.9, 3.470, 0.006, 0.187), + (0.25, 0.30, 2.9, 3.633, 0.006, 0.185), + (0.30, 0.35, 2.9, 3.455, 0.006, 0.139), + (0.35, 0.40, 2.9, 3.128, 0.006, 0.084), + (0.40, 0.45, 2.9, 2.712, 0.005, 0.031), + (0.45, 0.50, 2.9, 2.299, 0.005, 0.011), + (0.50, 0.55, 2.9, 1.906, 0.004, 0.033), + (0.55, 0.60, 2.9, 1.545, 0.004, 0.045), + (0.60, 0.65, 2.9, 1.266, 0.004, 0.051), + (0.65, 0.70, 2.9, 1.014, 0.003, 0.056), + (0.70, 0.75, 2.9, 0.828, 0.003, 0.056), + (0.75, 0.80, 2.9, 0.675, 0.003, 0.054), + (0.80, 0.85, 2.9, 0.551, 0.003, 0.045), + (0.85, 0.90, 2.9, 0.439, 0.002, 0.044), + (0.90, 0.95, 2.9, 0.347, 0.002, 0.044), + (0.95, 1.00, 2.9, 0.279, 0.002, 0.042), + (1.00, 1.05, 2.9, 0.226, 0.002, 0.036), + (1.05, 1.10, 2.9, 0.182, 0.002, 0.031), + (1.10, 1.15, 2.9, 0.165, 0.002, 0.028), + (1.15, 1.20, 2.9, 0.133, 0.002, 0.026), + (1.20, 1.25, 2.9, 0.089, 0.001, 0.020), + (1.25, 1.30, 2.9, 0.043, 0.001, 0.012), + (1.30, 1.35, 2.9, 0.018, 0.001, 0.002), +] + +gev3p05 = [ + (0.20, 0.25, 3.05, 3.518, 0.018, 0.458), + (0.25, 0.30, 3.05, 3.662, 0.018, 0.459), + (0.30, 0.35, 3.05, 3.500, 0.017, 0.410), + (0.35, 0.40, 3.05, 3.157, 0.016, 0.338), + (0.40, 0.45, 3.05, 2.769, 0.015, 0.295), + (0.45, 0.50, 3.05, 2.324, 0.013, 0.260), + (0.50, 0.55, 3.05, 1.948, 0.012, 0.209), + (0.55, 0.60, 3.05, 1.621, 0.011, 0.164), + (0.60, 0.65, 3.05, 1.319, 0.010, 0.144), + (0.65, 0.70, 3.05, 1.047, 0.009, 0.120), + (0.70, 0.75, 3.05, 0.862, 0.008, 0.103), + (0.75, 0.80, 3.05, 0.706, 0.008, 0.095), + (0.80, 0.85, 3.05, 0.563, 0.007, 0.079), + (0.85, 0.90, 3.05, 0.470, 0.007, 0.068), + (0.90, 0.95, 3.05, 0.379, 0.006, 0.061), + (0.95, 1.00, 3.05, 0.316, 0.006, 0.056), + (1.00, 1.05, 3.05, 0.247, 0.005, 0.053), + (1.05, 1.10, 3.05, 0.186, 0.005, 0.040), + (1.10, 1.15, 3.05, 0.160, 0.005, 0.040), + (1.15, 1.20, 3.05, 0.130, 0.004, 0.029), + (1.20, 1.25, 3.05, 0.120, 0.004, 0.027), + (1.25, 1.30, 3.05, 0.092, 0.004, 0.027), + (1.30, 1.35, 3.05, 0.060, 0.003, 0.021), + (1.35, 1.40, 3.05, 0.027, 0.002, 0.010), +] + +gev3p5 = [ + (0.20, 0.25, 3.5, 3.680, 0.040, 0.352), + (0.25, 0.30, 3.5, 3.862, 0.040, 0.340), + (0.30, 0.35, 3.5, 3.606, 0.038, 0.273), + (0.35, 0.40, 3.5, 3.319, 0.036, 0.203), + (0.40, 0.45, 3.5, 2.803, 0.032, 0.117), + (0.45, 0.50, 3.5, 2.487, 0.030, 0.045), + (0.50, 0.55, 3.5, 2.014, 0.026, 0.022), + (0.55, 0.60, 3.5, 1.691, 0.024, 0.062), + (0.60, 0.65, 3.5, 1.363, 0.022, 0.077), + (0.65, 0.70, 3.5, 1.131, 0.020, 0.092), + (0.70, 0.75, 3.5, 0.917, 0.018, 0.097), + (0.75, 0.80, 3.5, 0.759, 0.016, 0.100), + (0.80, 0.85, 3.5, 0.599, 0.015, 0.087), + (0.85, 0.90, 3.5, 0.497, 0.014, 0.081), + (0.90, 0.95, 3.5, 0.406, 0.013, 0.068), + (0.95, 1.00, 3.5, 0.328, 0.012, 0.060), + (1.00, 1.05, 3.5, 0.296, 0.012, 0.053), + (1.05, 1.10, 3.5, 0.265, 0.012, 0.046), + (1.10, 1.15, 3.5, 0.205, 0.011, 0.035), + (1.15, 1.20, 3.5, 0.183, 0.010, 0.030), + (1.20, 1.25, 3.5, 0.147, 0.009, 0.028), + (1.25, 1.30, 3.5, 0.131, 0.009, 0.024), + (1.30, 1.35, 3.5, 0.113, 0.009, 0.024), + (1.35, 1.40, 3.5, 0.076, 0.007, 0.016), + (1.40, 1.45, 3.5, 0.069, 0.007, 0.015), +] + +gev3p671 = [ + (0.20, 0.25, 3.671, 3.792, 0.038, 0.297), + (0.25, 0.30, 3.671, 3.966, 0.038, 0.282), + (0.30, 0.35, 3.671, 3.763, 0.037, 0.231), + (0.35, 0.40, 3.671, 3.376, 0.034, 0.158), + (0.40, 0.45, 3.671, 2.954, 0.032, 0.083), + (0.45, 0.50, 3.671, 2.500, 0.029, 0.033), + (0.50, 0.55, 3.671, 2.055, 0.026, 0.028), + (0.55, 0.60, 3.671, 1.728, 0.024, 0.055), + (0.60, 0.65, 3.671, 1.403, 0.022, 0.066), + (0.65, 0.70, 3.671, 1.147, 0.020, 0.074), + (0.70, 0.75, 3.671, 0.915, 0.018, 0.078), + (0.75, 0.80, 3.671, 0.790, 0.017, 0.082), + (0.80, 0.85, 3.671, 0.637, 0.016, 0.076), + (0.85, 0.90, 3.671, 0.545, 0.015, 0.084), + (0.90, 0.95, 3.671, 0.442, 0.013, 0.070), + (0.95, 1.00, 3.671, 0.379, 0.013, 0.066), + (1.00, 1.05, 3.671, 0.295, 0.012, 0.056), + (1.05, 1.10, 3.671, 0.257, 0.011, 0.051), + (1.10, 1.15, 3.671, 0.204, 0.011, 0.043), + (1.15, 1.20, 3.671, 0.181, 0.010, 0.037), + (1.20, 1.25, 3.671, 0.157, 0.009, 0.033), + (1.25, 1.30, 3.671, 0.130, 0.009, 0.028), + (1.30, 1.35, 3.671, 0.122, 0.008, 0.029), + (1.35, 1.40, 3.671, 0.097, 0.008, 0.025), + (1.40, 1.45, 3.671, 0.072, 0.007, 0.023), +] + +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +class magic: + def __init__(self, dataset): + self.data_central = [] + self.kin = [] + self.error = [] + for tpl in dataset: + kin_min, kin_max, q, value, stat, sys = tpl + kin_value = {'ph': {'min': kin_min, 'mid': None, 'max': kin_max}} + data_central_value = value + error_value = {'stat': stat, 'sys': sys} + self.data_central.append(data_central_value) + self.kin.append(kin_value) + self.error.append(error_value) + + self.error_definition = { + 'stat': {'definition': 'statistical uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + 'sys': {'definition': 'systematic uncertainty', 'treatment': 'ADD', 'type': 'UNCORR'}, + } + + self.data_central_yaml = {'data_central': self.data_central} + self.kin_yaml = {'bins': self.kin} + self.uncertainties_yaml = {'definitions': self.error_definition, 'bins': self.error} + + def __call__(self): + with open('data.yaml', 'w') as f: + yaml.dump(self.data_central_yaml, f, sort_keys=False) + with open('kinematics.yaml', 'w') as f: + yaml.dump(self.kin_yaml, f, sort_keys=False) + with open('uncertainties.yaml', 'w') as f: + yaml.dump(self.uncertainties_yaml, f, sort_keys=False) + + +dat_2 = magic(gev2) +dat_2p2 = magic(gev2p2) +dat_2p396 = magic(gev2p396) +dat_2p6444 = magic(gev2p6444) +dat_2p9 = magic(gev2p9) +dat_3p05 = magic(gev3p05) +dat_3p5 = magic(gev3p5) +dat_3p671 = magic(gev3p671) diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..f037e55a54 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,40 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.014 + sys: 0.078 +- stat: 0.014 + sys: 0.122 +- stat: 0.013 + sys: 0.132 +- stat: 0.012 + sys: 0.123 +- stat: 0.011 + sys: 0.076 +- stat: 0.01 + sys: 0.037 +- stat: 0.009 + sys: 0.008 +- stat: 0.008 + sys: 0.056 +- stat: 0.008 + sys: 0.097 +- stat: 0.007 + sys: 0.069 +- stat: 0.006 + sys: 0.049 +- stat: 0.005 + sys: 0.034 +- stat: 0.005 + sys: 0.017 +- stat: 0.004 + sys: 0.025 +- stat: 0.003 + sys: 0.017 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..9e297a77b8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/data.yaml @@ -0,0 +1,18 @@ +data_central: +- 3.329 +- 3.509 +- 3.255 +- 2.828 +- 2.387 +- 1.941 +- 1.544 +- 1.237 +- 0.964 +- 0.822 +- 0.67 +- 0.534 +- 0.414 +- 0.272 +- 0.15 +- 0.084 +- 0.027 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..0f95fa86ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p2 + +dat_2p2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..f092835bf4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,69 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..bd636c1ea1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P2GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 17 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.2 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..edbd814153 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,44 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.013 + sys: 0.063 +- stat: 0.013 + sys: 0.096 +- stat: 0.012 + sys: 0.105 +- stat: 0.011 + sys: 0.091 +- stat: 0.01 + sys: 0.086 +- stat: 0.009 + sys: 0.051 +- stat: 0.008 + sys: 0.038 +- stat: 0.008 + sys: 0.025 +- stat: 0.007 + sys: 0.011 +- stat: 0.006 + sys: 0.007 +- stat: 0.006 + sys: 0.038 +- stat: 0.005 + sys: 0.043 +- stat: 0.005 + sys: 0.034 +- stat: 0.004 + sys: 0.03 +- stat: 0.003 + sys: 0.007 +- stat: 0.003 + sys: 0.015 +- stat: 0.002 + sys: 0.011 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..b33fc2fe49 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/data.yaml @@ -0,0 +1,18 @@ +data_central: +- 3.343 +- 3.482 +- 3.244 +- 2.824 +- 2.384 +- 1.95 +- 1.555 +- 1.242 +- 0.986 +- 0.836 +- 0.669 +- 0.533 +- 0.415 +- 0.265 +- 0.147 +- 0.089 +- 0.031 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..0f95fa86ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p2 + +dat_2p2() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..f092835bf4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,69 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..d5dd4fb0cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P2GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 17 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.2 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..057edb2479 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P2GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,44 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.013 + sys: 0.061 +- stat: 0.013 + sys: 0.096 +- stat: 0.012 + sys: 0.124 +- stat: 0.011 + sys: 0.108 +- stat: 0.01 + sys: 0.091 +- stat: 0.009 + sys: 0.054 +- stat: 0.008 + sys: 0.034 +- stat: 0.008 + sys: 0.031 +- stat: 0.007 + sys: 0.045 +- stat: 0.006 + sys: 0.02 +- stat: 0.006 + sys: 0.033 +- stat: 0.005 + sys: 0.037 +- stat: 0.005 + sys: 0.035 +- stat: 0.004 + sys: 0.025 +- stat: 0.003 + sys: 0.006 +- stat: 0.003 + sys: 0.017 +- stat: 0.003 + sys: 0.013 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..f7703176a2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/data.yaml @@ -0,0 +1,20 @@ +data_central: +- 3.28 +- 3.467 +- 3.325 +- 2.979 +- 2.513 +- 2.067 +- 1.678 +- 1.355 +- 1.082 +- 0.835 +- 0.652 +- 0.536 +- 0.47 +- 0.376 +- 0.285 +- 0.183 +- 0.087 +- 0.046 +- 0.013 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..b450fede42 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p396 + +dat_2p396() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..22e89d76f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,77 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..d79c43560a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P396GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 19 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.396 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..249c67f1fb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,48 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.083 +- stat: 0.006 + sys: 0.092 +- stat: 0.006 + sys: 0.072 +- stat: 0.006 + sys: 0.043 +- stat: 0.005 + sys: 0.011 +- stat: 0.005 + sys: 0.009 +- stat: 0.004 + sys: 0.008 +- stat: 0.004 + sys: 0.012 +- stat: 0.004 + sys: 0.015 +- stat: 0.003 + sys: 0.028 +- stat: 0.003 + sys: 0.026 +- stat: 0.003 + sys: 0.031 +- stat: 0.002 + sys: 0.039 +- stat: 0.002 + sys: 0.042 +- stat: 0.002 + sys: 0.034 +- stat: 0.002 + sys: 0.027 +- stat: 0.001 + sys: 0.01 +- stat: 0.001 + sys: 0.006 +- stat: 0.001 + sys: 0.005 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..5ecf9f9709 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/data.yaml @@ -0,0 +1,20 @@ +data_central: +- 3.287 +- 3.471 +- 3.306 +- 2.972 +- 2.532 +- 2.082 +- 1.674 +- 1.369 +- 1.086 +- 0.847 +- 0.664 +- 0.539 +- 0.472 +- 0.376 +- 0.284 +- 0.182 +- 0.087 +- 0.045 +- 0.015 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..b450fede42 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p396 + +dat_2p396() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..22e89d76f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,77 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..92343c9bd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P396GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 19 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.396 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..0ab77681e3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P396GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,48 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.082 +- stat: 0.006 + sys: 0.092 +- stat: 0.006 + sys: 0.08 +- stat: 0.006 + sys: 0.049 +- stat: 0.005 + sys: 0.023 +- stat: 0.005 + sys: 0.02 +- stat: 0.004 + sys: 0.005 +- stat: 0.004 + sys: 0.007 +- stat: 0.004 + sys: 0.012 +- stat: 0.003 + sys: 0.018 +- stat: 0.003 + sys: 0.022 +- stat: 0.003 + sys: 0.024 +- stat: 0.002 + sys: 0.034 +- stat: 0.002 + sys: 0.041 +- stat: 0.002 + sys: 0.032 +- stat: 0.002 + sys: 0.025 +- stat: 0.001 + sys: 0.01 +- stat: 0.001 + sys: 0.005 +- stat: 0.001 + sys: 0.006 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..0bbe7880ae --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 3.45 +- 3.586 +- 3.401 +- 3.019 +- 2.595 +- 2.172 +- 1.795 +- 1.461 +- 1.19 +- 0.919 +- 0.732 +- 0.583 +- 0.455 +- 0.379 +- 0.305 +- 0.284 +- 0.226 +- 0.159 +- 0.095 +- 0.039 +- 0.013 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..d112a8b506 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p6444 + +dat_2p6444() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..d4da93709b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P6444GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.6444 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..cb74a2683b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.01 + sys: 0.146 +- stat: 0.01 + sys: 0.115 +- stat: 0.01 + sys: 0.109 +- stat: 0.009 + sys: 0.062 +- stat: 0.008 + sys: 0.027 +- stat: 0.007 + sys: 0.03 +- stat: 0.007 + sys: 0.042 +- stat: 0.006 + sys: 0.054 +- stat: 0.006 + sys: 0.039 +- stat: 0.005 + sys: 0.041 +- stat: 0.005 + sys: 0.035 +- stat: 0.004 + sys: 0.038 +- stat: 0.004 + sys: 0.045 +- stat: 0.003 + sys: 0.041 +- stat: 0.003 + sys: 0.038 +- stat: 0.003 + sys: 0.04 +- stat: 0.003 + sys: 0.036 +- stat: 0.003 + sys: 0.031 +- stat: 0.002 + sys: 0.019 +- stat: 0.002 + sys: 0.005 +- stat: 0.002 + sys: 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..4d76789ab1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 3.397 +- 3.567 +- 3.367 +- 3.021 +- 2.586 +- 2.178 +- 1.816 +- 1.467 +- 1.19 +- 0.924 +- 0.732 +- 0.585 +- 0.466 +- 0.366 +- 0.31 +- 0.282 +- 0.225 +- 0.154 +- 0.089 +- 0.039 +- 0.017 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..d112a8b506 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p6444 + +dat_2p6444() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..f28f55e2c0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..cbbd0645dc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P6444GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 21 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.6444 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..cdcb488039 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P6444GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,52 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.01 + sys: 0.128 +- stat: 0.01 + sys: 0.119 +- stat: 0.01 + sys: 0.097 +- stat: 0.009 + sys: 0.065 +- stat: 0.008 + sys: 0.018 +- stat: 0.008 + sys: 0.019 +- stat: 0.007 + sys: 0.024 +- stat: 0.006 + sys: 0.033 +- stat: 0.006 + sys: 0.034 +- stat: 0.005 + sys: 0.038 +- stat: 0.005 + sys: 0.033 +- stat: 0.004 + sys: 0.039 +- stat: 0.004 + sys: 0.042 +- stat: 0.003 + sys: 0.039 +- stat: 0.003 + sys: 0.035 +- stat: 0.003 + sys: 0.035 +- stat: 0.003 + sys: 0.039 +- stat: 0.003 + sys: 0.026 +- stat: 0.002 + sys: 0.016 +- stat: 0.002 + sys: 0.005 +- stat: 0.002 + sys: 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..aeaa3d3532 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/data.yaml @@ -0,0 +1,24 @@ +data_central: +- 3.53 +- 3.668 +- 3.507 +- 3.144 +- 2.708 +- 2.304 +- 1.899 +- 1.556 +- 1.258 +- 1.013 +- 0.828 +- 0.671 +- 0.541 +- 0.431 +- 0.344 +- 0.277 +- 0.224 +- 0.184 +- 0.167 +- 0.132 +- 0.088 +- 0.047 +- 0.017 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..5d3b18ce7a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p9 + +dat_2p9() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..c0993fb3be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..b1813e1ab7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P9GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 23 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.9 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..951fa8cffd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.194 +- stat: 0.006 + sys: 0.185 +- stat: 0.006 + sys: 0.146 +- stat: 0.006 + sys: 0.082 +- stat: 0.005 + sys: 0.024 +- stat: 0.005 + sys: 0.017 +- stat: 0.004 + sys: 0.035 +- stat: 0.004 + sys: 0.049 +- stat: 0.004 + sys: 0.053 +- stat: 0.003 + sys: 0.056 +- stat: 0.003 + sys: 0.059 +- stat: 0.003 + sys: 0.055 +- stat: 0.003 + sys: 0.05 +- stat: 0.002 + sys: 0.047 +- stat: 0.002 + sys: 0.041 +- stat: 0.002 + sys: 0.042 +- stat: 0.002 + sys: 0.037 +- stat: 0.002 + sys: 0.032 +- stat: 0.002 + sys: 0.028 +- stat: 0.002 + sys: 0.029 +- stat: 0.001 + sys: 0.022 +- stat: 0.001 + sys: 0.012 +- stat: 0.001 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..24ce9a1c5b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/data.yaml @@ -0,0 +1,24 @@ +data_central: +- 3.47 +- 3.633 +- 3.455 +- 3.128 +- 2.712 +- 2.299 +- 1.906 +- 1.545 +- 1.266 +- 1.014 +- 0.828 +- 0.675 +- 0.551 +- 0.439 +- 0.347 +- 0.279 +- 0.226 +- 0.182 +- 0.165 +- 0.133 +- 0.089 +- 0.043 +- 0.018 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..5d3b18ce7a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_2p9 + +dat_2p9() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..c0993fb3be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..6d76952971 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_2P9GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 23 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 2.9 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..104a719b8a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_2P9GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.006 + sys: 0.187 +- stat: 0.006 + sys: 0.185 +- stat: 0.006 + sys: 0.139 +- stat: 0.006 + sys: 0.084 +- stat: 0.005 + sys: 0.031 +- stat: 0.005 + sys: 0.011 +- stat: 0.004 + sys: 0.033 +- stat: 0.004 + sys: 0.045 +- stat: 0.004 + sys: 0.051 +- stat: 0.003 + sys: 0.056 +- stat: 0.003 + sys: 0.056 +- stat: 0.003 + sys: 0.054 +- stat: 0.003 + sys: 0.045 +- stat: 0.002 + sys: 0.044 +- stat: 0.002 + sys: 0.044 +- stat: 0.002 + sys: 0.042 +- stat: 0.002 + sys: 0.036 +- stat: 0.002 + sys: 0.031 +- stat: 0.002 + sys: 0.028 +- stat: 0.002 + sys: 0.026 +- stat: 0.001 + sys: 0.02 +- stat: 0.001 + sys: 0.012 +- stat: 0.001 + sys: 0.002 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..467c2116ff --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/data.yaml @@ -0,0 +1,25 @@ +data_central: +- 3.542 +- 3.678 +- 3.498 +- 3.174 +- 2.766 +- 2.349 +- 1.946 +- 1.601 +- 1.316 +- 1.064 +- 0.864 +- 0.71 +- 0.567 +- 0.48 +- 0.384 +- 0.313 +- 0.244 +- 0.205 +- 0.169 +- 0.136 +- 0.126 +- 0.093 +- 0.058 +- 0.03 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..68aca02609 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p05 + +dat_3p05() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..94559d4dd0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,97 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..315af2dded --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P05GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 24 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.05 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..e588d2e0fb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,58 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.018 + sys: 0.46 +- stat: 0.018 + sys: 0.45 +- stat: 0.017 + sys: 0.425 +- stat: 0.016 + sys: 0.354 +- stat: 0.015 + sys: 0.297 +- stat: 0.013 + sys: 0.261 +- stat: 0.012 + sys: 0.199 +- stat: 0.011 + sys: 0.158 +- stat: 0.01 + sys: 0.126 +- stat: 0.009 + sys: 0.119 +- stat: 0.008 + sys: 0.104 +- stat: 0.008 + sys: 0.097 +- stat: 0.007 + sys: 0.088 +- stat: 0.007 + sys: 0.073 +- stat: 0.006 + sys: 0.064 +- stat: 0.006 + sys: 0.054 +- stat: 0.005 + sys: 0.053 +- stat: 0.005 + sys: 0.044 +- stat: 0.005 + sys: 0.04 +- stat: 0.004 + sys: 0.032 +- stat: 0.004 + sys: 0.029 +- stat: 0.004 + sys: 0.026 +- stat: 0.003 + sys: 0.017 +- stat: 0.003 + sys: 0.011 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..039a005d93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/data.yaml @@ -0,0 +1,25 @@ +data_central: +- 3.518 +- 3.662 +- 3.5 +- 3.157 +- 2.769 +- 2.324 +- 1.948 +- 1.621 +- 1.319 +- 1.047 +- 0.862 +- 0.706 +- 0.563 +- 0.47 +- 0.379 +- 0.316 +- 0.247 +- 0.186 +- 0.16 +- 0.13 +- 0.12 +- 0.092 +- 0.06 +- 0.027 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..68aca02609 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p05 + +dat_3p05() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..94559d4dd0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,97 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..50966d1741 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P05GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 24 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.05 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..6cba1d7b03 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P05GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,58 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.018 + sys: 0.458 +- stat: 0.018 + sys: 0.459 +- stat: 0.017 + sys: 0.41 +- stat: 0.016 + sys: 0.338 +- stat: 0.015 + sys: 0.295 +- stat: 0.013 + sys: 0.26 +- stat: 0.012 + sys: 0.209 +- stat: 0.011 + sys: 0.164 +- stat: 0.01 + sys: 0.144 +- stat: 0.009 + sys: 0.12 +- stat: 0.008 + sys: 0.103 +- stat: 0.008 + sys: 0.095 +- stat: 0.007 + sys: 0.079 +- stat: 0.007 + sys: 0.068 +- stat: 0.006 + sys: 0.061 +- stat: 0.006 + sys: 0.056 +- stat: 0.005 + sys: 0.053 +- stat: 0.005 + sys: 0.04 +- stat: 0.005 + sys: 0.04 +- stat: 0.004 + sys: 0.029 +- stat: 0.004 + sys: 0.027 +- stat: 0.004 + sys: 0.027 +- stat: 0.003 + sys: 0.021 +- stat: 0.002 + sys: 0.01 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..50c46fca51 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/data.yaml @@ -0,0 +1,26 @@ +data_central: +- 3.666 +- 3.824 +- 3.752 +- 3.375 +- 2.86 +- 2.511 +- 2.042 +- 1.688 +- 1.371 +- 1.13 +- 0.879 +- 0.762 +- 0.598 +- 0.498 +- 0.418 +- 0.343 +- 0.27 +- 0.247 +- 0.207 +- 0.182 +- 0.143 +- 0.111 +- 0.113 +- 0.082 +- 0.046 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..56e80a2672 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p5 + +dat_3p5() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..ba147d50b5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,101 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.45 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..4f1f6e795d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P5GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 25 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.5 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..35b989506c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,60 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.04 + sys: 0.343 +- stat: 0.039 + sys: 0.341 +- stat: 0.038 + sys: 0.283 +- stat: 0.036 + sys: 0.21 +- stat: 0.032 + sys: 0.106 +- stat: 0.03 + sys: 0.04 +- stat: 0.027 + sys: 0.019 +- stat: 0.024 + sys: 0.053 +- stat: 0.022 + sys: 0.086 +- stat: 0.02 + sys: 0.095 +- stat: 0.017 + sys: 0.095 +- stat: 0.017 + sys: 0.096 +- stat: 0.015 + sys: 0.087 +- stat: 0.014 + sys: 0.078 +- stat: 0.013 + sys: 0.067 +- stat: 0.012 + sys: 0.06 +- stat: 0.012 + sys: 0.046 +- stat: 0.012 + sys: 0.044 +- stat: 0.011 + sys: 0.032 +- stat: 0.01 + sys: 0.028 +- stat: 0.009 + sys: 0.023 +- stat: 0.008 + sys: 0.019 +- stat: 0.009 + sys: 0.025 +- stat: 0.008 + sys: 0.018 +- stat: 0.006 + sys: 0.009 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..ad7317bc37 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/data.yaml @@ -0,0 +1,26 @@ +data_central: +- 3.68 +- 3.862 +- 3.606 +- 3.319 +- 2.803 +- 2.487 +- 2.014 +- 1.691 +- 1.363 +- 1.131 +- 0.917 +- 0.759 +- 0.599 +- 0.497 +- 0.406 +- 0.328 +- 0.296 +- 0.265 +- 0.205 +- 0.183 +- 0.147 +- 0.131 +- 0.113 +- 0.076 +- 0.069 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..56e80a2672 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p5 + +dat_3p5() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..ba147d50b5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,101 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.45 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..cc9463dfc1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P5GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 25 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.5 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..5851c7a8f1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P5GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,60 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.04 + sys: 0.352 +- stat: 0.04 + sys: 0.34 +- stat: 0.038 + sys: 0.273 +- stat: 0.036 + sys: 0.203 +- stat: 0.032 + sys: 0.117 +- stat: 0.03 + sys: 0.045 +- stat: 0.026 + sys: 0.022 +- stat: 0.024 + sys: 0.062 +- stat: 0.022 + sys: 0.077 +- stat: 0.02 + sys: 0.092 +- stat: 0.018 + sys: 0.097 +- stat: 0.016 + sys: 0.1 +- stat: 0.015 + sys: 0.087 +- stat: 0.014 + sys: 0.081 +- stat: 0.013 + sys: 0.068 +- stat: 0.012 + sys: 0.06 +- stat: 0.012 + sys: 0.053 +- stat: 0.012 + sys: 0.046 +- stat: 0.011 + sys: 0.035 +- stat: 0.01 + sys: 0.03 +- stat: 0.009 + sys: 0.028 +- stat: 0.009 + sys: 0.024 +- stat: 0.009 + sys: 0.024 +- stat: 0.007 + sys: 0.016 +- stat: 0.007 + sys: 0.015 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/data.yaml new file mode 100644 index 0000000000..dc4b193e4a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/data.yaml @@ -0,0 +1,26 @@ +data_central: +- 3.804 +- 4.033 +- 3.809 +- 3.483 +- 2.932 +- 2.478 +- 2.08 +- 1.74 +- 1.363 +- 1.129 +- 0.927 +- 0.76 +- 0.636 +- 0.543 +- 0.424 +- 0.374 +- 0.311 +- 0.255 +- 0.21 +- 0.186 +- 0.174 +- 0.135 +- 0.12 +- 0.093 +- 0.074 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/filter.py new file mode 100644 index 0000000000..01cbf18d10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p671 + +dat_3p671() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/kinematics.yaml new file mode 100644 index 0000000000..ba147d50b5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/kinematics.yaml @@ -0,0 +1,101 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.45 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/metadata.yaml new file mode 100644 index 0000000000..0ff534939b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P671GEV_EE-PIM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 25 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.671 GeV PI- : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/rawdata.py new file mode 120000 index 0000000000..36257e1500 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIM/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/uncertainties.yaml new file mode 100644 index 0000000000..fee92342de --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIM/uncertainties.yaml @@ -0,0 +1,60 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.038 + sys: 0.294 +- stat: 0.039 + sys: 0.292 +- stat: 0.037 + sys: 0.221 +- stat: 0.035 + sys: 0.158 +- stat: 0.032 + sys: 0.076 +- stat: 0.029 + sys: 0.026 +- stat: 0.026 + sys: 0.032 +- stat: 0.024 + sys: 0.055 +- stat: 0.021 + sys: 0.064 +- stat: 0.02 + sys: 0.073 +- stat: 0.018 + sys: 0.078 +- stat: 0.017 + sys: 0.075 +- stat: 0.016 + sys: 0.074 +- stat: 0.015 + sys: 0.075 +- stat: 0.013 + sys: 0.066 +- stat: 0.013 + sys: 0.062 +- stat: 0.012 + sys: 0.058 +- stat: 0.012 + sys: 0.049 +- stat: 0.011 + sys: 0.04 +- stat: 0.01 + sys: 0.038 +- stat: 0.01 + sys: 0.038 +- stat: 0.009 + sys: 0.028 +- stat: 0.008 + sys: 0.026 +- stat: 0.008 + sys: 0.024 +- stat: 0.007 + sys: 0.024 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/data.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/data.yaml new file mode 100644 index 0000000000..a8f4cb0102 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/data.yaml @@ -0,0 +1,26 @@ +data_central: +- 3.792 +- 3.966 +- 3.763 +- 3.376 +- 2.954 +- 2.5 +- 2.055 +- 1.728 +- 1.403 +- 1.147 +- 0.915 +- 0.79 +- 0.637 +- 0.545 +- 0.442 +- 0.379 +- 0.295 +- 0.257 +- 0.204 +- 0.181 +- 0.157 +- 0.13 +- 0.122 +- 0.097 +- 0.072 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/filter.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/filter.py new file mode 100644 index 0000000000..01cbf18d10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/filter.py @@ -0,0 +1,3 @@ +from rawdata import dat_3p671 + +dat_3p671() diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/kinematics.yaml new file mode 100644 index 0000000000..ba147d50b5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/kinematics.yaml @@ -0,0 +1,101 @@ +bins: +- ph: + min: 0.2 + mid: null + max: 0.25 +- ph: + min: 0.25 + mid: null + max: 0.3 +- ph: + min: 0.3 + mid: null + max: 0.35 +- ph: + min: 0.35 + mid: null + max: 0.4 +- ph: + min: 0.4 + mid: null + max: 0.45 +- ph: + min: 0.45 + mid: null + max: 0.5 +- ph: + min: 0.5 + mid: null + max: 0.55 +- ph: + min: 0.55 + mid: null + max: 0.6 +- ph: + min: 0.6 + mid: null + max: 0.65 +- ph: + min: 0.65 + mid: null + max: 0.7 +- ph: + min: 0.7 + mid: null + max: 0.75 +- ph: + min: 0.75 + mid: null + max: 0.8 +- ph: + min: 0.8 + mid: null + max: 0.85 +- ph: + min: 0.85 + mid: null + max: 0.9 +- ph: + min: 0.9 + mid: null + max: 0.95 +- ph: + min: 0.95 + mid: null + max: 1.0 +- ph: + min: 1.0 + mid: null + max: 1.05 +- ph: + min: 1.05 + mid: null + max: 1.1 +- ph: + min: 1.1 + mid: null + max: 1.15 +- ph: + min: 1.15 + mid: null + max: 1.2 +- ph: + min: 1.2 + mid: null + max: 1.25 +- ph: + min: 1.25 + mid: null + max: 1.3 +- ph: + min: 1.3 + mid: null + max: 1.35 +- ph: + min: 1.35 + mid: null + max: 1.4 +- ph: + min: 1.4 + mid: null + max: 1.45 diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/metadata.yaml new file mode 100644 index 0000000000..22b2cec93f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'BESIII_SIA-PI_3P671GEV_EE-PIP' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "BESIII" + +arXiv: + url: "https://arxiv.org/abs/2502.16084" +iNSPIRE: + url: "https://inspirehep.net/literature/2893764" +# hepdata: +# url: "N/A" +# version: N/A + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 25 + tables: [] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'BESIII SIA 3.671 GeV PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/rawdata.py b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/rawdata.py new file mode 120000 index 0000000000..927d76377e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/rawdata.py @@ -0,0 +1 @@ +../BESIII_SIA-PI_2GEV_EE-PIP/rawdata.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/uncertainties.yaml new file mode 100644 index 0000000000..50c303a1a3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/BESIII_SIA-PI_3P671GEV_EE-PIP/uncertainties.yaml @@ -0,0 +1,60 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.038 + sys: 0.297 +- stat: 0.038 + sys: 0.282 +- stat: 0.037 + sys: 0.231 +- stat: 0.034 + sys: 0.158 +- stat: 0.032 + sys: 0.083 +- stat: 0.029 + sys: 0.033 +- stat: 0.026 + sys: 0.028 +- stat: 0.024 + sys: 0.055 +- stat: 0.022 + sys: 0.066 +- stat: 0.02 + sys: 0.074 +- stat: 0.018 + sys: 0.078 +- stat: 0.017 + sys: 0.082 +- stat: 0.016 + sys: 0.076 +- stat: 0.015 + sys: 0.084 +- stat: 0.013 + sys: 0.07 +- stat: 0.013 + sys: 0.066 +- stat: 0.012 + sys: 0.056 +- stat: 0.011 + sys: 0.051 +- stat: 0.011 + sys: 0.043 +- stat: 0.01 + sys: 0.037 +- stat: 0.009 + sys: 0.033 +- stat: 0.009 + sys: 0.028 +- stat: 0.008 + sys: 0.029 +- stat: 0.008 + sys: 0.025 +- stat: 0.007 + sys: 0.023 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml new file mode 100644 index 0000000000..8f198760a1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.667 +- 0.612 +- 0.523 +- 0.585 +- 0.483 +- 0.494 +- 0.398 +- 0.335 +- 0.3225 +- 0.2845 +- 0.249 +- 0.2022 +- 0.1526 +- 0.109 +- 0.083 +- 0.0625 +- 0.0379 +- 0.0199 +- 0.00868 +- 0.00231 +- 0.00062 +- 2.4e-05 +- 7.0e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_q.yaml new file mode 100644 index 0000000000..84f1439fb1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_q.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.558 +- 0.546 +- 0.466 +- 0.45 +- 0.4 +- 0.357 +- 0.292 +- 0.2455 +- 0.2157 +- 0.1953 +- 0.1754 +- 0.1443 +- 0.1123 +- 0.0906 +- 0.072 +- 0.0624 +- 0.04344 +- 0.02917 +- 0.01699 +- 0.00791 +- 0.00364 +- 0.0013 +- 0.000147 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml new file mode 100644 index 0000000000..8719976372 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.527 +- 0.524 +- 0.447 +- 0.398 +- 0.374 +- 0.314 +- 0.253 +- 0.217 +- 0.18 +- 0.16 +- 0.147 +- 0.1189 +- 0.0901 +- 0.0756 +- 0.0629 +- 0.0561 +- 0.0401 +- 0.0287 +- 0.01838 +- 0.00927 +- 0.00471 +- 0.00211 +- 0.00027 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..e9fa3e7d18 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter.py @@ -0,0 +1,35 @@ +from filter_core import magic +import yaml + +table_q = "rawdata/Table20.yaml" +table_b = "rawdata/Table28.yaml" +table_uds = "rawdata/Table36.yaml" +ndat = 23 +var_name = 'ph' + +data_q, kin_q, err_q = magic(table_q, ndat, var_name) + +with open('data_q.yaml', 'w') as f: + yaml.dump(data_q, f, sort_keys=False) +with open('kinematics_q.yaml', 'w') as f: + yaml.dump(kin_q, f, sort_keys=False) +with open('uncertainties_q.yaml', 'w') as f: + yaml.dump(err_q, f, sort_keys=False) + +data_b, kin_b, err_b = magic(table_b, ndat, var_name) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) + +data_uds, kin_uds, err_uds = magic(table_uds, ndat, var_name) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..b8082d8849 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_q.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_q.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..73c296549a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,87 @@ +setname: 'DELPHI_SIA-KA_91P2GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "DELPHI" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/473409" +hepdata: + url: "https://www.hepdata.net/record/ins473409" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH-INC + process_type: SIA_PH + ndata: 23 + tables: [20] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_q.yaml + data_central: data_q.yaml + data_uncertainties: + - uncertainties_q.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$', units: '$$'} + observable_name: PH-UDS + process_type: SIA_PH + ndata: 23 + tables: [36] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA KA- + KA+ (UDS tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$', units: '$$'} + observable_name: PH-B + process_type: SIA_PH + ndata: 23 + tables: [28] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA KA- + KA+ (B tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..f44aea50ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml new file mode 100644 index 0000000000..38eb1d681b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.09 + sys: 0.084 +- stat: 0.064 + sys: 0.083 +- stat: 0.06 + sys: 0.08 +- stat: 0.051 + sys: 0.05 +- stat: 0.061 + sys: 0.075 +- stat: 0.025 + sys: 0.076 +- stat: 0.016 + sys: 0.078 +- stat: 0.018 + sys: 0.02 +- stat: 0.0096 + sys: 0.0203 +- stat: 0.0055 + sys: 0.0211 +- stat: 0.01 + sys: 0.015 +- stat: 0.0061 + sys: 0.0106 +- stat: 0.007 + sys: 0.0101 +- stat: 0.011 + sys: 0.01 +- stat: 0.011 + sys: 0.012 +- stat: 0.005 + sys: 0.0087 +- stat: 0.0013 + sys: 0.0017 +- stat: 0.0011 + sys: 0.0011 +- stat: 0.00068 + sys: 0.00059 +- stat: 0.00041 + sys: 0.00027 +- stat: 0.00023 + sys: 6.0e-05 +- stat: 6.2e-05 + sys: 5.0e-06 +- stat: 3.6e-06 + sys: 9.0e-07 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_q.yaml new file mode 100644 index 0000000000..1726e3ad81 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_q.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.031 + sys: 0.077 +- stat: 0.021 + sys: 0.073 +- stat: 0.018 + sys: 0.066 +- stat: 0.02 + sys: 0.04 +- stat: 0.022 + sys: 0.056 +- stat: 0.016 + sys: 0.061 +- stat: 0.015 + sys: 0.063 +- stat: 0.008 + sys: 0.0154 +- stat: 0.0061 + sys: 0.0154 +- stat: 0.0054 + sys: 0.012 +- stat: 0.0052 + sys: 0.0121 +- stat: 0.0035 + sys: 0.0097 +- stat: 0.004 + sys: 0.006 +- stat: 0.0052 + sys: 0.0083 +- stat: 0.006 + sys: 0.009 +- stat: 0.0033 + sys: 0.0086 +- stat: 0.00082 + sys: 0.00204 +- stat: 0.00073 + sys: 0.00155 +- stat: 0.00044 + sys: 0.00115 +- stat: 0.00033 + sys: 0.00079 +- stat: 0.00025 + sys: 0.00036 +- stat: 0.00017 + sys: 0.00027 +- stat: 8.2e-05 + sys: 0.000108 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..28aeb46253 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.047 + sys: 0.061 +- stat: 0.037 + sys: 0.058 +- stat: 0.033 + sys: 0.052 +- stat: 0.031 + sys: 0.031 +- stat: 0.036 + sys: 0.045 +- stat: 0.04 + sys: 0.047 +- stat: 0.045 + sys: 0.049 +- stat: 0.014 + sys: 0.012 +- stat: 0.014 + sys: 0.013 +- stat: 0.01 + sys: 0.009 +- stat: 0.01 + sys: 0.009 +- stat: 0.0078 + sys: 0.0068 +- stat: 0.0064 + sys: 0.0043 +- stat: 0.0088 + sys: 0.0063 +- stat: 0.0093 + sys: 0.0065 +- stat: 0.0071 + sys: 0.0069 +- stat: 0.0015 + sys: 0.0017 +- stat: 0.0013 + sys: 0.0015 +- stat: 0.00082 + sys: 0.00112 +- stat: 0.00055 + sys: 0.00077 +- stat: 0.00036 + sys: 0.00047 +- stat: 0.00026 + sys: 0.00033 +- stat: 0.00012 + sys: 0.00015 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml new file mode 100644 index 0000000000..6bd6a76d3c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml @@ -0,0 +1,24 @@ +data_central: +- 7.781 +- 6.334 +- 5.205 +- 4.28 +- 3.595 +- 2.768 +- 2.14 +- 1.674 +- 1.312 +- 1.049 +- 0.853 +- 0.6166 +- 0.4124 +- 0.2861 +- 0.201 +- 0.1457 +- 0.081 +- 0.0409 +- 0.01858 +- 0.00629 +- 0.00252 +- 0.00081 +- 1.6e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_q.yaml new file mode 100644 index 0000000000..805dd6d7c1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_q.yaml @@ -0,0 +1,24 @@ +data_central: +- 6.908 +- 5.495 +- 4.486 +- 3.688 +- 3.088 +- 2.426 +- 1.839 +- 1.443 +- 1.1517 +- 0.9364 +- 0.7714 +- 0.5961 +- 0.4306 +- 0.3211 +- 0.2464 +- 0.1877 +- 0.1194 +- 0.06922 +- 0.03661 +- 0.0149 +- 0.00673 +- 0.00214 +- 0.000298 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml new file mode 100644 index 0000000000..d6ace44a6a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml @@ -0,0 +1,24 @@ +data_central: +- 6.65 +- 5.231 +- 4.245 +- 3.487 +- 2.902 +- 2.296 +- 1.729 +- 1.351 +- 1.101 +- 0.901 +- 0.747 +- 0.59 +- 0.4369 +- 0.3324 +- 0.2635 +- 0.2037 +- 0.1333 +- 0.0812 +- 0.0449 +- 0.01938 +- 0.0093 +- 0.0029 +- 0.00042 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..8029c362e3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter.py @@ -0,0 +1,35 @@ +from filter_core import magic +import yaml + +table_q = "rawdata/Table18.yaml" +table_b = "rawdata/Table26.yaml" +table_uds = "rawdata/Table34.yaml" +ndat = 23 +var_name = 'ph' + +data_q, kin_q, err_q = magic(table_q, ndat, var_name) + +with open('data_q.yaml', 'w') as f: + yaml.dump(data_q, f, sort_keys=False) +with open('kinematics_q.yaml', 'w') as f: + yaml.dump(kin_q, f, sort_keys=False) +with open('uncertainties_q.yaml', 'w') as f: + yaml.dump(err_q, f, sort_keys=False) + +data_b, kin_b, err_b = magic(table_b, ndat, var_name) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) + +data_uds, kin_uds, err_uds = magic(table_uds, ndat, var_name) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..08ae7e14ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter_core.py @@ -0,0 +1,49 @@ +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + + kin_value = {var_name: {'min': kin_min, 'mid': None, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_q.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_q.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..5d5c44a818 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,87 @@ +setname: 'DELPHI_SIA-PI_91P2GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "DELPHI" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/473409" +hepdata: + url: "https://www.hepdata.net/record/ins473409" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH-INC + process_type: SIA_PH + ndata: 23 + tables: [18] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_q.yaml + data_central: data_q.yaml + data_uncertainties: + - uncertainties_q.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$', units: '$$'} + observable_name: PH-UDS + process_type: SIA_PH + ndata: 23 + tables: [34] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PI- + PI+ (UDS tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$', units: '$$'} + observable_name: PH-B + process_type: SIA_PH + ndata: 23 + tables: [26] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PI- + PI+ (B tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..402374fe10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.19} + - {label: sys, symerror: 0.29} + value: 20.81 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.17} + - {label: sys, symerror: 0.86} + value: 17.26 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.03} + - {label: sys, symerror: 0.04} + value: 2.21 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.02} + - {label: sys, symerror: 0.02} + value: 1.08 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.04} + - {label: sys, symerror: 0.05} + value: 3.3 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 91.2} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml new file mode 100755 index 0000000000..4b837076e6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.84} + - {label: sys, symerror: 0.78} + value: 3.65 + - errors: + - {label: stat, symerror: 0.81} + - {label: sys, symerror: 0.68} + value: 4.2 + - errors: + - {label: stat, symerror: 1.06} + - {label: sys, symerror: 0.82} + value: 3.99 + - errors: + - {label: stat, symerror: 0.96} + - {label: sys, symerror: 0.54} + value: 4.94 + - errors: + - {label: stat, symerror: 0.86} + - {label: sys, symerror: 0.58} + value: 5.36 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.65} + value: 6.0 + - errors: + - {label: stat, symerror: 0.82} + - {label: sys, symerror: 0.74} + value: 5.06 + - errors: + - {label: stat, symerror: 0.59} + - {label: sys, symerror: 0.57} + value: 4.78 + - errors: + - {label: stat, symerror: 0.65} + - {label: sys, symerror: 0.59} + value: 4.96 + - errors: + - {label: stat, symerror: 0.78} + - {label: sys, symerror: 0.68} + value: 5.54 + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.87} + value: 5.6 + - errors: + - {label: stat, symerror: 0.91} + - {label: sys, symerror: 0.68} + value: 7.11 + - errors: + - {label: stat, symerror: 1.69} + - {label: sys, symerror: 1.21} + value: 9.16 + - errors: + - {label: stat, symerror: 3.1} + - {label: sys, symerror: 1.2} + value: 10.34 + - errors: + - {label: stat, symerror: 5.13} + - {label: sys, symerror: 2.42} + value: 11.5 + - errors: + - {label: stat, symerror: 3.32} + - {label: sys, symerror: 1.72} + value: 11.38 + - errors: + - {label: stat, symerror: 1.64} + - {label: sys, symerror: 1.25} + value: 10.88 + - errors: + - {label: stat, symerror: 1.49} + - {label: sys, symerror: 0.94} + value: 10.43 + - errors: + - {label: stat, symerror: 1.11} + - {label: sys, symerror: 0.71} + value: 7.87 + - errors: + - {label: stat, symerror: 1.34} + - {label: sys, symerror: 0.91} + value: 5.71 + - errors: + - {label: stat, symerror: 2.05} + - {label: sys, symerror: 1.15} + value: 4.72 + - errors: + - {label: stat, symerror: 5.28} + - {label: sys, symerror: 3.7} + value: 4.08 + - errors: + - {label: stat, symerror: 137.3} + - {label: sys, symerror: 113.0} + value: 29.72 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml new file mode 100755 index 0000000000..10d492d65c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.2} + - {label: sys, symerror: 0.8} + value: 10.47 + - errors: + - {label: stat, symerror: 1.18} + - {label: sys, symerror: 0.98} + value: 11.95 + - errors: + - {label: stat, symerror: 1.27} + - {label: sys, symerror: 1.01} + value: 13.79 + - errors: + - {label: stat, symerror: 1.3} + - {label: sys, symerror: 0.87} + value: 14.73 + - errors: + - {label: stat, symerror: 1.83} + - {label: sys, symerror: 1.37} + value: 16.26 + - errors: + - {label: stat, symerror: 2.12} + - {label: sys, symerror: 1.69} + value: 18.73 + - errors: + - {label: stat, symerror: 2.5} + - {label: sys, symerror: 2.12} + value: 19.94 + - errors: + - {label: stat, symerror: 1.16} + - {label: sys, symerror: 0.73} + value: 21.57 + - errors: + - {label: stat, symerror: 1.11} + - {label: sys, symerror: 0.8} + value: 22.01 + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.62} + value: 24.13 + - errors: + - {label: stat, symerror: 1.23} + - {label: sys, symerror: 0.83} + value: 25.76 + - errors: + - {label: stat, symerror: 1.15} + - {label: sys, symerror: 0.87} + value: 27.97 + - errors: + - {label: stat, symerror: 1.16} + - {label: sys, symerror: 0.7} + value: 30.82 + - errors: + - {label: stat, symerror: 1.43} + - {label: sys, symerror: 0.72} + value: 32.8 + - errors: + - {label: stat, symerror: 1.47} + - {label: sys, symerror: 0.69} + value: 33.22 + - errors: + - {label: stat, symerror: 1.43} + - {label: sys, symerror: 0.74} + value: 34.47 + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.74} + value: 33.85 + - errors: + - {label: stat, symerror: 1.41} + - {label: sys, symerror: 0.8} + value: 32.01 + - errors: + - {label: stat, symerror: 1.46} + - {label: sys, symerror: 1.08} + value: 27.42 + - errors: + - {label: stat, symerror: 2.33} + - {label: sys, symerror: 1.94} + value: 20.66 + - errors: + - {label: stat, symerror: 2.25} + - {label: sys, symerror: 1.17} + value: 15.72 + - errors: + - {label: stat, symerror: 3.12} + - {label: sys, symerror: 1.94} + value: 13.18 + - errors: + - {label: stat, symerror: 20.28} + - {label: sys, symerror: 11.29} + value: 17.98 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table12.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table12.yaml new file mode 100755 index 0000000000..e366ef9bf4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table12.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.8} + - {label: sys, symerror: 0.6} + value: 88.87 + - errors: + - {label: stat, symerror: 0.98} + - {label: sys, symerror: 0.81} + value: 86.56 + - errors: + - {label: stat, symerror: 0.95} + - {label: sys, symerror: 0.73} + value: 85.28 + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.72} + value: 83.9 + - errors: + - {label: stat, symerror: 1.07} + - {label: sys, symerror: 0.76} + value: 82.51 + - errors: + - {label: stat, symerror: 1.21} + - {label: sys, symerror: 1.03} + value: 81.13 + - errors: + - {label: stat, symerror: 1.78} + - {label: sys, symerror: 1.6} + value: 80.34 + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.77} + value: 79.71 + - errors: + - {label: stat, symerror: 1.31} + - {label: sys, symerror: 1.16} + value: 78.77 + - errors: + - {label: stat, symerror: 1.13} + - {label: sys, symerror: 0.92} + value: 77.5 + - errors: + - {label: stat, symerror: 1.06} + - {label: sys, symerror: 0.78} + value: 76.73 + - errors: + - {label: stat, symerror: 1.0} + - {label: sys, symerror: 0.83} + value: 75.61 + - errors: + - {label: stat, symerror: 1.04} + - {label: sys, symerror: 0.8} + value: 74.6 + - errors: + - {label: stat, symerror: 1.16} + - {label: sys, symerror: 0.85} + value: 73.55 + - errors: + - {label: stat, symerror: 1.24} + - {label: sys, symerror: 0.78} + value: 72.56 + - errors: + - {label: stat, symerror: 1.54} + - {label: sys, symerror: 1.27} + value: 70.47 + - errors: + - {label: stat, symerror: 0.93} + - {label: sys, symerror: 0.79} + value: 68.81 + - errors: + - {label: stat, symerror: 1.15} + - {label: sys, symerror: 0.84} + value: 66.22 + - errors: + - {label: stat, symerror: 1.22} + - {label: sys, symerror: 1.03} + value: 64.12 + - errors: + - {label: stat, symerror: 1.73} + - {label: sys, symerror: 1.37} + value: 60.17 + - errors: + - {label: stat, symerror: 2.25} + - {label: sys, symerror: 1.32} + value: 59.25 + - errors: + - {label: stat, symerror: 5.45} + - {label: sys, symerror: 4.61} + value: 56.75 + - errors: + - {label: stat, symerror: 14.56} + - {label: sys, symerror: 9.0} + value: 56.19 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table13.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table13.yaml new file mode 100755 index 0000000000..6ecdffdd19 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table13.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.03} + - {label: sys, symerror: 0.95} + value: 7.34 + - errors: + - {label: stat, symerror: 1.18} + - {label: sys, symerror: 1.13} + value: 8.78 + - errors: + - {label: stat, symerror: 1.27} + - {label: sys, symerror: 1.22} + value: 8.98 + - errors: + - {label: stat, symerror: 1.05} + - {label: sys, symerror: 0.93} + value: 10.27 + - errors: + - {label: stat, symerror: 1.61} + - {label: sys, symerror: 1.48} + value: 10.52 + - errors: + - {label: stat, symerror: 2.06} + - {label: sys, symerror: 1.98} + value: 11.43 + - errors: + - {label: stat, symerror: 2.77} + - {label: sys, symerror: 2.69} + value: 11.72 + - errors: + - {label: stat, symerror: 0.86} + - {label: sys, symerror: 0.76} + value: 11.99 + - errors: + - {label: stat, symerror: 1.07} + - {label: sys, symerror: 1.01} + value: 12.65 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.82} + value: 13.57 + - errors: + - {label: stat, symerror: 1.09} + - {label: sys, symerror: 1.0} + value: 14.45 + - errors: + - {label: stat, symerror: 1.0} + - {label: sys, symerror: 0.92} + value: 14.91 + - errors: + - {label: stat, symerror: 0.97} + - {label: sys, symerror: 0.76} + value: 15.59 + - errors: + - {label: stat, symerror: 1.86} + - {label: sys, symerror: 1.53} + value: 16.52 + - errors: + - {label: stat, symerror: 2.53} + - {label: sys, symerror: 2.0} + value: 17.01 + - errors: + - {label: stat, symerror: 2.84} + - {label: sys, symerror: 2.65} + value: 18.86 + - errors: + - {label: stat, symerror: 0.75} + - {label: sys, symerror: 0.68} + value: 20.33 + - errors: + - {label: stat, symerror: 1.21} + - {label: sys, symerror: 1.09} + value: 23.14 + - errors: + - {label: stat, symerror: 1.66} + - {label: sys, symerror: 1.58} + value: 25.6 + - errors: + - {label: stat, symerror: 2.79} + - {label: sys, symerror: 2.62} + value: 28.87 + - errors: + - {label: stat, symerror: 3.82} + - {label: sys, symerror: 3.34} + value: 30.59 + - errors: + - {label: stat, symerror: 6.8} + - {label: sys, symerror: 5.79} + value: 34.77 + - errors: + - {label: stat, symerror: 24.47} + - {label: sys, symerror: 18.19} + value: 27.88 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table14.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table14.yaml new file mode 100755 index 0000000000..88c70bad99 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table14.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.06} + - {label: sys, symerror: 1.04} + value: 4.3 + - errors: + - {label: stat, symerror: 1.06} + - {label: sys, symerror: 1.0} + value: 5.1 + - errors: + - {label: stat, symerror: 1.05} + - {label: sys, symerror: 0.93} + value: 5.02 + - errors: + - {label: stat, symerror: 0.89} + - {label: sys, symerror: 0.71} + value: 6.4 + - errors: + - {label: stat, symerror: 0.96} + - {label: sys, symerror: 0.85} + value: 7.13 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.76} + value: 8.4 + - errors: + - {label: stat, symerror: 0.91} + - {label: sys, symerror: 0.86} + value: 7.45 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.78} + value: 7.17 + - errors: + - {label: stat, symerror: 0.78} + - {label: sys, symerror: 0.73} + value: 7.62 + - errors: + - {label: stat, symerror: 1.03} + - {label: sys, symerror: 0.98} + value: 8.31 + - errors: + - {label: stat, symerror: 1.17} + - {label: sys, symerror: 1.1} + value: 7.99 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.81} + value: 9.11 + - errors: + - {label: stat, symerror: 1.42} + - {label: sys, symerror: 1.25} + value: 9.91 + - errors: + - {label: stat, symerror: 1.92} + - {label: sys, symerror: 1.47} + value: 10.0 + - errors: + - {label: stat, symerror: 2.48} + - {label: sys, symerror: 1.57} + value: 10.55 + - errors: + - {label: stat, symerror: 2.09} + - {label: sys, symerror: 1.61} + value: 10.41 + - errors: + - {label: stat, symerror: 1.18} + - {label: sys, symerror: 1.07} + value: 10.22 + - errors: + - {label: stat, symerror: 1.4} + - {label: sys, symerror: 1.27} + value: 10.84 + - errors: + - {label: stat, symerror: 1.15} + - {label: sys, symerror: 1.03} + value: 9.74 + - errors: + - {label: stat, symerror: 1.71} + - {label: sys, symerror: 1.57} + value: 9.7 + - errors: + - {label: stat, symerror: 2.03} + - {label: sys, symerror: 1.71} + value: 8.74 + - errors: + - {label: stat, symerror: 2.71} + - {label: sys, symerror: 2.09} + value: 6.76 + - errors: + - {label: stat, symerror: 5.93} + - {label: sys, symerror: 4.2} + value: 8.17 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table15.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table15.yaml new file mode 100755 index 0000000000..f4a0572dda --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table15.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.98} + - {label: sys, symerror: 0.86} + value: 11.75 + - errors: + - {label: stat, symerror: 1.26} + - {label: sys, symerror: 1.2} + value: 13.52 + - errors: + - {label: stat, symerror: 1.14} + - {label: sys, symerror: 1.04} + value: 15.5 + - errors: + - {label: stat, symerror: 1.27} + - {label: sys, symerror: 1.11} + value: 16.36 + - errors: + - {label: stat, symerror: 1.53} + - {label: sys, symerror: 1.34} + value: 17.53 + - errors: + - {label: stat, symerror: 2.33} + - {label: sys, symerror: 2.21} + value: 19.52 + - errors: + - {label: stat, symerror: 2.44} + - {label: sys, symerror: 2.32} + value: 19.87 + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.91} + value: 20.53 + - errors: + - {label: stat, symerror: 0.87} + - {label: sys, symerror: 0.78} + value: 20.41 + - errors: + - {label: stat, symerror: 0.7} + - {label: sys, symerror: 0.57} + value: 21.87 + - errors: + - {label: stat, symerror: 0.8} + - {label: sys, symerror: 0.66} + value: 22.99 + - errors: + - {label: stat, symerror: 0.67} + - {label: sys, symerror: 0.58} + value: 24.21 + - errors: + - {label: stat, symerror: 0.75} + - {label: sys, symerror: 0.61} + value: 25.59 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.58} + value: 26.82 + - errors: + - {label: stat, symerror: 0.83} + - {label: sys, symerror: 0.56} + value: 27.48 + - errors: + - {label: stat, symerror: 0.89} + - {label: sys, symerror: 0.7} + value: 29.28 + - errors: + - {label: stat, symerror: 0.74} + - {label: sys, symerror: 0.67} + value: 30.72 + - errors: + - {label: stat, symerror: 1.17} + - {label: sys, symerror: 1.0} + value: 33.29 + - errors: + - {label: stat, symerror: 1.69} + - {label: sys, symerror: 1.58} + value: 34.96 + - errors: + - {label: stat, symerror: 3.0} + - {label: sys, symerror: 2.81} + value: 37.69 + - errors: + - {label: stat, symerror: 3.99} + - {label: sys, symerror: 3.59} + value: 38.56 + - errors: + - {label: stat, symerror: 3.98} + - {label: sys, symerror: 2.95} + value: 41.99 + - errors: + - {label: stat, symerror: 15.98} + - {label: sys, symerror: 11.7} + value: 46.0 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table16.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table16.yaml new file mode 100755 index 0000000000..b207555fb0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table16.yaml @@ -0,0 +1,146 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.47} + - {label: sys, symerror: 0.74} + value: 11.22 + - errors: + - {label: stat, symerror: 0.3} + - {label: sys, symerror: 0.52} + value: 10.95 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.24} + value: 10.3 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.23} + value: 9.25 + - errors: + - {label: stat, symerror: 0.15} + - {label: sys, symerror: 0.22} + value: 7.79 + - errors: + - {label: stat, symerror: 0.062} + - {label: sys, symerror: 0.082} + value: 6.36 + - errors: + - {label: stat, symerror: 0.065} + - {label: sys, symerror: 0.079} + value: 5.273 + - errors: + - {label: stat, symerror: 0.035} + - {label: sys, symerror: 0.041} + value: 4.412 + - errors: + - {label: stat, symerror: 0.035} + - {label: sys, symerror: 0.039} + value: 3.764 + - errors: + - {label: stat, symerror: 0.028} + - {label: sys, symerror: 0.03} + value: 3.018 + - errors: + - {label: stat, symerror: 0.023} + - {label: sys, symerror: 0.024} + value: 2.325 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.021} + value: 1.853 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.019} + value: 1.506 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.017} + value: 1.253 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.016} + value: 1.049 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.014} + value: 0.83 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.011} + value: 0.616 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.009} + value: 0.471 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.0074} + value: 0.3684 + - errors: + - {label: stat, symerror: 0.0074} + - {label: sys, symerror: 0.006} + value: 0.2907 + - errors: + - {label: stat, symerror: 0.0055} + - {label: sys, symerror: 0.0043} + value: 0.1911 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0027} + value: 0.1159 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0015} + value: 0.0635 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0007} + value: 0.0273 + - errors: + - {label: stat, symerror: 0.00057} + - {label: sys, symerror: 0.00037} + value: 0.01216 + - errors: + - {label: stat, symerror: 0.00039} + - {label: sys, symerror: 0.00027} + value: 0.00384 + - errors: + - {label: stat, symerror: 9.6e-05} + - {label: sys, symerror: 5.0e-05} + value: 0.00053 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.36, low: 0.3} + - {high: 0.46, low: 0.36} + - {high: 0.57, low: 0.46} + - {high: 0.7, low: 0.57} + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table17.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table17.yaml new file mode 100755 index 0000000000..1f0ca260b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table17.yaml @@ -0,0 +1,119 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 39.8} + value: 511.8 + - errors: + - {symerror: 27.4} + value: 499.4 + - errors: + - {symerror: 13.0} + value: 470.0 + - errors: + - {symerror: 12.8} + value: 422.1 + - errors: + - {symerror: 12.1} + value: 355.1 + - errors: + - {symerror: 4.67} + value: 290.08 + - errors: + - {symerror: 4.67} + value: 240.5 + - errors: + - {symerror: 2.43} + value: 201.22 + - errors: + - {symerror: 2.41} + value: 171.7 + - errors: + - {symerror: 1.88} + value: 137.68 + - errors: + - {symerror: 1.5} + value: 106.03 + - errors: + - {symerror: 1.35} + value: 84.52 + - errors: + - {symerror: 1.22} + value: 68.71 + - errors: + - {symerror: 1.13} + value: 57.15 + - errors: + - {symerror: 1.04} + value: 47.84 + - errors: + - {symerror: 0.93} + value: 37.86 + - errors: + - {symerror: 0.76} + value: 28.09 + - errors: + - {symerror: 0.63} + value: 21.48 + - errors: + - {symerror: 0.53} + value: 16.8 + - errors: + - {symerror: 0.43} + value: 13.26 + - errors: + - {symerror: 0.32} + value: 8.72 + - errors: + - {symerror: 0.2} + value: 5.29 + - errors: + - {symerror: 0.12} + value: 2.9 + - errors: + - {symerror: 0.058} + value: 1.243 + - errors: + - {symerror: 0.031} + value: 0.554 + - errors: + - {symerror: 0.022} + value: 0.175 + - errors: + - {symerror: 0.005} + value: 0.0242 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.008, low: 0.007} + - {high: 0.01, low: 0.008} + - {high: 0.012, low: 0.01} + - {high: 0.015, low: 0.012} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table18.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table18.yaml new file mode 100755 index 0000000000..a66cd5a92f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table18.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.039} + - {label: sys, symerror: 0.239} + value: 6.908 + - errors: + - {label: stat, symerror: 0.032} + - {label: sys, symerror: 0.101} + value: 5.495 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.095} + value: 4.486 + - errors: + - {label: stat, symerror: 0.027} + - {label: sys, symerror: 0.055} + value: 3.688 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.051} + value: 3.088 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.046} + value: 2.426 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.043} + value: 1.839 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.027} + value: 1.443 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0257} + value: 1.1517 + - errors: + - {label: stat, symerror: 0.0072} + - {label: sys, symerror: 0.0216} + value: 0.9364 + - errors: + - {label: stat, symerror: 0.0065} + - {label: sys, symerror: 0.0183} + value: 0.7714 + - errors: + - {label: stat, symerror: 0.0042} + - {label: sys, symerror: 0.0157} + value: 0.5961 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0124} + value: 0.4306 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0101} + value: 0.3211 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0082} + value: 0.2464 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.007} + value: 0.1877 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0045} + value: 0.1194 + - errors: + - {label: stat, symerror: 0.00096} + - {label: sys, symerror: 0.00277} + value: 0.06922 + - errors: + - {label: stat, symerror: 0.00066} + - {label: sys, symerror: 0.00154} + value: 0.03661 + - errors: + - {label: stat, symerror: 0.00042} + - {label: sys, symerror: 0.00071} + value: 0.0149 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.00037} + value: 0.00673 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.00024} + value: 0.00214 + - errors: + - {label: stat, symerror: 8.4e-05} + - {label: sys, symerror: 5.6e-05} + value: 0.000298 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table19.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table19.yaml new file mode 100755 index 0000000000..4e7b7e73f0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table19.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 11.1} + value: 315.1 + - errors: + - {symerror: 4.83} + value: 250.66 + - errors: + - {symerror: 4.54} + value: 204.61 + - errors: + - {symerror: 2.79} + value: 168.23 + - errors: + - {symerror: 2.61} + value: 140.85 + - errors: + - {symerror: 2.23} + value: 110.65 + - errors: + - {symerror: 2.1} + value: 83.88 + - errors: + - {symerror: 1.33} + value: 65.83 + - errors: + - {symerror: 1.23} + value: 52.53 + - errors: + - {symerror: 1.04} + value: 42.71 + - errors: + - {symerror: 0.89} + value: 35.19 + - errors: + - {symerror: 0.74} + value: 27.19 + - errors: + - {symerror: 0.59} + value: 19.64 + - errors: + - {symerror: 0.48} + value: 14.65 + - errors: + - {symerror: 0.4} + value: 11.24 + - errors: + - {symerror: 0.34} + value: 8.56 + - errors: + - {symerror: 0.21} + value: 5.45 + - errors: + - {symerror: 0.13} + value: 3.16 + - errors: + - {symerror: 0.077} + value: 1.67 + - errors: + - {symerror: 0.038} + value: 0.68 + - errors: + - {symerror: 0.022} + value: 0.307 + - errors: + - {symerror: 0.014} + value: 0.097 + - errors: + - {symerror: 0.0046} + value: 0.0136 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..b4ecc9f353 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.21} + - {label: sys, symerror: 0.3} + value: 23.17 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.12} + - {label: sys, symerror: 0.2} + - {label: sys, symerror: 0.92} + value: 18.56 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.08} + - {label: sys, symerror: 0.04} + - {label: sys, symerror: 0.04} + value: 2.59 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.03} + - {label: sys, symerror: 0.02} + value: 1.07 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.04} + - {label: sys, symerror: 0.05} + value: 3.69 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 91.2} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table20.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table20.yaml new file mode 100755 index 0000000000..33b525791a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table20.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.077} + value: 0.558 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.073} + value: 0.546 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.066} + value: 0.466 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.04} + value: 0.45 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.056} + value: 0.4 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.061} + value: 0.357 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.063} + value: 0.292 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.0154} + value: 0.2455 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0154} + value: 0.2157 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.012} + value: 0.1953 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0121} + value: 0.1754 + - errors: + - {label: stat, symerror: 0.0035} + - {label: sys, symerror: 0.0097} + value: 0.1443 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.006} + value: 0.1123 + - errors: + - {label: stat, symerror: 0.0052} + - {label: sys, symerror: 0.0083} + value: 0.0906 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.009} + value: 0.072 + - errors: + - {label: stat, symerror: 0.0033} + - {label: sys, symerror: 0.0086} + value: 0.0624 + - errors: + - {label: stat, symerror: 0.00082} + - {label: sys, symerror: 0.00204} + value: 0.04344 + - errors: + - {label: stat, symerror: 0.00073} + - {label: sys, symerror: 0.00155} + value: 0.02917 + - errors: + - {label: stat, symerror: 0.00044} + - {label: sys, symerror: 0.00115} + value: 0.01699 + - errors: + - {label: stat, symerror: 0.00033} + - {label: sys, symerror: 0.00079} + value: 0.00791 + - errors: + - {label: stat, symerror: 0.00025} + - {label: sys, symerror: 0.00036} + value: 0.00364 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.00027} + value: 0.0013 + - errors: + - {label: stat, symerror: 8.2e-05} + - {label: sys, symerror: 0.000108} + value: 0.000147 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table21.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table21.yaml new file mode 100755 index 0000000000..6efdb0a6b2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table21.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 3.77} + value: 25.46 + - errors: + - {symerror: 3.46} + value: 24.9 + - errors: + - {symerror: 3.13} + value: 21.27 + - errors: + - {symerror: 2.05} + value: 20.54 + - errors: + - {symerror: 2.76} + value: 18.26 + - errors: + - {symerror: 2.87} + value: 16.3 + - errors: + - {symerror: 2.94} + value: 13.31 + - errors: + - {symerror: 0.79} + value: 11.2 + - errors: + - {symerror: 0.76} + value: 9.84 + - errors: + - {symerror: 0.6} + value: 8.91 + - errors: + - {symerror: 0.6} + value: 8.0 + - errors: + - {symerror: 0.47} + value: 6.58 + - errors: + - {symerror: 0.33} + value: 5.12 + - errors: + - {symerror: 0.45} + value: 4.13 + - errors: + - {symerror: 0.49} + value: 3.29 + - errors: + - {symerror: 0.42} + value: 2.85 + - errors: + - {symerror: 0.1} + value: 1.98 + - errors: + - {symerror: 0.078} + value: 1.331 + - errors: + - {symerror: 0.056} + value: 0.775 + - errors: + - {symerror: 0.039} + value: 0.361 + - errors: + - {symerror: 0.02} + value: 0.166 + - errors: + - {symerror: 0.015} + value: 0.059 + - errors: + - {symerror: 0.0062} + value: 0.0067 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table22.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table22.yaml new file mode 100755 index 0000000000..87fd39ec54 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table22.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.072} + value: 0.32 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.053} + value: 0.308 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.043} + value: 0.249 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.03} + value: 0.263 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.027} + value: 0.249 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.021} + value: 0.232 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0175} + value: 0.1566 + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0123} + value: 0.1198 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0097} + value: 0.1028 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0108} + value: 0.0934 + - errors: + - {label: stat, symerror: 0.0035} + - {label: sys, symerror: 0.0097} + value: 0.0758 + - errors: + - {label: stat, symerror: 0.0027} + - {label: sys, symerror: 0.0066} + value: 0.0695 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0069} + value: 0.0579 + - errors: + - {label: stat, symerror: 0.0054} + - {label: sys, symerror: 0.0062} + value: 0.0457 + - errors: + - {label: stat, symerror: 0.0065} + - {label: sys, symerror: 0.0063} + value: 0.0382 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0046} + value: 0.0299 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0021} + value: 0.0193 + - errors: + - {label: stat, symerror: 0.00076} + - {label: sys, symerror: 0.0014} + value: 0.01246 + - errors: + - {label: stat, symerror: 0.00036} + - {label: sys, symerror: 0.00065} + value: 0.00616 + - errors: + - {label: stat, symerror: 0.00021} + - {label: sys, symerror: 0.00044} + value: 0.0026 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 0.00023} + value: 0.00106 + - errors: + - {label: stat, symerror: 8.4e-05} + - {label: sys, symerror: 0.000107} + value: 0.000269 + - errors: + - {label: stat, symerror: 5.9e-05} + - {label: sys, symerror: 2.8e-05} + value: 4.6e-05 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table23.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table23.yaml new file mode 100755 index 0000000000..9eaf7d0eec --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table23.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 3.37} + value: 14.61 + - errors: + - {symerror: 2.58} + value: 14.06 + - errors: + - {symerror: 2.22} + value: 11.34 + - errors: + - {symerror: 1.66} + value: 12.01 + - errors: + - {symerror: 1.4} + value: 11.35 + - errors: + - {symerror: 1.1} + value: 10.58 + - errors: + - {symerror: 0.85} + value: 7.14 + - errors: + - {symerror: 0.58} + value: 5.46 + - errors: + - {symerror: 0.47} + value: 4.69 + - errors: + - {symerror: 0.52} + value: 4.26 + - errors: + - {symerror: 0.47} + value: 3.46 + - errors: + - {symerror: 0.32} + value: 3.17 + - errors: + - {symerror: 0.35} + value: 2.64 + - errors: + - {symerror: 0.37} + value: 2.08 + - errors: + - {symerror: 0.41} + value: 1.74 + - errors: + - {symerror: 0.27} + value: 1.37 + - errors: + - {symerror: 0.11} + value: 0.88 + - errors: + - {symerror: 0.073} + value: 0.569 + - errors: + - {symerror: 0.034} + value: 0.281 + - errors: + - {symerror: 0.022} + value: 0.119 + - errors: + - {symerror: 0.013} + value: 0.048 + - errors: + - {symerror: 0.0062} + value: 0.0123 + - errors: + - {symerror: 0.003} + value: 0.0021 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table24.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table24.yaml new file mode 100755 index 0000000000..191f423e1a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table24.yaml @@ -0,0 +1,146 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.46} + - {label: sys, symerror: 0.74} + value: 12.05 + - errors: + - {label: stat, symerror: 0.3} + - {label: sys, symerror: 0.52} + value: 11.8 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.24} + value: 11.23 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.23} + value: 10.28 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.22} + value: 8.84 + - errors: + - {label: stat, symerror: 0.064} + - {label: sys, symerror: 0.082} + value: 7.336 + - errors: + - {label: stat, symerror: 0.065} + - {label: sys, symerror: 0.079} + value: 6.159 + - errors: + - {label: stat, symerror: 0.034} + - {label: sys, symerror: 0.041} + value: 5.208 + - errors: + - {label: stat, symerror: 0.034} + - {label: sys, symerror: 0.04} + value: 4.466 + - errors: + - {label: stat, symerror: 0.027} + - {label: sys, symerror: 0.03} + value: 3.586 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.024} + value: 2.806 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.021} + value: 2.235 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.019} + value: 1.831 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.017} + value: 1.51 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.016} + value: 1.259 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.014} + value: 0.966 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.011} + value: 0.687 + - errors: + - {label: stat, symerror: 0.0086} + - {label: sys, symerror: 0.0092} + value: 0.4967 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0077} + value: 0.3681 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0063} + value: 0.2764 + - errors: + - {label: stat, symerror: 0.0043} + - {label: sys, symerror: 0.0047} + value: 0.1637 + - errors: + - {label: stat, symerror: 0.0028} + - {label: sys, symerror: 0.0034} + value: 0.0882 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0025} + value: 0.0431 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0021} + value: 0.0152 + - errors: + - {label: stat, symerror: 0.00071} + - {label: sys, symerror: 0.00203} + value: 0.00577 + - errors: + - {label: stat, symerror: 0.00041} + - {label: sys, symerror: 0.00202} + value: 0.0012 + - errors: + - {label: stat, symerror: 8.5e-06} + - {label: sys, symerror: 0.0020006} + value: 2.01e-05 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.36, low: 0.3} + - {high: 0.46, low: 0.36} + - {high: 0.57, low: 0.46} + - {high: 0.7, low: 0.57} + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table25.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table25.yaml new file mode 100755 index 0000000000..04823ebe42 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table25.yaml @@ -0,0 +1,119 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 39.7} + value: 549.5 + - errors: + - {symerror: 27.3} + value: 538.4 + - errors: + - {symerror: 13.0} + value: 512.3 + - errors: + - {symerror: 12.8} + value: 469.1 + - errors: + - {symerror: 12.3} + value: 403.2 + - errors: + - {symerror: 4.73} + value: 334.61 + - errors: + - {symerror: 4.68} + value: 280.93 + - errors: + - {symerror: 2.42} + value: 237.57 + - errors: + - {symerror: 2.38} + value: 203.7 + - errors: + - {symerror: 1.84} + value: 163.57 + - errors: + - {symerror: 1.46} + value: 127.98 + - errors: + - {symerror: 1.29} + value: 101.95 + - errors: + - {symerror: 1.16} + value: 83.53 + - errors: + - {symerror: 1.07} + value: 68.89 + - errors: + - {symerror: 0.98} + value: 57.43 + - errors: + - {symerror: 0.86} + value: 44.04 + - errors: + - {symerror: 0.7} + value: 31.32 + - errors: + - {symerror: 0.57} + value: 22.66 + - errors: + - {symerror: 0.46} + value: 16.79 + - errors: + - {symerror: 0.38} + value: 12.61 + - errors: + - {symerror: 0.28} + value: 7.46 + - errors: + - {symerror: 0.18} + value: 4.02 + - errors: + - {symerror: 0.12} + value: 1.96 + - errors: + - {symerror: 0.064} + value: 0.694 + - errors: + - {symerror: 0.037} + value: 0.263 + - errors: + - {symerror: 0.022} + value: 0.055 + - errors: + - {symerror: 0.0023} + value: 0.0009 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.008, low: 0.007} + - {high: 0.01, low: 0.008} + - {high: 0.012, low: 0.01} + - {high: 0.015, low: 0.012} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table26.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table26.yaml new file mode 100755 index 0000000000..9d6fb60439 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table26.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.096} + - {label: sys, symerror: 0.246} + value: 7.781 + - errors: + - {label: stat, symerror: 0.078} + - {label: sys, symerror: 0.102} + value: 6.334 + - errors: + - {label: stat, symerror: 0.072} + - {label: sys, symerror: 0.098} + value: 5.205 + - errors: + - {label: stat, symerror: 0.066} + - {label: sys, symerror: 0.06} + value: 4.28 + - errors: + - {label: stat, symerror: 0.063} + - {label: sys, symerror: 0.056} + value: 3.595 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.047} + value: 2.768 + - errors: + - {label: stat, symerror: 0.039} + - {label: sys, symerror: 0.047} + value: 2.14 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.031} + value: 1.674 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.027} + value: 1.312 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.022} + value: 1.049 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.019} + value: 0.853 + - errors: + - {label: stat, symerror: 0.0095} + - {label: sys, symerror: 0.0138} + value: 0.6166 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0101} + value: 0.4124 + - errors: + - {label: stat, symerror: 0.0066} + - {label: sys, symerror: 0.0079} + value: 0.2861 + - errors: + - {label: stat, symerror: 0.0057} + - {label: sys, symerror: 0.0058} + value: 0.201 + - errors: + - {label: stat, symerror: 0.0044} + - {label: sys, symerror: 0.0051} + value: 0.1457 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0029} + value: 0.081 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0018} + value: 0.0409 + - errors: + - {label: stat, symerror: 0.00093} + - {label: sys, symerror: 0.00088} + value: 0.01858 + - errors: + - {label: stat, symerror: 0.00051} + - {label: sys, symerror: 0.00042} + value: 0.00629 + - errors: + - {label: stat, symerror: 0.00035} + - {label: sys, symerror: 0.00028} + value: 0.00252 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.00018} + value: 0.00081 + - errors: + - {label: stat, symerror: 4.2e-05} + - {label: sys, symerror: 1.3e-05} + value: 1.6e-05 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table27.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table27.yaml new file mode 100755 index 0000000000..ed6f1c4457 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table27.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 12.0} + value: 354.9 + - errors: + - {symerror: 5.87} + value: 288.9 + - errors: + - {symerror: 5.55} + value: 237.41 + - errors: + - {symerror: 4.09} + value: 195.2 + - errors: + - {symerror: 3.84} + value: 163.96 + - errors: + - {symerror: 2.96} + value: 126.27 + - errors: + - {symerror: 2.76} + value: 97.59 + - errors: + - {symerror: 1.83} + value: 76.35 + - errors: + - {symerror: 1.55} + value: 59.83 + - errors: + - {symerror: 1.26} + value: 47.84 + - errors: + - {symerror: 1.1} + value: 38.92 + - errors: + - {symerror: 0.76} + value: 28.13 + - errors: + - {symerror: 0.58} + value: 18.81 + - errors: + - {symerror: 0.47} + value: 13.05 + - errors: + - {symerror: 0.37} + value: 9.17 + - errors: + - {symerror: 0.3} + value: 6.64 + - errors: + - {symerror: 0.16} + value: 3.7 + - errors: + - {symerror: 0.1} + value: 1.87 + - errors: + - {symerror: 0.058} + value: 0.848 + - errors: + - {symerror: 0.03} + value: 0.287 + - errors: + - {symerror: 0.02} + value: 0.115 + - errors: + - {symerror: 0.016} + value: 0.037 + - errors: + - {symerror: 0.002} + value: 0.0007 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table28.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table28.yaml new file mode 100755 index 0000000000..bcf93eeac0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table28.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.084} + value: 0.667 + - errors: + - {label: stat, symerror: 0.064} + - {label: sys, symerror: 0.083} + value: 0.612 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.08} + value: 0.523 + - errors: + - {label: stat, symerror: 0.051} + - {label: sys, symerror: 0.05} + value: 0.585 + - errors: + - {label: stat, symerror: 0.061} + - {label: sys, symerror: 0.075} + value: 0.483 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.076} + value: 0.494 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.078} + value: 0.398 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.02} + value: 0.335 + - errors: + - {label: stat, symerror: 0.0096} + - {label: sys, symerror: 0.0203} + value: 0.3225 + - errors: + - {label: stat, symerror: 0.0055} + - {label: sys, symerror: 0.0211} + value: 0.2845 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.015} + value: 0.249 + - errors: + - {label: stat, symerror: 0.0061} + - {label: sys, symerror: 0.0106} + value: 0.2022 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0101} + value: 0.1526 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.01} + value: 0.109 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.012} + value: 0.083 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.0087} + value: 0.0625 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0017} + value: 0.0379 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0011} + value: 0.0199 + - errors: + - {label: stat, symerror: 0.00068} + - {label: sys, symerror: 0.00059} + value: 0.00868 + - errors: + - {label: stat, symerror: 0.00041} + - {label: sys, symerror: 0.00027} + value: 0.00231 + - errors: + - {label: stat, symerror: 0.00023} + - {label: sys, symerror: 6.0e-05} + value: 0.00062 + - errors: + - {label: stat, symerror: 6.2e-05} + - {label: sys, symerror: 5.0e-06} + value: 2.4e-05 + - errors: + - {label: stat, symerror: 3.6e-06} + - {label: sys, symerror: 9.0e-07} + value: 7.0e-07 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table29.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table29.yaml new file mode 100755 index 0000000000..2bfe008aa6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table29.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 5.61} + value: 30.42 + - errors: + - {symerror: 4.8} + value: 27.93 + - errors: + - {symerror: 4.57} + value: 23.84 + - errors: + - {symerror: 3.27} + value: 26.68 + - errors: + - {symerror: 4.44} + value: 22.02 + - errors: + - {symerror: 3.67} + value: 22.55 + - errors: + - {symerror: 3.63} + value: 18.17 + - errors: + - {symerror: 1.22} + value: 15.26 + - errors: + - {symerror: 1.02} + value: 14.71 + - errors: + - {symerror: 0.99} + value: 12.97 + - errors: + - {symerror: 0.81} + value: 11.34 + - errors: + - {symerror: 0.56} + value: 9.22 + - errors: + - {symerror: 0.56} + value: 6.96 + - errors: + - {symerror: 0.68} + value: 4.98 + - errors: + - {symerror: 0.75} + value: 3.79 + - errors: + - {symerror: 0.46} + value: 2.85 + - errors: + - {symerror: 0.099} + value: 1.727 + - errors: + - {symerror: 0.071} + value: 0.907 + - errors: + - {symerror: 0.041} + value: 0.396 + - errors: + - {symerror: 0.023} + value: 0.105 + - errors: + - {symerror: 0.011} + value: 0.028 + - errors: + - {symerror: 0.0028} + value: 0.0011 + - errors: + - {symerror: 0.00017} + value: 3.0e-05 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..9692ae7c22 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.18} + - {label: sys, symerror: 0.28} + value: 19.94 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.19} + - {label: sys, symerror: 0.85} + value: 16.84 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.03} + - {label: sys, symerror: 0.04} + value: 2.02 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.02} + - {label: sys, symerror: 0.02} + value: 1.07 +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.04} + - {label: sys, symerror: 0.05} + value: 3.09 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 91.2} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table30.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table30.yaml new file mode 100755 index 0000000000..227337cd3b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table30.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.051} + - {label: sys, symerror: 0.066} + value: 0.303 + - errors: + - {label: stat, symerror: 0.053} + - {label: sys, symerror: 0.05} + value: 0.305 + - errors: + - {label: stat, symerror: 0.049} + - {label: sys, symerror: 0.068} + value: 0.331 + - errors: + - {label: stat, symerror: 0.066} + - {label: sys, symerror: 0.029} + value: 0.266 + - errors: + - {label: stat, symerror: 0.049} + - {label: sys, symerror: 0.028} + value: 0.257 + - errors: + - {label: stat, symerror: 0.042} + - {label: sys, symerror: 0.03} + value: 0.284 + - errors: + - {label: stat, symerror: 0.026} + - {label: sys, symerror: 0.025} + value: 0.176 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.014} + value: 0.117 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.011} + value: 0.093 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.011} + value: 0.092 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.011} + value: 0.072 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.008} + value: 0.079 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.01} + value: 0.075 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.007} + value: 0.06 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.009} + value: 0.044 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.005} + value: 0.034 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0021} + value: 0.0173 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0009} + value: 0.0089 + - errors: + - {label: stat, symerror: 0.00071} + - {label: sys, symerror: 0.00037} + value: 0.00371 + - errors: + - {label: stat, symerror: 0.00033} + - {label: sys, symerror: 0.00017} + value: 0.00102 + - errors: + - {label: stat, symerror: 0.00019} + - {label: sys, symerror: 7.0e-05} + value: 0.00027 + - errors: + - {label: stat, symerror: 7.4e-05} + - {label: sys, symerror: 7.7e-05} + value: 8.3e-05 + - errors: + - {label: stat, symerror: 6.0e-06} + - {label: sys, symerror: 1.73e-05} + value: 4.5e-06 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table31.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table31.yaml new file mode 100755 index 0000000000..e780a156de --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table31.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 3.83} + value: 13.82 + - errors: + - {symerror: 3.32} + value: 13.93 + - errors: + - {symerror: 3.82} + value: 15.11 + - errors: + - {symerror: 3.31} + value: 12.14 + - errors: + - {symerror: 2.56} + value: 11.73 + - errors: + - {symerror: 2.35} + value: 12.96 + - errors: + - {symerror: 1.66} + value: 8.02 + - errors: + - {symerror: 0.97} + value: 5.32 + - errors: + - {symerror: 0.87} + value: 4.24 + - errors: + - {symerror: 0.86} + value: 4.18 + - errors: + - {symerror: 0.88} + value: 3.29 + - errors: + - {symerror: 0.58} + value: 3.62 + - errors: + - {symerror: 0.71} + value: 3.4 + - errors: + - {symerror: 0.91} + value: 2.74 + - errors: + - {symerror: 1.07} + value: 2.0 + - errors: + - {symerror: 0.55} + value: 1.56 + - errors: + - {symerror: 0.16} + value: 0.79 + - errors: + - {symerror: 0.091} + value: 0.406 + - errors: + - {symerror: 0.037} + value: 0.169 + - errors: + - {symerror: 0.017} + value: 0.046 + - errors: + - {symerror: 0.0092} + value: 0.0124 + - errors: + - {symerror: 0.0049} + value: 0.0038 + - errors: + - {symerror: 0.00084} + value: 0.00021 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table32.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table32.yaml new file mode 100755 index 0000000000..cc2934cbeb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table32.yaml @@ -0,0 +1,146 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.47} + - {label: sys, symerror: 0.74} + value: 10.97 + - errors: + - {label: stat, symerror: 0.31} + - {label: sys, symerror: 0.52} + value: 10.69 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.24} + value: 10.02 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.23} + value: 8.95 + - errors: + - {label: stat, symerror: 0.15} + - {label: sys, symerror: 0.22} + value: 7.46 + - errors: + - {label: stat, symerror: 0.061} + - {label: sys, symerror: 0.082} + value: 6.046 + - errors: + - {label: stat, symerror: 0.063} + - {label: sys, symerror: 0.079} + value: 4.966 + - errors: + - {label: stat, symerror: 0.034} + - {label: sys, symerror: 0.041} + value: 4.124 + - errors: + - {label: stat, symerror: 0.034} + - {label: sys, symerror: 0.04} + value: 3.506 + - errors: + - {label: stat, symerror: 0.028} + - {label: sys, symerror: 0.03} + value: 2.801 + - errors: + - {label: stat, symerror: 0.023} + - {label: sys, symerror: 0.024} + value: 2.141 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.021} + value: 1.708 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.019} + value: 1.39 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.017} + value: 1.156 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.016} + value: 0.968 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.014} + value: 0.774 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.011} + value: 0.581 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.009} + value: 0.451 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0077} + value: 0.3597 + - errors: + - {label: stat, symerror: 0.0076} + - {label: sys, symerror: 0.0063} + value: 0.2877 + - errors: + - {label: stat, symerror: 0.0058} + - {label: sys, symerror: 0.0047} + value: 0.1948 + - errors: + - {label: stat, symerror: 0.0038} + - {label: sys, symerror: 0.0034} + value: 0.1232 + - errors: + - {label: stat, symerror: 0.0024} + - {label: sys, symerror: 0.0025} + value: 0.0707 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0021} + value: 0.0324 + - errors: + - {label: stat, symerror: 0.00076} + - {label: sys, symerror: 0.00203} + value: 0.01528 + - errors: + - {label: stat, symerror: 0.00057} + - {label: sys, symerror: 0.00202} + value: 0.0053 + - errors: + - {label: stat, symerror: 0.00017} + - {label: sys, symerror: 0.002} + value: 0.00079 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.36, low: 0.3} + - {high: 0.46, low: 0.36} + - {high: 0.57, low: 0.46} + - {high: 0.7, low: 0.57} + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table33.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table33.yaml new file mode 100755 index 0000000000..71e682ec43 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table33.yaml @@ -0,0 +1,119 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 40.0} + value: 500.6 + - errors: + - {symerror: 27.5} + value: 487.8 + - errors: + - {symerror: 13.1} + value: 457.0 + - errors: + - {symerror: 12.8} + value: 408.0 + - errors: + - {symerror: 12.0} + value: 340.5 + - errors: + - {symerror: 4.64} + value: 275.76 + - errors: + - {symerror: 4.63} + value: 226.53 + - errors: + - {symerror: 2.41} + value: 188.13 + - errors: + - {symerror: 2.38} + value: 159.91 + - errors: + - {symerror: 1.87} + value: 127.76 + - errors: + - {symerror: 1.49} + value: 97.66 + - errors: + - {symerror: 1.34} + value: 77.9 + - errors: + - {symerror: 1.22} + value: 63.39 + - errors: + - {symerror: 1.14} + value: 52.73 + - errors: + - {symerror: 1.05} + value: 44.15 + - errors: + - {symerror: 0.93} + value: 35.28 + - errors: + - {symerror: 0.77} + value: 26.52 + - errors: + - {symerror: 0.64} + value: 20.56 + - errors: + - {symerror: 0.54} + value: 16.41 + - errors: + - {symerror: 0.44} + value: 13.12 + - errors: + - {symerror: 0.33} + value: 8.89 + - errors: + - {symerror: 0.21} + value: 5.62 + - errors: + - {symerror: 0.13} + value: 3.22 + - errors: + - {symerror: 0.068} + value: 1.477 + - errors: + - {symerror: 0.038} + value: 0.697 + - errors: + - {symerror: 0.029} + value: 0.242 + - errors: + - {symerror: 0.0079} + value: 0.036 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.008, low: 0.007} + - {high: 0.01, low: 0.008} + - {high: 0.012, low: 0.01} + - {high: 0.015, low: 0.012} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table34.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table34.yaml new file mode 100755 index 0000000000..644031fe35 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table34.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.13} + - {label: sys, symerror: 0.2} + value: 6.65 + - errors: + - {label: stat, symerror: 0.065} + - {label: sys, symerror: 0.086} + value: 5.231 + - errors: + - {label: stat, symerror: 0.061} + - {label: sys, symerror: 0.08} + value: 4.245 + - errors: + - {label: stat, symerror: 0.043} + - {label: sys, symerror: 0.046} + value: 3.487 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.043} + value: 2.902 + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.038} + value: 2.296 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.037} + value: 1.729 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.023} + value: 1.351 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.023} + value: 1.101 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.019} + value: 0.901 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.016} + value: 0.747 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.014} + value: 0.59 + - errors: + - {label: stat, symerror: 0.0083} + - {label: sys, symerror: 0.0115} + value: 0.4369 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0094} + value: 0.3324 + - errors: + - {label: stat, symerror: 0.0062} + - {label: sys, symerror: 0.0077} + value: 0.2635 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.0066} + value: 0.2037 + - errors: + - {label: stat, symerror: 0.0031} + - {label: sys, symerror: 0.0043} + value: 0.1333 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0027} + value: 0.0812 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0015} + value: 0.0449 + - errors: + - {label: stat, symerror: 0.00084} + - {label: sys, symerror: 0.00073} + value: 0.01938 + - errors: + - {label: stat, symerror: 0.00057} + - {label: sys, symerror: 0.00037} + value: 0.0093 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.00028} + value: 0.0029 + - errors: + - {label: stat, symerror: 0.00015} + - {label: sys, symerror: 6.0e-05} + value: 0.00042 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table35.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table35.yaml new file mode 100755 index 0000000000..3443292819 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table35.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 11.1} + value: 303.4 + - errors: + - {symerror: 4.91} + value: 238.58 + - errors: + - {symerror: 4.58} + value: 193.64 + - errors: + - {symerror: 2.86} + value: 159.03 + - errors: + - {symerror: 2.7} + value: 132.35 + - errors: + - {symerror: 2.23} + value: 104.73 + - errors: + - {symerror: 2.15} + value: 78.85 + - errors: + - {symerror: 1.34} + value: 61.63 + - errors: + - {symerror: 1.29} + value: 50.22 + - errors: + - {symerror: 1.08} + value: 41.09 + - errors: + - {symerror: 0.94} + value: 34.06 + - errors: + - {symerror: 0.8} + value: 26.91 + - errors: + - {symerror: 0.65} + value: 19.93 + - errors: + - {symerror: 0.53} + value: 15.16 + - errors: + - {symerror: 0.45} + value: 12.02 + - errors: + - {symerror: 0.38} + value: 9.29 + - errors: + - {symerror: 0.24} + value: 6.08 + - errors: + - {symerror: 0.16} + value: 3.7 + - errors: + - {symerror: 0.094} + value: 2.046 + - errors: + - {symerror: 0.051} + value: 0.884 + - errors: + - {symerror: 0.031} + value: 0.424 + - errors: + - {symerror: 0.022} + value: 0.132 + - errors: + - {symerror: 0.0075} + value: 0.0194 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table36.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table36.yaml new file mode 100755 index 0000000000..f3567019ab --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table36.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.047} + - {label: sys, symerror: 0.061} + value: 0.527 + - errors: + - {label: stat, symerror: 0.037} + - {label: sys, symerror: 0.058} + value: 0.524 + - errors: + - {label: stat, symerror: 0.033} + - {label: sys, symerror: 0.052} + value: 0.447 + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.031} + value: 0.398 + - errors: + - {label: stat, symerror: 0.036} + - {label: sys, symerror: 0.045} + value: 0.374 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.047} + value: 0.314 + - errors: + - {label: stat, symerror: 0.045} + - {label: sys, symerror: 0.049} + value: 0.253 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.012} + value: 0.217 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.013} + value: 0.18 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.009} + value: 0.16 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.009} + value: 0.147 + - errors: + - {label: stat, symerror: 0.0078} + - {label: sys, symerror: 0.0068} + value: 0.1189 + - errors: + - {label: stat, symerror: 0.0064} + - {label: sys, symerror: 0.0043} + value: 0.0901 + - errors: + - {label: stat, symerror: 0.0088} + - {label: sys, symerror: 0.0063} + value: 0.0756 + - errors: + - {label: stat, symerror: 0.0093} + - {label: sys, symerror: 0.0065} + value: 0.0629 + - errors: + - {label: stat, symerror: 0.0071} + - {label: sys, symerror: 0.0069} + value: 0.0561 + - errors: + - {label: stat, symerror: 0.0015} + - {label: sys, symerror: 0.0017} + value: 0.0401 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0015} + value: 0.0287 + - errors: + - {label: stat, symerror: 0.00082} + - {label: sys, symerror: 0.00112} + value: 0.01838 + - errors: + - {label: stat, symerror: 0.00055} + - {label: sys, symerror: 0.00077} + value: 0.00927 + - errors: + - {label: stat, symerror: 0.00036} + - {label: sys, symerror: 0.00047} + value: 0.00471 + - errors: + - {label: stat, symerror: 0.00026} + - {label: sys, symerror: 0.00033} + value: 0.00211 + - errors: + - {label: stat, symerror: 0.00012} + - {label: sys, symerror: 0.00015} + value: 0.00027 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table37.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table37.yaml new file mode 100755 index 0000000000..06814c9162 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table37.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 3.51} + value: 24.06 + - errors: + - {symerror: 3.15} + value: 23.88 + - errors: + - {symerror: 2.84} + value: 20.37 + - errors: + - {symerror: 2.0} + value: 18.16 + - errors: + - {symerror: 2.64} + value: 17.07 + - errors: + - {symerror: 2.8} + value: 14.33 + - errors: + - {symerror: 3.04} + value: 11.55 + - errors: + - {symerror: 0.83} + value: 9.91 + - errors: + - {symerror: 0.85} + value: 8.19 + - errors: + - {symerror: 0.62} + value: 7.3 + - errors: + - {symerror: 0.63} + value: 6.72 + - errors: + - {symerror: 0.47} + value: 5.43 + - errors: + - {symerror: 0.35} + value: 4.11 + - errors: + - {symerror: 0.49} + value: 3.45 + - errors: + - {symerror: 0.52} + value: 2.87 + - errors: + - {symerror: 0.45} + value: 2.56 + - errors: + - {symerror: 0.1} + value: 1.83 + - errors: + - {symerror: 0.09} + value: 1.308 + - errors: + - {symerror: 0.063} + value: 0.838 + - errors: + - {symerror: 0.043} + value: 0.423 + - errors: + - {symerror: 0.027} + value: 0.215 + - errors: + - {symerror: 0.019} + value: 0.096 + - errors: + - {symerror: 0.0088} + value: 0.0125 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table38.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table38.yaml new file mode 100755 index 0000000000..348c90d988 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table38.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DP} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.028} + - {label: sys, symerror: 0.075} + value: 0.354 + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.054} + value: 0.317 + - errors: + - {label: stat, symerror: 0.035} + - {label: sys, symerror: 0.035} + value: 0.219 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.024} + value: 0.251 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.025} + value: 0.243 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.017} + value: 0.208 + - errors: + - {label: stat, symerror: 0.0082} + - {label: sys, symerror: 0.0145} + value: 0.1451 + - errors: + - {label: stat, symerror: 0.0021} + - {label: sys, symerror: 0.0113} + value: 0.12 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.0088} + value: 0.1043 + - errors: + - {label: stat, symerror: 0.0041} + - {label: sys, symerror: 0.0093} + value: 0.0914 + - errors: + - {label: stat, symerror: 0.0035} + - {label: sys, symerror: 0.0091} + value: 0.0762 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0052} + value: 0.0655 + - errors: + - {label: stat, symerror: 0.0048} + - {label: sys, symerror: 0.0061} + value: 0.0552 + - errors: + - {label: stat, symerror: 0.0066} + - {label: sys, symerror: 0.0054} + value: 0.0419 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0045} + value: 0.0345 + - errors: + - {label: stat, symerror: 0.0049} + - {label: sys, symerror: 0.0037} + value: 0.0277 + - errors: + - {label: stat, symerror: 0.0013} + - {label: sys, symerror: 0.0019} + value: 0.0204 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0014} + value: 0.0132 + - errors: + - {label: stat, symerror: 0.00048} + - {label: sys, symerror: 0.00065} + value: 0.00681 + - errors: + - {label: stat, symerror: 0.00028} + - {label: sys, symerror: 0.00045} + value: 0.00315 + - errors: + - {label: stat, symerror: 0.00021} + - {label: sys, symerror: 0.00024} + value: 0.00143 + - errors: + - {label: stat, symerror: 0.00014} + - {label: sys, symerror: 7.0e-05} + value: 0.00027 + - errors: + - {label: stat, symerror: 0.00029} + - {label: sys, symerror: 3.0e-05} + value: 7.0e-05 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.9, low: 9.12} + - {high: 13.7, low: 11.9} + - {high: 18.2, low: 13.7} + - {high: 22.8, low: 18.2} + - {high: 27.4, low: 22.8} + - {high: 36.5, low: 27.4} + - {high: 45.6, low: 36.5} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table39.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table39.yaml new file mode 100755 index 0000000000..11818e8ddf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table39.yaml @@ -0,0 +1,103 @@ +dependent_variables: +- header: {name: (1/N(C=HAD))*D(N)/DLN(1/X)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 3.64} + value: 16.13 + - errors: + - {symerror: 2.82} + value: 14.46 + - errors: + - {symerror: 2.26} + value: 9.98 + - errors: + - {symerror: 1.58} + value: 11.44 + - errors: + - {symerror: 1.41} + value: 11.07 + - errors: + - {symerror: 1.0} + value: 9.49 + - errors: + - {symerror: 0.76} + value: 6.62 + - errors: + - {symerror: 0.52} + value: 5.47 + - errors: + - {symerror: 0.42} + value: 4.76 + - errors: + - {symerror: 0.47} + value: 4.17 + - errors: + - {symerror: 0.44} + value: 3.47 + - errors: + - {symerror: 0.29} + value: 2.99 + - errors: + - {symerror: 0.36} + value: 2.52 + - errors: + - {symerror: 0.39} + value: 1.91 + - errors: + - {symerror: 0.41} + value: 1.57 + - errors: + - {symerror: 0.28} + value: 1.27 + - errors: + - {symerror: 0.11} + value: 0.93 + - errors: + - {symerror: 0.079} + value: 0.602 + - errors: + - {symerror: 0.037} + value: 0.311 + - errors: + - {symerror: 0.024} + value: 0.144 + - errors: + - {symerror: 0.015} + value: 0.065 + - errors: + - {symerror: 0.0071} + value: 0.0124 + - errors: + - {symerror: 0.013} + value: 0.003 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.05, low: 0.04} + - {high: 0.06, low: 0.05} + - {high: 0.07, low: 0.06} + - {high: 0.08, low: 0.07} + - {high: 0.09, low: 0.08} + - {high: 0.1, low: 0.09} + - {high: 0.12, low: 0.1} + - {high: 0.14, low: 0.12} + - {high: 0.16, low: 0.14} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.26, low: 0.2} + - {high: 0.3, low: 0.26} + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.8, low: 0.6} + - {high: 1.0, low: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..01b0b7d122 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.73} + - {label: sys, symerror: 0.58} + value: 88.72 + - errors: + - {label: stat, symerror: 0.89} + - {label: sys, symerror: 0.77} + value: 86.41 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.73} + value: 85.08 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.72} + value: 83.6 + - errors: + - {label: stat, symerror: 0.95} + - {label: sys, symerror: 0.74} + value: 82.04 + - errors: + - {label: stat, symerror: 1.16} + - {label: sys, symerror: 1.04} + value: 80.37 + - errors: + - {label: stat, symerror: 1.6} + - {label: sys, symerror: 1.48} + value: 79.11 + - errors: + - {label: stat, symerror: 0.94} + - {label: sys, symerror: 0.8} + value: 77.89 + - errors: + - {label: stat, symerror: 1.14} + - {label: sys, symerror: 1.04} + value: 76.45 + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.89} + value: 74.74 + - errors: + - {label: stat, symerror: 0.88} + - {label: sys, symerror: 0.7} + value: 73.56 + - errors: + - {label: stat, symerror: 0.82} + - {label: sys, symerror: 0.7} + value: 71.82 + - errors: + - {label: stat, symerror: 0.85} + - {label: sys, symerror: 0.69} + value: 69.92 + - errors: + - {label: stat, symerror: 0.96} + - {label: sys, symerror: 0.76} + value: 68.19 + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.7} + value: 66.89 + - errors: + - {label: stat, symerror: 1.35} + - {label: sys, symerror: 1.18} + value: 64.57 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.69} + value: 62.47 + - errors: + - {label: stat, symerror: 0.94} + - {label: sys, symerror: 0.73} + value: 59.71 + - errors: + - {label: stat, symerror: 1.13} + - {label: sys, symerror: 1.01} + value: 57.67 + - errors: + - {label: stat, symerror: 1.48} + - {label: sys, symerror: 1.24} + value: 54.66 + - errors: + - {label: stat, symerror: 2.18} + - {label: sys, symerror: 1.66} + value: 55.36 + - errors: + - {label: stat, symerror: 4.1} + - {label: sys, symerror: 3.31} + value: 55.69 + - errors: + - {label: stat, symerror: 13.3} + - {label: sys, symerror: 9.09} + value: 56.11 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100755 index 0000000000..694fb7ab74 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.95} + value: 7.17 + - errors: + - {label: stat, symerror: 1.18} + - {label: sys, symerror: 1.14} + value: 8.58 + - errors: + - {label: stat, symerror: 1.28} + - {label: sys, symerror: 1.24} + value: 8.84 + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.91} + value: 10.21 + - errors: + - {label: stat, symerror: 1.58} + - {label: sys, symerror: 1.49} + value: 10.63 + - errors: + - {label: stat, symerror: 2.06} + - {label: sys, symerror: 2.01} + value: 11.84 + - errors: + - {label: stat, symerror: 2.75} + - {label: sys, symerror: 2.69} + value: 12.55 + - errors: + - {label: stat, symerror: 0.89} + - {label: sys, symerror: 0.8} + value: 13.25 + - errors: + - {label: stat, symerror: 1.05} + - {label: sys, symerror: 0.99} + value: 14.32 + - errors: + - {label: stat, symerror: 0.98} + - {label: sys, symerror: 0.91} + value: 15.59 + - errors: + - {label: stat, symerror: 1.17} + - {label: sys, symerror: 1.09} + value: 16.72 + - errors: + - {label: stat, symerror: 1.15} + - {label: sys, symerror: 1.09} + value: 17.39 + - errors: + - {label: stat, symerror: 1.02} + - {label: sys, symerror: 0.84} + value: 18.23 + - errors: + - {label: stat, symerror: 1.94} + - {label: sys, symerror: 1.67} + value: 19.25 + - errors: + - {label: stat, symerror: 2.78} + - {label: sys, symerror: 2.37} + value: 19.55 + - errors: + - {label: stat, symerror: 3.04} + - {label: sys, symerror: 2.89} + value: 21.47 + - errors: + - {label: stat, symerror: 0.76} + - {label: sys, symerror: 0.69} + value: 22.73 + - errors: + - {label: stat, symerror: 1.04} + - {label: sys, symerror: 0.93} + value: 25.17 + - errors: + - {label: stat, symerror: 1.56} + - {label: sys, symerror: 1.49} + value: 26.77 + - errors: + - {label: stat, symerror: 2.75} + - {label: sys, symerror: 2.63} + value: 29.04 + - errors: + - {label: stat, symerror: 3.03} + - {label: sys, symerror: 2.62} + value: 29.97 + - errors: + - {label: stat, symerror: 6.91} + - {label: sys, symerror: 6.24} + value: 33.86 + - errors: + - {label: stat, symerror: 24.12} + - {label: sys, symerror: 20.12} + value: 27.78 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100755 index 0000000000..d6ff63404f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.93} + - {label: sys, symerror: 0.92} + value: 4.11 + - errors: + - {label: stat, symerror: 0.87} + - {label: sys, symerror: 0.84} + value: 4.85 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 0.82} + value: 4.71 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.67} + value: 5.97 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.7} + value: 6.61 + - errors: + - {label: stat, symerror: 0.77} + - {label: sys, symerror: 0.69} + value: 7.68 + - errors: + - {label: stat, symerror: 0.79} + - {label: sys, symerror: 0.75} + value: 6.73 + - errors: + - {label: stat, symerror: 0.68} + - {label: sys, symerror: 0.66} + value: 6.46 + - errors: + - {label: stat, symerror: 0.67} + - {label: sys, symerror: 0.63} + value: 6.83 + - errors: + - {label: stat, symerror: 0.89} + - {label: sys, symerror: 0.85} + value: 7.46 + - errors: + - {label: stat, symerror: 0.96} + - {label: sys, symerror: 0.91} + value: 7.23 + - errors: + - {label: stat, symerror: 0.82} + - {label: sys, symerror: 0.77} + value: 8.37 + - errors: + - {label: stat, symerror: 1.21} + - {label: sys, symerror: 1.09} + value: 9.4 + - errors: + - {label: stat, symerror: 1.64} + - {label: sys, symerror: 1.29} + value: 9.7 + - errors: + - {label: stat, symerror: 2.29} + - {label: sys, symerror: 1.67} + value: 10.37 + - errors: + - {label: stat, symerror: 1.88} + - {label: sys, symerror: 1.54} + value: 10.3 + - errors: + - {label: stat, symerror: 1.12} + - {label: sys, symerror: 1.04} + value: 10.12 + - errors: + - {label: stat, symerror: 1.24} + - {label: sys, symerror: 1.14} + value: 10.75 + - errors: + - {label: stat, symerror: 1.04} + - {label: sys, symerror: 0.95} + value: 9.71 + - errors: + - {label: stat, symerror: 1.68} + - {label: sys, symerror: 1.58} + value: 9.54 + - errors: + - {label: stat, symerror: 2.11} + - {label: sys, symerror: 1.88} + value: 8.72 + - errors: + - {label: stat, symerror: 3.16} + - {label: sys, symerror: 2.72} + value: 7.0 + - errors: + - {label: stat, symerror: 6.69} + - {label: sys, symerror: 5.16} + value: 8.68 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100755 index 0000000000..1264a28f48 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR + K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.99} + - {label: sys, symerror: 0.91} + value: 11.4 + - errors: + - {label: stat, symerror: 1.19} + - {label: sys, symerror: 1.14} + value: 13.08 + - errors: + - {label: stat, symerror: 1.07} + - {label: sys, symerror: 0.99} + value: 14.99 + - errors: + - {label: stat, symerror: 1.09} + - {label: sys, symerror: 0.98} + value: 15.87 + - errors: + - {label: stat, symerror: 1.46} + - {label: sys, symerror: 1.33} + value: 17.11 + - errors: + - {label: stat, symerror: 2.16} + - {label: sys, symerror: 2.08} + value: 19.23 + - errors: + - {label: stat, symerror: 2.27} + - {label: sys, symerror: 2.19} + value: 19.87 + - errors: + - {label: stat, symerror: 0.97} + - {label: sys, symerror: 0.88} + value: 20.89 + - errors: + - {label: stat, symerror: 0.75} + - {label: sys, symerror: 0.66} + value: 21.02 + - errors: + - {label: stat, symerror: 0.68} + - {label: sys, symerror: 0.57} + value: 22.77 + - errors: + - {label: stat, symerror: 0.74} + - {label: sys, symerror: 0.63} + value: 24.14 + - errors: + - {label: stat, symerror: 0.68} + - {label: sys, symerror: 0.6} + value: 25.74 + - errors: + - {label: stat, symerror: 0.7} + - {label: sys, symerror: 0.58} + value: 27.65 + - errors: + - {label: stat, symerror: 0.73} + - {label: sys, symerror: 0.57} + value: 29.22 + - errors: + - {label: stat, symerror: 0.78} + - {label: sys, symerror: 0.57} + value: 29.89 + - errors: + - {label: stat, symerror: 0.85} + - {label: sys, symerror: 0.69} + value: 31.77 + - errors: + - {label: stat, symerror: 0.72} + - {label: sys, symerror: 0.65} + value: 33.04 + - errors: + - {label: stat, symerror: 1.0} + - {label: sys, symerror: 0.84} + value: 35.24 + - errors: + - {label: stat, symerror: 1.59} + - {label: sys, symerror: 1.51} + value: 36.09 + - errors: + - {label: stat, symerror: 2.92} + - {label: sys, symerror: 2.78} + value: 37.71 + - errors: + - {label: stat, symerror: 3.08} + - {label: sys, symerror: 2.72} + value: 37.92 + - errors: + - {label: stat, symerror: 4.07} + - {label: sys, symerror: 3.39} + value: 41.24 + - errors: + - {label: stat, symerror: 15.65} + - {label: sys, symerror: 12.27} + value: 46.0 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml new file mode 100755 index 0000000000..c4b0be1240 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.21} + - {label: sys, symerror: 0.71} + value: 88.57 + - errors: + - {label: stat, symerror: 1.18} + - {label: sys, symerror: 0.68} + value: 86.34 + - errors: + - {label: stat, symerror: 1.31} + - {label: sys, symerror: 0.76} + value: 84.86 + - errors: + - {label: stat, symerror: 1.42} + - {label: sys, symerror: 0.81} + value: 83.15 + - errors: + - {label: stat, symerror: 1.54} + - {label: sys, symerror: 0.84} + value: 81.12 + - errors: + - {label: stat, symerror: 1.52} + - {label: sys, symerror: 1.02} + value: 78.79 + - errors: + - {label: stat, symerror: 1.89} + - {label: sys, symerror: 1.43} + value: 76.66 + - errors: + - {label: stat, symerror: 1.44} + - {label: sys, symerror: 1.03} + value: 74.39 + - errors: + - {label: stat, symerror: 1.46} + - {label: sys, symerror: 1.12} + value: 72.25 + - errors: + - {label: stat, symerror: 1.36} + - {label: sys, symerror: 0.95} + value: 69.87 + - errors: + - {label: stat, symerror: 1.39} + - {label: sys, symerror: 0.94} + value: 68.07 + - errors: + - {label: stat, symerror: 1.08} + - {label: sys, symerror: 0.74} + value: 65.13 + - errors: + - {label: stat, symerror: 1.12} + - {label: sys, symerror: 0.66} + value: 61.46 + - errors: + - {label: stat, symerror: 1.3} + - {label: sys, symerror: 0.73} + value: 58.17 + - errors: + - {label: stat, symerror: 1.4} + - {label: sys, symerror: 0.57} + value: 55.87 + - errors: + - {label: stat, symerror: 1.57} + - {label: sys, symerror: 1.01} + value: 53.23 + - errors: + - {label: stat, symerror: 0.92} + - {label: sys, symerror: 0.62} + value: 49.84 + - errors: + - {label: stat, symerror: 1.36} + - {label: sys, symerror: 0.86} + value: 46.23 + - errors: + - {label: stat, symerror: 1.22} + - {label: sys, symerror: 0.75} + value: 43.25 + - errors: + - {label: stat, symerror: 2.24} + - {label: sys, symerror: 1.47} + value: 40.83 + - errors: + - {label: stat, symerror: 5.51} + - {label: sys, symerror: 3.7} + value: 46.2 + - errors: + - {label: stat, symerror: 11.18} + - {label: sys, symerror: 5.98} + value: 62.64 + - errors: + - {label: stat, symerror: 83.44} + - {label: sys, symerror: 62.05} + value: 78.62 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml new file mode 100755 index 0000000000..167052abe2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml @@ -0,0 +1,126 @@ +dependent_variables: +- header: {name: (D(N)/DP)/(D(N(Q=TOT))/DP), units: PCT} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=TOT), value: E+ E- --> CHARGED X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 1.14} + - {label: sys, symerror: 0.81} + value: 6.7 + - errors: + - {label: stat, symerror: 1.23} + - {label: sys, symerror: 1.09} + value: 8.05 + - errors: + - {label: stat, symerror: 1.45} + - {label: sys, symerror: 1.3} + value: 8.51 + - errors: + - {label: stat, symerror: 1.21} + - {label: sys, symerror: 0.85} + value: 10.11 + - errors: + - {label: stat, symerror: 2.08} + - {label: sys, symerror: 1.71} + value: 11.03 + - errors: + - {label: stat, symerror: 2.32} + - {label: sys, symerror: 2.0} + value: 12.98 + - errors: + - {label: stat, symerror: 3.2} + - {label: sys, symerror: 2.85} + value: 14.59 + - errors: + - {label: stat, symerror: 1.38} + - {label: sys, symerror: 0.91} + value: 16.08 + - errors: + - {label: stat, symerror: 1.45} + - {label: sys, symerror: 1.08} + value: 17.76 + - errors: + - {label: stat, symerror: 1.74} + - {label: sys, symerror: 1.4} + value: 19.43 + - errors: + - {label: stat, symerror: 1.66} + - {label: sys, symerror: 1.15} + value: 20.67 + - errors: + - {label: stat, symerror: 1.47} + - {label: sys, symerror: 1.03} + value: 21.23 + - errors: + - {label: stat, symerror: 2.03} + - {label: sys, symerror: 1.34} + value: 21.73 + - errors: + - {label: stat, symerror: 3.45} + - {label: sys, symerror: 1.88} + value: 22.19 + - errors: + - {label: stat, symerror: 5.01} + - {label: sys, symerror: 3.04} + value: 21.76 + - errors: + - {label: stat, symerror: 3.98} + - {label: sys, symerror: 3.12} + value: 23.09 + - errors: + - {label: stat, symerror: 1.0} + - {label: sys, symerror: 0.69} + value: 22.77 + - errors: + - {label: stat, symerror: 1.32} + - {label: sys, symerror: 0.86} + value: 22.24 + - errors: + - {label: stat, symerror: 1.36} + - {label: sys, symerror: 1.03} + value: 19.85 + - errors: + - {label: stat, symerror: 1.99} + - {label: sys, symerror: 1.59} + value: 15.47 + - errors: + - {label: stat, symerror: 1.97} + - {label: sys, symerror: 0.72} + value: 11.5 + - errors: + - {label: stat, symerror: 2.93} + - {label: sys, symerror: 0.83} + value: 9.38 + - errors: + - {label: stat, symerror: 9.04} + - {label: sys, symerror: 6.71} + value: 5.86 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.91, low: 0.7} + - {high: 1.14, low: 0.91} + - {high: 1.37, low: 1.14} + - {high: 1.6, low: 1.37} + - {high: 1.82, low: 1.6} + - {high: 2.28, low: 1.82} + - {high: 2.74, low: 2.28} + - {high: 3.19, low: 2.74} + - {high: 3.65, low: 3.19} + - {high: 4.1, low: 3.65} + - {high: 4.56, low: 4.1} + - {high: 5.47, low: 4.56} + - {high: 6.38, low: 5.47} + - {high: 7.29, low: 6.38} + - {high: 8.21, low: 7.29} + - {high: 9.12, low: 8.21} + - {high: 11.85, low: 9.12} + - {high: 13.68, low: 11.85} + - {high: 18.24, low: 13.68} + - {high: 22.8, low: 18.24} + - {high: 27.36, low: 22.8} + - {high: 36.47, low: 27.36} + - {high: 45.0, low: 36.47} diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..e623c34ce1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,652 @@ +--- +comment: | + CERN-LEP. Measurement of the multiplicities and differential production cross sections for charged pions and kaons, and proton/antiprotons in Z0--& gt;Q-QBAR, Z0--& gt;B-BBAR and Z0--& gt;(U-UBAR,-DDBAR AND S-SBAR) events separately. The experiment uses a RICH detector for particle identification. The data come from a sample of 1.4 million hadronic Z0 decay events taken during the 1994 LEP running period. B-tagging uses a topological lifetime method. Data are given separately for identified kaons and protons and also combined as & apos;Heavy Particles& apos;. +dateupdated: 26/11/1998 00:00:00 +modifications: +- {action: Encoded, date: 26 Nov 1998, who: Mike Whalley} +record_ids: +- {id: 473409, type: inspire} +- {id: 1958, type: red} + +--- +data_file: Table1.yaml +description: | + Mean particle multiplicities for Z0-->Q-QBAR events. The second systematic (DSYS) error is due to the extrapolation of the differential distributions to the full kinematic range. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, + E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Exclusive, E+ E- Scattering, Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 3 +name: Table 1 + +--- +data_file: Table2.yaml +description: | + Mean particle multiplicities for Z0-->B-BBAR events. The second systematic (DSYS) error is due to the extrapolation of the differential distributions to the full kinematic range. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, + E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Exclusive, E+ E- Scattering, Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 3 +name: Table 2 + +--- +data_file: Table3.yaml +description: | + Mean particle multiplicities for Z0-->(U-UBAR,D-DBAR,S-SBAR) events. The second systematic (DSYS) error is due to the extrapolation of the differential distributions to the full kinematic range. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, + E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, Exclusive, E+ E- Scattering, Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 3 +name: Table 3 + +--- +data_file: Table4.yaml +description: | + Normalised PI+- production rates in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 10,F 7 +name: Table 4 + +--- +data_file: Table5.yaml +description: | + Normalised K+- production rates in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 11,F 7 +name: Table 5 + +--- +data_file: Table6.yaml +description: | + Normalised P PBAR production rates in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 12,F 7 +name: Table 6 + +--- +data_file: Table7.yaml +description: | + Normalised Heavy Particle (P and K) production rates in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> P X, E+ E- + --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 13,F 8 +name: Table 7 + +--- +data_file: Table8.yaml +description: | + Normalised PI+- production rates in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 14,F 7 +name: Table 8 + +--- +data_file: Table9.yaml +description: | + Normalised K+- production rates in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 15,F 7 +name: Table 9 + +--- +data_file: Table10.yaml +description: | + Normalised P PBAR production rates in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 16,F 7 +name: Table 10 + +--- +data_file: Table11.yaml +description: | + Normalised Heavy Particle (P and K) production rates in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> P X, E+ E- + --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 17,F 8 +name: Table 11 + +--- +data_file: Table12.yaml +description: | + Normalised PI+- production rates in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 18,F 7 +name: Table 12 + +--- +data_file: Table13.yaml +description: | + Normalised K+- production rates in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 19,F 7 +name: Table 13 + +--- +data_file: Table14.yaml +description: | + Normalised P PBAR production rates in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 20,F 7 +name: Table 14 + +--- +data_file: Table15.yaml +description: | + Normalised Heavy Particle (K and P) production rates in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> P X, E+ E- + --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 21,F 8 +name: Table 15 + +--- +data_file: Table16.yaml +description: | + Differential cross section for charged particles in Z0 -->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 22,F 9 +name: Table 16 + +--- +data_file: Table17.yaml +description: | + Differential cross section for charged particles in Z0 -->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 22,F 10 +name: Table 17 + +--- +data_file: Table18.yaml +description: | + Differential cross section for PI+- in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 23,F 9 +name: Table 18 + +--- +data_file: Table19.yaml +description: | + Differential cross section for PI+- in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 23,F 10 +name: Table 19 + +--- +data_file: Table20.yaml +description: | + Differential cross section for K+- in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 24,F 9 +name: Table 20 + +--- +data_file: Table21.yaml +description: | + Differential cross section for K+- in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 24,F 10 +name: Table 21 + +--- +data_file: Table22.yaml +description: | + Differential cross section for P PBAR in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 25,F 9 +name: Table 22 + +--- +data_file: Table23.yaml +description: | + Differential cross section for P PBAR in Z0-->Q-QBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 25 +name: Table 23 + +--- +data_file: Table24.yaml +description: | + Differential cross section for charged particles in Z0 -->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 26,F 11 +name: Table 24 + +--- +data_file: Table25.yaml +description: | + Differential cross section for charged particles in Z0 -->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 26,F 10 +name: Table 25 + +--- +data_file: Table26.yaml +description: | + Differential cross section for PI+- in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 27,F 9 +name: Table 26 + +--- +data_file: Table27.yaml +description: | + Differential cross section for PI+- in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 27,F 10 +name: Table 27 + +--- +data_file: Table28.yaml +description: | + Differential cross section for K+- in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 28,F 9 +name: Table 28 + +--- +data_file: Table29.yaml +description: | + Differential cross section for K+- in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 28,F 10 +name: Table 29 + +--- +data_file: Table30.yaml +description: | + Differential cross section for P PBAR in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 29,F 9 +name: Table 30 + +--- +data_file: Table31.yaml +description: | + Differential cross section for P PBAR in Z0-->B-BBAR events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 29,F 10 +name: Table 31 + +--- +data_file: Table32.yaml +description: | + Differential cross section for charged particles in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 30,F 9 +name: Table 32 + +--- +data_file: Table33.yaml +description: | + Differential cross section for charged particles in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 30,F 10 +name: Table 33 + +--- +data_file: Table34.yaml +description: | + Differential cross section for PI+- in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 31,F 9 +name: Table 34 + +--- +data_file: Table35.yaml +description: | + Differential cross section for PI+- in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 31,F 10 +name: Table 35 + +--- +data_file: Table36.yaml +description: | + Differential cross section for K+- in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 32,F 9 +name: Table 36 + +--- +data_file: Table37.yaml +description: | + Differential cross section for K+- in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 32,F 10 +name: Table 37 + +--- +data_file: Table38.yaml +description: | + Differential cross section for P PBAR in Z0-->(U-UBAR,D-DBAR,S-SBAR) events. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 33,F 9 +name: Table 38 + +--- +data_file: Table39.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DLN1/X] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 33,F 10 CT = Differential cross section for P PBAR in Z0->(U-UBAR,D-DBAR,S-SBAR) + events +name: Table 39 + diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml new file mode 100644 index 0000000000..2b59b70747 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.096 + sys: 0.246 +- stat: 0.078 + sys: 0.102 +- stat: 0.072 + sys: 0.098 +- stat: 0.066 + sys: 0.06 +- stat: 0.063 + sys: 0.056 +- stat: 0.044 + sys: 0.047 +- stat: 0.039 + sys: 0.047 +- stat: 0.025 + sys: 0.031 +- stat: 0.02 + sys: 0.027 +- stat: 0.017 + sys: 0.022 +- stat: 0.015 + sys: 0.019 +- stat: 0.0095 + sys: 0.0138 +- stat: 0.0077 + sys: 0.0101 +- stat: 0.0066 + sys: 0.0079 +- stat: 0.0057 + sys: 0.0058 +- stat: 0.0044 + sys: 0.0051 +- stat: 0.0018 + sys: 0.0029 +- stat: 0.0014 + sys: 0.0018 +- stat: 0.00093 + sys: 0.00088 +- stat: 0.00051 + sys: 0.00042 +- stat: 0.00035 + sys: 0.00028 +- stat: 0.0003 + sys: 0.00018 +- stat: 4.2e-05 + sys: 1.3e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_q.yaml new file mode 100644 index 0000000000..f5060892ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_q.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.039 + sys: 0.239 +- stat: 0.032 + sys: 0.101 +- stat: 0.03 + sys: 0.095 +- stat: 0.027 + sys: 0.055 +- stat: 0.025 + sys: 0.051 +- stat: 0.018 + sys: 0.046 +- stat: 0.016 + sys: 0.043 +- stat: 0.01 + sys: 0.027 +- stat: 0.0083 + sys: 0.0257 +- stat: 0.0072 + sys: 0.0216 +- stat: 0.0065 + sys: 0.0183 +- stat: 0.0042 + sys: 0.0157 +- stat: 0.0036 + sys: 0.0124 +- stat: 0.0032 + sys: 0.0101 +- stat: 0.003 + sys: 0.0082 +- stat: 0.0024 + sys: 0.007 +- stat: 0.0012 + sys: 0.0045 +- stat: 0.00096 + sys: 0.00277 +- stat: 0.00066 + sys: 0.00154 +- stat: 0.00042 + sys: 0.00071 +- stat: 0.0003 + sys: 0.00037 +- stat: 0.0002 + sys: 0.00024 +- stat: 8.4e-05 + sys: 5.6e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..5b35a3d9ff --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.13 + sys: 0.2 +- stat: 0.065 + sys: 0.086 +- stat: 0.061 + sys: 0.08 +- stat: 0.043 + sys: 0.046 +- stat: 0.04 + sys: 0.043 +- stat: 0.031 + sys: 0.038 +- stat: 0.03 + sys: 0.037 +- stat: 0.019 + sys: 0.023 +- stat: 0.017 + sys: 0.023 +- stat: 0.014 + sys: 0.019 +- stat: 0.013 + sys: 0.016 +- stat: 0.01 + sys: 0.014 +- stat: 0.0083 + sys: 0.0115 +- stat: 0.007 + sys: 0.0094 +- stat: 0.0062 + sys: 0.0077 +- stat: 0.005 + sys: 0.0066 +- stat: 0.0031 + sys: 0.0043 +- stat: 0.0022 + sys: 0.0027 +- stat: 0.0014 + sys: 0.0015 +- stat: 0.00084 + sys: 0.00073 +- stat: 0.00057 + sys: 0.00037 +- stat: 0.0004 + sys: 0.00028 +- stat: 0.00015 + sys: 6.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml new file mode 100644 index 0000000000..308f44fb20 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.303 +- 0.305 +- 0.331 +- 0.266 +- 0.257 +- 0.284 +- 0.176 +- 0.117 +- 0.093 +- 0.092 +- 0.072 +- 0.079 +- 0.075 +- 0.06 +- 0.044 +- 0.034 +- 0.0173 +- 0.0089 +- 0.00371 +- 0.00102 +- 0.00027 +- 8.3e-05 +- 4.5e-06 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_q.yaml new file mode 100644 index 0000000000..60cfd0c145 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_q.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.32 +- 0.308 +- 0.249 +- 0.263 +- 0.249 +- 0.232 +- 0.1566 +- 0.1198 +- 0.1028 +- 0.0934 +- 0.0758 +- 0.0695 +- 0.0579 +- 0.0457 +- 0.0382 +- 0.0299 +- 0.0193 +- 0.01246 +- 0.00616 +- 0.0026 +- 0.00106 +- 0.000269 +- 4.6e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml new file mode 100644 index 0000000000..7918612649 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml @@ -0,0 +1,24 @@ +data_central: +- 0.354 +- 0.317 +- 0.219 +- 0.251 +- 0.243 +- 0.208 +- 0.1451 +- 0.12 +- 0.1043 +- 0.0914 +- 0.0762 +- 0.0655 +- 0.0552 +- 0.0419 +- 0.0345 +- 0.0277 +- 0.0204 +- 0.0132 +- 0.00681 +- 0.00315 +- 0.00143 +- 0.00027 +- 7.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..8bb5473749 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter.py @@ -0,0 +1,35 @@ +from filter_core import magic +import yaml + +table_q = "rawdata/Table22.yaml" +table_b = "rawdata/Table30.yaml" +table_uds = "rawdata/Table38.yaml" +ndat = 23 +var_name = 'ph' + +data_q, kin_q, err_q = magic(table_q, ndat, var_name) + +with open('data_q.yaml', 'w') as f: + yaml.dump(data_q, f, sort_keys=False) +with open('kinematics_q.yaml', 'w') as f: + yaml.dump(kin_q, f, sort_keys=False) +with open('uncertainties_q.yaml', 'w') as f: + yaml.dump(err_q, f, sort_keys=False) + +data_b, kin_b, err_b = magic(table_b, ndat, var_name) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) + +data_uds, kin_uds, err_uds = magic(table_uds, ndat, var_name) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..b8082d8849 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../DELPHI_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_q.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_q.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml new file mode 100644 index 0000000000..7717070ec0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml @@ -0,0 +1,93 @@ +bins: +- ph: + min: 0.7 + mid: null + max: 0.91 +- ph: + min: 0.91 + mid: null + max: 1.14 +- ph: + min: 1.14 + mid: null + max: 1.37 +- ph: + min: 1.37 + mid: null + max: 1.6 +- ph: + min: 1.6 + mid: null + max: 1.82 +- ph: + min: 1.82 + mid: null + max: 2.28 +- ph: + min: 2.28 + mid: null + max: 2.74 +- ph: + min: 2.74 + mid: null + max: 3.19 +- ph: + min: 3.19 + mid: null + max: 3.65 +- ph: + min: 3.65 + mid: null + max: 4.1 +- ph: + min: 4.1 + mid: null + max: 4.56 +- ph: + min: 4.56 + mid: null + max: 5.47 +- ph: + min: 5.47 + mid: null + max: 6.38 +- ph: + min: 6.38 + mid: null + max: 7.29 +- ph: + min: 7.29 + mid: null + max: 8.21 +- ph: + min: 8.21 + mid: null + max: 9.12 +- ph: + min: 9.12 + mid: null + max: 11.9 +- ph: + min: 11.9 + mid: null + max: 13.7 +- ph: + min: 13.7 + mid: null + max: 18.2 +- ph: + min: 18.2 + mid: null + max: 22.8 +- ph: + min: 22.8 + mid: null + max: 27.4 +- ph: + min: 27.4 + mid: null + max: 36.5 +- ph: + min: 36.5 + mid: null + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..a1b19dd22b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,87 @@ +setname: 'DELPHI_SIA-PRO_91P2GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "DELPHI" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/473409" +hepdata: + url: "https://www.hepdata.net/record/ins473409" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH-INC + process_type: SIA_PH + ndata: 23 + tables: [22] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_q.yaml + data_central: data_q.yaml + data_uncertainties: + - uncertainties_q.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$', units: '$$'} + observable_name: PH-UDS + process_type: SIA_PH + ndata: 23 + tables: [38] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PRO- + PRO+ (UDS tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{uds}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $p_h$ (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$', units: '$$'} + observable_name: PH-B + process_type: SIA_PH + ndata: 23 + tables: [30] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'DELPHI SIA PRO- + PRO+ (B tagged): $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}\Big|_{b}$' + # theory: + # FK_tables: + # - - + # operation: 'null' \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..f44aea50ef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../DELPHI_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml new file mode 100644 index 0000000000..339721b990 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.051 + sys: 0.066 +- stat: 0.053 + sys: 0.05 +- stat: 0.049 + sys: 0.068 +- stat: 0.066 + sys: 0.029 +- stat: 0.049 + sys: 0.028 +- stat: 0.042 + sys: 0.03 +- stat: 0.026 + sys: 0.025 +- stat: 0.016 + sys: 0.014 +- stat: 0.016 + sys: 0.011 +- stat: 0.015 + sys: 0.011 +- stat: 0.016 + sys: 0.011 +- stat: 0.01 + sys: 0.008 +- stat: 0.012 + sys: 0.01 +- stat: 0.019 + sys: 0.007 +- stat: 0.022 + sys: 0.009 +- stat: 0.011 + sys: 0.005 +- stat: 0.0029 + sys: 0.0021 +- stat: 0.0018 + sys: 0.0009 +- stat: 0.00071 + sys: 0.00037 +- stat: 0.00033 + sys: 0.00017 +- stat: 0.00019 + sys: 7.0e-05 +- stat: 7.4e-05 + sys: 7.7e-05 +- stat: 6.0e-06 + sys: 1.73e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_q.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_q.yaml new file mode 100644 index 0000000000..518eb81006 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_q.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.016 + sys: 0.072 +- stat: 0.018 + sys: 0.053 +- stat: 0.022 + sys: 0.043 +- stat: 0.021 + sys: 0.03 +- stat: 0.015 + sys: 0.027 +- stat: 0.012 + sys: 0.021 +- stat: 0.0062 + sys: 0.0175 +- stat: 0.0034 + sys: 0.0123 +- stat: 0.0036 + sys: 0.0097 +- stat: 0.0036 + sys: 0.0108 +- stat: 0.0035 + sys: 0.0097 +- stat: 0.0027 + sys: 0.0066 +- stat: 0.0036 + sys: 0.0069 +- stat: 0.0054 + sys: 0.0062 +- stat: 0.0065 + sys: 0.0063 +- stat: 0.0038 + sys: 0.0046 +- stat: 0.001 + sys: 0.0021 +- stat: 0.00076 + sys: 0.0014 +- stat: 0.00036 + sys: 0.00065 +- stat: 0.00021 + sys: 0.00044 +- stat: 0.00015 + sys: 0.00023 +- stat: 8.4e-05 + sys: 0.000107 +- stat: 5.9e-05 + sys: 2.8e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..39a9fa6db7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/DELPHI_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml @@ -0,0 +1,56 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.028 + sys: 0.075 +- stat: 0.031 + sys: 0.054 +- stat: 0.035 + sys: 0.035 +- stat: 0.025 + sys: 0.024 +- stat: 0.018 + sys: 0.025 +- stat: 0.015 + sys: 0.017 +- stat: 0.0082 + sys: 0.0145 +- stat: 0.0021 + sys: 0.0113 +- stat: 0.003 + sys: 0.0088 +- stat: 0.0041 + sys: 0.0093 +- stat: 0.0035 + sys: 0.0091 +- stat: 0.0036 + sys: 0.0052 +- stat: 0.0048 + sys: 0.0061 +- stat: 0.0066 + sys: 0.0054 +- stat: 0.0077 + sys: 0.0045 +- stat: 0.0049 + sys: 0.0037 +- stat: 0.0013 + sys: 0.0019 +- stat: 0.001 + sys: 0.0014 +- stat: 0.00048 + sys: 0.00065 +- stat: 0.00028 + sys: 0.00045 +- stat: 0.00021 + sys: 0.00024 +- stat: 0.00014 + sys: 7.0e-05 +- stat: 0.00029 + sys: 3.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..20ec51cd32 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/data.yaml @@ -0,0 +1,34 @@ +data_central: +- 0.363 +- 0.373 +- 0.367 +- 0.374 +- 0.375 +- 0.41 +- 0.431 +- 0.418 +- 0.456 +- 0.499 +- 0.514 +- 0.486 +- 0.522 +- 0.541 +- 0.539 +- 0.557 +- 0.587 +- 0.59 +- 0.586 +- 0.591 +- 0.614 +- 0.597 +- 0.613 +- 0.181 +- 0.138 +- 0.103 +- 0.0767 +- 0.0536 +- 0.0349 +- 0.022 +- 0.0127 +- 0.0042 +- 0.0004 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..22eb82b754 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +ndat = 33 +var_name = 'ph' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..c54b776d5b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../OPAL_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..ca0e3d09b0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,133 @@ +bins: +- ph: + min: 0.271 + mid: 0.276 + max: 0.281 +- ph: + min: 0.281 + mid: 0.287 + max: 0.292 +- ph: + min: 0.292 + mid: 0.298 + max: 0.304 +- ph: + min: 0.304 + mid: 0.311 + max: 0.317 +- ph: + min: 0.317 + mid: 0.324 + max: 0.331 +- ph: + min: 0.331 + mid: 0.339 + max: 0.346 +- ph: + min: 0.346 + mid: 0.354 + max: 0.362 +- ph: + min: 0.362 + mid: 0.371 + max: 0.379 +- ph: + min: 0.379 + mid: 0.388 + max: 0.397 +- ph: + min: 0.397 + mid: 0.406 + max: 0.416 +- ph: + min: 0.416 + mid: 0.426 + max: 0.436 +- ph: + min: 0.436 + mid: 0.447 + max: 0.457 +- ph: + min: 0.457 + mid: 0.469 + max: 0.48 +- ph: + min: 0.48 + mid: 0.492 + max: 0.504 +- ph: + min: 0.504 + mid: 0.516 + max: 0.528 +- ph: + min: 0.528 + mid: 0.542 + max: 0.555 +- ph: + min: 0.555 + mid: 0.569 + max: 0.583 +- ph: + min: 0.583 + mid: 0.597 + max: 0.612 +- ph: + min: 0.612 + mid: 0.627 + max: 0.643 +- ph: + min: 0.643 + mid: 0.659 + max: 0.675 +- ph: + min: 0.675 + mid: 0.692 + max: 0.709 +- ph: + min: 0.709 + mid: 0.727 + max: 0.745 +- ph: + min: 0.745 + mid: 0.764 + max: 0.783 +- ph: + min: 4.05 + mid: 4.48 + max: 4.95 +- ph: + min: 4.95 + mid: 5.46 + max: 6.05 +- ph: + min: 6.05 + mid: 6.67 + max: 7.38 +- ph: + min: 7.38 + mid: 8.15 + max: 9.02 +- ph: + min: 9.02 + mid: 9.94 + max: 11.01 +- ph: + min: 11.01 + mid: 12.13 + max: 13.45 +- ph: + min: 13.45 + mid: 14.81 + max: 16.43 +- ph: + min: 16.43 + mid: 18.07 + max: 20.06 +- ph: + min: 20.06 + mid: 23.79 + max: 29.93 +- ph: + min: 29.93 + mid: 33.94 + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..fda5ae2929 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'OPAL_SIA-KA_91P2GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "OPAL" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/372772" +hepdata: + url: "https://www.hepdata.net/record/ins372772" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 33 + tables: [2] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'OPAL SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..2ed73081a7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..fd184bdf78 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-KA_91P2GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,76 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.03 + sys: 0.028 +- stat: 0.027 + sys: 0.028 +- stat: 0.024 + sys: 0.025 +- stat: 0.022 + sys: 0.023 +- stat: 0.021 + sys: 0.019 +- stat: 0.02 + sys: 0.019 +- stat: 0.02 + sys: 0.019 +- stat: 0.018 + sys: 0.02 +- stat: 0.018 + sys: 0.016 +- stat: 0.018 + sys: 0.017 +- stat: 0.017 + sys: 0.016 +- stat: 0.011 + sys: 0.011 +- stat: 0.011 + sys: 0.011 +- stat: 0.011 + sys: 0.012 +- stat: 0.011 + sys: 0.018 +- stat: 0.011 + sys: 0.02 +- stat: 0.011 + sys: 0.014 +- stat: 0.01 + sys: 0.048 +- stat: 0.01 + sys: 0.016 +- stat: 0.01 + sys: 0.044 +- stat: 0.009 + sys: 0.024 +- stat: 0.009 + sys: 0.025 +- stat: 0.009 + sys: 0.031 +- stat: 0.004 + sys: 0.015 +- stat: 0.003 + sys: 0.009 +- stat: 0.001 + sys: 0.006 +- stat: 0.001 + sys: 0.0042 +- stat: 0.0006 + sys: 0.0029 +- stat: 0.0005 + sys: 0.0018 +- stat: 0.0003 + sys: 0.0012 +- stat: 0.0003 + sys: 0.0007 +- stat: 0.0001 + sys: 0.0003 +- stat: 0.0001 + sys: 0.0001 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..54e9ae1f38 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/data.yaml @@ -0,0 +1,52 @@ +data_central: +- 9.89 +- 9.98 +- 10.37 +- 10.38 +- 10.42 +- 10.4 +- 10.53 +- 10.66 +- 10.53 +- 10.56 +- 10.46 +- 10.23 +- 10.29 +- 10.02 +- 9.83 +- 9.62 +- 9.46 +- 9.23 +- 9.05 +- 8.71 +- 8.4 +- 8.12 +- 7.87 +- 7.5 +- 7.26 +- 6.95 +- 6.56 +- 2.374 +- 2.264 +- 2.103 +- 1.944 +- 1.793 +- 1.672 +- 1.55 +- 1.42 +- 1.328 +- 1.221 +- 1.115 +- 1.035 +- 0.955 +- 0.879 +- 0.705 +- 0.478 +- 0.319 +- 0.2052 +- 0.1246 +- 0.0717 +- 0.0386 +- 0.0206 +- 0.0058 +- 0.0006 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..1c6123734f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table1.yaml" +ndat = 51 +var_name = 'ph' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..85dde21f08 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/filter_core.py @@ -0,0 +1,53 @@ +import yaml + +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..0ebaef6caf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,205 @@ +bins: +- ph: + min: 0.227 + mid: 2.33000000e-01 + max: 0.239 +- ph: + min: 0.239 + mid: 0.245 + max: 0.251 +- ph: + min: 0.251 + mid: 0.257 + max: 0.263 +- ph: + min: 0.263 + mid: 0.27 + max: 0.276 +- ph: + min: 0.276 + mid: 2.83000000e-01 + max: 0.29 +- ph: + min: 0.29 + mid: 0.298 + max: 0.305 +- ph: + min: 0.305 + mid: 0.313 + max: 0.32 +- ph: + min: 0.32 + mid: 0.328 + max: 0.336 +- ph: + min: 0.336 + mid: 0.345 + max: 0.353 +- ph: + min: 0.353 + mid: 0.362 + max: 0.371 +- ph: + min: 0.371 + mid: 0.381 + max: 0.39 +- ph: + min: 0.39 + mid: 0.4 + max: 0.41 +- ph: + min: 0.41 + mid: 0.42 + max: 0.431 +- ph: + min: 0.431 + mid: 0.442 + max: 0.453 +- ph: + min: 0.453 + mid: 0.464 + max: 0.476 +- ph: + min: 0.476 + mid: 0.488 + max: 0.5 +- ph: + min: 0.5 + mid: 0.513 + max: 0.525 +- ph: + min: 0.525 + mid: 0.539 + max: 0.552 +- ph: + min: 0.552 + mid: 5.66000000e-01 + max: 0.58 +- ph: + min: 0.58 + mid: 0.595 + max: 0.61 +- ph: + min: 0.61 + mid: 0.625 + max: 0.641 +- ph: + min: 0.641 + mid: 0.657 + max: 0.673 +- ph: + min: 0.673 + mid: 0.691 + max: 0.708 +- ph: + min: 0.708 + mid: 0.726 + max: 0.744 +- ph: + min: 0.744 + mid: 0.763 + max: 0.782 +- ph: + min: 0.782 + mid: 0.802 + max: 0.822 +- ph: + min: 0.822 + mid: 0.843 + max: 0.864 +- ph: + min: 2.02 + mid: 2.07000000e+00 + max: 2.12 +- ph: + min: 2.12 + mid: 2.17 + max: 2.23 +- ph: + min: 2.23 + mid: 2.28 + max: 2.34 +- ph: + min: 2.34 + mid: 2.4 + max: 2.46 +- ph: + min: 2.46 + mid: 2.52 + max: 2.59 +- ph: + min: 2.59 + mid: 2.65 + max: 2.72 +- ph: + min: 2.72 + mid: 2.79 + max: 2.86 +- ph: + min: 2.86 + mid: 2.93 + max: 3.01 +- ph: + min: 3.01 + mid: 3.08 + max: 3.16 +- ph: + min: 3.16 + mid: 3.24 + max: 3.32 +- ph: + min: 3.32 + mid: 3.41 + max: 3.49 +- ph: + min: 3.49 + mid: 3.58 + max: 3.67 +- ph: + min: 3.67 + mid: 3.76 + max: 3.86 +- ph: + min: 3.86 + mid: 3.96 + max: 4.06 +- ph: + min: 4.06 + mid: 4.48 + max: 4.95 +- ph: + min: 4.95 + mid: 5.47 + max: 6.05 +- ph: + min: 6.05 + mid: 6.68 + max: 7.39 +- ph: + min: 7.39 + mid: 8.15 + max: 9.02 +- ph: + min: 9.02 + mid: 9.95 + max: 11.02 +- ph: + min: 11.02 + mid: 12.14 + max: 13.46 +- ph: + min: 13.46 + mid: 14.82 + max: 16.44 +- ph: + min: 16.44 + mid: 18.08 + max: 20.08 +- ph: + min: 20.08 + mid: 23.81 + max: 29.95 +- ph: + min: 29.95 + mid: 33.97 + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..1b398a44ea --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'OPAL_SIA-PI_91P2GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "OPAL" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/372772" +hepdata: + url: "https://www.hepdata.net/record/ins372772" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 51 + tables: [1] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'OPAL SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..2a24c39cc1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,265 @@ +dependent_variables: +- header: {name: (1/SIG(C=HAD))*D(SIG)/DP, units: GEV**-1} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.29} + value: 9.89 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.29} + value: 9.98 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.31} + value: 10.37 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.31} + value: 10.38 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.31} + value: 10.42 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.31} + value: 10.4 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.31} + value: 10.53 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.31} + value: 10.66 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.31} + value: 10.53 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.31} + value: 10.56 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.31} + value: 10.46 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.3} + value: 10.23 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.3} + value: 10.29 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.29} + value: 10.02 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.29} + value: 9.83 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.28} + value: 9.62 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.28} + value: 9.46 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.27} + value: 9.23 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.26} + value: 9.05 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.25} + value: 8.71 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.25} + value: 8.4 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.24} + value: 8.12 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.23} + value: 7.87 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.22} + value: 7.5 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.21} + value: 7.26 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.2} + value: 6.95 + - errors: + - {label: stat, symerror: 0.04} + - {label: sys, symerror: 0.2} + value: 6.56 + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.209} + value: 2.374 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.079} + value: 2.264 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.036} + value: 2.103 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.027} + value: 1.944 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.026} + value: 1.793 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.024} + value: 1.672 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.024} + value: 1.55 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.022} + value: 1.42 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.019} + value: 1.328 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.017} + value: 1.221 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.015} + value: 1.115 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.015} + value: 1.035 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.014} + value: 0.955 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.012} + value: 0.879 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + value: 0.705 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + value: 0.478 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + value: 0.319 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0032} + value: 0.2052 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0024} + value: 0.1246 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0016} + value: 0.0717 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0012} + value: 0.0386 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0013} + value: 0.0206 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0004} + value: 0.0058 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0002} + value: 0.0006 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.239, low: 0.227} + - {high: 0.251, low: 0.239} + - {high: 0.263, low: 0.251} + - {high: 0.276, low: 0.263, value: 0.27} + - {high: 0.29, low: 0.276} + - {high: 0.305, low: 0.29, value: 0.298} + - {high: 0.32, low: 0.305, value: 0.313} + - {high: 0.336, low: 0.32} + - {high: 0.353, low: 0.336, value: 0.345} + - {high: 0.371, low: 0.353} + - {high: 0.39, low: 0.371, value: 0.381} + - {high: 0.41, low: 0.39} + - {high: 0.431, low: 0.41, value: 0.42} + - {high: 0.453, low: 0.431} + - {high: 0.476, low: 0.453, value: 0.464} + - {high: 0.5, low: 0.476} + - {high: 0.525, low: 0.5, value: 0.513} + - {high: 0.552, low: 0.525, value: 0.539} + - {high: 0.58, low: 0.552} + - {high: 0.61, low: 0.58} + - {high: 0.641, low: 0.61, value: 0.625} + - {high: 0.673, low: 0.641} + - {high: 0.708, low: 0.673, value: 0.691} + - {high: 0.744, low: 0.708} + - {high: 0.782, low: 0.744} + - {high: 0.822, low: 0.782} + - {high: 0.864, low: 0.822} + - {high: 2.12, low: 2.02} + - {high: 2.23, low: 2.12, value: 2.17} + - {high: 2.34, low: 2.23, value: 2.28} + - {high: 2.46, low: 2.34} + - {high: 2.59, low: 2.46, value: 2.52} + - {high: 2.72, low: 2.59, value: 2.65} + - {high: 2.86, low: 2.72} + - {high: 3.01, low: 2.86, value: 2.93} + - {high: 3.16, low: 3.01, value: 3.08} + - {high: 3.32, low: 3.16} + - {high: 3.49, low: 3.32, value: 3.41} + - {high: 3.67, low: 3.49} + - {high: 3.86, low: 3.67, value: 3.76} + - {high: 4.06, low: 3.86} + - {high: 4.95, low: 4.06, value: 4.48} + - {high: 6.05, low: 4.95, value: 5.47} + - {high: 7.39, low: 6.05, value: 6.68} + - {high: 9.02, low: 7.39, value: 8.15} + - {high: 11.02, low: 9.02, value: 9.95} + - {high: 13.46, low: 11.02, value: 12.14} + - {high: 16.44, low: 13.46, value: 14.82} + - {high: 20.08, low: 16.44, value: 18.08} + - {high: 29.95, low: 20.08, value: 23.81} + - {high: 45.6, low: 29.95, value: 33.97} diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..cabe5cff8e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,175 @@ +dependent_variables: +- header: {name: (1/SIG(C=HAD))*D(SIG)/DP, units: GEV**-1} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.028} + value: 0.363 + - errors: + - {label: stat, symerror: 0.027} + - {label: sys, symerror: 0.028} + value: 0.373 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.025} + value: 0.367 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.023} + value: 0.374 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.019} + value: 0.375 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.019} + value: 0.41 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.019} + value: 0.431 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.02} + value: 0.418 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.016} + value: 0.456 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.017} + value: 0.499 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.016} + value: 0.514 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.011} + value: 0.486 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.011} + value: 0.522 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.012} + value: 0.541 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.018} + value: 0.539 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.02} + value: 0.557 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.014} + value: 0.587 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.048} + value: 0.59 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.016} + value: 0.586 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.044} + value: 0.591 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.024} + value: 0.614 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.025} + value: 0.597 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.031} + value: 0.613 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.015} + value: 0.181 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + value: 0.138 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + value: 0.103 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0042} + value: 0.0767 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0029} + value: 0.0536 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0018} + value: 0.0349 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0012} + value: 0.022 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0007} + value: 0.0127 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0003} + value: 0.0042 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0001} + value: 0.0004 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.281, low: 0.271} + - {high: 0.292, low: 0.281, value: 0.287} + - {high: 0.304, low: 0.292} + - {high: 0.317, low: 0.304, value: 0.311} + - {high: 0.331, low: 0.317} + - {high: 0.346, low: 0.331, value: 0.339} + - {high: 0.362, low: 0.346} + - {high: 0.379, low: 0.362, value: 0.371} + - {high: 0.397, low: 0.379} + - {high: 0.416, low: 0.397, value: 0.406} + - {high: 0.436, low: 0.416} + - {high: 0.457, low: 0.436, value: 0.447} + - {high: 0.48, low: 0.457, value: 0.469} + - {high: 0.504, low: 0.48} + - {high: 0.528, low: 0.504} + - {high: 0.555, low: 0.528, value: 0.542} + - {high: 0.583, low: 0.555} + - {high: 0.612, low: 0.583, value: 0.597} + - {high: 0.643, low: 0.612, value: 0.627} + - {high: 0.675, low: 0.643} + - {high: 0.709, low: 0.675} + - {high: 0.745, low: 0.709} + - {high: 0.783, low: 0.745} + - {high: 4.95, low: 4.05, value: 4.48} + - {high: 6.05, low: 4.95, value: 5.46} + - {high: 7.38, low: 6.05, value: 6.67} + - {high: 9.02, low: 7.38, value: 8.15} + - {high: 11.01, low: 9.02, value: 9.94} + - {high: 13.45, low: 11.01, value: 12.13} + - {high: 16.43, low: 13.45, value: 14.81} + - {high: 20.06, low: 16.43, value: 18.07} + - {high: 29.93, low: 20.06, value: 23.79} + - {high: 45.6, low: 29.93, value: 33.94} diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..f4f29b9818 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,195 @@ +dependent_variables: +- header: {name: (1/SIG(C=HAD))*D(SIG)/DP, units: GEV**-1} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '91.2'} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.013} + value: 0.169 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.015} + value: 0.174 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.012} + value: 0.171 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.015} + value: 0.185 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.006} + value: 0.181 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.01} + value: 0.202 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.012} + value: 0.215 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.014} + value: 0.228 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.01} + value: 0.23 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.007} + value: 0.23 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.012} + value: 0.236 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.008} + value: 0.239 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.006} + value: 0.246 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.009} + value: 0.248 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.009} + value: 0.248 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.008} + value: 0.254 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.007} + value: 0.26 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.007} + value: 0.26 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.006} + value: 0.257 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.007} + value: 0.263 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.021} + value: 0.257 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.027} + value: 0.256 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.029} + value: 0.257 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.027} + value: 0.248 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.017} + value: 0.241 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.016} + value: 0.25 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.021} + value: 0.245 + - errors: + - {label: stat, symerror: 0.0036} + - {label: sys, symerror: 0.0129} + value: 0.0606 + - errors: + - {label: stat, symerror: 0.0029} + - {label: sys, symerror: 0.0062} + value: 0.0517 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0031} + value: 0.0352 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0023} + value: 0.0214 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0021} + value: 0.0152 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0013} + value: 0.0093 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0006} + value: 0.0045 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0005} + value: 0.0015 + - errors: + - {label: stat, symerror: 5.0e-05} + - {label: sys, symerror: 0.00014} + value: 0.00056 + - errors: + - {label: stat, symerror: 4.0e-06} + - {label: sys, symerror: 2.6e-05} + value: 1.5e-05 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.421, low: 0.406, value: 0.414} + - {high: 0.438, low: 0.421, value: 0.429} + - {high: 0.456, low: 0.438} + - {high: 0.475, low: 0.456, value: 0.465} + - {high: 0.495, low: 0.475} + - {high: 0.517, low: 0.495} + - {high: 0.541, low: 0.517} + - {high: 0.565, low: 0.541} + - {high: 0.592, low: 0.565, value: 0.579} + - {high: 0.62, low: 0.592} + - {high: 0.65, low: 0.62} + - {high: 0.681, low: 0.65, value: 0.665} + - {high: 0.714, low: 0.681, value: 0.698} + - {high: 0.75, low: 0.714} + - {high: 0.787, low: 0.75, value: 0.768} + - {high: 0.826, low: 0.787, value: 0.806} + - {high: 0.867, low: 0.826, value: 0.846} + - {high: 0.911, low: 0.867} + - {high: 0.957, low: 0.911, value: 0.933} + - {high: 1.005, low: 0.957, value: 0.98} + - {high: 1.056, low: 1.005, value: 1.03} + - {high: 1.109, low: 1.056, value: 1.082} + - {high: 1.166, low: 1.109, value: 1.137} + - {high: 1.225, low: 1.166, value: 1.195} + - {high: 1.287, low: 1.225} + - {high: 1.353, low: 1.287} + - {high: 1.422, low: 1.353, value: 1.387} + - {high: 4.95, low: 4.05, value: 4.47} + - {high: 6.04, low: 4.95, value: 5.46} + - {high: 7.38, low: 6.04, value: 6.67} + - {high: 9.01, low: 7.38, value: 8.14} + - {high: 11.01, low: 9.01, value: 9.94} + - {high: 13.44, low: 11.01, value: 12.12} + - {high: 16.42, low: 13.44, value: 14.8} + - {high: 20.05, low: 16.42, value: 18.05} + - {high: 29.9, low: 20.05, value: 23.78} + - {high: 45.6, low: 29.9, value: 33.92} diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..406f34cf13 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,32 @@ +dependent_variables: +- header: {name: SIG/SIG(Q=HAD)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 0.43} + value: 17.05 +- header: {name: SIG/SIG(Q=HAD)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 0.13} + value: 2.42 +- header: {name: SIG/SIG(Q=HAD)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> HADRONS} + - {name: SQRT(S), units: GeV, value: '91.2'} + values: + - errors: + - {symerror: 0.11} + value: 0.92 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 91.2} diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..ab3945c470 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,79 @@ +--- +additional_resources: +- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#OPAL_1994_S2927284'} +comment: | + CERN-LEP. Measurement of the inclusive production rates of charged pions, charged kaons, and proton / antiprotons in hadronic Z0 events. The data were collected in 1992 and correspond to 766016 after selection. +dateupdated: 01/09/1994 00:00:00 +modifications: +- {action: Encoded, date: 1 SEP 1994, who: Mike Whalley} +record_ids: +- {id: 372772, type: inspire} +- {id: 1733, type: red} + +--- +data_file: Table1.yaml +description: | + Normalised momentum distribution for charged pion production. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> ZO] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 3 +name: Table 1 + +--- +data_file: Table2.yaml +description: | + Normalised momentum distribution for charged kaon production. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Cross Section, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.2] +location: Data from T 4 +name: Table 2 + +--- +data_file: Table3.yaml +description: | + Normalised momentum distribution for proton / antiproton production. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [91.2] +location: Data from T 5 +name: Table 3 + +--- +data_file: Table4.yaml +description: | + Total charged particle rate per hadronic event. Statistical and systematic errors added in quadrature. +keywords: +- name: reactions + values: [E+ E- --> HADRONS, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ + E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [SIG] +- name: phrases + values: [Exclusive, Inclusive, Exclusive, Integrated Cross Section, Cross Section, + E+ E- Scattering, Strange production, R measurement] +- name: cmenergies + values: [91.2] +location: Data from T 6 +name: Table 4 + diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..c746ede83b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PI_91P2GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,112 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.07 + sys: 0.29 +- stat: 0.07 + sys: 0.29 +- stat: 0.07 + sys: 0.31 +- stat: 0.07 + sys: 0.31 +- stat: 0.07 + sys: 0.31 +- stat: 0.07 + sys: 0.31 +- stat: 0.06 + sys: 0.31 +- stat: 0.06 + sys: 0.31 +- stat: 0.06 + sys: 0.31 +- stat: 0.06 + sys: 0.31 +- stat: 0.06 + sys: 0.31 +- stat: 0.06 + sys: 0.3 +- stat: 0.06 + sys: 0.3 +- stat: 0.05 + sys: 0.29 +- stat: 0.05 + sys: 0.29 +- stat: 0.05 + sys: 0.28 +- stat: 0.05 + sys: 0.28 +- stat: 0.05 + sys: 0.27 +- stat: 0.05 + sys: 0.26 +- stat: 0.04 + sys: 0.25 +- stat: 0.04 + sys: 0.25 +- stat: 0.04 + sys: 0.24 +- stat: 0.04 + sys: 0.23 +- stat: 0.04 + sys: 0.22 +- stat: 0.03 + sys: 0.21 +- stat: 0.03 + sys: 0.2 +- stat: 0.04 + sys: 0.2 +- stat: 0.031 + sys: 0.209 +- stat: 0.013 + sys: 0.079 +- stat: 0.018 + sys: 0.036 +- stat: 0.01 + sys: 0.027 +- stat: 0.008 + sys: 0.026 +- stat: 0.009 + sys: 0.024 +- stat: 0.013 + sys: 0.024 +- stat: 0.008 + sys: 0.022 +- stat: 0.008 + sys: 0.019 +- stat: 0.008 + sys: 0.017 +- stat: 0.007 + sys: 0.015 +- stat: 0.007 + sys: 0.015 +- stat: 0.006 + sys: 0.014 +- stat: 0.006 + sys: 0.012 +- stat: 0.003 + sys: 0.009 +- stat: 0.002 + sys: 0.007 +- stat: 0.001 + sys: 0.005 +- stat: 0.0012 + sys: 0.0032 +- stat: 0.0008 + sys: 0.0024 +- stat: 0.0006 + sys: 0.0016 +- stat: 0.0005 + sys: 0.0012 +- stat: 0.0004 + sys: 0.0013 +- stat: 0.0001 + sys: 0.0004 +- stat: 0.0001 + sys: 0.0002 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..9b54d7e09b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/data.yaml @@ -0,0 +1,38 @@ +data_central: +- 0.169 +- 0.174 +- 0.171 +- 0.185 +- 0.181 +- 0.202 +- 0.215 +- 0.228 +- 0.23 +- 0.23 +- 0.236 +- 0.239 +- 0.246 +- 0.248 +- 0.248 +- 0.254 +- 0.26 +- 0.26 +- 0.257 +- 0.263 +- 0.257 +- 0.256 +- 0.257 +- 0.248 +- 0.241 +- 0.25 +- 0.245 +- 0.0606 +- 0.0517 +- 0.0352 +- 0.0214 +- 0.0152 +- 0.0093 +- 0.0045 +- 0.0015 +- 0.00056 +- 1.5e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..adc0ca834c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table3.yaml" +ndat = 37 +var_name = 'ph' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..c54b776d5b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../OPAL_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..0c094e0109 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,149 @@ +bins: +- ph: + min: 0.406 + mid: 0.414 + max: 0.421 +- ph: + min: 0.421 + mid: 0.429 + max: 0.438 +- ph: + min: 0.438 + mid: 0.447 + max: 0.456 +- ph: + min: 0.456 + mid: 0.465 + max: 0.475 +- ph: + min: 0.475 + mid: 0.485 + max: 0.495 +- ph: + min: 0.495 + mid: 0.506 + max: 0.517 +- ph: + min: 0.517 + mid: 0.529 + max: 0.541 +- ph: + min: 0.541 + mid: 5.53000000e-01 + max: 0.565 +- ph: + min: 0.565 + mid: 0.579 + max: 0.592 +- ph: + min: 0.592 + mid: 0.606 + max: 0.62 +- ph: + min: 0.62 + mid: 0.635 + max: 0.65 +- ph: + min: 0.65 + mid: 0.665 + max: 0.681 +- ph: + min: 0.681 + mid: 0.698 + max: 0.714 +- ph: + min: 0.714 + mid: 0.732 + max: 0.75 +- ph: + min: 0.75 + mid: 0.768 + max: 0.787 +- ph: + min: 0.787 + mid: 0.806 + max: 0.826 +- ph: + min: 0.826 + mid: 0.846 + max: 0.867 +- ph: + min: 0.867 + mid: 0.889 + max: 0.911 +- ph: + min: 0.911 + mid: 0.933 + max: 0.957 +- ph: + min: 0.957 + mid: 0.98 + max: 1.005 +- ph: + min: 1.005 + mid: 1.03 + max: 1.056 +- ph: + min: 1.056 + mid: 1.082 + max: 1.109 +- ph: + min: 1.109 + mid: 1.137 + max: 1.166 +- ph: + min: 1.166 + mid: 1.195 + max: 1.225 +- ph: + min: 1.225 + mid: 1.256 + max: 1.287 +- ph: + min: 1.287 + mid: 1.32000000e+00 + max: 1.353 +- ph: + min: 1.353 + mid: 1.387 + max: 1.422 +- ph: + min: 4.05 + mid: 4.47 + max: 4.95 +- ph: + min: 4.95 + mid: 5.46 + max: 6.04 +- ph: + min: 6.04 + mid: 6.67 + max: 7.38 +- ph: + min: 7.38 + mid: 8.14 + max: 9.01 +- ph: + min: 9.01 + mid: 9.94 + max: 11.01 +- ph: + min: 11.01 + mid: 12.12 + max: 13.44 +- ph: + min: 13.44 + mid: 14.8 + max: 16.42 +- ph: + min: 16.42 + mid: 18.05 + max: 20.05 +- ph: + min: 20.05 + mid: 23.78 + max: 29.9 +- ph: + min: 29.9 + mid: 33.92 + max: 45.6 diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..18d70d37f2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'OPAL_SIA-PRO_91P2GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "OPAL" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/372772" +hepdata: + url: "https://www.hepdata.net/record/ins372772" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $p_h$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 37 + tables: [3] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'OPAL SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + x_scale: log + plot_x: ph + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dp_h}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..2ed73081a7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../OPAL_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..6e75ac02a5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/OPAL_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,84 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR +bins: +- stat: 0.01 + sys: 0.013 +- stat: 0.009 + sys: 0.015 +- stat: 0.009 + sys: 0.012 +- stat: 0.008 + sys: 0.015 +- stat: 0.008 + sys: 0.006 +- stat: 0.008 + sys: 0.01 +- stat: 0.008 + sys: 0.012 +- stat: 0.008 + sys: 0.014 +- stat: 0.008 + sys: 0.01 +- stat: 0.008 + sys: 0.007 +- stat: 0.007 + sys: 0.012 +- stat: 0.007 + sys: 0.008 +- stat: 0.007 + sys: 0.006 +- stat: 0.007 + sys: 0.009 +- stat: 0.004 + sys: 0.009 +- stat: 0.004 + sys: 0.008 +- stat: 0.004 + sys: 0.007 +- stat: 0.004 + sys: 0.007 +- stat: 0.004 + sys: 0.006 +- stat: 0.004 + sys: 0.007 +- stat: 0.004 + sys: 0.021 +- stat: 0.004 + sys: 0.027 +- stat: 0.004 + sys: 0.029 +- stat: 0.004 + sys: 0.027 +- stat: 0.004 + sys: 0.017 +- stat: 0.004 + sys: 0.016 +- stat: 0.004 + sys: 0.021 +- stat: 0.0036 + sys: 0.0129 +- stat: 0.0029 + sys: 0.0062 +- stat: 0.0011 + sys: 0.0031 +- stat: 0.0011 + sys: 0.0023 +- stat: 0.0006 + sys: 0.0021 +- stat: 0.0004 + sys: 0.0013 +- stat: 0.0003 + sys: 0.0006 +- stat: 0.0002 + sys: 0.0005 +- stat: 5.0e-05 + sys: 0.00014 +- stat: 4.0e-06 + sys: 2.6e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml new file mode 100644 index 0000000000..ae15a4c16a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_b.yaml @@ -0,0 +1,37 @@ +data_central: +- 30.21 +- 23.06 +- 22.89 +- 21.64 +- 21.36 +- 21.36 +- 19.9 +- 18.91 +- 18.46 +- 17.43 +- 16.92 +- 15.62 +- 15.11 +- 13.18 +- 12.43 +- 11.56 +- 9.96 +- 7.17 +- 4.58 +- 4.2 +- 2.541 +- 2.009 +- 1.627 +- 1.116 +- 0.83 +- 0.64 +- 0.452 +- 0.337 +- 0.245 +- 0.149 +- 0.108 +- 0.057 +- 0.061 +- 0.012 +- 0.002 +- -0.001 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_c.yaml new file mode 100644 index 0000000000..bcc303ef35 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_c.yaml @@ -0,0 +1,37 @@ +data_central: +- 30.92 +- 22.43 +- 22.04 +- 20.82 +- 16.79 +- 16.68 +- 16.46 +- 15.81 +- 12.62 +- 12.24 +- 11.42 +- 10.95 +- 10.88 +- 9.62 +- 9.84 +- 8.08 +- 8.98 +- 6.59 +- 5.5 +- 5.12 +- 3.85 +- 3.087 +- 2.074 +- 1.96 +- 1.681 +- 1.368 +- 1.043 +- 0.874 +- 0.6 +- 0.408 +- 0.408 +- 0.243 +- 0.173 +- 0.064 +- 0.009 +- 0.008 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_inc.yaml new file mode 100644 index 0000000000..a9f77dd9f6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_inc.yaml @@ -0,0 +1,37 @@ +data_central: +- 28.59 +- 21.57 +- 21.62 +- 19.65 +- 18.02 +- 17.27 +- 15.78 +- 14.664 +- 13.535 +- 12.599 +- 12.036 +- 11.349 +- 10.207 +- 9.571 +- 8.671 +- 7.784 +- 7.237 +- 5.746 +- 3.959 +- 3.473 +- 2.739 +- 2.452 +- 1.903 +- 1.574 +- 1.36 +- 1.118 +- 0.89 +- 0.683 +- 0.567 +- 0.433 +- 0.351 +- 0.264 +- 0.188 +- 0.122 +- 0.0485 +- 0.0078 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml new file mode 100644 index 0000000000..8511bd266e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/data_uds.yaml @@ -0,0 +1,37 @@ +data_central: +- 27.05 +- 20.0 +- 19.74 +- 17.52 +- 16.08 +- 15.04 +- 13.54 +- 11.87 +- 11.44 +- 10.64 +- 10.24 +- 9.67 +- 8.13 +- 7.98 +- 7.0 +- 6.36 +- 5.85 +- 4.89 +- 3.41 +- 2.84 +- 2.564 +- 2.401 +- 1.973 +- 1.643 +- 1.481 +- 1.211 +- 1.001 +- 0.746 +- 0.666 +- 0.559 +- 0.426 +- 0.363 +- 0.261 +- 0.183 +- 0.079 +- 0.008 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..e35bb247e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter.py @@ -0,0 +1,41 @@ +from filter_core import magic1, magic2 +import yaml + +table_inc = "rawdata/Table3.yaml" +table_tag = "rawdata/Table6.yaml" +ndat = 36 +var_name = 'xp' + +data_inc, kin_inc, err_inc = magic1(table_inc, ndat, var_name) + +with open('data_inc.yaml', 'w') as f: + yaml.dump(data_inc, f, sort_keys=False) +with open('kinematics_inc.yaml', 'w') as f: + yaml.dump(kin_inc, f, sort_keys=False) +with open('uncertainties_inc.yaml', 'w') as f: + yaml.dump(err_inc, f, sort_keys=False) + +data_uds, kin_uds, err_uds, data_c, kin_c, err_c, data_b, kin_b, err_b = magic2( + table_tag, ndat, var_name +) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) + +with open('data_c.yaml', 'w') as f: + yaml.dump(data_c, f, sort_keys=False) +with open('kinematics_c.yaml', 'w') as f: + yaml.dump(kin_c, f, sort_keys=False) +with open('uncertainties_c.yaml', 'w') as f: + yaml.dump(err_c, f, sort_keys=False) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..046ff5d403 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../SLD_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_b.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_c.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_c.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_inc.yaml new file mode 100644 index 0000000000..e0938089da --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_inc.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: 0.014 + mid: 0.0153 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0191 + max: 0.022 +- xp: + min: 0.022 + mid: 0.0246 + max: 0.027 +- xp: + min: 0.027 + mid: 0.0301 + max: 0.033 +- xp: + min: 0.033 + mid: 0.0356 + max: 0.038 +- xp: + min: 0.038 + mid: 0.0411 + max: 0.044 +- xp: + min: 0.044 + mid: 0.0465 + max: 0.049 +- xp: + min: 0.049 + mid: 0.0521 + max: 0.055 +- xp: + min: 0.055 + mid: 0.0576 + max: 0.06 +- xp: + min: 0.06 + mid: 0.063 + max: 0.066 +- xp: + min: 0.066 + mid: 0.0685 + max: 0.071 +- xp: + min: 0.071 + mid: 0.074 + max: 0.077 +- xp: + min: 0.077 + mid: 0.0795 + max: 0.082 +- xp: + min: 0.082 + mid: 8.50000000e-02 + max: 0.088 +- xp: + min: 0.088 + mid: 0.0931 + max: 0.099 +- xp: + min: 0.099 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.115 + max: 0.121 +- xp: + min: 0.121 + mid: 0.131 + max: 0.143 +- xp: + min: 0.143 + mid: 0.153 + max: 0.164 +- xp: + min: 0.164 + mid: 0.175 + max: 0.186 +- xp: + min: 0.186 + mid: 0.197 + max: 0.208 +- xp: + min: 0.208 + mid: 0.2189 + max: 0.23 +- xp: + min: 0.23 + mid: 0.241 + max: 0.252 +- xp: + min: 0.252 + mid: 0.2629 + max: 0.274 +- xp: + min: 0.274 + mid: 0.2849 + max: 0.296 +- xp: + min: 0.296 + mid: 0.3068 + max: 0.318 +- xp: + min: 0.318 + mid: 0.3338 + max: 0.351 +- xp: + min: 0.351 + mid: 0.3666 + max: 0.384 +- xp: + min: 0.384 + mid: 0.3997 + max: 0.417 +- xp: + min: 0.417 + mid: 0.4325 + max: 0.45 +- xp: + min: 0.45 + mid: 0.4651 + max: 0.482 +- xp: + min: 0.482 + mid: 0.5035 + max: 0.526 +- xp: + min: 0.526 + mid: 0.547 + max: 0.57 +- xp: + min: 0.57 + mid: 0.6083 + max: 0.658 +- xp: + min: 0.658 + mid: 0.7047 + max: 0.768 +- xp: + min: 0.768 + mid: 0.8383 + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/kinematics_uds.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..e9be3fc9d7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,111 @@ +setname: 'SLD_SIA-KA_91P2GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "SLD" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/0310017" +iNSPIRE: + url: "https://inspirehep.net/literature/630327" +hepdata: + url: "https://www.hepdata.net/record/ins630327" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP-INC + process_type: SIA_XP + ndata: 36 + tables: [3] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_inc.yaml + data_central: data_inc.yaml + data_uncertainties: + - uncertainties_inc.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$', units: '$$'} + observable_name: XP-UDS + process_type: SIA_XP + ndata: 36 + tables: [6] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{uds}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (C tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$', units: '$$'} + observable_name: XP-C + process_type: SIA_XP + ndata: 36 + tables: [6] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_c.yaml + data_central: data_c.yaml + data_uncertainties: + - uncertainties_c.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{c}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$', units: '$$'} + observable_name: XP-B + process_type: SIA_XP + ndata: 36 + tables: [6] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{b}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..69d9a22a88 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml new file mode 100644 index 0000000000..badfca9614 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_b.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 1.99 + sys_norm: 3.02100000e-01 +- error: 0.62 + sys_norm: 0.2306 +- error: 0.6 + sys_norm: 2.28900000e-01 +- error: 0.55 + sys_norm: 0.2164 +- error: 0.53 + sys_norm: 0.2136 +- error: 0.56 + sys_norm: 0.2136 +- error: 0.57 + sys_norm: 1.99000000e-01 +- error: 0.6 + sys_norm: 1.89100000e-01 +- error: 0.58 + sys_norm: 1.84600000e-01 +- error: 0.54 + sys_norm: 0.1743 +- error: 0.53 + sys_norm: 1.69200000e-01 +- error: 0.52 + sys_norm: 0.1562 +- error: 0.52 + sys_norm: 1.51100000e-01 +- error: 0.5 + sys_norm: 0.1318 +- error: 0.36 + sys_norm: 0.1243 +- error: 0.37 + sys_norm: 1.15600000e-01 +- error: 0.38 + sys_norm: 9.96000000e-02 +- error: 0.27 + sys_norm: 0.0717 +- error: 0.29 + sys_norm: 0.0458 +- error: 0.36 + sys_norm: 0.042 +- error: 0.126 + sys_norm: 0.02541 +- error: 0.096 + sys_norm: 0.02009 +- error: 0.078 + sys_norm: 0.01627 +- error: 0.062 + sys_norm: 1.11600000e-02 +- error: 0.053 + sys_norm: 0.0083 +- error: 0.045 + sys_norm: 0.0064 +- error: 0.032 + sys_norm: 4.52000000e-03 +- error: 0.028 + sys_norm: 0.00337 +- error: 0.024 + sys_norm: 0.00245 +- error: 0.02 + sys_norm: 0.00149 +- error: 0.018 + sys_norm: 0.00108 +- error: 0.012 + sys_norm: 5.70000000e-04 +- error: 0.013 + sys_norm: 0.00061 +- error: 0.005 + sys_norm: 0.00012 +- error: 0.003 + sys_norm: 2.0e-05 +- error: 0.001 + sys_norm: -1.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_c.yaml new file mode 100644 index 0000000000..e29a7a0528 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_c.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 3.86 + sys_norm: 3.09200000e-01 +- error: 1.37 + sys_norm: 0.2243 +- error: 1.27 + sys_norm: 2.20400000e-01 +- error: 1.17 + sys_norm: 0.2082 +- error: 1.15 + sys_norm: 0.1679 +- error: 1.15 + sys_norm: 0.1668 +- error: 1.06 + sys_norm: 1.64600000e-01 +- error: 1.08 + sys_norm: 1.58100000e-01 +- error: 0.99 + sys_norm: 0.1262 +- error: 0.92 + sys_norm: 1.22400000e-01 +- error: 0.87 + sys_norm: 0.1142 +- error: 0.85 + sys_norm: 0.1095 +- error: 0.84 + sys_norm: 1.08800000e-01 +- error: 0.81 + sys_norm: 0.0962 +- error: 0.59 + sys_norm: 0.0984 +- error: 0.58 + sys_norm: 0.0808 +- error: 0.63 + sys_norm: 0.0898 +- error: 0.45 + sys_norm: 0.0659 +- error: 0.51 + sys_norm: 0.055 +- error: 0.68 + sys_norm: 0.0512 +- error: 0.245 + sys_norm: 0.0385 +- error: 0.19 + sys_norm: 0.03087 +- error: 0.145 + sys_norm: 2.07400000e-02 +- error: 0.132 + sys_norm: 0.0196 +- error: 0.119 + sys_norm: 1.68100000e-02 +- error: 0.104 + sys_norm: 1.36800000e-02 +- error: 0.076 + sys_norm: 0.01043 +- error: 0.068 + sys_norm: 0.00874 +- error: 0.058 + sys_norm: 0.006 +- error: 0.05 + sys_norm: 4.08000000e-03 +- error: 0.05 + sys_norm: 4.08000000e-03 +- error: 0.037 + sys_norm: 0.00243 +- error: 0.034 + sys_norm: 0.00173 +- error: 0.02 + sys_norm: 0.00064 +- error: 0.011 + sys_norm: 9.00000000e-05 +- error: 0.008 + sys_norm: 8.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_inc.yaml new file mode 100644 index 0000000000..4c8243776a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_inc.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.64 + sys: 9.26 + sys_norm: 0.2859 +- stat: 0.2 + sys: 1.57 + sys_norm: 0.2157 +- stat: 0.19 + sys: 0.8 + sys_norm: 0.2162 +- stat: 0.18 + sys: 0.53 + sys_norm: 1.96500000e-01 +- stat: 0.16 + sys: 0.44 + sys_norm: 0.1802 +- stat: 0.17 + sys: 0.43 + sys_norm: 0.1727 +- stat: 0.17 + sys: 0.47 + sys_norm: 0.1578 +- stat: 0.194 + sys: 0.442 + sys_norm: 0.14664 +- stat: 0.189 + sys: 0.503 + sys_norm: 0.13535 +- stat: 0.176 + sys: 0.558 + sys_norm: 0.12599 +- stat: 0.165 + sys: 0.635 + sys_norm: 0.12036 +- stat: 0.162 + sys: 0.622 + sys_norm: 1.13490000e-01 +- stat: 0.164 + sys: 0.603 + sys_norm: 1.02070000e-01 +- stat: 0.16 + sys: 0.566 + sys_norm: 0.09571 +- stat: 0.113 + sys: 0.505 + sys_norm: 0.08671 +- stat: 0.114 + sys: 0.44 + sys_norm: 0.07784 +- stat: 0.12 + sys: 0.395 + sys_norm: 0.07237 +- stat: 0.089 + sys: 0.369 + sys_norm: 5.74600000e-02 +- stat: 0.102 + sys: 0.381 + sys_norm: 0.03959 +- stat: 0.134 + sys: 0.532 + sys_norm: 0.03473 +- stat: 0.047 + sys: 0.419 + sys_norm: 2.73900000e-02 +- stat: 0.037 + sys: 0.163 + sys_norm: 0.02452 +- stat: 0.03 + sys: 0.063 + sys_norm: 1.90300000e-02 +- stat: 0.027 + sys: 0.036 + sys_norm: 0.01574 +- stat: 0.024 + sys: 0.026 + sys_norm: 1.36000000e-02 +- stat: 0.022 + sys: 0.02 + sys_norm: 0.01118 +- stat: 0.016 + sys: 0.017 + sys_norm: 0.0089 +- stat: 0.014 + sys: 0.016 + sys_norm: 6.83000000e-03 +- stat: 0.013 + sys: 0.015 + sys_norm: 0.00567 +- stat: 0.012 + sys: 0.014 + sys_norm: 0.00433 +- stat: 0.011 + sys: 0.012 + sys_norm: 3.51000000e-03 +- stat: 0.008 + sys: 0.01 + sys_norm: 0.00264 +- stat: 0.008 + sys: 0.008 + sys_norm: 0.00188 +- stat: 0.005 + sys: 0.006 + sys_norm: 0.00122 +- stat: 0.0037 + sys: 0.0027 + sys_norm: 0.000485 +- stat: 0.0022 + sys: 0.0011 + sys_norm: 7.8e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..053cdfe1ea --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-KA_91P2GEV_EE-KASUM/uncertainties_uds.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 1.27 + sys_norm: 0.2705 +- error: 0.42 + sys_norm: 0.2 +- error: 0.4 + sys_norm: 0.1974 +- error: 0.37 + sys_norm: 0.1752 +- error: 0.37 + sys_norm: 0.1608 +- error: 0.34 + sys_norm: 0.1504 +- error: 0.34 + sys_norm: 0.1354 +- error: 0.34 + sys_norm: 0.1187 +- error: 0.33 + sys_norm: 0.1144 +- error: 0.3 + sys_norm: 1.06400000e-01 +- error: 0.29 + sys_norm: 0.1024 +- error: 0.29 + sys_norm: 9.67000000e-02 +- error: 0.27 + sys_norm: 8.13000000e-02 +- error: 0.28 + sys_norm: 7.98000000e-02 +- error: 0.19 + sys_norm: 0.07 +- error: 0.19 + sys_norm: 0.0636 +- error: 0.2 + sys_norm: 5.85000000e-02 +- error: 0.15 + sys_norm: 0.0489 +- error: 0.17 + sys_norm: 3.41000000e-02 +- error: 0.22 + sys_norm: 2.84000000e-02 +- error: 0.082 + sys_norm: 0.02564 +- error: 0.067 + sys_norm: 0.02401 +- error: 0.054 + sys_norm: 0.01973 +- error: 0.048 + sys_norm: 0.01643 +- error: 0.044 + sys_norm: 1.48100000e-02 +- error: 0.039 + sys_norm: 1.21100000e-02 +- error: 0.029 + sys_norm: 0.01001 +- error: 0.025 + sys_norm: 7.46000000e-03 +- error: 0.023 + sys_norm: 0.00666 +- error: 0.022 + sys_norm: 0.00559 +- error: 0.02 + sys_norm: 0.00426 +- error: 0.016 + sys_norm: 0.00363 +- error: 0.015 + sys_norm: 2.61000000e-03 +- error: 0.01 + sys_norm: 0.00183 +- error: 0.007 + sys_norm: 0.00079 +- error: 0.004 + sys_norm: 8.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml new file mode 100644 index 0000000000..6144183339 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_b.yaml @@ -0,0 +1,41 @@ +data_central: +- 478.1 +- 488.4 +- 463.7 +- 432.2 +- 382.4 +- 333.3 +- 261.7 +- 214.2 +- 175.2 +- 145.4 +- 121.4 +- 103.3 +- 89.24 +- 75.47 +- 65.97 +- 59.39 +- 52.11 +- 45.86 +- 38.29 +- 30.57 +- 24.34 +- 18.21 +- 12.27 +- 8.25 +- 5.83 +- 4.14 +- 2.984 +- 2.303 +- 1.642 +- 1.365 +- 0.886 +- 0.631 +- 0.49 +- 0.276 +- 0.187 +- 0.111 +- 0.045 +- 0.039 +- 0.011 +- 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_c.yaml new file mode 100644 index 0000000000..4c858e84a5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_c.yaml @@ -0,0 +1,41 @@ +data_central: +- 425.5 +- 440.5 +- 453.8 +- 409.2 +- 372.8 +- 306.4 +- 234.6 +- 197.4 +- 155.8 +- 132.5 +- 109.3 +- 92.9 +- 77.56 +- 68.23 +- 60.06 +- 51.76 +- 45.28 +- 40.04 +- 33.5 +- 27.45 +- 22.92 +- 18.73 +- 13.72 +- 10.18 +- 7.53 +- 5.76 +- 4.381 +- 3.358 +- 2.487 +- 1.947 +- 1.436 +- 0.817 +- 0.614 +- 0.386 +- 0.429 +- 0.206 +- 0.142 +- 0.066 +- 0.003 +- 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_inc.yaml new file mode 100644 index 0000000000..e8dfe548f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_inc.yaml @@ -0,0 +1,41 @@ +data_central: +- 471.8 +- 470.4 +- 434.6 +- 388.8 +- 352.7 +- 294.8 +- 229.6 +- 185.0 +- 150.6 +- 125.6 +- 106.5 +- 90.4 +- 77.38 +- 67.39 +- 59.4 +- 52.57 +- 46.76 +- 41.7 +- 35.26 +- 28.89 +- 23.88 +- 18.69 +- 13.85 +- 10.16 +- 7.812 +- 6.076 +- 4.674 +- 3.632 +- 2.886 +- 2.292 +- 1.749 +- 1.275 +- 0.921 +- 0.68 +- 0.499 +- 0.338 +- 0.226 +- 0.13 +- 0.0526 +- 0.0113 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml new file mode 100644 index 0000000000..2a6cc1153b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/data_uds.yaml @@ -0,0 +1,41 @@ +data_central: +- 474.0 +- 467.3 +- 418.2 +- 375.5 +- 327.7 +- 275.8 +- 216.0 +- 171.2 +- 140.4 +- 116.4 +- 99.9 +- 85.4 +- 72.85 +- 64.51 +- 56.82 +- 50.84 +- 45.34 +- 40.71 +- 34.6 +- 28.99 +- 24.19 +- 18.97 +- 14.52 +- 11.06 +- 8.67 +- 6.79 +- 5.341 +- 4.214 +- 3.452 +- 2.727 +- 2.138 +- 1.652 +- 1.164 +- 0.874 +- 0.622 +- 0.441 +- 0.3 +- 0.178 +- 0.081 +- 0.016 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..e2be7521ed --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter.py @@ -0,0 +1,41 @@ +from filter_core import magic1, magic2 +import yaml + +table_inc = "rawdata/Table2.yaml" +table_tag = "rawdata/Table5.yaml" +ndat = 40 +var_name = 'xp' + +data_inc, kin_inc, err_inc = magic1(table_inc, ndat, var_name) + +with open('data_inc.yaml', 'w') as f: + yaml.dump(data_inc, f, sort_keys=False) +with open('kinematics_inc.yaml', 'w') as f: + yaml.dump(kin_inc, f, sort_keys=False) +with open('uncertainties_inc.yaml', 'w') as f: + yaml.dump(err_inc, f, sort_keys=False) + +data_uds, kin_uds, err_uds, data_c, kin_c, err_c, data_b, kin_b, err_b = magic2( + table_tag, ndat, var_name +) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) + +with open('data_c.yaml', 'w') as f: + yaml.dump(data_c, f, sort_keys=False) +with open('kinematics_c.yaml', 'w') as f: + yaml.dump(kin_c, f, sort_keys=False) +with open('uncertainties_c.yaml', 'w') as f: + yaml.dump(err_c, f, sort_keys=False) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..c38555bb90 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/filter_core.py @@ -0,0 +1,146 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic1(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][1]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['stat'] = values[i]['errors'][0]['symerror'] + error_value['sys'] = values[i]['errors'][1]['symerror'] + error_value['sys_norm'] = pta(1, data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['stat'] = { + 'definition': 'statistical uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys'] = { + 'definition': 'systematic uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml + + +def magic2(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central_uds = [] + kin_uds = [] + error_uds = [] + data_central_c = [] + kin_c = [] + error_c = [] + data_central_b = [] + kin_b = [] + error_b = [] + + values_uds = input['dependent_variables'][0]['values'] + values_c = input['dependent_variables'][1]['values'] + values_b = input['dependent_variables'][2]['values'] + for i in range(ndat): + kin_mid = input['independent_variables'][0]['values'][i]['value'] + + kin_value = {var_name: {'min': None, 'mid': kin_mid, 'max': None}} + + data_central_uds_value = values_uds[i]['value'] + error_uds_value = {} + error_uds_value['error'] = values_uds[i]['errors'][0]['symerror'] + error_uds_value['sys_norm'] = pta(1, data_central_uds_value) + + data_central_c_value = values_c[i]['value'] + error_c_value = {} + error_c_value['error'] = values_c[i]['errors'][0]['symerror'] + error_c_value['sys_norm'] = pta(1, data_central_c_value) + + data_central_b_value = values_b[i]['value'] + error_b_value = {} + error_b_value['error'] = values_b[i]['errors'][0]['symerror'] + error_b_value['sys_norm'] = pta(1, data_central_b_value) + + kin_uds.append(kin_value) + data_central_uds.append(data_central_uds_value) + error_uds.append(error_uds_value) + + kin_c.append(kin_value) + data_central_c.append(data_central_c_value) + error_c.append(error_c_value) + + kin_b.append(kin_value) + data_central_b.append(data_central_b_value) + error_b.append(error_b_value) + + error_definition = {} + error_definition['error'] = { + 'definition': 'total uncertainty added in quadrature', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty (normalization)', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_uds_yaml = {'data_central': data_central_uds} + kin_uds_yaml = {'bins': kin_uds} + uncertainties_uds_yaml = {'definitions': error_definition, 'bins': error_uds} + + data_central_c_yaml = {'data_central': data_central_c} + kin_c_yaml = {'bins': kin_c} + uncertainties_c_yaml = {'definitions': error_definition, 'bins': error_c} + + data_central_b_yaml = {'data_central': data_central_b} + kin_b_yaml = {'bins': kin_b} + uncertainties_b_yaml = {'definitions': error_definition, 'bins': error_b} + + return ( + data_central_uds_yaml, + kin_uds_yaml, + uncertainties_uds_yaml, + data_central_c_yaml, + kin_c_yaml, + uncertainties_c_yaml, + data_central_b_yaml, + kin_b_yaml, + uncertainties_b_yaml, + ) diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml new file mode 100644 index 0000000000..3e7336abfa --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_b.yaml @@ -0,0 +1,161 @@ +bins: +- xp: + min: null + mid: 0.0066 + max: null +- xp: + min: null + mid: 0.0088 + max: null +- xp: + min: null + mid: 0.0109 + max: null +- xp: + min: null + mid: 0.0131 + max: null +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_c.yaml new file mode 100644 index 0000000000..3e7336abfa --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_c.yaml @@ -0,0 +1,161 @@ +bins: +- xp: + min: null + mid: 0.0066 + max: null +- xp: + min: null + mid: 0.0088 + max: null +- xp: + min: null + mid: 0.0109 + max: null +- xp: + min: null + mid: 0.0131 + max: null +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_inc.yaml new file mode 100644 index 0000000000..17f47a50e0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_inc.yaml @@ -0,0 +1,161 @@ +bins: +- xp: + min: 0.005 + mid: 0.0066 + max: 0.008 +- xp: + min: 0.008 + mid: 0.0088 + max: 0.01 +- xp: + min: 0.01 + mid: 0.0109 + max: 0.012 +- xp: + min: 0.012 + mid: 0.0131 + max: 0.014 +- xp: + min: 0.014 + mid: 0.0153 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0191 + max: 0.022 +- xp: + min: 0.022 + mid: 0.0246 + max: 0.027 +- xp: + min: 0.027 + mid: 0.0301 + max: 0.033 +- xp: + min: 0.033 + mid: 0.0356 + max: 0.038 +- xp: + min: 0.038 + mid: 0.0411 + max: 0.044 +- xp: + min: 0.044 + mid: 0.0465 + max: 0.049 +- xp: + min: 0.049 + mid: 0.0521 + max: 0.055 +- xp: + min: 0.055 + mid: 0.0576 + max: 0.06 +- xp: + min: 0.06 + mid: 0.063 + max: 0.066 +- xp: + min: 0.066 + mid: 0.0685 + max: 0.071 +- xp: + min: 0.071 + mid: 0.074 + max: 0.077 +- xp: + min: 0.077 + mid: 0.0795 + max: 0.082 +- xp: + min: 0.082 + mid: 8.50000000e-02 + max: 0.088 +- xp: + min: 0.088 + mid: 0.0931 + max: 0.099 +- xp: + min: 0.099 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.115 + max: 0.121 +- xp: + min: 0.121 + mid: 0.131 + max: 0.143 +- xp: + min: 0.143 + mid: 0.153 + max: 0.164 +- xp: + min: 0.164 + mid: 0.175 + max: 0.186 +- xp: + min: 0.186 + mid: 0.197 + max: 0.208 +- xp: + min: 0.208 + mid: 0.2189 + max: 0.23 +- xp: + min: 0.23 + mid: 0.241 + max: 0.252 +- xp: + min: 0.252 + mid: 0.2629 + max: 0.274 +- xp: + min: 0.274 + mid: 0.2849 + max: 0.296 +- xp: + min: 0.296 + mid: 0.3068 + max: 0.318 +- xp: + min: 0.318 + mid: 0.3338 + max: 0.351 +- xp: + min: 0.351 + mid: 0.3666 + max: 0.384 +- xp: + min: 0.384 + mid: 0.3997 + max: 0.417 +- xp: + min: 0.417 + mid: 0.4325 + max: 0.45 +- xp: + min: 0.45 + mid: 0.4651 + max: 0.482 +- xp: + min: 0.482 + mid: 0.5035 + max: 0.526 +- xp: + min: 0.526 + mid: 0.547 + max: 0.57 +- xp: + min: 0.57 + mid: 0.6083 + max: 0.658 +- xp: + min: 0.658 + mid: 0.7047 + max: 0.768 +- xp: + min: 0.768 + mid: 0.8383 + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml new file mode 100644 index 0000000000..3e7336abfa --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/kinematics_uds.yaml @@ -0,0 +1,161 @@ +bins: +- xp: + min: null + mid: 0.0066 + max: null +- xp: + min: null + mid: 0.0088 + max: null +- xp: + min: null + mid: 0.0109 + max: null +- xp: + min: null + mid: 0.0131 + max: null +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..9ac1bbfcca --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,111 @@ +setname: 'SLD_SIA-PI_91P2GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "SLD" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/0310017" +iNSPIRE: + url: "https://inspirehep.net/literature/630327" +hepdata: + url: "https://www.hepdata.net/record/ins630327" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP-INC + process_type: SIA_XP + ndata: 40 + tables: [2] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_inc.yaml + data_central: data_inc.yaml + data_uncertainties: + - uncertainties_inc.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$', units: '$$'} + observable_name: XP-UDS + process_type: SIA_XP + ndata: 40 + tables: [5] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{uds}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (C tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$', units: '$$'} + observable_name: XP-C + process_type: SIA_XP + ndata: 40 + tables: [5] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_c.yaml + data_central: data_c.yaml + data_uncertainties: + - uncertainties_c.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{c}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$', units: '$$'} + observable_name: XP-B + process_type: SIA_XP + ndata: 40 + tables: [5] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{b}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..155bc0ab6d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,505 @@ +dependent_variables: +- header: {name: (1/N(Q=Z0))*D(N(Q=CHGD))/DP} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.115} + - {label: sys, symerror: 0.173} + value: 11.166 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.116} + - {label: sys, symerror: 0.128} + value: 11.271 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.109} + - {label: sys, symerror: 0.096} + value: 10.646 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.099} + - {label: sys, symerror: 0.073} + value: 9.724 + - errors: + - {label: stat, symerror: 0.02} + - {label: sys, symerror: 0.089} + - {label: sys, symerror: 0.057} + value: 8.744 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.075} + - {label: sys, symerror: 0.04} + value: 7.364 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.059} + - {label: sys, symerror: 0.024} + value: 5.86 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.048} + - {label: sys, symerror: 0.015} + value: 4.775 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.04} + - {label: sys, symerror: 0.011} + value: 3.962 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.034} + - {label: sys, symerror: 0.009} + value: 3.36 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.029} + - {label: sys, symerror: 0.007} + value: 2.865 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.025} + - {label: sys, symerror: 0.005} + value: 2.488 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.022} + - {label: sys, symerror: 0.004} + value: 2.173 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.019} + - {label: sys, symerror: 0.004} + value: 1.92 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.017} + - {label: sys, symerror: 0.003} + value: 1.701 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.015} + - {label: sys, symerror: 0.003} + value: 1.53 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.014} + - {label: sys, symerror: 0.002} + value: 1.378 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.013} + - {label: sys, symerror: 0.002} + value: 1.244 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.011} + - {label: sys, symerror: 0.001} + value: 1.072 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + - {label: sys, symerror: 0.001} + value: 0.894 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + - {label: sys, symerror: 0.001} + value: 0.754 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.006} + - {label: sys, symerror: 0.001} + value: 0.6 + - errors: + - {label: stat, symerror: 0.0014} + - {label: sys, symerror: 0.0049} + - {label: sys, symerror: 0.0005} + value: 0.4502 + - errors: + - {label: stat, symerror: 0.0012} + - {label: sys, symerror: 0.0039} + - {label: sys, symerror: 0.0003} + value: 0.3429 + - errors: + - {label: stat, symerror: 0.0011} + - {label: sys, symerror: 0.0032} + - {label: sys, symerror: 0.0003} + value: 0.2687 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0026} + - {label: sys, symerror: 0.0002} + value: 0.212 + - errors: + - {label: stat, symerror: 0.0009} + - {label: sys, symerror: 0.0022} + - {label: sys, symerror: 0.0002} + value: 0.17 + - errors: + - {label: stat, symerror: 0.0008} + - {label: sys, symerror: 0.0018} + - {label: sys, symerror: 0.0001} + value: 0.1351 + - errors: + - {label: stat, symerror: 0.0007} + - {label: sys, symerror: 0.0016} + - {label: sys, symerror: 0.0001} + value: 0.1103 + - errors: + - {label: stat, symerror: 0.0006} + - {label: sys, symerror: 0.0013} + - {label: sys, symerror: 0.0001} + value: 0.0889 + - errors: + - {label: stat, symerror: 0.0005} + - {label: sys, symerror: 0.0011} + - {label: sys, symerror: 0.0001} + value: 0.0688 + - errors: + - {label: stat, symerror: 0.0004} + - {label: sys, symerror: 0.0009} + - {label: sys, symerror: 0.0001} + value: 0.0513 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0007} + - {label: sys, symerror: 0.0001} + value: 0.0383 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0006} + - {label: sys, symerror: 0.0001} + value: 0.0291 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0005} + - {label: sys, symerror: 0.0001} + value: 0.0221 + - errors: + - {label: stat, symerror: 0.0002} + - {label: sys, symerror: 0.0004} + - {label: sys, symerror: 0.0001} + value: 0.0159 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0003} + - {label: sys, symerror: 0.0001} + value: 0.0105 + - errors: + - {label: stat, symerror: 0.0001} + - {label: sys, symerror: 0.0002} + - {label: sys, symerror: 0.0001} + value: 0.0063 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 0.0001} + - {label: sys, symerror: 0.0001} + value: 0.0025 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 0.0} + - {label: sys, symerror: 0.0001} + value: 0.0005 +- header: {name: (1/N(Q=Z0))*D(N(Q=CHGD))/DX} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 9.5} + value: 509.2 + - errors: + - {symerror: 7.8} + value: 513.9 + - errors: + - {symerror: 6.6} + value: 485.5 + - errors: + - {symerror: 5.6} + value: 443.4 + - errors: + - {symerror: 4.9} + value: 398.7 + - errors: + - {symerror: 3.9} + value: 335.8 + - errors: + - {symerror: 2.9} + value: 267.2 + - errors: + - {symerror: 2.3} + value: 217.8 + - errors: + - {symerror: 1.9} + value: 180.7 + - errors: + - {symerror: 1.6} + value: 153.2 + - errors: + - {symerror: 1.4} + value: 130.6 + - errors: + - {symerror: 1.2} + value: 113.4 + - errors: + - {symerror: 1.03} + value: 99.09 + - errors: + - {symerror: 0.91} + value: 87.57 + - errors: + - {symerror: 0.81} + value: 77.56 + - errors: + - {symerror: 0.73} + value: 69.78 + - errors: + - {symerror: 0.66} + value: 62.84 + - errors: + - {symerror: 0.6} + value: 56.72 + - errors: + - {symerror: 0.51} + value: 48.9 + - errors: + - {symerror: 0.43} + value: 40.78 + - errors: + - {symerror: 0.37} + value: 34.39 + - errors: + - {symerror: 0.29} + value: 27.35 + - errors: + - {symerror: 0.23} + value: 20.53 + - errors: + - {symerror: 0.18} + value: 15.64 + - errors: + - {symerror: 0.15} + value: 12.25 + - errors: + - {symerror: 0.12} + value: 9.67 + - errors: + - {symerror: 0.11} + value: 7.75 + - errors: + - {symerror: 0.088} + value: 6.161 + - errors: + - {symerror: 0.076} + value: 5.029 + - errors: + - {symerror: 0.065} + value: 4.053 + - errors: + - {symerror: 0.052} + value: 3.139 + - errors: + - {symerror: 0.042} + value: 2.338 + - errors: + - {symerror: 0.034} + value: 1.748 + - errors: + - {symerror: 0.028} + value: 1.326 + - errors: + - {symerror: 0.023} + value: 1.008 + - errors: + - {symerror: 0.018} + value: 0.724 + - errors: + - {symerror: 0.013} + value: 0.48 + - errors: + - {symerror: 0.009} + value: 0.285 + - errors: + - {symerror: 0.005} + value: 0.114 + - errors: + - {symerror: 0.001} + value: 0.024 +- header: {name: (1/N(Q=Z0))*D(N(Q=CHGD))/DLN(1/X)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 0.062} + value: 3.234 + - errors: + - {symerror: 0.068} + value: 4.399 + - errors: + - {symerror: 0.072} + value: 5.221 + - errors: + - {symerror: 0.073} + value: 5.665 + - errors: + - {symerror: 0.075} + value: 6.11 + - errors: + - {symerror: 0.074} + value: 6.324 + - errors: + - {symerror: 0.072} + value: 6.486 + - errors: + - {symerror: 0.07} + value: 6.465 + - errors: + - {symerror: 0.068} + value: 6.338 + - errors: + - {symerror: 0.066} + value: 6.202 + - errors: + - {symerror: 0.063} + value: 5.99 + - errors: + - {symerror: 0.062} + value: 5.807 + - errors: + - {symerror: 0.059} + value: 5.605 + - errors: + - {symerror: 0.058} + value: 5.419 + - errors: + - {symerror: 0.056} + value: 5.214 + - errors: + - {symerror: 0.054} + value: 5.061 + - errors: + - {symerror: 0.053} + value: 4.892 + - errors: + - {symerror: 0.051} + value: 4.713 + - errors: + - {symerror: 0.047} + value: 4.45 + - errors: + - {symerror: 0.045} + value: 4.141 + - errors: + - {symerror: 0.042} + value: 3.856 + - errors: + - {symerror: 0.038} + value: 3.492 + - errors: + - {symerror: 0.035} + value: 3.051 + - errors: + - {symerror: 0.032} + value: 2.647 + - errors: + - {symerror: 0.029} + value: 2.328 + - errors: + - {symerror: 0.027} + value: 2.039 + - errors: + - {symerror: 0.025} + value: 1.792 + - errors: + - {symerror: 0.023} + value: 1.551 + - errors: + - {symerror: 0.022} + value: 1.368 + - errors: + - {symerror: 0.02} + value: 1.184 + - errors: + - {symerror: 0.017} + value: 0.997 + - errors: + - {symerror: 0.016} + value: 0.812 + - errors: + - {symerror: 0.014} + value: 0.661 + - errors: + - {symerror: 0.012} + value: 0.544 + - errors: + - {symerror: 0.011} + value: 0.444 + - errors: + - {symerror: 0.009} + value: 0.3468 + - errors: + - {symerror: 0.0073} + value: 0.2513 + - errors: + - {symerror: 0.0056} + value: 0.17 + - errors: + - {symerror: 0.0035} + value: 0.08 + - errors: + - {symerror: 0.0013} + value: 0.0207 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.35, low: 0.25} + - {high: 0.45, low: 0.35} + - {high: 0.55, low: 0.45, value: 0.499} + - {high: 0.65, low: 0.55, value: 0.599} + - {high: 0.75, low: 0.65, value: 0.699} + - {high: 1.0, low: 0.75, value: 0.87} + - {high: 1.25, low: 1.0, value: 1.121} + - {high: 1.5, low: 1.25, value: 1.371} + - {high: 1.75, low: 1.5, value: 1.622} + - {high: 2.0, low: 1.75, value: 1.872} + - {high: 2.25, low: 2.0, value: 2.122} + - {high: 2.5, low: 2.25} + - {high: 2.75, low: 2.5} + - {high: 3.0, low: 2.75} + - {high: 3.25, low: 3.0} + - {high: 3.5, low: 3.25} + - {high: 3.75, low: 3.5} + - {high: 4.0, low: 3.75} + - {high: 4.5, low: 4.0, value: 4.244} + - {high: 5.0, low: 4.5, value: 4.744} + - {high: 5.5, low: 5.0, value: 5.244} + - {high: 6.5, low: 5.5, value: 5.975} + - {high: 7.5, low: 6.5, value: 6.977} + - {high: 8.5, low: 7.5, value: 7.98} + - {high: 9.5, low: 8.5, value: 8.982} + - {high: 10.5, low: 9.5, value: 9.98} + - {high: 11.5, low: 10.5, value: 10.99} + - {high: 12.5, low: 11.5, value: 11.99} + - {high: 13.5, low: 12.5, value: 12.99} + - {high: 14.5, low: 13.5, value: 13.99} + - {high: 16.0, low: 14.5, value: 15.22} + - {high: 17.5, low: 16.0, value: 16.72} + - {high: 19.0, low: 17.5, value: 18.23} + - {high: 20.5, low: 19.0, value: 19.72} + - {high: 22.0, low: 20.5, value: 21.21} + - {high: 24.0, low: 22.0, value: 22.96} + - {high: 26.0, low: 24.0, value: 24.94} + - {high: 30.0, low: 26.0, value: 27.74} + - {high: 35.0, low: 30.0, value: 32.14} + - {high: 45.0, low: 35.0, value: 38.23} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml new file mode 100755 index 0000000000..0fefd2edb3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table10.yaml @@ -0,0 +1,388 @@ +dependent_variables: +- header: {name: R(Q=K+)} + qualifiers: + - {name: RE(Q=K+), value: E+ E- --> K+ X} + - {name: RE(Q=K-), value: E+ E- --> K- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.39} + value: 13.69 + - errors: + - {symerror: 0.45} + value: 9.23 + - errors: + - {symerror: 0.44} + value: 10.1 + - errors: + - {symerror: 0.4} + value: 8.67 + - errors: + - {symerror: 0.38} + value: 8.55 + - errors: + - {symerror: 0.38} + value: 7.91 + - errors: + - {symerror: 0.4} + value: 7.81 + - errors: + - {symerror: 0.4} + value: 5.27 + - errors: + - {symerror: 0.37} + value: 5.46 + - errors: + - {symerror: 0.35} + value: 4.91 + - errors: + - {symerror: 0.34} + value: 5.24 + - errors: + - {symerror: 0.33} + value: 4.65 + - errors: + - {symerror: 0.32} + value: 4.09 + - errors: + - {symerror: 0.32} + value: 4.31 + - errors: + - {symerror: 0.22} + value: 3.13 + - errors: + - {symerror: 0.22} + value: 3.07 + - errors: + - {symerror: 0.24} + value: 3.0 + - errors: + - {symerror: 0.18} + value: 2.02 + - errors: + - {symerror: 0.21} + value: 1.5 + - errors: + - {symerror: 0.28} + value: 1.09 + - errors: + - {symerror: 0.104} + value: 0.997 + - errors: + - {symerror: 0.078} + value: 0.856 + - errors: + - {symerror: 0.061} + value: 0.784 + - errors: + - {symerror: 0.054} + value: 0.571 + - errors: + - {symerror: 0.049} + value: 0.508 + - errors: + - {symerror: 0.043} + value: 0.366 + - errors: + - {symerror: 0.033} + value: 0.32 + - errors: + - {symerror: 0.029} + value: 0.249 + - errors: + - {symerror: 0.027} + value: 0.194 + - errors: + - {symerror: 0.024} + value: 0.167 + - errors: + - {symerror: 0.022} + value: 0.132 + - errors: + - {symerror: 0.018} + value: 0.089 + - errors: + - {symerror: 0.016} + value: 0.05 + - errors: + - {symerror: 0.011} + value: 0.063 + - errors: + - {symerror: 0.008} + value: 0.022 + - errors: + - {symerror: 0.005} + value: 0.005 +- header: {name: R(Q=K-)} + qualifiers: + - {name: RE(Q=K+), value: E+ E- --> K+ X} + - {name: RE(Q=K-), value: E+ E- --> K- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.39} + value: 12.89 + - errors: + - {symerror: 0.45} + value: 10.1 + - errors: + - {symerror: 0.44} + value: 9.73 + - errors: + - {symerror: 0.4} + value: 8.87 + - errors: + - {symerror: 0.38} + value: 7.8 + - errors: + - {symerror: 0.38} + value: 8.08 + - errors: + - {symerror: 0.4} + value: 7.37 + - errors: + - {symerror: 0.41} + value: 7.04 + - errors: + - {symerror: 0.38} + value: 5.59 + - errors: + - {symerror: 0.35} + value: 5.69 + - errors: + - {symerror: 0.34} + value: 4.96 + - errors: + - {symerror: 0.34} + value: 5.14 + - errors: + - {symerror: 0.33} + value: 4.31 + - errors: + - {symerror: 0.33} + value: 3.84 + - errors: + - {symerror: 0.23} + value: 3.89 + - errors: + - {symerror: 0.23} + value: 3.28 + - errors: + - {symerror: 0.25} + value: 3.05 + - errors: + - {symerror: 0.19} + value: 2.91 + - errors: + - {symerror: 0.22} + value: 1.77 + - errors: + - {symerror: 0.3} + value: 1.77 + - errors: + - {symerror: 0.111} + value: 1.528 + - errors: + - {symerror: 0.086} + value: 1.593 + - errors: + - {symerror: 0.067} + value: 1.18 + - errors: + - {symerror: 0.06} + value: 1.105 + - errors: + - {symerror: 0.055} + value: 0.959 + - errors: + - {symerror: 0.049} + value: 0.824 + - errors: + - {symerror: 0.038} + value: 0.711 + - errors: + - {symerror: 0.033} + value: 0.529 + - errors: + - {symerror: 0.031} + value: 0.503 + - errors: + - {symerror: 0.027} + value: 0.372 + - errors: + - {symerror: 0.025} + value: 0.294 + - errors: + - {symerror: 0.021} + value: 0.267 + - errors: + - {symerror: 0.019} + value: 0.208 + - errors: + - {symerror: 0.012} + value: 0.118 + - errors: + - {symerror: 0.009} + value: 0.056 + - errors: + - {symerror: 0.005} + value: 0.006 +- header: {name: (R(Q=K-)-R(Q=K+))/(R(Q=K-)+R(Q=K+)), units: PCT} + qualifiers: + - {name: RE(Q=K+), value: E+ E- --> K+ X} + - {name: RE(Q=K-), value: E+ E- --> K- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 9.4} + value: -3.0 + - errors: + - {symerror: 4.1} + value: 4.5 + - errors: + - {symerror: 4.0} + value: -1.9 + - errors: + - {symerror: 4.1} + value: 1.1 + - errors: + - {symerror: 4.2} + value: -4.6 + - errors: + - {symerror: 4.3} + value: 1.1 + - errors: + - {symerror: 4.7} + value: 2.9 + - errors: + - {symerror: 5.9} + value: 14.3 + - errors: + - {symerror: 6.2} + value: 1.2 + - errors: + - {symerror: 6.0} + value: 7.4 + - errors: + - {symerror: 6.0} + value: -2.9 + - errors: + - {symerror: 6.2} + value: 5.1 + - errors: + - {symerror: 7.0} + value: 2.6 + - errors: + - {symerror: 7.3} + value: -5.9 + - errors: + - {symerror: 5.8} + value: 10.9 + - errors: + - {symerror: 6.4} + value: 3.3 + - errors: + - {symerror: 7.3} + value: 0.8 + - errors: + - {symerror: 6.8} + value: 17.9 + - errors: + - {symerror: 12.0} + value: 8.0 + - errors: + - {symerror: 19.0} + value: 23.0 + - errors: + - {symerror: 6.9} + value: 21.0 + - errors: + - {symerror: 5.9} + value: 30.1 + - errors: + - {symerror: 5.9} + value: 20.1 + - errors: + - {symerror: 6.2} + value: 31.9 + - errors: + - {symerror: 6.4} + value: 30.7 + - errors: + - {symerror: 7.0} + value: 38.4 + - errors: + - {symerror: 6.2} + value: 27.9 + - errors: + - {symerror: 7.1} + value: 35.9 + - errors: + - {symerror: 7.4} + value: 44.4 + - errors: + - {symerror: 8.5} + value: 37.9 + - errors: + - {symerror: 9.9} + value: 38.1 + - errors: + - {symerror: 9.5} + value: 50.0 + - errors: + - {symerror: 12.0} + value: 61.0 + - errors: + - {symerror: 11.0} + value: 30.0 + - errors: + - {symerror: 20.0} + value: 43.0 + - errors: + - {symerror: 83.0} + value: 9.0 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0466} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.0631} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.1041} + - {value: 0.115} + - {value: 0.1311} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.285} + - {value: 0.307} + - {value: 0.3337} + - {value: 0.3665} + - {value: 0.3996} + - {value: 0.4326} + - {value: 0.4653} + - {value: 0.5034} + - {value: 0.5464} + - {value: 0.6085} + - {value: 0.7046} + - {value: 0.8342} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml new file mode 100755 index 0000000000..a0c71bf5b8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table11.yaml @@ -0,0 +1,388 @@ +dependent_variables: +- header: {name: R(Q=P+)} + qualifiers: + - {name: RE(Q=P+), value: E+ E- --> P+ X} + - {name: RE(Q=PBAR), value: E+ E- --> PBAR X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.19} + value: 8.09 + - errors: + - {symerror: 0.62} + value: 8.98 + - errors: + - {symerror: 0.72} + value: 7.42 + - errors: + - {symerror: 0.42} + value: 5.81 + - errors: + - {symerror: 0.34} + value: 5.52 + - errors: + - {symerror: 0.29} + value: 4.4 + - errors: + - {symerror: 0.26} + value: 3.74 + - errors: + - {symerror: 0.27} + value: 4.11 + - errors: + - {symerror: 0.25} + value: 3.48 + - errors: + - {symerror: 0.23} + value: 3.01 + - errors: + - {symerror: 0.23} + value: 2.87 + - errors: + - {symerror: 0.23} + value: 2.58 + - errors: + - {symerror: 0.22} + value: 2.34 + - errors: + - {symerror: 0.22} + value: 1.87 + - errors: + - {symerror: 0.16} + value: 1.94 + - errors: + - {symerror: 0.16} + value: 1.43 + - errors: + - {symerror: 0.18} + value: 1.45 + - errors: + - {symerror: 0.15} + value: 1.3 + - errors: + - {symerror: 0.19} + value: 0.88 + - errors: + - {symerror: 0.27} + value: 1.0 + - errors: + - {symerror: 0.087} + value: 0.501 + - errors: + - {symerror: 0.064} + value: 0.612 + - errors: + - {symerror: 0.05} + value: 0.469 + - errors: + - {symerror: 0.045} + value: 0.475 + - errors: + - {symerror: 0.04} + value: 0.46 + - errors: + - {symerror: 0.033} + value: 0.321 + - errors: + - {symerror: 0.025} + value: 0.298 + - errors: + - {symerror: 0.02} + value: 0.198 + - errors: + - {symerror: 0.017} + value: 0.163 + - errors: + - {symerror: 0.015} + value: 0.114 + - errors: + - {symerror: 0.013} + value: 0.105 + - errors: + - {symerror: 0.01} + value: 0.085 + - errors: + - {symerror: 0.008} + value: 0.057 + - errors: + - {symerror: 0.004} + value: 0.024 + - errors: + - {symerror: 0.002} + value: 0.006 + - errors: + - {symerror: 0.001} + value: 0.0 +- header: {name: R(Q=PBAR)} + qualifiers: + - {name: RE(Q=P+), value: E+ E- --> P+ X} + - {name: RE(Q=PBAR), value: E+ E- --> PBAR X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.18} + value: 6.67 + - errors: + - {symerror: 0.62} + value: 8.82 + - errors: + - {symerror: 0.72} + value: 6.41 + - errors: + - {symerror: 0.42} + value: 5.05 + - errors: + - {symerror: 0.34} + value: 5.19 + - errors: + - {symerror: 0.28} + value: 4.18 + - errors: + - {symerror: 0.26} + value: 3.4 + - errors: + - {symerror: 0.27} + value: 3.74 + - errors: + - {symerror: 0.25} + value: 3.32 + - errors: + - {symerror: 0.24} + value: 3.01 + - errors: + - {symerror: 0.23} + value: 2.47 + - errors: + - {symerror: 0.22} + value: 2.58 + - errors: + - {symerror: 0.21} + value: 1.94 + - errors: + - {symerror: 0.23} + value: 2.5 + - errors: + - {symerror: 0.16} + value: 1.87 + - errors: + - {symerror: 0.16} + value: 1.62 + - errors: + - {symerror: 0.17} + value: 1.33 + - errors: + - {symerror: 0.14} + value: 0.96 + - errors: + - {symerror: 0.2} + value: 1.07 + - errors: + - {symerror: 0.28} + value: 0.82 + - errors: + - {symerror: 0.087} + value: 0.417 + - errors: + - {symerror: 0.063} + value: 0.374 + - errors: + - {symerror: 0.05} + value: 0.384 + - errors: + - {symerror: 0.043} + value: 0.275 + - errors: + - {symerror: 0.038} + value: 0.191 + - errors: + - {symerror: 0.032} + value: 0.174 + - errors: + - {symerror: 0.024} + value: 0.147 + - errors: + - {symerror: 0.02} + value: 0.123 + - errors: + - {symerror: 0.017} + value: 0.095 + - errors: + - {symerror: 0.014} + value: 0.083 + - errors: + - {symerror: 0.012} + value: 0.036 + - errors: + - {symerror: 0.009} + value: 0.022 + - errors: + - {symerror: 0.007} + value: 0.011 + - errors: + - {symerror: 0.004} + value: 0.009 + - errors: + - {symerror: 0.002} + value: 0.009 + - errors: + - {symerror: 0.001} + value: 0.003 +- header: {name: (R(Q=PBAR)-R(Q=P+))/(R(Q=PBAR)+R(Q=P+)), units: PCT} + qualifiers: + - {name: RE(Q=P+), value: E+ E- --> P+ X} + - {name: RE(Q=PBAR), value: E+ E- --> PBAR X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 14.0} + value: 10.0 + - errors: + - {symerror: 5.9} + value: 0.9 + - errors: + - {symerror: 9.3} + value: 7.4 + - errors: + - {symerror: 6.6} + value: 7.0 + - errors: + - {symerror: 5.6} + value: 3.1 + - errors: + - {symerror: 6.0} + value: 2.6 + - errors: + - {symerror: 6.6} + value: 4.8 + - errors: + - {symerror: 6.3} + value: 4.7 + - errors: + - {symerror: 6.6} + value: 2.4 + - errors: + - {symerror: 7.7} + value: -0.1 + - errors: + - {symerror: 7.7} + value: 7.6 + - errors: + - {symerror: 7.9} + value: 0.1 + - errors: + - {symerror: 9.1} + value: 9.2 + - errors: + - {symerror: 10.0} + value: -15.0 + - errors: + - {symerror: 7.5} + value: 2.1 + - errors: + - {symerror: 9.5} + value: -6.1 + - errors: + - {symerror: 11.0} + value: 4.0 + - errors: + - {symerror: 12.0} + value: 15.0 + - errors: + - {symerror: 18.0} + value: -10.0 + - errors: + - {symerror: 28.0} + value: 10.0 + - errors: + - {symerror: 18.0} + value: 9.0 + - errors: + - {symerror: 13.0} + value: 24.0 + - errors: + - {symerror: 11.0} + value: 10.0 + - errors: + - {symerror: 11.0} + value: 27.0 + - errors: + - {symerror: 11.0} + value: 41.0 + - errors: + - {symerror: 12.0} + value: 30.0 + - errors: + - {symerror: 10.0} + value: 34.0 + - errors: + - {symerror: 11.0} + value: 23.0 + - errors: + - {symerror: 12.0} + value: 26.0 + - errors: + - {symerror: 13.0} + value: 16.0 + - errors: + - {symerror: 16.0} + value: 49.0 + - errors: + - {symerror: 15.0} + value: 59.0 + - errors: + - {symerror: 20.0} + value: 67.0 + - errors: + - {symerror: 21.0} + value: 48.0 + - errors: + - {symerror: 29.0} + value: -18.0 + - errors: + - {symerror: 144.0} + value: -164.0 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0466} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.0631} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.1041} + - {value: 0.115} + - {value: 0.1311} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.285} + - {value: 0.307} + - {value: 0.3337} + - {value: 0.3665} + - {value: 0.3996} + - {value: 0.4326} + - {value: 0.4653} + - {value: 0.5034} + - {value: 0.5464} + - {value: 0.6085} + - {value: 0.7046} + - {value: 0.8342} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..a2b4ef514a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,384 @@ +dependent_variables: +- header: {name: N(Q=PI+-)/N(Q=Z0)} + qualifiers: + - {name: RE(Q=PI+-), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.01} + value: 0.951 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.007} + value: 0.933 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + value: 0.91 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + value: 0.901 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + value: 0.885 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.004} + value: 0.888 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.87 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.86 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.845 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.005} + value: 0.831 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + value: 0.828 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.012} + value: 0.81 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + value: 0.794 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + value: 0.784 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.01} + value: 0.78 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.009} + value: 0.768 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + value: 0.76 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + value: 0.752 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + value: 0.738 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + value: 0.726 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.007} + value: 0.712 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.007} + value: 0.702 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.006} + value: 0.696 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.006} + value: 0.673 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.004} + value: 0.662 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.004} + value: 0.653 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.005} + value: 0.629 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.005} + value: 0.616 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.004} + value: 0.601 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.004} + value: 0.594 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.009} + value: 0.586 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.01} + value: 0.577 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.01} + value: 0.557 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.01} + value: 0.542 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.011} + value: 0.523 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.01} + value: 0.491 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.011} + value: 0.492 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.012} + value: 0.469 + - errors: + - {label: stat, symerror: 0.032} + - {label: sys, symerror: 0.018} + value: 0.467 + - errors: + - {label: stat, symerror: 0.074} + - {label: sys, symerror: 0.048} + value: 0.479 + - {value: '-'} +- header: {name: (1/N(Q=Z0))*D(N(Q=PI+-))/DX} + qualifiers: + - {name: RE(Q=PI+-), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 1.3} + - {label: sys, symerror: 9.2} + value: 471.8 + - errors: + - {label: stat, symerror: 1.1} + - {label: sys, symerror: 6.6} + value: 470.4 + - errors: + - {label: stat, symerror: 1.1} + - {label: sys, symerror: 5.0} + value: 434.6 + - errors: + - {label: stat, symerror: 1.0} + - {label: sys, symerror: 4.0} + value: 388.8 + - errors: + - {label: stat, symerror: 0.9} + - {label: sys, symerror: 3.3} + value: 352.7 + - errors: + - {label: stat, symerror: 0.5} + - {label: sys, symerror: 2.2} + value: 294.8 + - errors: + - {label: stat, symerror: 0.5} + - {label: sys, symerror: 1.3} + value: 229.6 + - errors: + - {label: stat, symerror: 0.4} + - {label: sys, symerror: 0.9} + value: 185.0 + - errors: + - {label: stat, symerror: 0.4} + - {label: sys, symerror: 0.7} + value: 150.6 + - errors: + - {label: stat, symerror: 0.4} + - {label: sys, symerror: 0.9} + value: 125.6 + - errors: + - {label: stat, symerror: 0.4} + - {label: sys, symerror: 1.1} + value: 106.5 + - errors: + - {label: stat, symerror: 0.35} + - {label: sys, symerror: 1.33} + value: 90.4 + - errors: + - {label: stat, symerror: 0.31} + - {label: sys, symerror: 0.91} + value: 77.38 + - errors: + - {label: stat, symerror: 0.29} + - {label: sys, symerror: 0.7} + value: 67.39 + - errors: + - {label: stat, symerror: 0.27} + - {label: sys, symerror: 0.75} + value: 59.4 + - errors: + - {label: stat, symerror: 0.25} + - {label: sys, symerror: 0.6} + value: 52.57 + - errors: + - {label: stat, symerror: 0.24} + - {label: sys, symerror: 0.5} + value: 46.76 + - errors: + - {label: stat, symerror: 0.23} + - {label: sys, symerror: 0.43} + value: 41.7 + - errors: + - {label: stat, symerror: 0.15} + - {label: sys, symerror: 0.36} + value: 35.26 + - errors: + - {label: stat, symerror: 0.13} + - {label: sys, symerror: 0.29} + value: 28.89 + - errors: + - {label: stat, symerror: 0.12} + - {label: sys, symerror: 0.25} + value: 23.88 + - errors: + - {label: stat, symerror: 0.08} + - {label: sys, symerror: 0.19} + value: 18.69 + - errors: + - {label: stat, symerror: 0.07} + - {label: sys, symerror: 0.14} + value: 13.85 + - errors: + - {label: stat, symerror: 0.06} + - {label: sys, symerror: 0.11} + value: 10.16 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.069} + value: 7.812 + - errors: + - {label: stat, symerror: 0.044} + - {label: sys, symerror: 0.061} + value: 6.076 + - errors: + - {label: stat, symerror: 0.039} + - {label: sys, symerror: 0.053} + value: 4.674 + - errors: + - {label: stat, symerror: 0.035} + - {label: sys, symerror: 0.044} + value: 3.632 + - errors: + - {label: stat, symerror: 0.031} + - {label: sys, symerror: 0.037} + value: 2.886 + - errors: + - {label: stat, symerror: 0.028} + - {label: sys, symerror: 0.031} + value: 2.292 + - errors: + - {label: stat, symerror: 0.021} + - {label: sys, symerror: 0.034} + value: 1.749 + - errors: + - {label: stat, symerror: 0.018} + - {label: sys, symerror: 0.028} + value: 1.275 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.022} + value: 0.921 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.018} + value: 0.68 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.014} + value: 0.499 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.01} + value: 0.338 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.007} + value: 0.226 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.005} + value: 0.13 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0029} + value: 0.0526 + - errors: + - {label: stat, symerror: 0.0018} + - {label: sys, symerror: 0.0013} + value: 0.0113 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.17} + value: 15.74 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {high: 0.008, low: 0.005, value: 0.0066} + - {high: 0.01, low: 0.008, value: 0.0088} + - {high: 0.012, low: 0.01, value: 0.0109} + - {high: 0.014, low: 0.012, value: 0.0131} + - {high: 0.016, low: 0.014, value: 0.0153} + - {high: 0.022, low: 0.016, value: 0.0191} + - {high: 0.027, low: 0.022, value: 0.0246} + - {high: 0.033, low: 0.027, value: 0.0301} + - {high: 0.038, low: 0.033, value: 0.0356} + - {high: 0.044, low: 0.038, value: 0.0411} + - {high: 0.049, low: 0.044} + - {high: 0.055, low: 0.049, value: 0.0521} + - {high: 0.06, low: 0.055, value: 0.0576} + - {high: 0.066, low: 0.06} + - {high: 0.071, low: 0.066} + - {high: 0.077, low: 0.071} + - {high: 0.082, low: 0.077} + - {high: 0.088, low: 0.082} + - {high: 0.099, low: 0.088, value: 0.0931} + - {high: 0.11, low: 0.099, value: 0.104} + - {high: 0.121, low: 0.11, value: 0.115} + - {high: 0.143, low: 0.121, value: 0.131} + - {high: 0.164, low: 0.143, value: 0.153} + - {high: 0.186, low: 0.164} + - {high: 0.208, low: 0.186} + - {high: 0.23, low: 0.208, value: 0.2189} + - {high: 0.252, low: 0.23} + - {high: 0.274, low: 0.252, value: 0.2629} + - {high: 0.296, low: 0.274, value: 0.2849} + - {high: 0.318, low: 0.296, value: 0.3068} + - {high: 0.351, low: 0.318, value: 0.3338} + - {high: 0.384, low: 0.351, value: 0.3666} + - {high: 0.417, low: 0.384, value: 0.3997} + - {high: 0.45, low: 0.417, value: 0.4325} + - {high: 0.482, low: 0.45, value: 0.4651} + - {high: 0.526, low: 0.482, value: 0.5035} + - {high: 0.57, low: 0.526, value: 0.547} + - {high: 0.658, low: 0.57, value: 0.6083} + - {high: 0.768, low: 0.658, value: 0.7047} + - {high: 1.0, low: 0.768, value: 0.8383} + - {high: 1.0, low: 0.005} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..99b3225bef --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,348 @@ +dependent_variables: +- header: {name: N(Q=K+-)/N(Q=Z0)} + qualifiers: + - {name: RE(Q=K+-), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.023} + value: 0.072 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.005} + value: 0.065 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.082 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.002} + value: 0.091 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.002} + value: 0.101 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.114 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.004} + value: 0.123 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.004} + value: 0.131 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.005} + value: 0.139 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.006} + value: 0.147 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + value: 0.158 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.009} + value: 0.166 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.01} + value: 0.166 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.01} + value: 0.172 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.011} + value: 0.181 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.011} + value: 0.196 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.012} + value: 0.216 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.014} + value: 0.216 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.019} + value: 0.199 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.035} + value: 0.23 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.035} + value: 0.232 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.017} + value: 0.264 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.008} + value: 0.256 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.006} + value: 0.267 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.004} + value: 0.283 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.004} + value: 0.29 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.004} + value: 0.298 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.006} + value: 0.309 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.008} + value: 0.343 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.009} + value: 0.345 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.011} + value: 0.368 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.013} + value: 0.384 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.015} + value: 0.411 + - errors: + - {label: stat, symerror: 0.017} + - {label: sys, symerror: 0.017} + value: 0.439 + - errors: + - {label: stat, symerror: 0.032} + - {label: sys, symerror: 0.018} + value: 0.431 + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.042} + value: 0.328 + - {value: '-'} +- header: {name: (1/N(Q=Z0))*D(N(Q=K+-))/DX} + qualifiers: + - {name: RE(Q=K+-), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.64} + - {label: sys, symerror: 9.26} + value: 28.59 + - errors: + - {label: stat, symerror: 0.2} + - {label: sys, symerror: 1.57} + value: 21.57 + - errors: + - {label: stat, symerror: 0.19} + - {label: sys, symerror: 0.8} + value: 21.62 + - errors: + - {label: stat, symerror: 0.18} + - {label: sys, symerror: 0.53} + value: 19.65 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.44} + value: 18.02 + - errors: + - {label: stat, symerror: 0.17} + - {label: sys, symerror: 0.43} + value: 17.27 + - errors: + - {label: stat, symerror: 0.17} + - {label: sys, symerror: 0.47} + value: 15.78 + - errors: + - {label: stat, symerror: 0.194} + - {label: sys, symerror: 0.442} + value: 14.664 + - errors: + - {label: stat, symerror: 0.189} + - {label: sys, symerror: 0.503} + value: 13.535 + - errors: + - {label: stat, symerror: 0.176} + - {label: sys, symerror: 0.558} + value: 12.599 + - errors: + - {label: stat, symerror: 0.165} + - {label: sys, symerror: 0.635} + value: 12.036 + - errors: + - {label: stat, symerror: 0.162} + - {label: sys, symerror: 0.622} + value: 11.349 + - errors: + - {label: stat, symerror: 0.164} + - {label: sys, symerror: 0.603} + value: 10.207 + - errors: + - {label: stat, symerror: 0.16} + - {label: sys, symerror: 0.566} + value: 9.571 + - errors: + - {label: stat, symerror: 0.113} + - {label: sys, symerror: 0.505} + value: 8.671 + - errors: + - {label: stat, symerror: 0.114} + - {label: sys, symerror: 0.44} + value: 7.784 + - errors: + - {label: stat, symerror: 0.12} + - {label: sys, symerror: 0.395} + value: 7.237 + - errors: + - {label: stat, symerror: 0.089} + - {label: sys, symerror: 0.369} + value: 5.746 + - errors: + - {label: stat, symerror: 0.102} + - {label: sys, symerror: 0.381} + value: 3.959 + - errors: + - {label: stat, symerror: 0.134} + - {label: sys, symerror: 0.532} + value: 3.473 + - errors: + - {label: stat, symerror: 0.047} + - {label: sys, symerror: 0.419} + value: 2.739 + - errors: + - {label: stat, symerror: 0.037} + - {label: sys, symerror: 0.163} + value: 2.452 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.063} + value: 1.903 + - errors: + - {label: stat, symerror: 0.027} + - {label: sys, symerror: 0.036} + value: 1.574 + - errors: + - {label: stat, symerror: 0.024} + - {label: sys, symerror: 0.026} + value: 1.36 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.02} + value: 1.118 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.017} + value: 0.89 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.016} + value: 0.683 + - errors: + - {label: stat, symerror: 0.013} + - {label: sys, symerror: 0.015} + value: 0.567 + - errors: + - {label: stat, symerror: 0.012} + - {label: sys, symerror: 0.014} + value: 0.433 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.012} + value: 0.351 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.01} + value: 0.264 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.008} + value: 0.188 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.006} + value: 0.122 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0027} + value: 0.0485 + - errors: + - {label: stat, symerror: 0.0022} + - {label: sys, symerror: 0.0011} + value: 0.0078 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.066} + value: 2.074 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {high: 0.016, low: 0.014, value: 0.0153} + - {high: 0.022, low: 0.016, value: 0.0191} + - {high: 0.027, low: 0.022, value: 0.0246} + - {high: 0.033, low: 0.027, value: 0.0301} + - {high: 0.038, low: 0.033, value: 0.0356} + - {high: 0.044, low: 0.038, value: 0.0411} + - {high: 0.049, low: 0.044} + - {high: 0.055, low: 0.049, value: 0.0521} + - {high: 0.06, low: 0.055, value: 0.0576} + - {high: 0.066, low: 0.06} + - {high: 0.071, low: 0.066} + - {high: 0.077, low: 0.071} + - {high: 0.082, low: 0.077} + - {high: 0.088, low: 0.082} + - {high: 0.099, low: 0.088, value: 0.0931} + - {high: 0.11, low: 0.099, value: 0.104} + - {high: 0.121, low: 0.11, value: 0.115} + - {high: 0.143, low: 0.121, value: 0.131} + - {high: 0.164, low: 0.143, value: 0.153} + - {high: 0.186, low: 0.164} + - {high: 0.208, low: 0.186} + - {high: 0.23, low: 0.208, value: 0.2189} + - {high: 0.252, low: 0.23} + - {high: 0.274, low: 0.252, value: 0.2629} + - {high: 0.296, low: 0.274, value: 0.2849} + - {high: 0.318, low: 0.296, value: 0.3068} + - {high: 0.351, low: 0.318, value: 0.3338} + - {high: 0.384, low: 0.351, value: 0.3666} + - {high: 0.417, low: 0.384, value: 0.3997} + - {high: 0.45, low: 0.417, value: 0.4325} + - {high: 0.482, low: 0.45, value: 0.4651} + - {high: 0.526, low: 0.482, value: 0.5035} + - {high: 0.57, low: 0.526, value: 0.547} + - {high: 0.658, low: 0.57, value: 0.6083} + - {high: 0.768, low: 0.658, value: 0.7047} + - {high: 1.0, low: 0.768, value: 0.8383} + - {high: 1.0, low: 0.014} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..cc2596dcbf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,348 @@ +dependent_variables: +- header: {name: N(Q=PPBAR)/N(Q=Z0)} + qualifiers: + - {name: RE(Q=PPBAR), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.013} + value: 0.036 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.008} + value: 0.052 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.009} + value: 0.052 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.006} + value: 0.052 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.06 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.002} + value: 0.06 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.002} + value: 0.06 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.066 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.068 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.067 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.003} + value: 0.07 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.003} + value: 0.073 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.004} + value: 0.069 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.005} + value: 0.074 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.006} + value: 0.076 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.008} + value: 0.076 + - errors: + - {label: stat, symerror: 0.002} + - {label: sys, symerror: 0.011} + value: 0.077 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.015} + value: 0.081 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.023} + value: 0.097 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.039} + value: 0.106 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.022} + value: 0.074 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.019} + value: 0.098 + - errors: + - {label: stat, symerror: 0.003} + - {label: sys, symerror: 0.008} + value: 0.104 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.007} + value: 0.108 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.007} + value: 0.106 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.006} + value: 0.109 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.006} + value: 0.12 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.005} + value: 0.115 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.005} + value: 0.105 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.004} + value: 0.113 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.003} + value: 0.1 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.003} + value: 0.1 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.003} + value: 0.103 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.003} + value: 0.087 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.004} + value: 0.083 + - errors: + - {label: stat, symerror: 0.014} + - {label: sys, symerror: 0.005} + value: 0.062 + - {value: '-'} +- header: {name: (1/N(Q=Z0))*D(N(Q=PPBAR))/DX} + qualifiers: + - {name: RE(Q=PPBAR), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 < HADRONS >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {label: stat, symerror: 0.52} + - {label: sys, symerror: 5.08} + value: 14.51 + - errors: + - {label: stat, symerror: 0.27} + - {label: sys, symerror: 2.58} + value: 17.32 + - errors: + - {label: stat, symerror: 0.29} + - {label: sys, symerror: 2.5} + value: 13.75 + - errors: + - {label: stat, symerror: 0.17} + - {label: sys, symerror: 1.24} + value: 11.12 + - errors: + - {label: stat, symerror: 0.14} + - {label: sys, symerror: 0.47} + value: 10.75 + - errors: + - {label: stat, symerror: 0.123} + - {label: sys, symerror: 0.35} + value: 9.048 + - errors: + - {label: stat, symerror: 0.117} + - {label: sys, symerror: 0.298} + value: 7.669 + - errors: + - {label: stat, symerror: 0.113} + - {label: sys, symerror: 0.294} + value: 7.41 + - errors: + - {label: stat, symerror: 0.109} + - {label: sys, symerror: 0.259} + value: 6.587 + - errors: + - {label: stat, symerror: 0.105} + - {label: sys, symerror: 0.238} + value: 5.788 + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.228} + value: 5.344 + - errors: + - {label: stat, symerror: 0.104} + - {label: sys, symerror: 0.229} + value: 4.987 + - errors: + - {label: stat, symerror: 0.1} + - {label: sys, symerror: 0.242} + value: 4.278 + - errors: + - {label: stat, symerror: 0.101} + - {label: sys, symerror: 0.253} + value: 4.117 + - errors: + - {label: stat, symerror: 0.072} + - {label: sys, symerror: 0.269} + value: 3.633 + - errors: + - {label: stat, symerror: 0.076} + - {label: sys, symerror: 0.3} + value: 3.036 + - errors: + - {label: stat, symerror: 0.081} + - {label: sys, symerror: 0.357} + value: 2.568 + - errors: + - {label: stat, symerror: 0.069} + - {label: sys, symerror: 0.398} + value: 2.165 + - errors: + - {label: stat, symerror: 0.096} + - {label: sys, symerror: 0.452} + value: 1.931 + - errors: + - {label: stat, symerror: 0.133} + - {label: sys, symerror: 0.594} + value: 1.603 + - errors: + - {label: stat, symerror: 0.045} + - {label: sys, symerror: 0.255} + value: 0.871 + - errors: + - {label: stat, symerror: 0.03} + - {label: sys, symerror: 0.179} + value: 0.912 + - errors: + - {label: stat, symerror: 0.025} + - {label: sys, symerror: 0.062} + value: 0.775 + - errors: + - {label: stat, symerror: 0.022} + - {label: sys, symerror: 0.044} + value: 0.639 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.033} + value: 0.511 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.024} + value: 0.419 + - errors: + - {label: stat, symerror: 0.011} + - {label: sys, symerror: 0.018} + value: 0.358 + - errors: + - {label: stat, symerror: 0.009} + - {label: sys, symerror: 0.012} + value: 0.254 + - errors: + - {label: stat, symerror: 0.008} + - {label: sys, symerror: 0.008} + value: 0.173 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.005} + value: 0.141 + - errors: + - {label: stat, symerror: 0.0055} + - {label: sys, symerror: 0.0036} + value: 0.095 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0027} + value: 0.0688 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0018} + value: 0.047 + - errors: + - {label: stat, symerror: 0.0017} + - {label: sys, symerror: 0.0012} + value: 0.0241 + - errors: + - {label: stat, symerror: 0.001} + - {label: sys, symerror: 0.0006} + value: 0.0093 + - errors: + - {label: stat, symerror: 0.0003} + - {label: sys, symerror: 0.0001} + value: 0.0015 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.035} + value: 0.984 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {high: 0.016, low: 0.014, value: 0.0153} + - {high: 0.022, low: 0.016, value: 0.0191} + - {high: 0.027, low: 0.022, value: 0.0246} + - {high: 0.033, low: 0.027, value: 0.0301} + - {high: 0.038, low: 0.033, value: 0.0356} + - {high: 0.044, low: 0.038, value: 0.0411} + - {high: 0.049, low: 0.044} + - {high: 0.055, low: 0.049, value: 0.0521} + - {high: 0.06, low: 0.055, value: 0.0576} + - {high: 0.066, low: 0.06} + - {high: 0.071, low: 0.066} + - {high: 0.077, low: 0.071} + - {high: 0.082, low: 0.077} + - {high: 0.088, low: 0.082} + - {high: 0.099, low: 0.088, value: 0.0931} + - {high: 0.11, low: 0.099, value: 0.104} + - {high: 0.121, low: 0.11, value: 0.115} + - {high: 0.143, low: 0.121, value: 0.131} + - {high: 0.164, low: 0.143, value: 0.153} + - {high: 0.186, low: 0.164} + - {high: 0.208, low: 0.186} + - {high: 0.23, low: 0.208, value: 0.2189} + - {high: 0.252, low: 0.23} + - {high: 0.274, low: 0.252, value: 0.2629} + - {high: 0.296, low: 0.274, value: 0.2849} + - {high: 0.318, low: 0.296, value: 0.3068} + - {high: 0.351, low: 0.318, value: 0.3338} + - {high: 0.384, low: 0.351, value: 0.3666} + - {high: 0.417, low: 0.384, value: 0.3997} + - {high: 0.45, low: 0.417, value: 0.4325} + - {high: 0.482, low: 0.45, value: 0.4651} + - {high: 0.526, low: 0.482, value: 0.5035} + - {high: 0.57, low: 0.526, value: 0.547} + - {high: 0.658, low: 0.57, value: 0.6083} + - {high: 0.768, low: 0.658, value: 0.7047} + - {high: 1.0, low: 0.768, value: 0.8383} + - {high: 1.0, low: 0.014} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100755 index 0000000000..4aef3aa8d6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,441 @@ +dependent_variables: +- header: {name: (1/N(Q=ZL))*D(N(Q=PI+-))/DX} + qualifiers: + - {name: RE(Q=PI+-), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 13.9} + value: 474.0 + - errors: + - {symerror: 10.5} + value: 467.3 + - errors: + - {symerror: 8.4} + value: 418.2 + - errors: + - {symerror: 6.9} + value: 375.5 + - errors: + - {symerror: 5.7} + value: 327.7 + - errors: + - {symerror: 4.2} + value: 275.8 + - errors: + - {symerror: 3.0} + value: 216.0 + - errors: + - {symerror: 2.2} + value: 171.2 + - errors: + - {symerror: 1.9} + value: 140.4 + - errors: + - {symerror: 1.5} + value: 116.4 + - errors: + - {symerror: 1.2} + value: 99.9 + - errors: + - {symerror: 1.0} + value: 85.4 + - errors: + - {symerror: 0.89} + value: 72.85 + - errors: + - {symerror: 0.79} + value: 64.51 + - errors: + - {symerror: 0.72} + value: 56.82 + - errors: + - {symerror: 0.66} + value: 50.84 + - errors: + - {symerror: 0.61} + value: 45.34 + - errors: + - {symerror: 0.56} + value: 40.71 + - errors: + - {symerror: 0.4} + value: 34.6 + - errors: + - {symerror: 0.35} + value: 28.99 + - errors: + - {symerror: 0.31} + value: 24.19 + - errors: + - {symerror: 0.22} + value: 18.97 + - errors: + - {symerror: 0.17} + value: 14.52 + - errors: + - {symerror: 0.14} + value: 11.06 + - errors: + - {symerror: 0.12} + value: 8.67 + - errors: + - {symerror: 0.1} + value: 6.79 + - errors: + - {symerror: 0.085} + value: 5.341 + - errors: + - {symerror: 0.073} + value: 4.214 + - errors: + - {symerror: 0.064} + value: 3.452 + - errors: + - {symerror: 0.056} + value: 2.727 + - errors: + - {symerror: 0.042} + value: 2.138 + - errors: + - {symerror: 0.036} + value: 1.652 + - errors: + - {symerror: 0.031} + value: 1.164 + - errors: + - {symerror: 0.027} + value: 0.874 + - errors: + - {symerror: 0.024} + value: 0.622 + - errors: + - {symerror: 0.019} + value: 0.441 + - errors: + - {symerror: 0.017} + value: 0.3 + - errors: + - {symerror: 0.01} + value: 0.178 + - errors: + - {symerror: 0.007} + value: 0.081 + - errors: + - {symerror: 0.003} + value: 0.016 + - errors: + - {symerror: 0.25} + value: 15.294 +- header: {name: (1/N(Q=ZC))*D(N(Q=PI+-))/DX} + qualifiers: + - {name: RE(Q=PI+-), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 26.6} + value: 425.5 + - errors: + - {symerror: 23.2} + value: 440.5 + - errors: + - {symerror: 20.0} + value: 453.8 + - errors: + - {symerror: 17.2} + value: 409.2 + - errors: + - {symerror: 14.6} + value: 372.8 + - errors: + - {symerror: 10.9} + value: 306.4 + - errors: + - {symerror: 8.0} + value: 234.6 + - errors: + - {symerror: 6.2} + value: 197.4 + - errors: + - {symerror: 6.0} + value: 155.8 + - errors: + - {symerror: 4.3} + value: 132.5 + - errors: + - {symerror: 3.5} + value: 109.3 + - errors: + - {symerror: 2.9} + value: 92.9 + - errors: + - {symerror: 2.48} + value: 77.56 + - errors: + - {symerror: 2.17} + value: 68.23 + - errors: + - {symerror: 1.97} + value: 60.06 + - errors: + - {symerror: 1.81} + value: 51.76 + - errors: + - {symerror: 1.67} + value: 45.28 + - errors: + - {symerror: 1.55} + value: 40.04 + - errors: + - {symerror: 1.12} + value: 33.5 + - errors: + - {symerror: 0.99} + value: 27.45 + - errors: + - {symerror: 0.87} + value: 22.92 + - errors: + - {symerror: 0.63} + value: 18.73 + - errors: + - {symerror: 0.5} + value: 13.72 + - errors: + - {symerror: 0.41} + value: 10.18 + - errors: + - {symerror: 0.34} + value: 7.53 + - errors: + - {symerror: 0.29} + value: 5.76 + - errors: + - {symerror: 0.235} + value: 4.381 + - errors: + - {symerror: 0.202} + value: 3.358 + - errors: + - {symerror: 0.171} + value: 2.487 + - errors: + - {symerror: 0.148} + value: 1.947 + - errors: + - {symerror: 0.108} + value: 1.436 + - errors: + - {symerror: 0.087} + value: 0.817 + - errors: + - {symerror: 0.074} + value: 0.614 + - errors: + - {symerror: 0.063} + value: 0.386 + - errors: + - {symerror: 0.061} + value: 0.429 + - errors: + - {symerror: 0.043} + value: 0.206 + - errors: + - {symerror: 0.037} + value: 0.142 + - errors: + - {symerror: 0.021} + value: 0.066 + - errors: + - {symerror: 0.01} + value: 0.003 + - errors: + - {symerror: 0.006} + value: 0.003 + - errors: + - {symerror: 0.465} + value: 15.783 +- header: {name: (1/N(Q=ZB))*D(N(Q=PI+-))/DX} + qualifiers: + - {name: RE(Q=PI+-), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 15.8} + value: 478.1 + - errors: + - {symerror: 11.9} + value: 488.4 + - errors: + - {symerror: 9.5} + value: 463.7 + - errors: + - {symerror: 7.7} + value: 432.2 + - errors: + - {symerror: 6.5} + value: 382.4 + - errors: + - {symerror: 4.6} + value: 333.3 + - errors: + - {symerror: 3.3} + value: 261.7 + - errors: + - {symerror: 2.7} + value: 214.2 + - errors: + - {symerror: 2.3} + value: 175.2 + - errors: + - {symerror: 1.9} + value: 145.4 + - errors: + - {symerror: 1.7} + value: 121.4 + - errors: + - {symerror: 1.5} + value: 103.3 + - errors: + - {symerror: 1.36} + value: 89.24 + - errors: + - {symerror: 1.21} + value: 75.47 + - errors: + - {symerror: 1.12} + value: 65.97 + - errors: + - {symerror: 1.04} + value: 59.39 + - errors: + - {symerror: 0.97} + value: 52.11 + - errors: + - {symerror: 0.9} + value: 45.86 + - errors: + - {symerror: 0.65} + value: 38.29 + - errors: + - {symerror: 0.58} + value: 30.57 + - errors: + - {symerror: 0.51} + value: 24.34 + - errors: + - {symerror: 0.36} + value: 18.21 + - errors: + - {symerror: 0.28} + value: 12.27 + - errors: + - {symerror: 0.22} + value: 8.25 + - errors: + - {symerror: 0.18} + value: 5.83 + - errors: + - {symerror: 0.15} + value: 4.14 + - errors: + - {symerror: 0.128} + value: 2.984 + - errors: + - {symerror: 0.11} + value: 2.303 + - errors: + - {symerror: 0.094} + value: 1.642 + - errors: + - {symerror: 0.085} + value: 1.365 + - errors: + - {symerror: 0.063} + value: 0.886 + - errors: + - {symerror: 0.052} + value: 0.631 + - errors: + - {symerror: 0.047} + value: 0.49 + - errors: + - {symerror: 0.038} + value: 0.276 + - errors: + - {symerror: 0.033} + value: 0.187 + - errors: + - {symerror: 0.025} + value: 0.111 + - errors: + - {symerror: 0.019} + value: 0.045 + - errors: + - {symerror: 0.01} + value: 0.039 + - errors: + - {symerror: 0.005} + value: 0.011 + - errors: + - {symerror: 0.002} + value: 0.003 + - errors: + - {symerror: 0.278} + value: 16.841 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0066} + - {value: 0.0088} + - {value: 0.0109} + - {value: 0.0131} + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0465} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.063} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.104} + - {value: 0.115} + - {value: 0.131} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.2849} + - {value: 0.3068} + - {value: 0.3338} + - {value: 0.3666} + - {value: 0.3997} + - {value: 0.4325} + - {value: 0.4651} + - {value: 0.5035} + - {value: 0.547} + - {value: 0.6083} + - {value: 0.7047} + - {value: 0.8383} + - {value: '-'} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100755 index 0000000000..3257953e58 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,401 @@ +dependent_variables: +- header: {name: (1/N(Q=ZL))*D(N(Q=K+-))/DX} + qualifiers: + - {name: RE(Q=K+-), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.27} + value: 27.05 + - errors: + - {symerror: 0.42} + value: 20.0 + - errors: + - {symerror: 0.4} + value: 19.74 + - errors: + - {symerror: 0.37} + value: 17.52 + - errors: + - {symerror: 0.37} + value: 16.08 + - errors: + - {symerror: 0.34} + value: 15.04 + - errors: + - {symerror: 0.34} + value: 13.54 + - errors: + - {symerror: 0.34} + value: 11.87 + - errors: + - {symerror: 0.33} + value: 11.44 + - errors: + - {symerror: 0.3} + value: 10.64 + - errors: + - {symerror: 0.29} + value: 10.24 + - errors: + - {symerror: 0.29} + value: 9.67 + - errors: + - {symerror: 0.27} + value: 8.13 + - errors: + - {symerror: 0.28} + value: 7.98 + - errors: + - {symerror: 0.19} + value: 7.0 + - errors: + - {symerror: 0.19} + value: 6.36 + - errors: + - {symerror: 0.2} + value: 5.85 + - errors: + - {symerror: 0.15} + value: 4.89 + - errors: + - {symerror: 0.17} + value: 3.41 + - errors: + - {symerror: 0.22} + value: 2.84 + - errors: + - {symerror: 0.082} + value: 2.564 + - errors: + - {symerror: 0.067} + value: 2.401 + - errors: + - {symerror: 0.054} + value: 1.973 + - errors: + - {symerror: 0.048} + value: 1.643 + - errors: + - {symerror: 0.044} + value: 1.481 + - errors: + - {symerror: 0.039} + value: 1.211 + - errors: + - {symerror: 0.029} + value: 1.001 + - errors: + - {symerror: 0.025} + value: 0.746 + - errors: + - {symerror: 0.023} + value: 0.666 + - errors: + - {symerror: 0.022} + value: 0.559 + - errors: + - {symerror: 0.02} + value: 0.426 + - errors: + - {symerror: 0.016} + value: 0.363 + - errors: + - {symerror: 0.015} + value: 0.261 + - errors: + - {symerror: 0.01} + value: 0.183 + - errors: + - {symerror: 0.007} + value: 0.079 + - errors: + - {symerror: 0.004} + value: 0.008 + - errors: + - {symerror: 0.062} + value: 1.869 +- header: {name: (1/N(Q=ZC))*D(N(Q=K+-))/DX} + qualifiers: + - {name: RE(Q=K+-), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 3.86} + value: 30.92 + - errors: + - {symerror: 1.37} + value: 22.43 + - errors: + - {symerror: 1.27} + value: 22.04 + - errors: + - {symerror: 1.17} + value: 20.82 + - errors: + - {symerror: 1.15} + value: 16.79 + - errors: + - {symerror: 1.15} + value: 16.68 + - errors: + - {symerror: 1.06} + value: 16.46 + - errors: + - {symerror: 1.08} + value: 15.81 + - errors: + - {symerror: 0.99} + value: 12.62 + - errors: + - {symerror: 0.92} + value: 12.24 + - errors: + - {symerror: 0.87} + value: 11.42 + - errors: + - {symerror: 0.85} + value: 10.95 + - errors: + - {symerror: 0.84} + value: 10.88 + - errors: + - {symerror: 0.81} + value: 9.62 + - errors: + - {symerror: 0.59} + value: 9.84 + - errors: + - {symerror: 0.58} + value: 8.08 + - errors: + - {symerror: 0.63} + value: 8.98 + - errors: + - {symerror: 0.45} + value: 6.59 + - errors: + - {symerror: 0.51} + value: 5.5 + - errors: + - {symerror: 0.68} + value: 5.12 + - errors: + - {symerror: 0.245} + value: 3.85 + - errors: + - {symerror: 0.19} + value: 3.087 + - errors: + - {symerror: 0.145} + value: 2.074 + - errors: + - {symerror: 0.132} + value: 1.96 + - errors: + - {symerror: 0.119} + value: 1.681 + - errors: + - {symerror: 0.104} + value: 1.368 + - errors: + - {symerror: 0.076} + value: 1.043 + - errors: + - {symerror: 0.068} + value: 0.874 + - errors: + - {symerror: 0.058} + value: 0.6 + - errors: + - {symerror: 0.05} + value: 0.408 + - errors: + - {symerror: 0.05} + value: 0.408 + - errors: + - {symerror: 0.037} + value: 0.243 + - errors: + - {symerror: 0.034} + value: 0.173 + - errors: + - {symerror: 0.02} + value: 0.064 + - errors: + - {symerror: 0.011} + value: 0.009 + - errors: + - {symerror: 0.008} + value: 0.008 + - errors: + - {symerror: 0.093} + value: 2.273 +- header: {name: (1/N(Q=ZB))*D(N(Q=K+-))/DX} + qualifiers: + - {name: RE(Q=K+-), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.99} + value: 30.21 + - errors: + - {symerror: 0.62} + value: 23.06 + - errors: + - {symerror: 0.6} + value: 22.89 + - errors: + - {symerror: 0.55} + value: 21.64 + - errors: + - {symerror: 0.53} + value: 21.36 + - errors: + - {symerror: 0.56} + value: 21.36 + - errors: + - {symerror: 0.57} + value: 19.9 + - errors: + - {symerror: 0.6} + value: 18.91 + - errors: + - {symerror: 0.58} + value: 18.46 + - errors: + - {symerror: 0.54} + value: 17.43 + - errors: + - {symerror: 0.53} + value: 16.92 + - errors: + - {symerror: 0.52} + value: 15.62 + - errors: + - {symerror: 0.52} + value: 15.11 + - errors: + - {symerror: 0.5} + value: 13.18 + - errors: + - {symerror: 0.36} + value: 12.43 + - errors: + - {symerror: 0.37} + value: 11.56 + - errors: + - {symerror: 0.38} + value: 9.96 + - errors: + - {symerror: 0.27} + value: 7.17 + - errors: + - {symerror: 0.29} + value: 4.58 + - errors: + - {symerror: 0.36} + value: 4.2 + - errors: + - {symerror: 0.126} + value: 2.541 + - errors: + - {symerror: 0.096} + value: 2.009 + - errors: + - {symerror: 0.078} + value: 1.627 + - errors: + - {symerror: 0.062} + value: 1.116 + - errors: + - {symerror: 0.053} + value: 0.83 + - errors: + - {symerror: 0.045} + value: 0.64 + - errors: + - {symerror: 0.032} + value: 0.452 + - errors: + - {symerror: 0.028} + value: 0.337 + - errors: + - {symerror: 0.024} + value: 0.245 + - errors: + - {symerror: 0.02} + value: 0.149 + - errors: + - {symerror: 0.018} + value: 0.108 + - errors: + - {symerror: 0.012} + value: 0.057 + - errors: + - {symerror: 0.013} + value: 0.061 + - errors: + - {symerror: 0.005} + value: 0.012 + - errors: + - {symerror: 0.003} + value: 0.002 + - errors: + - {symerror: 0.001} + value: -0.001 + - errors: + - {symerror: 0.08} + value: 2.377 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0465} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.063} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.104} + - {value: 0.115} + - {value: 0.131} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.2849} + - {value: 0.3068} + - {value: 0.3338} + - {value: 0.3666} + - {value: 0.3997} + - {value: 0.4325} + - {value: 0.4651} + - {value: 0.5035} + - {value: 0.547} + - {value: 0.6083} + - {value: 0.7047} + - {value: 0.8383} + - {value: '-'} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100755 index 0000000000..b289dbf745 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,401 @@ +dependent_variables: +- header: {name: (1/N(Q=ZL))*D(N(Q=PBAR))/DX} + qualifiers: + - {name: RE(Q=PPBAR), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 0.99} + value: 13.98 + - errors: + - {symerror: 0.58} + value: 17.63 + - errors: + - {symerror: 0.6} + value: 13.42 + - errors: + - {symerror: 0.36} + value: 10.57 + - errors: + - {symerror: 0.31} + value: 9.98 + - errors: + - {symerror: 0.26} + value: 8.37 + - errors: + - {symerror: 0.24} + value: 7.33 + - errors: + - {symerror: 0.23} + value: 7.79 + - errors: + - {symerror: 0.22} + value: 6.62 + - errors: + - {symerror: 0.2} + value: 5.88 + - errors: + - {symerror: 0.19} + value: 5.39 + - errors: + - {symerror: 0.19} + value: 5.22 + - errors: + - {symerror: 0.18} + value: 4.42 + - errors: + - {symerror: 0.19} + value: 4.44 + - errors: + - {symerror: 0.13} + value: 3.65 + - errors: + - {symerror: 0.13} + value: 3.11 + - errors: + - {symerror: 0.15} + value: 2.73 + - errors: + - {symerror: 0.12} + value: 2.15 + - errors: + - {symerror: 0.16} + value: 1.83 + - errors: + - {symerror: 0.24} + value: 1.84 + - errors: + - {symerror: 0.078} + value: 0.905 + - errors: + - {symerror: 0.054} + value: 1.065 + - errors: + - {symerror: 0.044} + value: 0.822 + - errors: + - {symerror: 0.038} + value: 0.762 + - errors: + - {symerror: 0.033} + value: 0.628 + - errors: + - {symerror: 0.029} + value: 0.486 + - errors: + - {symerror: 0.022} + value: 0.446 + - errors: + - {symerror: 0.018} + value: 0.306 + - errors: + - {symerror: 0.015} + value: 0.23 + - errors: + - {symerror: 0.013} + value: 0.197 + - errors: + - {symerror: 0.011} + value: 0.145 + - errors: + - {symerror: 0.008} + value: 0.108 + - errors: + - {symerror: 0.006} + value: 0.07 + - errors: + - {symerror: 0.003} + value: 0.036 + - errors: + - {symerror: 0.002} + value: 0.013 + - errors: + - {symerror: 0.001} + value: 0.003 + - errors: + - {symerror: 0.038} + value: 1.008 +- header: {name: (1/N(Q=ZC))*D(N(Q=PBAR))/DX} + qualifiers: + - {name: RE(Q=PPBAR), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 2.94} + value: 13.28 + - errors: + - {symerror: 1.89} + value: 15.22 + - errors: + - {symerror: 1.86} + value: 13.32 + - errors: + - {symerror: 1.16} + value: 9.6 + - errors: + - {symerror: 1.01} + value: 11.64 + - errors: + - {symerror: 0.87} + value: 10.07 + - errors: + - {symerror: 0.76} + value: 8.1 + - errors: + - {symerror: 0.72} + value: 6.09 + - errors: + - {symerror: 0.67} + value: 6.54 + - errors: + - {symerror: 0.63} + value: 6.36 + - errors: + - {symerror: 0.59} + value: 4.62 + - errors: + - {symerror: 0.58} + value: 4.43 + - errors: + - {symerror: 0.55} + value: 4.08 + - errors: + - {symerror: 0.55} + value: 3.67 + - errors: + - {symerror: 0.42} + value: 4.07 + - errors: + - {symerror: 0.41} + value: 2.98 + - errors: + - {symerror: 0.43} + value: 2.3 + - errors: + - {symerror: 0.36} + value: 2.39 + - errors: + - {symerror: 0.5} + value: 1.72 + - errors: + - {symerror: 0.71} + value: 0.31 + - errors: + - {symerror: 0.235} + value: 0.561 + - errors: + - {symerror: 0.163} + value: 0.978 + - errors: + - {symerror: 0.136} + value: 0.907 + - errors: + - {symerror: 0.116} + value: 0.652 + - errors: + - {symerror: 0.101} + value: 0.572 + - errors: + - {symerror: 0.089} + value: 0.494 + - errors: + - {symerror: 0.069} + value: 0.454 + - errors: + - {symerror: 0.054} + value: 0.314 + - errors: + - {symerror: 0.041} + value: 0.17 + - errors: + - {symerror: 0.033} + value: 0.103 + - errors: + - {symerror: 0.028} + value: 0.064 + - errors: + - {symerror: 0.018} + value: 0.015 + - errors: + - {symerror: 0.017} + value: 0.044 + - errors: + - {symerror: 0.007} + value: 0.007 + - errors: + - {symerror: 0.005} + value: 0.015 + - errors: + - {symerror: 0.002} + value: 0.001 + - errors: + - {symerror: 0.056} + value: 0.93 +- header: {name: (1/N(Q=ZB))*D(N(Q=PBAR))/DX} + qualifiers: + - {name: RE(Q=PPBAR), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.49} + value: 13.79 + - errors: + - {symerror: 0.78} + value: 17.93 + - errors: + - {symerror: 0.93} + value: 16.41 + - errors: + - {symerror: 0.52} + value: 12.11 + - errors: + - {symerror: 0.42} + value: 10.32 + - errors: + - {symerror: 0.4} + value: 9.52 + - errors: + - {symerror: 0.36} + value: 7.72 + - errors: + - {symerror: 0.32} + value: 6.86 + - errors: + - {symerror: 0.32} + value: 6.19 + - errors: + - {symerror: 0.29} + value: 4.96 + - errors: + - {symerror: 0.29} + value: 4.82 + - errors: + - {symerror: 0.29} + value: 4.57 + - errors: + - {symerror: 0.29} + value: 4.07 + - errors: + - {symerror: 0.29} + value: 3.82 + - errors: + - {symerror: 0.21} + value: 3.29 + - errors: + - {symerror: 0.22} + value: 2.68 + - errors: + - {symerror: 0.23} + value: 2.24 + - errors: + - {symerror: 0.19} + value: 1.84 + - errors: + - {symerror: 0.27} + value: 1.91 + - errors: + - {symerror: 0.36} + value: 1.25 + - errors: + - {symerror: 0.121} + value: 0.867 + - errors: + - {symerror: 0.072} + value: 0.739 + - errors: + - {symerror: 0.06} + value: 0.645 + - errors: + - {symerror: 0.047} + value: 0.392 + - errors: + - {symerror: 0.038} + value: 0.252 + - errors: + - {symerror: 0.035} + value: 0.266 + - errors: + - {symerror: 0.022} + value: 0.146 + - errors: + - {symerror: 0.018} + value: 0.102 + - errors: + - {symerror: 0.012} + value: 0.02 + - errors: + - {symerror: 0.011} + value: 0.034 + - errors: + - {symerror: 0.007} + value: -0.004 + - errors: + - {symerror: 0.006} + value: 0.016 + - errors: + - {symerror: 0.003} + value: -0.003 + - errors: + - {symerror: 0.002} + value: 0.004 + - errors: + - {symerror: 0.001} + value: -0.001 + - errors: + - {symerror: 0.0} + value: 0.0 + - errors: + - {symerror: 0.037} + value: 0.909 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0465} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.063} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.104} + - {value: 0.115} + - {value: 0.131} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.2849} + - {value: 0.3068} + - {value: 0.3338} + - {value: 0.3666} + - {value: 0.3997} + - {value: 0.4325} + - {value: 0.4651} + - {value: 0.5035} + - {value: 0.547} + - {value: 0.6083} + - {value: 0.7047} + - {value: 0.8383} + - {value: '-'} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml new file mode 100755 index 0000000000..7382d11d47 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table8.yaml @@ -0,0 +1,431 @@ +dependent_variables: +- header: {name: (1/N(Q=ZL))*D(N(Q=CHGD))/DX} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 11.9} + value: 507.8 + - errors: + - {symerror: 9.2} + value: 505.2 + - errors: + - {symerror: 7.5} + value: 465.3 + - errors: + - {symerror: 6.3} + value: 421.9 + - errors: + - {symerror: 5.8} + value: 371.7 + - errors: + - {symerror: 4.2} + value: 315.5 + - errors: + - {symerror: 3.2} + value: 250.5 + - errors: + - {symerror: 2.3} + value: 200.3 + - errors: + - {symerror: 2.0} + value: 167.3 + - errors: + - {symerror: 1.6} + value: 140.4 + - errors: + - {symerror: 1.3} + value: 121.2 + - errors: + - {symerror: 1.1} + value: 105.5 + - errors: + - {symerror: 1.0} + value: 91.2 + - errors: + - {symerror: 0.89} + value: 81.29 + - errors: + - {symerror: 0.81} + value: 72.69 + - errors: + - {symerror: 0.76} + value: 65.92 + - errors: + - {symerror: 0.7} + value: 58.06 + - errors: + - {symerror: 0.66} + value: 53.26 + - errors: + - {symerror: 0.48} + value: 45.37 + - errors: + - {symerror: 0.43} + value: 38.55 + - errors: + - {symerror: 0.41} + value: 32.84 + - errors: + - {symerror: 0.28} + value: 26.05 + - errors: + - {symerror: 0.29} + value: 19.79 + - errors: + - {symerror: 0.35} + value: 15.75 + - errors: + - {symerror: 0.17} + value: 12.16 + - errors: + - {symerror: 0.14} + value: 10.27 + - errors: + - {symerror: 0.11} + value: 8.14 + - errors: + - {symerror: 0.1} + value: 6.62 + - errors: + - {symerror: 0.087} + value: 5.565 + - errors: + - {symerror: 0.076} + value: 4.428 + - errors: + - {symerror: 0.057} + value: 3.588 + - errors: + - {symerror: 0.049} + value: 2.706 + - errors: + - {symerror: 0.042} + value: 2.062 + - errors: + - {symerror: 0.037} + value: 1.631 + - errors: + - {symerror: 0.034} + value: 1.193 + - errors: + - {symerror: 0.026} + value: 0.912 + - errors: + - {symerror: 0.023} + value: 0.632 + - errors: + - {symerror: 0.015} + value: 0.398 + - errors: + - {symerror: 0.011} + value: 0.172 + - errors: + - {symerror: 0.005} + value: 0.027 +- header: {name: (1/N(Q=ZC))*D(N(Q=CHGD))/DX} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 25.3} + value: 468.7 + - errors: + - {symerror: 22.6} + value: 485.4 + - errors: + - {symerror: 20.2} + value: 507.2 + - errors: + - {symerror: 17.6} + value: 464.0 + - errors: + - {symerror: 16.9} + value: 422.9 + - errors: + - {symerror: 12.7} + value: 349.1 + - errors: + - {symerror: 9.5} + value: 274.1 + - errors: + - {symerror: 7.3} + value: 231.5 + - errors: + - {symerror: 6.9} + value: 187.5 + - errors: + - {symerror: 5.2} + value: 162.3 + - errors: + - {symerror: 4.2} + value: 136.6 + - errors: + - {symerror: 3.6} + value: 117.3 + - errors: + - {symerror: 3.0} + value: 99.1 + - errors: + - {symerror: 2.65} + value: 89.21 + - errors: + - {symerror: 2.42} + value: 78.25 + - errors: + - {symerror: 2.23} + value: 69.26 + - errors: + - {symerror: 2.06} + value: 62.25 + - errors: + - {symerror: 1.93} + value: 55.28 + - errors: + - {symerror: 1.42} + value: 49.14 + - errors: + - {symerror: 1.29} + value: 40.11 + - errors: + - {symerror: 1.22} + value: 35.64 + - errors: + - {symerror: 0.83} + value: 28.94 + - errors: + - {symerror: 0.86} + value: 21.99 + - errors: + - {symerror: 1.03} + value: 16.51 + - errors: + - {symerror: 0.5} + value: 12.69 + - errors: + - {symerror: 0.4} + value: 10.41 + - errors: + - {symerror: 0.32} + value: 7.86 + - errors: + - {symerror: 0.28} + value: 6.37 + - errors: + - {symerror: 0.241} + value: 5.06 + - errors: + - {symerror: 0.21} + value: 4.08 + - errors: + - {symerror: 0.156} + value: 3.123 + - errors: + - {symerror: 0.126} + value: 2.141 + - errors: + - {symerror: 0.106} + value: 1.472 + - errors: + - {symerror: 0.09} + value: 0.952 + - errors: + - {symerror: 0.085} + value: 0.935 + - errors: + - {symerror: 0.061} + value: 0.485 + - errors: + - {symerror: 0.055} + value: 0.372 + - errors: + - {symerror: 0.031} + value: 0.14 + - errors: + - {symerror: 0.016} + value: 0.027 + - errors: + - {symerror: 0.01} + value: 0.011 +- header: {name: (1/N(Q=ZB))*D(N(Q=CHGD))/DX} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHARGED X} + - {name: RE(Q=ZB), value: E+ E- --> Z0 < BQUARK BQUARKBAR >} + - {name: RE(Q=ZC), value: E+ E- --> Z0 < CQUARK CQUARKBAR >} + - {name: RE(Q=ZL), value: E+ E- --> Z0 < LQUARK LQUARKBAR >} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 14.2} + value: 546.1 + - errors: + - {symerror: 10.3} + value: 558.5 + - errors: + - {symerror: 8.0} + value: 531.9 + - errors: + - {symerror: 6.3} + value: 490.8 + - errors: + - {symerror: 6.7} + value: 436.5 + - errors: + - {symerror: 4.4} + value: 382.8 + - errors: + - {symerror: 3.4} + value: 308.6 + - errors: + - {symerror: 2.6} + value: 254.8 + - errors: + - {symerror: 2.1} + value: 213.2 + - errors: + - {symerror: 1.9} + value: 182.1 + - errors: + - {symerror: 1.7} + value: 154.5 + - errors: + - {symerror: 1.6} + value: 134.3 + - errors: + - {symerror: 1.4} + value: 118.6 + - errors: + - {symerror: 1.3} + value: 102.4 + - errors: + - {symerror: 1.22} + value: 91.92 + - errors: + - {symerror: 1.14} + value: 83.63 + - errors: + - {symerror: 1.1} + value: 75.06 + - errors: + - {symerror: 1.04} + value: 66.58 + - errors: + - {symerror: 0.74} + value: 57.31 + - errors: + - {symerror: 0.71} + value: 47.8 + - errors: + - {symerror: 0.67} + value: 39.19 + - errors: + - {symerror: 0.48} + value: 29.54 + - errors: + - {symerror: 0.48} + value: 20.69 + - errors: + - {symerror: 0.55} + value: 15.36 + - errors: + - {symerror: 0.26} + value: 10.65 + - errors: + - {symerror: 0.2} + value: 8.06 + - errors: + - {symerror: 0.16} + value: 6.28 + - errors: + - {symerror: 0.13} + value: 4.69 + - errors: + - {symerror: 0.11} + value: 3.49 + - errors: + - {symerror: 0.098} + value: 2.935 + - errors: + - {symerror: 0.068} + value: 2.041 + - errors: + - {symerror: 0.058} + value: 1.534 + - errors: + - {symerror: 0.051} + value: 1.111 + - errors: + - {symerror: 0.042} + value: 0.736 + - errors: + - {symerror: 0.037} + value: 0.51 + - errors: + - {symerror: 0.027} + value: 0.33 + - errors: + - {symerror: 0.022} + value: 0.188 + - errors: + - {symerror: 0.012} + value: 0.089 + - errors: + - {symerror: 0.006} + value: 0.017 + - errors: + - {symerror: 0.002} + value: 0.003 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0066} + - {value: 0.0088} + - {value: 0.0109} + - {value: 0.0131} + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0465} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.063} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.104} + - {value: 0.115} + - {value: 0.131} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.2849} + - {value: 0.3068} + - {value: 0.3338} + - {value: 0.3666} + - {value: 0.3997} + - {value: 0.4325} + - {value: 0.4651} + - {value: 0.5035} + - {value: 0.547} + - {value: 0.6083} + - {value: 0.7047} + - {value: 0.8383} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml new file mode 100755 index 0000000000..591bcd5ea8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/Table9.yaml @@ -0,0 +1,428 @@ +dependent_variables: +- header: {name: R(Q=PI+)} + qualifiers: + - {name: RE(Q=PI+), value: E+ E- --> PI+ X} + - {name: RE(Q=PI-), value: E+ E- --> PI- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 4.0} + value: 243.9 + - errors: + - {symerror: 3.6} + value: 236.7 + - errors: + - {symerror: 3.1} + value: 210.5 + - errors: + - {symerror: 2.9} + value: 194.5 + - errors: + - {symerror: 2.6} + value: 168.1 + - errors: + - {symerror: 1.5} + value: 137.8 + - errors: + - {symerror: 1.4} + value: 108.1 + - errors: + - {symerror: 1.18} + value: 84.99 + - errors: + - {symerror: 1.06} + value: 68.97 + - errors: + - {symerror: 0.96} + value: 57.26 + - errors: + - {symerror: 0.91} + value: 49.27 + - errors: + - {symerror: 0.86} + value: 43.81 + - errors: + - {symerror: 0.79} + value: 37.47 + - errors: + - {symerror: 0.72} + value: 32.0 + - errors: + - {symerror: 0.68} + value: 28.67 + - errors: + - {symerror: 0.63} + value: 24.88 + - errors: + - {symerror: 0.59} + value: 21.33 + - errors: + - {symerror: 0.56} + value: 20.51 + - errors: + - {symerror: 0.37} + value: 17.82 + - errors: + - {symerror: 0.33} + value: 14.52 + - errors: + - {symerror: 0.3} + value: 12.25 + - errors: + - {symerror: 0.188} + value: 9.454 + - errors: + - {symerror: 0.163} + value: 7.231 + - errors: + - {symerror: 0.141} + value: 5.594 + - errors: + - {symerror: 0.123} + value: 4.33 + - errors: + - {symerror: 0.108} + value: 3.302 + - errors: + - {symerror: 0.092} + value: 2.619 + - errors: + - {symerror: 0.082} + value: 2.059 + - errors: + - {symerror: 0.074} + value: 1.623 + - errors: + - {symerror: 0.065} + value: 1.294 + - errors: + - {symerror: 0.048} + value: 0.974 + - errors: + - {symerror: 0.042} + value: 0.721 + - errors: + - {symerror: 0.036} + value: 0.523 + - errors: + - {symerror: 0.032} + value: 0.424 + - errors: + - {symerror: 0.028} + value: 0.278 + - errors: + - {symerror: 0.021} + value: 0.221 + - errors: + - {symerror: 0.018} + value: 0.107 + - errors: + - {symerror: 0.011} + value: 0.066 + - errors: + - {symerror: 0.007} + value: 0.02 + - errors: + - {symerror: 0.004} + value: 0.011 +- header: {name: R(Q=PI-)} + qualifiers: + - {name: RE(Q=PI+), value: E+ E- --> PI+ X} + - {name: RE(Q=PI-), value: E+ E- --> PI- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 4.0} + value: 237.5 + - errors: + - {symerror: 3.5} + value: 235.5 + - errors: + - {symerror: 3.2} + value: 215.3 + - errors: + - {symerror: 2.8} + value: 189.4 + - errors: + - {symerror: 2.6} + value: 166.4 + - errors: + - {symerror: 1.6} + value: 142.8 + - errors: + - {symerror: 1.4} + value: 109.5 + - errors: + - {symerror: 1.19} + value: 88.51 + - errors: + - {symerror: 1.07} + value: 71.82 + - errors: + - {symerror: 0.97} + value: 59.36 + - errors: + - {symerror: 0.91} + value: 49.63 + - errors: + - {symerror: 0.86} + value: 42.11 + - errors: + - {symerror: 0.78} + value: 36.45 + - errors: + - {symerror: 0.72} + value: 32.79 + - errors: + - {symerror: 0.67} + value: 28.02 + - errors: + - {symerror: 0.63} + value: 26.16 + - errors: + - {symerror: 0.6} + value: 24.09 + - errors: + - {symerror: 0.56} + value: 20.15 + - errors: + - {symerror: 0.36} + value: 17.17 + - errors: + - {symerror: 0.33} + value: 14.61 + - errors: + - {symerror: 0.3} + value: 11.99 + - errors: + - {symerror: 0.189} + value: 9.663 + - errors: + - {symerror: 0.164} + value: 7.386 + - errors: + - {symerror: 0.139} + value: 5.433 + - errors: + - {symerror: 0.122} + value: 4.36 + - errors: + - {symerror: 0.108} + value: 3.503 + - errors: + - {symerror: 0.093} + value: 2.721 + - errors: + - {symerror: 0.083} + value: 2.142 + - errors: + - {symerror: 0.075} + value: 1.844 + - errors: + - {symerror: 0.065} + value: 1.378 + - errors: + - {symerror: 0.049} + value: 1.161 + - errors: + - {symerror: 0.044} + value: 0.908 + - errors: + - {symerror: 0.037} + value: 0.637 + - errors: + - {symerror: 0.032} + value: 0.451 + - errors: + - {symerror: 0.03} + value: 0.375 + - errors: + - {symerror: 0.022} + value: 0.222 + - errors: + - {symerror: 0.02} + value: 0.192 + - errors: + - {symerror: 0.012} + value: 0.112 + - errors: + - {symerror: 0.009} + value: 0.054 + - errors: + - {symerror: 0.004} + value: 0.006 +- header: {name: (R(Q=PI-)-R(Q=PI+))/(R(Q=PI-)+R(Q=PI+)), units: PCT} + qualifiers: + - {name: RE(Q=PI+), value: E+ E- --> PI+ X} + - {name: RE(Q=PI-), value: E+ E- --> PI- X} + - {name: RE(Q=Z0), value: E+ E- --> Z0 X} + - {name: SQRT(S), units: GeV, value: '91.28'} + - {name: SQRT(S), units: GeV, value: '91.28'} + values: + - errors: + - {symerror: 1.5} + value: -1.3 + - errors: + - {symerror: 1.3} + value: -0.3 + - errors: + - {symerror: 1.3} + value: 1.1 + - errors: + - {symerror: 1.3} + value: -1.3 + - errors: + - {symerror: 1.4} + value: -0.5 + - errors: + - {symerror: 1.0} + value: 1.8 + - errors: + - {symerror: 1.1} + value: 0.7 + - errors: + - {symerror: 1.2} + value: 2.0 + - errors: + - {symerror: 1.3} + value: 2.0 + - errors: + - {symerror: 1.5} + value: 1.8 + - errors: + - {symerror: 1.6} + value: 0.4 + - errors: + - {symerror: 1.8} + value: -2.0 + - errors: + - {symerror: 1.9} + value: -1.4 + - errors: + - {symerror: 2.0} + value: 1.2 + - errors: + - {symerror: 2.1} + value: -1.1 + - errors: + - {symerror: 2.2} + value: 2.5 + - errors: + - {symerror: 2.4} + value: 6.1 + - errors: + - {symerror: 2.5} + value: -0.9 + - errors: + - {symerror: 1.9} + value: -1.8 + - errors: + - {symerror: 2.0} + value: 0.3 + - errors: + - {symerror: 2.2} + value: -1.1 + - errors: + - {symerror: 1.8} + value: 1.1 + - errors: + - {symerror: 2.0} + value: 1.1 + - errors: + - {symerror: 2.3} + value: -1.5 + - errors: + - {symerror: 2.6} + value: 0.4 + - errors: + - {symerror: 2.9} + value: 3.0 + - errors: + - {symerror: 3.1} + value: 1.9 + - errors: + - {symerror: 3.6} + value: 2.0 + - errors: + - {symerror: 3.9} + value: 6.4 + - errors: + - {symerror: 4.4} + value: 3.2 + - errors: + - {symerror: 4.1} + value: 8.8 + - errors: + - {symerror: 4.8} + value: 11.5 + - errors: + - {symerror: 5.7} + value: 9.9 + - errors: + - {symerror: 6.7} + value: 3.1 + - errors: + - {symerror: 8.1} + value: 15.0 + - errors: + - {symerror: 8.8} + value: 0.2 + - errors: + - {symerror: 11.0} + value: 28.0 + - errors: + - {symerror: 12.0} + value: 26.0 + - errors: + - {symerror: 20.0} + value: 45.0 + - errors: + - {symerror: 40.0} + value: -27.0 +independent_variables: +- header: {name: X(DEF=2*P(P=3)/SQRT(S))} + values: + - {value: 0.0066} + - {value: 0.0088} + - {value: 0.011} + - {value: 0.0131} + - {value: 0.0153} + - {value: 0.0191} + - {value: 0.0246} + - {value: 0.0301} + - {value: 0.0356} + - {value: 0.0411} + - {value: 0.0466} + - {value: 0.0521} + - {value: 0.0576} + - {value: 0.0631} + - {value: 0.0685} + - {value: 0.074} + - {value: 0.0795} + - {value: 0.085} + - {value: 0.0931} + - {value: 0.1041} + - {value: 0.115} + - {value: 0.1311} + - {value: 0.153} + - {value: 0.175} + - {value: 0.197} + - {value: 0.2189} + - {value: 0.241} + - {value: 0.2629} + - {value: 0.285} + - {value: 0.307} + - {value: 0.3337} + - {value: 0.3665} + - {value: 0.3996} + - {value: 0.4326} + - {value: 0.4653} + - {value: 0.5034} + - {value: 0.5464} + - {value: 0.6085} + - {value: 0.7046} + - {value: 0.8342} diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..5b6c44479e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,193 @@ +--- +additional_resources: +- {description: Rivet analysis, location: 'http://rivet.hepforge.org/analyses#SLD_2004_S5693039'} +comment: | + SLAC-SLC. Measurement of the cross sections for identified stable charged particle production in Z0 decays resulting from E+ E- interactions. The data comprises identified overall charged PI+-, K+- and P PBAR distributions from 400000 hadronic events collected in SLC runs between 1996 and 1998 and supercedes the previous measurements reported in PR D59 (1990) 052001. The data are analysed forall hadronic Z0 decays and for decays into light all, c and b quarks separately . +dateupdated: 16/10/2003 00:00:00 +modifications: +- {action: Encoded, date: 16 Oct 2003, who: Mike Whalley} +record_ids: +- {id: 630327, type: inspire} +- {id: 5126, type: red} + +--- +data_file: Table1.yaml +description: | + Production rates of all stable charged particles. The statistical and systematic errors are shown separately for the momentum distribution. They are combined in quadrature for the other two distributions. The first DSYS error is due tothe uncertainty in the track finding efficiency and the second DSYS error is th e rest of the systematic error. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DP, DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 2,F 1 +name: Table 1 + +--- +data_file: Table2.yaml +description: | + The charged pion fraction and differential production rate per hadronic Z0 decay. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX, N] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 3,F 2 +name: Table 2 + +--- +data_file: Table3.yaml +description: | + The charged kaon fraction and differential production rate per hadronic Z0 decay. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX, N] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.28] +location: Data from T 4,F 2 +name: Table 3 + +--- +data_file: Table4.yaml +description: | + The proton plus antiproton fraction and differential production rate per hadronic Z0 decay. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DX, N] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 5,F 2 +name: Table 4 + +--- +data_file: Table5.yaml +description: | + Differential production rates of charged pions per Z0 decay into light (u,d,s) and c and b quarks. The errors are combined statistical and systematic. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 6,F 6 +name: Table 5 + +--- +data_file: Table6.yaml +description: | + Differential production rates of charged kaons per Z0 decay into light (u,d,s) and c and b quarks. The errors are combined statistical and systematic. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering, + Strange production] +- name: cmenergies + values: [91.28] +location: Data from T 7,F 7 +name: Table 6 + +--- +data_file: Table7.yaml +description: | + Differential production rates of charged protons plus antiprotons per Z0 decay into light (u,d,s) and c and b quarks. The errors are combined statistical and systematic. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 8,F 7 +name: Table 7 + +--- +data_file: Table8.yaml +description: | + Differential production rates of stable charged particles per Z0 decay intolight (u,d,s) and c and b quarks. The errors are combined statistical and syste matic. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 9,F 8 +name: Table 8 + +--- +data_file: Table9.yaml +description: | + Differential production rate for positive and negative charged pions into light quark jets from hadronic Z0 decays. Also shown are the normalization differences. The ratios are defined as:-. R(Q=PI+)=(1/2N(Q=Z0))*D(N(QUARK --> PI+) + N(QUARKBAR --> PI-))/DX. R(Q=PI-)=(1/2N(Q=Z0))*D(N(QUARK --> PI-) + N(QUARKBAR --> PI+))/DX. +keywords: +- name: reactions + values: [E+ E- --> JET X, E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, Jet Production, + E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 12,F 13 +name: Table 9 + +--- +data_file: Table10.yaml +description: | + Differential production rate for positive and negative charged kaons into light quark jets from hadronic Z0 decays. Also shown are the normalization differences. The ratios are defined as:-. R(Q=K+)=(1/2N(Q=Z0))*D(N(QUARK --> K+) + N(QUARKBAR --> K-))/DX. R(Q=K-)=(1/2N(Q=Z0))*D(N(QUARK --> K-) + N(QUARKBAR --> K+))/DX. +keywords: +- name: reactions + values: [E+ E- --> JET X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, Jet Production, + E+ E- Scattering, Strange production] +- name: cmenergies + values: [91.28] +location: Data from T 13,F 13 +name: Table 10 + +--- +data_file: Table11.yaml +description: | + Differential production rate for positive and negative protons into light quark jets from hadronic Z0 decays. Also shown are the normalization differences.The ratios are defined as:-. R(Q=P+)=(1/2N(Q=Z0))*D(N(QUARK --> P+) + N(QUARKBAR --> PBAR))/DX. R(Q=PBAR)=(1/2N(Q=Z0))*D(N(QUARK --> PBAR) + N(QUARKBAR --> P+))/DX. +keywords: +- name: reactions + values: [E+ E- --> JET X, E+ E- --> PBAR X, E+ E- --> P+ X, E+ E- --> Z0] +- name: observables + values: [DN/DX] +- name: phrases + values: [Inclusive, Exclusive, Single Differential Distribution, Jet Production, + E+ E- Scattering] +- name: cmenergies + values: [91.28] +location: Data from T 13,F 13 +name: Table 11 + diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml new file mode 100644 index 0000000000..ae329ceac2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_b.yaml @@ -0,0 +1,90 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 15.8 + sys_norm: 4.78100000e+00 +- error: 11.9 + sys_norm: 4.88400000e+00 +- error: 9.5 + sys_norm: 4.637 +- error: 7.7 + sys_norm: 4.322 +- error: 6.5 + sys_norm: 3.824 +- error: 4.6 + sys_norm: 3.333 +- error: 3.3 + sys_norm: 2.617 +- error: 2.7 + sys_norm: 2.142 +- error: 2.3 + sys_norm: 1.752 +- error: 1.9 + sys_norm: 1.45400000e+00 +- error: 1.7 + sys_norm: 1.21400000e+00 +- error: 1.5 + sys_norm: 1.033 +- error: 1.36 + sys_norm: 0.8924 +- error: 1.21 + sys_norm: 0.7547 +- error: 1.12 + sys_norm: 0.6597 +- error: 1.04 + sys_norm: 0.5939 +- error: 0.97 + sys_norm: 0.5211 +- error: 0.9 + sys_norm: 0.4586 +- error: 0.65 + sys_norm: 0.3829 +- error: 0.58 + sys_norm: 0.3057 +- error: 0.51 + sys_norm: 0.2434 +- error: 0.36 + sys_norm: 0.1821 +- error: 0.28 + sys_norm: 0.1227 +- error: 0.22 + sys_norm: 0.0825 +- error: 0.18 + sys_norm: 5.83000000e-02 +- error: 0.15 + sys_norm: 0.0414 +- error: 0.128 + sys_norm: 2.98400000e-02 +- error: 0.11 + sys_norm: 0.02303 +- error: 0.094 + sys_norm: 0.01642 +- error: 0.085 + sys_norm: 0.01365 +- error: 0.063 + sys_norm: 0.00886 +- error: 0.052 + sys_norm: 6.31000000e-03 +- error: 0.047 + sys_norm: 0.0049 +- error: 0.038 + sys_norm: 2.76000000e-03 +- error: 0.033 + sys_norm: 1.87000000e-03 +- error: 0.025 + sys_norm: 0.00111 +- error: 0.019 + sys_norm: 0.00045 +- error: 0.01 + sys_norm: 0.00039 +- error: 0.005 + sys_norm: 1.10000000e-04 +- error: 0.002 + sys_norm: 3.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_c.yaml new file mode 100644 index 0000000000..ee46afc3c1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_c.yaml @@ -0,0 +1,90 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 26.6 + sys_norm: 4.255 +- error: 23.2 + sys_norm: 4.405 +- error: 20.0 + sys_norm: 4.538 +- error: 17.2 + sys_norm: 4.092 +- error: 14.6 + sys_norm: 3.728 +- error: 10.9 + sys_norm: 3.064 +- error: 8.0 + sys_norm: 2.346 +- error: 6.2 + sys_norm: 1.97400000e+00 +- error: 6.0 + sys_norm: 1.558 +- error: 4.3 + sys_norm: 1.325 +- error: 3.5 + sys_norm: 1.093 +- error: 2.9 + sys_norm: 0.929 +- error: 2.48 + sys_norm: 7.75600000e-01 +- error: 2.17 + sys_norm: 0.6823 +- error: 1.97 + sys_norm: 0.6006 +- error: 1.81 + sys_norm: 0.5176 +- error: 1.67 + sys_norm: 4.52800000e-01 +- error: 1.55 + sys_norm: 0.4004 +- error: 1.12 + sys_norm: 0.335 +- error: 0.99 + sys_norm: 0.2745 +- error: 0.87 + sys_norm: 2.29200000e-01 +- error: 0.63 + sys_norm: 1.87300000e-01 +- error: 0.5 + sys_norm: 1.37200000e-01 +- error: 0.41 + sys_norm: 0.1018 +- error: 0.34 + sys_norm: 0.0753 +- error: 0.29 + sys_norm: 0.0576 +- error: 0.235 + sys_norm: 0.04381 +- error: 0.202 + sys_norm: 0.03358 +- error: 0.171 + sys_norm: 2.48700000e-02 +- error: 0.148 + sys_norm: 0.01947 +- error: 0.108 + sys_norm: 0.01436 +- error: 0.087 + sys_norm: 0.00817 +- error: 0.074 + sys_norm: 0.00614 +- error: 0.063 + sys_norm: 0.00386 +- error: 0.061 + sys_norm: 0.00429 +- error: 0.043 + sys_norm: 2.06000000e-03 +- error: 0.037 + sys_norm: 1.42000000e-03 +- error: 0.021 + sys_norm: 0.00066 +- error: 0.01 + sys_norm: 3.0e-05 +- error: 0.006 + sys_norm: 3.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_inc.yaml new file mode 100644 index 0000000000..2f5303505f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_inc.yaml @@ -0,0 +1,134 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 1.3 + sys: 9.2 + sys_norm: 4.718 +- stat: 1.1 + sys: 6.6 + sys_norm: 4.704 +- stat: 1.1 + sys: 5.0 + sys_norm: 4.346 +- stat: 1.0 + sys: 4.0 + sys_norm: 3.88800000e+00 +- stat: 0.9 + sys: 3.3 + sys_norm: 3.527 +- stat: 0.5 + sys: 2.2 + sys_norm: 2.948 +- stat: 0.5 + sys: 1.3 + sys_norm: 2.296 +- stat: 0.4 + sys: 0.9 + sys_norm: 1.85 +- stat: 0.4 + sys: 0.7 + sys_norm: 1.506 +- stat: 0.4 + sys: 0.9 + sys_norm: 1.256 +- stat: 0.4 + sys: 1.1 + sys_norm: 1.065 +- stat: 0.35 + sys: 1.33 + sys_norm: 0.904 +- stat: 0.31 + sys: 0.91 + sys_norm: 7.73800000e-01 +- stat: 0.29 + sys: 0.7 + sys_norm: 0.6739 +- stat: 0.27 + sys: 0.75 + sys_norm: 0.594 +- stat: 0.25 + sys: 0.6 + sys_norm: 5.25700000e-01 +- stat: 0.24 + sys: 0.5 + sys_norm: 0.4676 +- stat: 0.23 + sys: 0.43 + sys_norm: 4.17000000e-01 +- stat: 0.15 + sys: 0.36 + sys_norm: 3.52600000e-01 +- stat: 0.13 + sys: 0.29 + sys_norm: 0.2889 +- stat: 0.12 + sys: 0.25 + sys_norm: 2.38800000e-01 +- stat: 0.08 + sys: 0.19 + sys_norm: 0.1869 +- stat: 0.07 + sys: 0.14 + sys_norm: 0.1385 +- stat: 0.06 + sys: 0.11 + sys_norm: 1.01600000e-01 +- stat: 0.05 + sys: 0.069 + sys_norm: 7.81200000e-02 +- stat: 0.044 + sys: 0.061 + sys_norm: 6.07600000e-02 +- stat: 0.039 + sys: 0.053 + sys_norm: 4.67400000e-02 +- stat: 0.035 + sys: 0.044 + sys_norm: 3.63200000e-02 +- stat: 0.031 + sys: 0.037 + sys_norm: 0.02886 +- stat: 0.028 + sys: 0.031 + sys_norm: 0.02292 +- stat: 0.021 + sys: 0.034 + sys_norm: 1.74900000e-02 +- stat: 0.018 + sys: 0.028 + sys_norm: 0.01275 +- stat: 0.016 + sys: 0.022 + sys_norm: 9.21000000e-03 +- stat: 0.014 + sys: 0.018 + sys_norm: 6.80000000e-03 +- stat: 0.013 + sys: 0.014 + sys_norm: 4.99000000e-03 +- stat: 0.01 + sys: 0.01 + sys_norm: 0.00338 +- stat: 0.009 + sys: 0.007 + sys_norm: 2.26000000e-03 +- stat: 0.005 + sys: 0.005 + sys_norm: 1.30000000e-03 +- stat: 0.0037 + sys: 0.0029 + sys_norm: 0.000526 +- stat: 0.0018 + sys: 0.0013 + sys_norm: 0.000113 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..8294f650e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PI_91P2GEV_EE-PISUM/uncertainties_uds.yaml @@ -0,0 +1,90 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 13.9 + sys_norm: 4.74 +- error: 10.5 + sys_norm: 4.673 +- error: 8.4 + sys_norm: 4.182 +- error: 6.9 + sys_norm: 3.755 +- error: 5.7 + sys_norm: 3.277 +- error: 4.2 + sys_norm: 2.758 +- error: 3.0 + sys_norm: 2.16 +- error: 2.2 + sys_norm: 1.712 +- error: 1.9 + sys_norm: 1.40400000e+00 +- error: 1.5 + sys_norm: 1.16400000e+00 +- error: 1.2 + sys_norm: 9.99000000e-01 +- error: 1.0 + sys_norm: 8.54000000e-01 +- error: 0.89 + sys_norm: 7.28500000e-01 +- error: 0.79 + sys_norm: 6.45100000e-01 +- error: 0.72 + sys_norm: 0.5682 +- error: 0.66 + sys_norm: 5.08400000e-01 +- error: 0.61 + sys_norm: 0.4534 +- error: 0.56 + sys_norm: 0.4071 +- error: 0.4 + sys_norm: 3.46000000e-01 +- error: 0.35 + sys_norm: 0.2899 +- error: 0.31 + sys_norm: 2.41900000e-01 +- error: 0.22 + sys_norm: 1.89700000e-01 +- error: 0.17 + sys_norm: 0.1452 +- error: 0.14 + sys_norm: 0.1106 +- error: 0.12 + sys_norm: 0.0867 +- error: 0.1 + sys_norm: 0.0679 +- error: 0.085 + sys_norm: 5.34100000e-02 +- error: 0.073 + sys_norm: 4.21400000e-02 +- error: 0.064 + sys_norm: 0.03452 +- error: 0.056 + sys_norm: 0.02727 +- error: 0.042 + sys_norm: 0.02138 +- error: 0.036 + sys_norm: 0.01652 +- error: 0.031 + sys_norm: 0.01164 +- error: 0.027 + sys_norm: 0.00874 +- error: 0.024 + sys_norm: 0.00622 +- error: 0.019 + sys_norm: 0.00441 +- error: 0.017 + sys_norm: 0.003 +- error: 0.01 + sys_norm: 0.00178 +- error: 0.007 + sys_norm: 8.10000000e-04 +- error: 0.003 + sys_norm: 0.00016 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml new file mode 100644 index 0000000000..75ddd0dc43 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_b.yaml @@ -0,0 +1,37 @@ +data_central: +- 13.79 +- 17.93 +- 16.41 +- 12.11 +- 10.32 +- 9.52 +- 7.72 +- 6.86 +- 6.19 +- 4.96 +- 4.82 +- 4.57 +- 4.07 +- 3.82 +- 3.29 +- 2.68 +- 2.24 +- 1.84 +- 1.91 +- 1.25 +- 0.867 +- 0.739 +- 0.645 +- 0.392 +- 0.252 +- 0.266 +- 0.146 +- 0.102 +- 0.02 +- 0.034 +- -0.004 +- 0.016 +- -0.003 +- 0.004 +- -0.001 +- 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_c.yaml new file mode 100644 index 0000000000..98d695521f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_c.yaml @@ -0,0 +1,37 @@ +data_central: +- 13.28 +- 15.22 +- 13.32 +- 9.6 +- 11.64 +- 10.07 +- 8.1 +- 6.09 +- 6.54 +- 6.36 +- 4.62 +- 4.43 +- 4.08 +- 3.67 +- 4.07 +- 2.98 +- 2.3 +- 2.39 +- 1.72 +- 0.31 +- 0.561 +- 0.978 +- 0.907 +- 0.652 +- 0.572 +- 0.494 +- 0.454 +- 0.314 +- 0.17 +- 0.103 +- 0.064 +- 0.015 +- 0.044 +- 0.007 +- 0.015 +- 0.001 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_inc.yaml new file mode 100644 index 0000000000..424fd4ffe7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_inc.yaml @@ -0,0 +1,37 @@ +data_central: +- 14.51 +- 17.32 +- 13.75 +- 11.12 +- 10.75 +- 9.048 +- 7.669 +- 7.41 +- 6.587 +- 5.788 +- 5.344 +- 4.987 +- 4.278 +- 4.117 +- 3.633 +- 3.036 +- 2.568 +- 2.165 +- 1.931 +- 1.603 +- 0.871 +- 0.912 +- 0.775 +- 0.639 +- 0.511 +- 0.419 +- 0.358 +- 0.254 +- 0.173 +- 0.141 +- 0.095 +- 0.0688 +- 0.047 +- 0.0241 +- 0.0093 +- 0.0015 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml new file mode 100644 index 0000000000..d9781c40e6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/data_uds.yaml @@ -0,0 +1,37 @@ +data_central: +- 13.98 +- 17.63 +- 13.42 +- 10.57 +- 9.98 +- 8.37 +- 7.33 +- 7.79 +- 6.62 +- 5.88 +- 5.39 +- 5.22 +- 4.42 +- 4.44 +- 3.65 +- 3.11 +- 2.73 +- 2.15 +- 1.83 +- 1.84 +- 0.905 +- 1.065 +- 0.822 +- 0.762 +- 0.628 +- 0.486 +- 0.446 +- 0.306 +- 0.23 +- 0.197 +- 0.145 +- 0.108 +- 0.07 +- 0.036 +- 0.013 +- 0.003 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..b7cad41772 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter.py @@ -0,0 +1,41 @@ +from filter_core import magic1, magic2 +import yaml + +table_inc = "rawdata/Table4.yaml" +table_tag = "rawdata/Table7.yaml" +ndat = 36 +var_name = 'xp' + +data_inc, kin_inc, err_inc = magic1(table_inc, ndat, var_name) + +with open('data_inc.yaml', 'w') as f: + yaml.dump(data_inc, f, sort_keys=False) +with open('kinematics_inc.yaml', 'w') as f: + yaml.dump(kin_inc, f, sort_keys=False) +with open('uncertainties_inc.yaml', 'w') as f: + yaml.dump(err_inc, f, sort_keys=False) + +data_uds, kin_uds, err_uds, data_c, kin_c, err_c, data_b, kin_b, err_b = magic2( + table_tag, ndat, var_name +) + +with open('data_uds.yaml', 'w') as f: + yaml.dump(data_uds, f, sort_keys=False) +with open('kinematics_uds.yaml', 'w') as f: + yaml.dump(kin_uds, f, sort_keys=False) +with open('uncertainties_uds.yaml', 'w') as f: + yaml.dump(err_uds, f, sort_keys=False) + +with open('data_c.yaml', 'w') as f: + yaml.dump(data_c, f, sort_keys=False) +with open('kinematics_c.yaml', 'w') as f: + yaml.dump(kin_c, f, sort_keys=False) +with open('uncertainties_c.yaml', 'w') as f: + yaml.dump(err_c, f, sort_keys=False) + +with open('data_b.yaml', 'w') as f: + yaml.dump(data_b, f, sort_keys=False) +with open('kinematics_b.yaml', 'w') as f: + yaml.dump(kin_b, f, sort_keys=False) +with open('uncertainties_b.yaml', 'w') as f: + yaml.dump(err_b, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..046ff5d403 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../SLD_SIA-PI_91P2GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_b.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_c.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_c.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_inc.yaml new file mode 100644 index 0000000000..e0938089da --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_inc.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: 0.014 + mid: 0.0153 + max: 0.016 +- xp: + min: 0.016 + mid: 0.0191 + max: 0.022 +- xp: + min: 0.022 + mid: 0.0246 + max: 0.027 +- xp: + min: 0.027 + mid: 0.0301 + max: 0.033 +- xp: + min: 0.033 + mid: 0.0356 + max: 0.038 +- xp: + min: 0.038 + mid: 0.0411 + max: 0.044 +- xp: + min: 0.044 + mid: 0.0465 + max: 0.049 +- xp: + min: 0.049 + mid: 0.0521 + max: 0.055 +- xp: + min: 0.055 + mid: 0.0576 + max: 0.06 +- xp: + min: 0.06 + mid: 0.063 + max: 0.066 +- xp: + min: 0.066 + mid: 0.0685 + max: 0.071 +- xp: + min: 0.071 + mid: 0.074 + max: 0.077 +- xp: + min: 0.077 + mid: 0.0795 + max: 0.082 +- xp: + min: 0.082 + mid: 8.50000000e-02 + max: 0.088 +- xp: + min: 0.088 + mid: 0.0931 + max: 0.099 +- xp: + min: 0.099 + mid: 0.104 + max: 0.11 +- xp: + min: 0.11 + mid: 0.115 + max: 0.121 +- xp: + min: 0.121 + mid: 0.131 + max: 0.143 +- xp: + min: 0.143 + mid: 0.153 + max: 0.164 +- xp: + min: 0.164 + mid: 0.175 + max: 0.186 +- xp: + min: 0.186 + mid: 0.197 + max: 0.208 +- xp: + min: 0.208 + mid: 0.2189 + max: 0.23 +- xp: + min: 0.23 + mid: 0.241 + max: 0.252 +- xp: + min: 0.252 + mid: 0.2629 + max: 0.274 +- xp: + min: 0.274 + mid: 0.2849 + max: 0.296 +- xp: + min: 0.296 + mid: 0.3068 + max: 0.318 +- xp: + min: 0.318 + mid: 0.3338 + max: 0.351 +- xp: + min: 0.351 + mid: 0.3666 + max: 0.384 +- xp: + min: 0.384 + mid: 0.3997 + max: 0.417 +- xp: + min: 0.417 + mid: 0.4325 + max: 0.45 +- xp: + min: 0.45 + mid: 0.4651 + max: 0.482 +- xp: + min: 0.482 + mid: 0.5035 + max: 0.526 +- xp: + min: 0.526 + mid: 0.547 + max: 0.57 +- xp: + min: 0.57 + mid: 0.6083 + max: 0.658 +- xp: + min: 0.658 + mid: 0.7047 + max: 0.768 +- xp: + min: 0.768 + mid: 0.8383 + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml new file mode 100644 index 0000000000..07491849cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/kinematics_uds.yaml @@ -0,0 +1,145 @@ +bins: +- xp: + min: null + mid: 0.0153 + max: null +- xp: + min: null + mid: 0.0191 + max: null +- xp: + min: null + mid: 0.0246 + max: null +- xp: + min: null + mid: 0.0301 + max: null +- xp: + min: null + mid: 0.0356 + max: null +- xp: + min: null + mid: 0.0411 + max: null +- xp: + min: null + mid: 0.0465 + max: null +- xp: + min: null + mid: 0.0521 + max: null +- xp: + min: null + mid: 0.0576 + max: null +- xp: + min: null + mid: 0.063 + max: null +- xp: + min: null + mid: 0.0685 + max: null +- xp: + min: null + mid: 0.074 + max: null +- xp: + min: null + mid: 0.0795 + max: null +- xp: + min: null + mid: 0.085 + max: null +- xp: + min: null + mid: 0.0931 + max: null +- xp: + min: null + mid: 0.104 + max: null +- xp: + min: null + mid: 0.115 + max: null +- xp: + min: null + mid: 0.131 + max: null +- xp: + min: null + mid: 0.153 + max: null +- xp: + min: null + mid: 0.175 + max: null +- xp: + min: null + mid: 0.197 + max: null +- xp: + min: null + mid: 0.2189 + max: null +- xp: + min: null + mid: 0.241 + max: null +- xp: + min: null + mid: 0.2629 + max: null +- xp: + min: null + mid: 0.2849 + max: null +- xp: + min: null + mid: 0.3068 + max: null +- xp: + min: null + mid: 0.3338 + max: null +- xp: + min: null + mid: 0.3666 + max: null +- xp: + min: null + mid: 0.3997 + max: null +- xp: + min: null + mid: 0.4325 + max: null +- xp: + min: null + mid: 0.4651 + max: null +- xp: + min: null + mid: 0.5035 + max: null +- xp: + min: null + mid: 0.547 + max: null +- xp: + min: null + mid: 0.6083 + max: null +- xp: + min: null + mid: 0.7047 + max: null +- xp: + min: null + mid: 0.8383 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..11d91e4d33 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,111 @@ +setname: 'SLD_SIA-PRO_91P2GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "SLD" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/0310017" +iNSPIRE: + url: "https://inspirehep.net/literature/630327" +hepdata: + url: "https://www.hepdata.net/record/ins630327" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP-INC + process_type: SIA_XP + ndata: 36 + tables: [4] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_inc.yaml + data_central: data_inc.yaml + data_uncertainties: + - uncertainties_inc.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (UDS tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$', units: '$$'} + observable_name: XP-UDS + process_type: SIA_XP + ndata: 36 + tables: [7] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_uds.yaml + data_central: data_uds.yaml + data_uncertainties: + - uncertainties_uds.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{uds}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{uds}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (C tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$', units: '$$'} + observable_name: XP-C + process_type: SIA_XP + ndata: 36 + tables: [7] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_c.yaml + data_central: data_c.yaml + data_uncertainties: + - uncertainties_c.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{c}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{c}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + +- observable: {description: "normalized x-sec differential wrt $x_p (B tagged)", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$', units: '$$'} + observable_name: XP-B + process_type: SIA_XP + ndata: 36 + tables: [7] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics_b.yaml + data_central: data_b.yaml + data_uncertainties: + - uncertainties_b.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'SLD SIA PRO- + PRO+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}\Big|_{b}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p\Big|_{b}}$' + # theory: + # FK_tables: + # - - + # operation: 'null' + diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..69d9a22a88 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../SLD_SIA-PI_91P2GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml new file mode 100644 index 0000000000..4606ea43d9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_b.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 1.49 + sys_norm: 0.1379 +- error: 0.78 + sys_norm: 0.1793 +- error: 0.93 + sys_norm: 0.1641 +- error: 0.52 + sys_norm: 0.1211 +- error: 0.42 + sys_norm: 0.1032 +- error: 0.4 + sys_norm: 9.52000000e-02 +- error: 0.36 + sys_norm: 0.0772 +- error: 0.32 + sys_norm: 6.86000000e-02 +- error: 0.32 + sys_norm: 6.19000000e-02 +- error: 0.29 + sys_norm: 0.0496 +- error: 0.29 + sys_norm: 4.82000000e-02 +- error: 0.29 + sys_norm: 4.57000000e-02 +- error: 0.29 + sys_norm: 4.07000000e-02 +- error: 0.29 + sys_norm: 0.0382 +- error: 0.21 + sys_norm: 0.0329 +- error: 0.22 + sys_norm: 0.0268 +- error: 0.23 + sys_norm: 2.24000000e-02 +- error: 0.19 + sys_norm: 0.0184 +- error: 0.27 + sys_norm: 0.0191 +- error: 0.36 + sys_norm: 0.0125 +- error: 0.121 + sys_norm: 0.00867 +- error: 0.072 + sys_norm: 0.00739 +- error: 0.06 + sys_norm: 0.00645 +- error: 0.047 + sys_norm: 0.00392 +- error: 0.038 + sys_norm: 0.00252 +- error: 0.035 + sys_norm: 0.00266 +- error: 0.022 + sys_norm: 0.00146 +- error: 0.018 + sys_norm: 1.02000000e-03 +- error: 0.012 + sys_norm: 0.0002 +- error: 0.011 + sys_norm: 0.00034 +- error: 0.007 + sys_norm: -4.0e-05 +- error: 0.006 + sys_norm: 0.00016 +- error: 0.003 + sys_norm: -3.0e-05 +- error: 0.002 + sys_norm: 4.0e-05 +- error: 0.001 + sys_norm: -1.0e-05 +- error: 0.0 + sys_norm: 0.0 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_c.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_c.yaml new file mode 100644 index 0000000000..f163cbedd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_c.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 2.94 + sys_norm: 0.1328 +- error: 1.89 + sys_norm: 0.1522 +- error: 1.86 + sys_norm: 0.1332 +- error: 1.16 + sys_norm: 0.096 +- error: 1.01 + sys_norm: 0.1164 +- error: 0.87 + sys_norm: 1.00700000e-01 +- error: 0.76 + sys_norm: 0.081 +- error: 0.72 + sys_norm: 0.0609 +- error: 0.67 + sys_norm: 0.0654 +- error: 0.63 + sys_norm: 0.0636 +- error: 0.59 + sys_norm: 4.62000000e-02 +- error: 0.58 + sys_norm: 0.0443 +- error: 0.55 + sys_norm: 0.0408 +- error: 0.55 + sys_norm: 0.0367 +- error: 0.42 + sys_norm: 4.07000000e-02 +- error: 0.41 + sys_norm: 0.0298 +- error: 0.43 + sys_norm: 0.023 +- error: 0.36 + sys_norm: 0.0239 +- error: 0.5 + sys_norm: 0.0172 +- error: 0.71 + sys_norm: 0.0031 +- error: 0.235 + sys_norm: 0.00561 +- error: 0.163 + sys_norm: 0.00978 +- error: 0.136 + sys_norm: 0.00907 +- error: 0.116 + sys_norm: 6.52000000e-03 +- error: 0.101 + sys_norm: 5.72000000e-03 +- error: 0.089 + sys_norm: 0.00494 +- error: 0.069 + sys_norm: 4.54000000e-03 +- error: 0.054 + sys_norm: 0.00314 +- error: 0.041 + sys_norm: 1.70000000e-03 +- error: 0.033 + sys_norm: 1.03000000e-03 +- error: 0.028 + sys_norm: 0.00064 +- error: 0.018 + sys_norm: 0.00015 +- error: 0.017 + sys_norm: 4.40000000e-04 +- error: 0.007 + sys_norm: 7.00000000e-05 +- error: 0.005 + sys_norm: 0.00015 +- error: 0.002 + sys_norm: 1.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_inc.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_inc.yaml new file mode 100644 index 0000000000..3434f63ffe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_inc.yaml @@ -0,0 +1,122 @@ +definitions: + stat: + definition: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + definition: systematic uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- stat: 0.52 + sys: 5.08 + sys_norm: 0.1451 +- stat: 0.27 + sys: 2.58 + sys_norm: 0.1732 +- stat: 0.29 + sys: 2.5 + sys_norm: 0.1375 +- stat: 0.17 + sys: 1.24 + sys_norm: 0.1112 +- stat: 0.14 + sys: 0.47 + sys_norm: 0.1075 +- stat: 0.123 + sys: 0.35 + sys_norm: 0.09048 +- stat: 0.117 + sys: 0.298 + sys_norm: 0.07669 +- stat: 0.113 + sys: 0.294 + sys_norm: 0.0741 +- stat: 0.109 + sys: 0.259 + sys_norm: 0.06587 +- stat: 0.105 + sys: 0.238 + sys_norm: 0.05788 +- stat: 0.1 + sys: 0.228 + sys_norm: 0.05344 +- stat: 0.104 + sys: 0.229 + sys_norm: 4.98700000e-02 +- stat: 0.1 + sys: 0.242 + sys_norm: 0.04278 +- stat: 0.101 + sys: 0.253 + sys_norm: 0.04117 +- stat: 0.072 + sys: 0.269 + sys_norm: 0.03633 +- stat: 0.076 + sys: 0.3 + sys_norm: 0.03036 +- stat: 0.081 + sys: 0.357 + sys_norm: 0.02568 +- stat: 0.069 + sys: 0.398 + sys_norm: 0.02165 +- stat: 0.096 + sys: 0.452 + sys_norm: 0.01931 +- stat: 0.133 + sys: 0.594 + sys_norm: 0.01603 +- stat: 0.045 + sys: 0.255 + sys_norm: 0.00871 +- stat: 0.03 + sys: 0.179 + sys_norm: 9.12000000e-03 +- stat: 0.025 + sys: 0.062 + sys_norm: 7.75000000e-03 +- stat: 0.022 + sys: 0.044 + sys_norm: 0.00639 +- stat: 0.019 + sys: 0.033 + sys_norm: 0.00511 +- stat: 0.016 + sys: 0.024 + sys_norm: 0.00419 +- stat: 0.011 + sys: 0.018 + sys_norm: 0.00358 +- stat: 0.009 + sys: 0.012 + sys_norm: 0.00254 +- stat: 0.008 + sys: 0.008 + sys_norm: 0.00173 +- stat: 0.007 + sys: 0.005 + sys_norm: 1.41000000e-03 +- stat: 0.0055 + sys: 0.0036 + sys_norm: 0.00095 +- stat: 0.0039 + sys: 0.0027 + sys_norm: 0.000688 +- stat: 0.0032 + sys: 0.0018 + sys_norm: 0.00047 +- stat: 0.0017 + sys: 0.0012 + sys_norm: 0.000241 +- stat: 0.001 + sys: 0.0006 + sys_norm: 9.3e-05 +- stat: 0.0003 + sys: 0.0001 + sys_norm: 1.5e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml new file mode 100644 index 0000000000..a39ab063be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/SLD_SIA-PRO_91P2GEV_EE-PROSUM/uncertainties_uds.yaml @@ -0,0 +1,82 @@ +definitions: + error: + definition: total uncertainty added in quadrature + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty (normalization) + treatment: MULT + type: CORR +bins: +- error: 0.99 + sys_norm: 0.1398 +- error: 0.58 + sys_norm: 1.76300000e-01 +- error: 0.6 + sys_norm: 0.1342 +- error: 0.36 + sys_norm: 0.1057 +- error: 0.31 + sys_norm: 0.0998 +- error: 0.26 + sys_norm: 0.0837 +- error: 0.24 + sys_norm: 0.0733 +- error: 0.23 + sys_norm: 0.0779 +- error: 0.22 + sys_norm: 6.62000000e-02 +- error: 0.2 + sys_norm: 0.0588 +- error: 0.19 + sys_norm: 5.39000000e-02 +- error: 0.19 + sys_norm: 5.22000000e-02 +- error: 0.18 + sys_norm: 0.0442 +- error: 0.19 + sys_norm: 0.0444 +- error: 0.13 + sys_norm: 0.0365 +- error: 0.13 + sys_norm: 0.0311 +- error: 0.15 + sys_norm: 0.0273 +- error: 0.12 + sys_norm: 0.0215 +- error: 0.16 + sys_norm: 0.0183 +- error: 0.24 + sys_norm: 0.0184 +- error: 0.078 + sys_norm: 0.00905 +- error: 0.054 + sys_norm: 0.01065 +- error: 0.044 + sys_norm: 0.00822 +- error: 0.038 + sys_norm: 0.00762 +- error: 0.033 + sys_norm: 0.00628 +- error: 0.029 + sys_norm: 0.00486 +- error: 0.022 + sys_norm: 0.00446 +- error: 0.018 + sys_norm: 3.06000000e-03 +- error: 0.015 + sys_norm: 0.0023 +- error: 0.013 + sys_norm: 0.00197 +- error: 0.011 + sys_norm: 0.00145 +- error: 0.008 + sys_norm: 0.00108 +- error: 0.006 + sys_norm: 7.00000000e-04 +- error: 0.003 + sys_norm: 3.60000000e-04 +- error: 0.002 + sys_norm: 0.00013 +- error: 0.001 + sys_norm: 3.0e-05 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..407adcd27f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/data.yaml @@ -0,0 +1,4 @@ +data_central: +- 2.2 +- 3.9 +- 3.8 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..4617d2aeb1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table3.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..ca098199fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..6b62e6a395 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,13 @@ +bins: +- ph: + min: null + mid: 0.45 + max: null +- ph: + min: null + mid: 0.55 + max: null +- ph: + min: null + mid: 0.8 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..086d25ebeb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_12GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 3 + tables: [3] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 12 GeV KA- + KA+ : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..0b306241b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..3a36666a48 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_12GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,16 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.81 + sys_norm: 0.44 +- error: 1.3 + sys_norm: 0.78 +- error: 1.7 + sys_norm: 0.76 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..5737566b14 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 4.29 +- 4.87 +- 4.0 +- 4.06 +- 2.07 +- 2.53 +- 1.27 +- 1.24 +- 0.09 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..12c74f2fa9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table22.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..c003c3c7e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..677e9e27c2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,37 @@ +bins: +- z: + min: 0.083 + mid: 0.087 + max: 0.091 +- z: + min: 0.091 + mid: 0.096 + max: 0.101 +- z: + min: 0.101 + mid: 1.06000000e-01 + max: 0.111 +- z: + min: 0.111 + mid: 0.117 + max: 0.122 +- z: + min: 0.122 + mid: 0.128 + max: 0.134 +- z: + min: 0.134 + mid: 1.47000000e-01 + max: 0.16 +- z: + min: 0.16 + mid: 0.2 + max: 0.24 +- z: + min: 0.24 + mid: 0.27 + max: 0.29 +- z: + min: 0.43 + mid: 0.52 + max: 0.66 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..4856fdf768 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_14GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 9 + tables: [22] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 14 GeV KA- + KA+ production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..00bf1e2842 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..b507dc2db5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_14GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,28 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.76 + sys_norm: 3.64650000e-01 +- error: 0.58 + sys_norm: 4.13950000e-01 +- error: 0.45 + sys_norm: 0.34 +- error: 0.59 + sys_norm: 3.45100000e-01 +- error: 0.4 + sys_norm: 0.17595 +- error: 0.54 + sys_norm: 0.21505 +- error: 0.47 + sys_norm: 0.10795 +- error: 0.26 + sys_norm: 0.1054 +- error: 0.04 + sys_norm: 7.65000000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..36ead5fbe3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/data.yaml @@ -0,0 +1,11 @@ +data_central: +- 6.12 +- 6.18 +- 6.15 +- 6.04 +- 6.21 +- 4.09 +- 2.41 +- 1.25 +- 0.5 +- 0.25 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..d6f50c7a39 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table10.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..c003c3c7e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..4e09614e18 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,41 @@ +bins: +- z: + min: 0.053 + mid: 0.055 + max: 0.058 +- z: + min: 0.058 + mid: 0.061 + max: 0.064 +- z: + min: 0.064 + mid: 0.067 + max: 0.071 +- z: + min: 0.071 + mid: 0.074 + max: 0.078 +- z: + min: 0.078 + mid: 8.20000000e-02 + max: 0.086 +- z: + min: 0.086 + mid: 0.093 + max: 0.1 +- z: + min: 0.1 + mid: 0.125 + max: 0.15 +- z: + min: 0.15 + mid: 1.70000000e-01 + max: 0.19 +- z: + min: 0.28 + mid: 0.31 + max: 0.35 +- z: + min: 0.35 + mid: 0.38 + max: 0.42 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..179c7d499f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_22GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 10 + tables: [10] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 22 GeV KA- + KA+ production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..00bf1e2842 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..980f6ed170 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_22GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,30 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.31 + sys_norm: 3.85560000e-01 +- error: 1.1 + sys_norm: 3.89340000e-01 +- error: 0.92 + sys_norm: 3.87450000e-01 +- error: 0.88 + sys_norm: 0.38052 +- error: 0.86 + sys_norm: 3.91230000e-01 +- error: 0.83 + sys_norm: 0.25767 +- error: 0.94 + sys_norm: 0.15183 +- error: 0.53 + sys_norm: 0.07875 +- error: 0.16 + sys_norm: 0.0315 +- error: 0.09 + sys_norm: 0.01575 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..975d951988 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/data.yaml @@ -0,0 +1,6 @@ +data_central: +- 0.402 +- 0.463 +- 0.92 +- 0.42 +- 0.24 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..70a9f56ba2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table6.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..ca098199fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..b198056d0d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,21 @@ +bins: +- ph: + min: null + mid: 0.45 + max: null +- ph: + min: null + mid: 0.55 + max: null +- ph: + min: null + mid: 0.6 + max: null +- ph: + min: null + mid: 0.8 + max: null +- ph: + min: null + mid: 1.0 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..58449de76a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_30GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 5 + tables: [6] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 30 GeV KA- + KA+ : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..0b306241b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..eb637f82bc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_30GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,20 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.151 + sys_norm: 8.04000000e-02 +- error: 0.243 + sys_norm: 0.0926 +- error: 0.4 + sys_norm: 1.84000000e-01 +- error: 0.2 + sys_norm: 0.084 +- error: 0.14 + sys_norm: 0.048 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..df60279b2a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/data.yaml @@ -0,0 +1,12 @@ +data_central: +- 7.5 +- 10.0 +- 16.1 +- 14.9 +- 13.3 +- 12.1 +- 10.5 +- 6.3 +- 3.57 +- 1.75 +- 0.05 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..f2bcac8894 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table8.yaml" +ndat = 11 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..25dccca8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..383539c2b9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,45 @@ +bins: +- xp: + min: 0.0171 + mid: 0.02 + max: 0.0229 +- xp: + min: 0.0229 + mid: 0.0257 + max: 0.0286 +- xp: + min: 0.0286 + mid: 0.0314 + max: 0.0343 +- xp: + min: 0.0343 + mid: 0.0371 + max: 0.04 +- xp: + min: 0.04 + mid: 0.0429 + max: 0.0457 +- xp: + min: 0.0457 + mid: 0.0514 + max: 0.0571 +- xp: + min: 0.0571 + mid: 0.0726 + max: 0.0914 +- xp: + min: 0.0914 + mid: 0.102 + max: 0.114 +- xp: + min: 0.171 + mid: 0.191 + max: 0.217 +- xp: + min: 0.217 + mid: 0.271 + max: 0.343 +- xp: + min: 0.571 + mid: 0.73 + max: 0.971 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..99fdda3c80 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_34GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 11 + tables: [8] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 34 GeV KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..652ce5c3ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..796192c406 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_34GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,32 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.5 + sys_norm: 0.45 +- error: 0.9 + sys_norm: 0.6 +- error: 1.2 + sys_norm: 9.66000000e-01 +- error: 1.7 + sys_norm: 8.94000000e-01 +- error: 3.0 + sys_norm: 7.98000000e-01 +- error: 2.8 + sys_norm: 0.726 +- error: 2.3 + sys_norm: 0.63 +- error: 2.8 + sys_norm: 0.378 +- error: 0.61 + sys_norm: 2.14200000e-01 +- error: 0.28 + sys_norm: 0.105 +- error: 0.02 + sys_norm: 3.00000000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..48173e72d4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/data.yaml @@ -0,0 +1,5 @@ +data_central: +- 8.8 +- 19.8 +- 21.3 +- 23.3 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..57443984c5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table11.yaml" +ndat = 4 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..25dccca8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..49a085a267 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,17 @@ +bins: +- xp: + min: 0.0136 + mid: 0.0159 + max: 0.0182 +- xp: + min: 0.0182 + mid: 0.0205 + max: 0.0227 +- xp: + min: 0.0227 + mid: 0.025 + max: 0.0273 +- xp: + min: 0.0273 + mid: 0.0295 + max: 0.0318 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..3bf0d98825 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-KA_44GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 4 + tables: [11] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 44 GeV KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..652ce5c3ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..2bc1ac38d9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-KA_44GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,18 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.2 + sys_norm: 0.528 +- error: 5.3 + sys_norm: 1.18800000e+00 +- error: 2.6 + sys_norm: 1.27800000e+00 +- error: 3.1 + sys_norm: 1.39800000e+00 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..5294bf8018 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/data.yaml @@ -0,0 +1,6 @@ +data_central: +- 18.2 +- 16.3 +- 13.8 +- 7.0 +- 1.8 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..54bdaf848b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..5f36094005 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py @@ -0,0 +1,50 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + ndat = len(input['independent_variables'][0]['values']) + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_mid = input['independent_variables'][0]['values'][i]['value'] + + kin_value = {var_name: {'min': None, 'mid': kin_mid, 'max': None}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['error'] = values[i]['errors'][0]['symerror'] + error_value['sys_norm'] = pta(values[i]['errors'][1]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['error'] = { + 'definition': 'total uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty - normalisation', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..c57f2ec89a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,21 @@ +bins: +- ph: + min: null + mid: 0.35 + max: null +- ph: + min: null + mid: 0.45 + max: null +- ph: + min: null + mid: 0.55 + max: null +- ph: + min: null + mid: 0.8 + max: null +- ph: + min: null + mid: 1.3 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..db1a67663f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_12GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 5 + tables: [2] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 12 GeV PI- + PI+ : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..7d38975227 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,36 @@ +dependent_variables: +- header: {name: SIG(Q=P), units: NB} + qualifiers: + - {name: P(P=3), units: GEV, value: 0.5 TO 2.2} + - {name: RE(Q=MU), value: E+ E- --> MU+ MU-} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: 12.0-27.0} + values: + - errors: + - {symerror: 0.19} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.58 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.14 +- header: {name: SIG(Q=P)/SIG(Q=MU)} + qualifiers: + - {name: P(P=3), units: GEV, value: 0.5 TO 2.2} + - {name: RE(Q=MU), value: E+ E- --> MU+ MU-} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: 12.0-27.0} + values: + - errors: + - {symerror: 0.3} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.9 + - errors: + - {symerror: 0.4} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.5 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 12.0} + - {high: 31.6, low: 27.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table10.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table10.yaml new file mode 100755 index 0000000000..5db1bf2368 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table10.yaml @@ -0,0 +1,26 @@ +dependent_variables: +- header: {name: (D(SIG(Q=PROTON))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=PROTON), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.048 + - errors: + - {symerror: 0.031} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.075 + - errors: + - {symerror: 0.066} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.093 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.6} + - {value: 0.85} + - {high: 2.2, low: 1.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table11.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table11.yaml new file mode 100755 index 0000000000..1fc4d44a44 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table11.yaml @@ -0,0 +1,36 @@ +dependent_variables: +- header: {name: (D(SIG(Q=PION))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=PION), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.88 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.86 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.71 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.74 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.82 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.6} + - {value: 0.8} + - {value: 1.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table12.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table12.yaml new file mode 100755 index 0000000000..d19097f9fd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table12.yaml @@ -0,0 +1,36 @@ +dependent_variables: +- header: {name: (D(SIG(Q=KAON))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=KAON), value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.1 + - errors: + - {symerror: 0.06} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.13 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.25 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.21 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.13 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.6} + - {value: 0.8} + - {value: 1.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table13.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table13.yaml new file mode 100755 index 0000000000..3a16461723 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table13.yaml @@ -0,0 +1,26 @@ +dependent_variables: +- header: {name: (D(SIG(Q=PROTON))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=PROTON), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.011} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.03 + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.056 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.1 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.6} + - {value: 0.85} + - {high: 2.2, low: 1.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..82ebbeb0e8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,87 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 3.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 18.2 + - errors: + - {symerror: 2.9} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 16.3 + - errors: + - {symerror: 2.5} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 13.8 + - errors: + - {symerror: 1.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 7.0 + - errors: + - {symerror: 0.9} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.8 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 3.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 18.3 + - errors: + - {symerror: 2.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 15.5 + - errors: + - {symerror: 2.3} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 12.7 + - errors: + - {symerror: 1.6} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 6.23 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.6 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.76} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.46 + - errors: + - {symerror: 0.54} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.02 + - errors: + - {symerror: 0.37} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 2.06 + - errors: + - {symerror: 0.18} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.71 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.11 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.35} + - {value: 0.45} + - {value: 0.55} + - {value: 0.8} + - {value: 1.3} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..67c7c326f8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,61 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.81} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 2.2 + - errors: + - {symerror: 1.3} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.9 + - errors: + - {symerror: 1.7} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.8 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 1.6} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.2 + - errors: + - {symerror: 2.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 6.2 + - errors: + - {symerror: 2.0} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.56 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.21} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.58 + - errors: + - {symerror: 0.25} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.76 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.45 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..387be213e7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,61 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 2.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.71 + - errors: + - {symerror: 0.34} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.8 + - errors: + - {symerror: 0.12} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.16 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 2.1 + - errors: + - {symerror: 0.7} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.5 + - errors: + - {symerror: 0.135} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.185 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.17 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.11 + - errors: + - {symerror: 0.0071} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.0094 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.6} + - {value: 0.85} + - {value: 1.575} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100755 index 0000000000..c22708a2a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,130 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 1.05} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.11 + - errors: + - {symerror: 1.06} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.51 + - errors: + - {symerror: 0.87} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.41 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.11 + - errors: + - {symerror: 0.56} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 2.64 + - errors: + - {symerror: 0.33} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.49 + - errors: + - {symerror: 0.39} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.54 + - errors: + - {symerror: 0.272} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.808 + - errors: + - {symerror: 0.256} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.733 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 16.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 65.7 + - errors: + - {symerror: 16.4} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 69.7 + - errors: + - {symerror: 11.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 51.5 + - errors: + - {symerror: 11.7} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 45.6 + - errors: + - {symerror: 8.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 38.2 + - errors: + - {symerror: 4.7} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 21.1 + - errors: + - {symerror: 5.5} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 21.5 + - errors: + - {symerror: 3.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 11.2 + - errors: + - {symerror: 3.6} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 10.2 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - {value: '-'} + - errors: + - {symerror: 0.224} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.951 + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.076} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.359 + - errors: + - {symerror: 0.033} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.15 + - errors: + - {symerror: 0.031} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.124 + - errors: + - {symerror: 0.018} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.054 + - errors: + - {symerror: 0.015} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.042 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.35} + - {value: 0.4} + - {value: 0.45} + - {value: 0.55} + - {value: 0.6} + - {value: 0.8} + - {value: 1.0} + - {value: 1.2} + - {value: 1.4} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100755 index 0000000000..e3ff851fe0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,87 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.151} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.402 + - errors: + - {symerror: 0.243} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.463 + - errors: + - {symerror: 0.4} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.92 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.42 + - errors: + - {symerror: 0.14} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.24 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 4.6} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 12.3 + - errors: + - {symerror: 6.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 11.6 + - errors: + - {symerror: 9.7} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 21.4 + - errors: + - {symerror: 3.8} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 8.0 + - errors: + - {symerror: 2.4} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.1 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.106 + - errors: + - {symerror: 0.047} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.09 + - errors: + - {symerror: 0.069} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.159 + - errors: + - {symerror: 0.023} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.049 + - errors: + - {symerror: 0.012} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.021 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.6} + - {value: 0.8} + - {value: 1.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100755 index 0000000000..6c75ca9a2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,61 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.031} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.097 + - errors: + - {symerror: 0.039} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.129 + - errors: + - {symerror: 0.027} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.07 +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB/GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 1.5} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 4.6 + - errors: + - {symerror: 1.2} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 3.9 + - errors: + - {symerror: 0.5} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 1.31 +- header: {name: (E(P=3)/(4*PI*P(P=3)**2))*D(SIG)/DP(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '30.0'} + - {name: SQRT(S), units: GeV, value: '30.0'} + values: + - errors: + - {symerror: 0.008} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.023 + - errors: + - {symerror: 0.005} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.018 + - errors: + - {symerror: 0.0019} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.0049 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.6} + - {value: 0.8} + - {value: 1.665} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table8.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table8.yaml new file mode 100755 index 0000000000..92f6bf9949 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table8.yaml @@ -0,0 +1,26 @@ +dependent_variables: +- header: {name: (D(SIG(Q=PION))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=PION), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.86 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.76 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.6 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table9.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table9.yaml new file mode 100755 index 0000000000..641aff3b24 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/Table9.yaml @@ -0,0 +1,26 @@ +dependent_variables: +- header: {name: (D(SIG(Q=KAON))/DP)/(D(SIG(Q=CHGD))/DP)} + qualifiers: + - {name: RE(Q=CHGD), value: E+ E- --> CHGD-HADRON X} + - {name: RE(Q=KAON), value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '12.0'} + - {name: SQRT(S), units: GeV, value: '12.0'} + values: + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.12 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.22 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION UNCERTAINTY AT EACH ENERGY', symerror: 20.0%} + value: 0.33 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {value: 0.45} + - {value: 0.55} + - {value: 0.8} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..c489805cfe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,209 @@ +--- +comment: | + DESY-PETRA, TASSO COLLABORATION. NUMERICAL VALUES FOR DATA ON FIGURES SUPPLIED BY P. JOOS AND ADDED TO RECORD 23 OCT 1980. SCALING VARIABLE IS X(P=3,RF=CM,DEF=2*E(P=3)/SQRT(S)). BETA IS P(P=3)/E(P=3). +dateupdated: 08/08/1980 00:00:00 +modifications: +- {action: Encoded, date: 08 AUG 1980, who: BJR} +record_ids: +- {id: 153656, type: inspire} +- {id: 1117, type: red} + +--- +data_file: Table1.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering] +- name: cmenergies + values: [12.0-27.0] +location: Data from P 447 +name: Table 1 + +--- +data_file: Table2.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [12.0] +location: Data from F 2,3 +name: Table 2 + +--- +data_file: Table3.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [12.0] +location: Data from F 2,3 +name: Table 3 + +--- +data_file: Table4.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [12.0] +location: Data from F 2,3 +name: Table 4 + +--- +data_file: Table5.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [30.0] +location: Data from F 2,3 +name: Table 5 + +--- +data_file: Table6.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [30.0] +location: Data from F 2,3 +name: Table 6 + +--- +data_file: Table7.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP, DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [30.0] +location: Data from F 2,3 +name: Table 7 + +--- +data_file: Table8.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [12.0] +location: Data from F 2C +name: Table 8 + +--- +data_file: Table9.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [12.0] +location: Data from F 2C +name: Table 9 + +--- +data_file: Table10.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [12.0] +location: Data from F 2C +name: Table 10 + +--- +data_file: Table11.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [30.0] +location: Data from F 2C +name: Table 11 + +--- +data_file: Table12.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [30.0] +location: Data from F 2C +name: Table 12 + +--- +data_file: Table13.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [30.0] +location: Data from F 2C +name: Table 13 + diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..150ef3c088 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_12GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,20 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 3.1 + sys_norm: 3.64 +- error: 2.9 + sys_norm: 3.26000000e+00 +- error: 2.5 + sys_norm: 2.76000000e+00 +- error: 1.8 + sys_norm: 1.40000000e+00 +- error: 0.9 + sys_norm: 0.36 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..7de4836357 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/data.yaml @@ -0,0 +1,12 @@ +data_central: +- 26.4 +- 21.9 +- 16.8 +- 12.5 +- 11.5 +- 7.69 +- 5.5 +- 3.24 +- 1.6 +- 1.25 +- 0.14 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..9b6e785847 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table20.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..4b0d6bb187 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py @@ -0,0 +1,55 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + ndat = len(input['independent_variables'][0]['values']) + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['error'] = values[i]['errors'][0]['symerror'] + error_value['sys_norm'] = pta(values[i]['errors'][1]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['error'] = { + 'definition': 'total uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty - normalisation', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..dea8c094c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,45 @@ +bins: +- z: + min: 0.047 + mid: 0.054 + max: 0.061 +- z: + min: 0.061 + mid: 0.067 + max: 0.074 +- z: + min: 0.074 + mid: 8.10000000e-02 + max: 0.088 +- z: + min: 0.088 + mid: 0.095 + max: 0.102 +- z: + min: 0.102 + mid: 0.109 + max: 0.116 +- z: + min: 0.116 + mid: 0.13 + max: 0.144 +- z: + min: 0.144 + mid: 0.158 + max: 0.17 +- z: + min: 0.17 + mid: 0.2 + max: 0.23 +- z: + min: 0.23 + mid: 0.26 + max: 0.29 +- z: + min: 0.29 + mid: 3.30000000e-01 + max: 0.37 +- z: + min: 0.43 + mid: 0.51 + max: 0.66 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..176b4e00e6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_14GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 11 + tables: [20] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 14 GeV PI- + PI+ production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100644 index 0000000000..1240343b10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,54 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.97} + value: 16.6 + - errors: + - {symerror: 0.74} + value: 14.6 + - errors: + - {symerror: 0.56} + value: 11.5 + - errors: + - {symerror: 0.46} + value: 8.71 + - errors: + - {symerror: 0.49} + value: 8.06 + - errors: + - {symerror: 0.3} + value: 5.48 + - errors: + - {symerror: 0.4} + value: 3.95 + - errors: + - {symerror: 0.27} + value: 2.34 + - errors: + - {symerror: 0.14} + value: 1.16 + - errors: + - {symerror: 0.11} + value: 0.9 + - errors: + - {symerror: 0.03} + value: 0.1 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 4.6, low: 3.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table10.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table10.yaml new file mode 100644 index 0000000000..af3226e698 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table10.yaml @@ -0,0 +1,60 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 1.31} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.12 + - errors: + - {symerror: 1.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.18 + - errors: + - {symerror: 0.92} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.15 + - errors: + - {symerror: 0.88} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.04 + - errors: + - {symerror: 0.86} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.21 + - errors: + - {symerror: 0.83} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 4.09 + - errors: + - {symerror: 0.94} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.41 + - errors: + - {symerror: 0.53} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 1.25 + - errors: + - {symerror: 0.16} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.5 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.25 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.058, low: 0.053, value: 0.055} + - {high: 0.064, low: 0.058} + - {high: 0.071, low: 0.064, value: 0.067} + - {high: 0.078, low: 0.071, value: 0.074} + - {high: 0.086, low: 0.078} + - {high: 0.1, low: 0.086} + - {high: 0.15, low: 0.1} + - {high: 0.19, low: 0.15} + - {high: 0.35, low: 0.28, value: 0.31} + - {high: 0.42, low: 0.35, value: 0.38} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table11.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table11.yaml new file mode 100644 index 0000000000..282495ca1e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table11.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.13 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.08 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.16 + - errors: + - {symerror: 0.06} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.22 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.21 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.18 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.1 + - errors: + - {symerror: 0.028} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.051 + - errors: + - {symerror: 0.015} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.028 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.2, low: 0.8} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8, value: 4.1} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table12.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table12.yaml new file mode 100644 index 0000000000..781f90d145 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table12.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 1.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 3.7 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 1.7 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.6 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 3.0 + - errors: + - {symerror: 0.4} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.1 + - errors: + - {symerror: 0.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 1.4 + - errors: + - {symerror: 0.31} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.7 + - errors: + - {symerror: 0.16} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.29 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.15 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.096, low: 0.092} + - {high: 0.101, low: 0.096, value: 0.099} + - {high: 0.106, low: 0.101, value: 0.104} + - {high: 0.112, low: 0.106} + - {high: 0.138, low: 0.112} + - {high: 0.17, low: 0.138, value: 0.152} + - {high: 0.2, low: 0.17, value: 0.18} + - {high: 0.36, low: 0.29, value: 0.32} + - {high: 0.43, low: 0.36, value: 0.39} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table13.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table13.yaml new file mode 100644 index 0000000000..e02197bb2e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table13.yaml @@ -0,0 +1,90 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.15} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.97 + - errors: + - {symerror: 0.11} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.65 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.27 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.9 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.66 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.27 + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.97 + - errors: + - {symerror: 0.06} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.68 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.47 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.31 + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.15 + - errors: + - {symerror: 0.013} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.118 + - errors: + - {symerror: 0.009} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.066 + - errors: + - {symerror: 0.01} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.052 + - errors: + - {symerror: 0.003} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.015 + - errors: + - {symerror: 0.0012} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.0042 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 3.4, low: 3.0} + - {high: 3.8, low: 3.4} + - {high: 4.6, low: 3.8, value: 4.1} + - {high: 6.0, low: 4.6} + - {high: 10.0, low: 6.0, value: 7.6} + - {high: 17.0, low: 10.0, value: 11.7} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table14.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table14.yaml new file mode 100644 index 0000000000..734459938c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table14.yaml @@ -0,0 +1,90 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 3.4} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 67.8 + - errors: + - {symerror: 2.4} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 57.2 + - errors: + - {symerror: 1.8} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 47.5 + - errors: + - {symerror: 1.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 39.1 + - errors: + - {symerror: 1.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 33.7 + - errors: + - {symerror: 1.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 25.5 + - errors: + - {symerror: 1.6} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 19.4 + - errors: + - {symerror: 1.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 13.5 + - errors: + - {symerror: 0.86} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 9.3 + - errors: + - {symerror: 0.58} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 6.15 + - errors: + - {symerror: 0.36} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 3.03 + - errors: + - {symerror: 0.25} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.33 + - errors: + - {symerror: 0.17} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.29 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.03 + - errors: + - {symerror: 0.06} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.29 + - errors: + - {symerror: 0.024} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.083 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.025, low: 0.019} + - {high: 0.031, low: 0.025} + - {high: 0.036, low: 0.031, value: 0.033} + - {high: 0.042, low: 0.036} + - {high: 0.048, low: 0.042} + - {high: 0.059, low: 0.048, value: 0.054} + - {high: 0.071, low: 0.059} + - {high: 0.094, low: 0.071, value: 0.082} + - {high: 0.118, low: 0.094} + - {high: 0.153, low: 0.118, value: 0.135} + - {high: 0.2, low: 0.18} + - {high: 0.22, low: 0.2} + - {high: 0.27, low: 0.22, value: 0.24} + - {high: 0.35, low: 0.27} + - {high: 0.59, low: 0.35, value: 0.45} + - {high: 1.0, low: 0.59, value: 0.69} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table15.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table15.yaml new file mode 100644 index 0000000000..2a894e60b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table15.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.16 + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.22 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.36 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.32 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.28 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.28 + - errors: + - {symerror: 0.06} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.18 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.13 + - errors: + - {symerror: 0.01} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.049 + - errors: + - {symerror: 0.005} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.028 + - errors: + - {symerror: 0.0011} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.0027 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 6.0, low: 3.8, value: 4.7} + - {high: 17.0, low: 10.0, value: 11.7} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table16.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table16.yaml new file mode 100644 index 0000000000..2b6b85a618 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table16.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: NB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 1.19} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 9.28 + - errors: + - {symerror: 0.95} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 9.44 + - errors: + - {symerror: 1.0} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 12.7 + - errors: + - {symerror: 1.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 9.8 + - errors: + - {symerror: 1.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 7.9 + - errors: + - {symerror: 1.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 7.2 + - errors: + - {symerror: 1.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 4.0 + - errors: + - {symerror: 1.0} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.8 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.98 + - errors: + - {symerror: 0.11} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.6 + - errors: + - {symerror: 0.022} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.053 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.037, low: 0.034, value: 0.036} + - {high: 0.041, low: 0.037} + - {high: 0.046, low: 0.041, value: 0.044} + - {high: 0.05, low: 0.046} + - {high: 0.055, low: 0.05, value: 0.053} + - {high: 0.066, low: 0.055, value: 0.06} + - {high: 0.099, low: 0.066, value: 0.082} + - {high: 0.121, low: 0.099, value: 0.109} + - {high: 0.23, low: 0.18, value: 0.2} + - {high: 0.35, low: 0.23, value: 0.28} + - {high: 1.0, low: 0.59, value: 0.69} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table17.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table17.yaml new file mode 100644 index 0000000000..5ce32f35be --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table17.yaml @@ -0,0 +1,60 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.006} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.029 + - errors: + - {symerror: 0.011} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.062 + - errors: + - {symerror: 0.012} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.066 + - errors: + - {symerror: 0.014} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.066 + - errors: + - {symerror: 0.016} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.089 + - errors: + - {symerror: 0.027} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.082 + - errors: + - {symerror: 0.02} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.056 + - errors: + - {symerror: 0.009} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.028 + - errors: + - {symerror: 0.001} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.013 + - errors: + - {symerror: 0.0011} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.0024 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.2, low: 0.8} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 6.0, low: 3.8, value: 4.7} + - {high: 17.0, low: 10.0, value: 11.7} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table18.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table18.yaml new file mode 100644 index 0000000000..5d4cac79da --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table18.yaml @@ -0,0 +1,60 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.62} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 3.03 + - errors: + - {symerror: 0.84} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 4.73 + - errors: + - {symerror: 0.7} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 4.0 + - errors: + - {symerror: 0.71} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 3.32 + - errors: + - {symerror: 0.57} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 3.41 + - errors: + - {symerror: 0.78} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 2.33 + - errors: + - {symerror: 0.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 1.41 + - errors: + - {symerror: 0.18} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.59 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.26 + - errors: + - {symerror: 0.022} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 5.5%} + value: 0.047 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.062, low: 0.06} + - {high: 0.065, low: 0.062, value: 0.064} + - {high: 0.069, low: 0.065} + - {high: 0.072, low: 0.069, value: 0.071} + - {high: 0.089, low: 0.072, value: 0.081} + - {high: 0.109, low: 0.089, value: 0.098} + - {high: 0.128, low: 0.109, value: 0.119} + - {high: 0.23, low: 0.19} + - {high: 0.36, low: 0.23, value: 0.28} + - {high: 1.0, low: 0.59, value: 0.69} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table19.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table19.yaml new file mode 100644 index 0000000000..0185203f02 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table19.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.97} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 16.6 + - errors: + - {symerror: 0.74} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 14.6 + - errors: + - {symerror: 0.56} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 11.5 + - errors: + - {symerror: 0.46} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 8.71 + - errors: + - {symerror: 0.49} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 8.06 + - errors: + - {symerror: 0.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 5.48 + - errors: + - {symerror: 0.4} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 3.95 + - errors: + - {symerror: 0.27} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 2.34 + - errors: + - {symerror: 0.14} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.16 + - errors: + - {symerror: 0.11} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.9 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.1 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 4.6, low: 3.0, value: 3.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100644 index 0000000000..5a1555fa74 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,46 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.18} + value: 1.04 + - errors: + - {symerror: 0.19} + value: 1.61 + - errors: + - {symerror: 0.18} + value: 1.61 + - errors: + - {symerror: 0.27} + value: 1.87 + - errors: + - {symerror: 0.2} + value: 1.05 + - errors: + - {symerror: 0.3} + value: 1.42 + - errors: + - {symerror: 0.29} + value: 0.8 + - errors: + - {symerror: 0.18} + value: 0.84 + - errors: + - {symerror: 0.03} + value: 0.06 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 4.6, low: 3.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table20.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table20.yaml new file mode 100644 index 0000000000..c17ace299d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table20.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 1.55} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 26.4 + - errors: + - {symerror: 1.11} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 21.9 + - errors: + - {symerror: 0.83} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 16.8 + - errors: + - {symerror: 0.66} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 12.5 + - errors: + - {symerror: 0.7} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 11.5 + - errors: + - {symerror: 0.41} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 7.69 + - errors: + - {symerror: 0.56} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 5.5 + - errors: + - {symerror: 0.37} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 3.24 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.6 + - errors: + - {symerror: 0.15} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.25 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.14 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.061, low: 0.047} + - {high: 0.074, low: 0.061, value: 0.067} + - {high: 0.088, low: 0.074} + - {high: 0.102, low: 0.088} + - {high: 0.116, low: 0.102} + - {high: 0.144, low: 0.116} + - {high: 0.17, low: 0.144, value: 0.158} + - {high: 0.23, low: 0.17} + - {high: 0.29, low: 0.23} + - {high: 0.37, low: 0.29} + - {high: 0.66, low: 0.43, value: 0.51} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table21.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table21.yaml new file mode 100644 index 0000000000..ead8595b9b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table21.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.18} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.04 + - errors: + - {symerror: 0.19} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.61 + - errors: + - {symerror: 0.18} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.61 + - errors: + - {symerror: 0.27} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.87 + - errors: + - {symerror: 0.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.05 + - errors: + - {symerror: 0.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.42 + - errors: + - {symerror: 0.29} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.8 + - errors: + - {symerror: 0.18} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.84 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.06 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 4.6, low: 3.0, value: 3.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table22.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table22.yaml new file mode 100644 index 0000000000..5182f45a08 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table22.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.76} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 4.29 + - errors: + - {symerror: 0.58} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 4.87 + - errors: + - {symerror: 0.45} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 4.0 + - errors: + - {symerror: 0.59} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 4.06 + - errors: + - {symerror: 0.4} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 2.07 + - errors: + - {symerror: 0.54} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 2.53 + - errors: + - {symerror: 0.47} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.27 + - errors: + - {symerror: 0.26} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.24 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.09 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.091, low: 0.083} + - {high: 0.101, low: 0.091} + - {high: 0.111, low: 0.101} + - {high: 0.122, low: 0.111, value: 0.117} + - {high: 0.134, low: 0.122} + - {high: 0.16, low: 0.134} + - {high: 0.24, low: 0.16} + - {high: 0.29, low: 0.24, value: 0.27} + - {high: 0.66, low: 0.43, value: 0.52} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table23.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table23.yaml new file mode 100644 index 0000000000..78c7f96355 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table23.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.21 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.21 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.35 + - errors: + - {symerror: 0.12} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.5 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.47 + - errors: + - {symerror: 0.16} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.54 + - errors: + - {symerror: 0.12} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.35 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.16 + - errors: + - {symerror: 0.033} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.073 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 4.6, low: 3.0, value: 3.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table24.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table24.yaml new file mode 100644 index 0000000000..59b478eaed --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table24.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.48} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.55 + - errors: + - {symerror: 0.36} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.14 + - errors: + - {symerror: 0.38} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.49 + - errors: + - {symerror: 0.41} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.74 + - errors: + - {symerror: 0.28} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.34 + - errors: + - {symerror: 0.39} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 1.28 + - errors: + - {symerror: 0.24} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.71 + - errors: + - {symerror: 0.15} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.27 + - errors: + - {symerror: 0.05} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 8.5%} + value: 0.11 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.151, low: 0.145} + - {high: 0.159, low: 0.151} + - {high: 0.167, low: 0.159} + - {high: 0.176, low: 0.167, value: 0.171} + - {high: 0.196, low: 0.176, value: 0.185} + - {high: 0.22, low: 0.196, value: 0.206} + - {high: 0.27, low: 0.22, value: 0.24} + - {high: 0.32, low: 0.27, value: 0.29} + - {high: 0.67, low: 0.45, value: 0.53} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table25.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table25.yaml new file mode 100644 index 0000000000..cd608b013a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table25.yaml @@ -0,0 +1,75 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.44} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 6.85 + - errors: + - {symerror: 0.35} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 5.83 + - errors: + - {symerror: 0.28} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 4.74 + - errors: + - {symerror: 0.26} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 4.15 + - errors: + - {symerror: 0.22} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 3.26 + - errors: + - {symerror: 0.19} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.62 + - errors: + - {symerror: 0.25} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.01 + - errors: + - {symerror: 0.15} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 1.1 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.83 + - errors: + - {symerror: 0.07} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.53 + - errors: + - {symerror: 0.04} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.18 + - errors: + - {symerror: 0.018} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.065 + - errors: + - {symerror: 0.006} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.02 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8, value: 4.1} + - {high: 10.0, low: 4.6, value: 6.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table26.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table26.yaml new file mode 100644 index 0000000000..483399d90b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table26.yaml @@ -0,0 +1,75 @@ +dependent_variables: +- header: {name: (S/BETA)*D(SIG)/DX, units: MUB*GEV**2} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 2.7} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 42.3 + - errors: + - {symerror: 2.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 34.1 + - errors: + - {symerror: 1.6} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 26.8 + - errors: + - {symerror: 1.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 23.1 + - errors: + - {symerror: 1.2} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 18.0 + - errors: + - {symerror: 1.0} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 14.3 + - errors: + - {symerror: 1.3} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 10.9 + - errors: + - {symerror: 0.8} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 5.9 + - errors: + - {symerror: 0.5} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 4.43 + - errors: + - {symerror: 0.38} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 2.84 + - errors: + - {symerror: 0.19} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.94 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.35 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.11 +independent_variables: +- header: {name: X(P=3)} + values: + - {high: 0.039, low: 0.03, value: 0.034} + - {high: 0.047, low: 0.039} + - {high: 0.056, low: 0.047, value: 0.052} + - {high: 0.065, low: 0.056, value: 0.06} + - {high: 0.074, low: 0.065, value: 0.069} + - {high: 0.092, low: 0.074} + - {high: 0.11, low: 0.092} + - {high: 0.146, low: 0.11, value: 0.127} + - {high: 0.18, low: 0.146} + - {high: 0.24, low: 0.18} + - {high: 0.35, low: 0.27, value: 0.3} + - {high: 0.42, low: 0.35, value: 0.38} + - {high: 0.91, low: 0.42, value: 0.55} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table27.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table27.yaml new file mode 100644 index 0000000000..6ec578d2f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table27.yaml @@ -0,0 +1,60 @@ +dependent_variables: +- header: {name: D(SIG)/DP(P=3), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.08} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.38 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.54 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.64 + - errors: + - {symerror: 0.1} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.72 + - errors: + - {symerror: 0.11} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.82 + - errors: + - {symerror: 0.12} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.59 + - errors: + - {symerror: 0.15} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.39 + - errors: + - {symerror: 0.09} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.22 + - errors: + - {symerror: 0.03} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.092 + - errors: + - {symerror: 0.017} + - {label: 'sys,OVERALL NORMALIZATION', symerror: 6.3%} + value: 0.045 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8, value: 4.1} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100644 index 0000000000..9a1eef08f1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,46 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '14.0'} + - {name: SQRT(S), units: GeV, value: '14.0'} + values: + - errors: + - {symerror: 0.07} + value: 0.21 + - errors: + - {symerror: 0.07} + value: 0.21 + - errors: + - {symerror: 0.09} + value: 0.35 + - errors: + - {symerror: 0.12} + value: 0.5 + - errors: + - {symerror: 0.1} + value: 0.47 + - errors: + - {symerror: 0.16} + value: 0.54 + - errors: + - {symerror: 0.12} + value: 0.35 + - errors: + - {symerror: 0.09} + value: 0.16 + - errors: + - {symerror: 0.033} + value: 0.073 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 4.6, low: 3.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100644 index 0000000000..397cd60a17 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,62 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.44} + value: 6.85 + - errors: + - {symerror: 0.35} + value: 5.83 + - errors: + - {symerror: 0.28} + value: 4.74 + - errors: + - {symerror: 0.26} + value: 4.15 + - errors: + - {symerror: 0.22} + value: 3.26 + - errors: + - {symerror: 0.19} + value: 2.62 + - errors: + - {symerror: 0.25} + value: 2.01 + - errors: + - {symerror: 0.15} + value: 1.1 + - errors: + - {symerror: 0.09} + value: 0.83 + - errors: + - {symerror: 0.07} + value: 0.53 + - errors: + - {symerror: 0.04} + value: 0.18 + - errors: + - {symerror: 0.018} + value: 0.065 + - errors: + - {symerror: 0.006} + value: 0.02 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8} + - {high: 10.0, low: 4.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100644 index 0000000000..5b9c3be08a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,50 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.08} + value: 0.38 + - errors: + - {symerror: 0.09} + value: 0.54 + - errors: + - {symerror: 0.1} + value: 0.64 + - errors: + - {symerror: 0.1} + value: 0.72 + - errors: + - {symerror: 0.11} + value: 0.82 + - errors: + - {symerror: 0.12} + value: 0.59 + - errors: + - {symerror: 0.15} + value: 0.39 + - errors: + - {symerror: 0.09} + value: 0.22 + - errors: + - {symerror: 0.03} + value: 0.092 + - errors: + - {symerror: 0.017} + value: 0.045 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100644 index 0000000000..b29f98ed68 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,46 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '22.0'} + - {name: SQRT(S), units: GeV, value: '22.0'} + values: + - errors: + - {symerror: 0.05} + value: 0.13 + - errors: + - {symerror: 0.04} + value: 0.08 + - errors: + - {symerror: 0.05} + value: 0.16 + - errors: + - {symerror: 0.06} + value: 0.22 + - errors: + - {symerror: 0.04} + value: 0.21 + - errors: + - {symerror: 0.04} + value: 0.18 + - errors: + - {symerror: 0.05} + value: 0.1 + - errors: + - {symerror: 0.028} + value: 0.051 + - errors: + - {symerror: 0.015} + value: 0.028 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.2, low: 0.8} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 4.6, low: 3.8} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100644 index 0000000000..ea224a7c80 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,74 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.15} + value: 2.97 + - errors: + - {symerror: 0.11} + value: 2.65 + - errors: + - {symerror: 0.09} + value: 2.27 + - errors: + - {symerror: 0.08} + value: 1.9 + - errors: + - {symerror: 0.07} + value: 1.66 + - errors: + - {symerror: 0.07} + value: 1.27 + - errors: + - {symerror: 0.08} + value: 0.97 + - errors: + - {symerror: 0.06} + value: 0.68 + - errors: + - {symerror: 0.04} + value: 0.47 + - errors: + - {symerror: 0.03} + value: 0.31 + - errors: + - {symerror: 0.02} + value: 0.15 + - errors: + - {symerror: 0.013} + value: 0.118 + - errors: + - {symerror: 0.009} + value: 0.066 + - errors: + - {symerror: 0.01} + value: 0.052 + - errors: + - {symerror: 0.003} + value: 0.015 + - errors: + - {symerror: 0.0012} + value: 0.0042 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.2, low: 1.0} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 2.6, low: 2.0} + - {high: 3.4, low: 3.0} + - {high: 3.8, low: 3.4} + - {high: 4.6, low: 3.8} + - {high: 6.0, low: 4.6} + - {high: 10.0, low: 6.0} + - {high: 17.0, low: 10.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table8.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table8.yaml new file mode 100644 index 0000000000..701df9d28c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table8.yaml @@ -0,0 +1,54 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.02} + value: 0.16 + - errors: + - {symerror: 0.02} + value: 0.22 + - errors: + - {symerror: 0.03} + value: 0.36 + - errors: + - {symerror: 0.04} + value: 0.32 + - errors: + - {symerror: 0.04} + value: 0.28 + - errors: + - {symerror: 0.05} + value: 0.28 + - errors: + - {symerror: 0.06} + value: 0.18 + - errors: + - {symerror: 0.05} + value: 0.13 + - errors: + - {symerror: 0.01} + value: 0.049 + - errors: + - {symerror: 0.005} + value: 0.028 + - errors: + - {symerror: 0.0011} + value: 0.0027 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.4, low: 0.3} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.0, low: 0.8} + - {high: 1.6, low: 1.0} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 6.0, low: 3.8} + - {high: 17.0, low: 10.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table9.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table9.yaml new file mode 100644 index 0000000000..7ee941eb67 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/Table9.yaml @@ -0,0 +1,50 @@ +dependent_variables: +- header: {name: D(SIG)/D(P), units: NB/GEV} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.006} + value: 0.029 + - errors: + - {symerror: 0.011} + value: 0.062 + - errors: + - {symerror: 0.012} + value: 0.066 + - errors: + - {symerror: 0.014} + value: 0.066 + - errors: + - {symerror: 0.016} + value: 0.089 + - errors: + - {symerror: 0.027} + value: 0.082 + - errors: + - {symerror: 0.02} + value: 0.056 + - errors: + - {symerror: 0.009} + value: 0.028 + - errors: + - {symerror: 0.005} + value: 0.013 + - errors: + - {symerror: 0.0011} + value: 0.0024 +independent_variables: +- header: {name: P(P=3), units: GEV} + values: + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.8, low: 0.7} + - {high: 1.2, low: 0.8} + - {high: 1.6, low: 1.2} + - {high: 2.0, low: 1.6} + - {high: 3.8, low: 3.0} + - {high: 6.0, low: 3.8} + - {high: 17.0, low: 10.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/submission.yaml new file mode 100644 index 0000000000..25d0398535 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,434 @@ +--- +comment: | + DESY-PETRA. TASSO COLLABORATION. THE PRESENT DATA IS AN EXTENSION OF THAT PRESENTED IN BRANDELIK ET AL., PL 113B, 98 (1982). AT W=14 AND 22 GEV, DATA SAMPLES IDENTICAL TO THOSE IN THE ABOVE REFERENCE ARE USED TO DETERMINE THE K+, K- AND P, AP YIELDS. AT W=34 GEV, IN ADDITION TO MEASURING THE K+, K- AND P, AP YIELDS, THE ANALYSIS FOR PI+, PI- HAS BEEN REPEATED WITH A DATA SAMPLE OF APPROX. TWICE THE SIZE USED IN THE ABOVE REFERENCE. THE SCALING VARIABLE IS X(P=3,DEF=2*E(P=3)/SQRT(X)) AND BETA IS P(P=3)/E(P=3). +dateupdated: 27/06/1988 00:00:00 +modifications: +- {action: Encoded, date: 27 JUN 1988, who: Mike Whalley} +- {action: Modified, date: 27 JUN 1988, who: NRV} +record_ids: +- {id: 181470, type: inspire} +- {id: 1241, type: red} + +--- +data_file: Table1.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +location: Data from T 2A +name: Table 1 + +--- +data_file: Table2.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [14.0] +location: Data from T 2B +name: Table 2 + +--- +data_file: Table3.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +location: Data from T 2C +name: Table 3 + +--- +data_file: Table4.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +location: Data from T 3A +name: Table 4 + +--- +data_file: Table5.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [22.0] +location: Data from T 3B +name: Table 5 + +--- +data_file: Table6.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +location: Data from T 3C +name: Table 6 + +--- +data_file: Table7.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4A +name: Table 7 + +--- +data_file: Table8.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [34.0] +location: Data from T 4B +name: Table 8 + +--- +data_file: Table9.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4C +name: Table 9 + +--- +data_file: Table10.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [22.0] +location: Data from T 3 +name: Table 10 + +--- +data_file: Table11.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +location: Data from T 3 +name: Table 11 + +--- +data_file: Table12.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +location: Data from T 3 +name: Table 12 + +--- +data_file: Table13.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 13 + +--- +data_file: Table14.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 14 + +--- +data_file: Table15.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 15 + +--- +data_file: Table16.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 16 + +--- +data_file: Table17.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 17 + +--- +data_file: Table18.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 4 +name: Table 18 + +--- +data_file: Table19.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +name: Table 19 + +--- +data_file: Table20.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +name: Table 20 + +--- +data_file: Table21.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [14.0] +name: Table 21 + +--- +data_file: Table22.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [14.0] +name: Table 22 + +--- +data_file: Table23.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +name: Table 23 + +--- +data_file: Table24.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [14.0] +name: Table 24 + +--- +data_file: Table25.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +name: Table 25 + +--- +data_file: Table26.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [22.0] +name: Table 26 + +--- +data_file: Table27.yaml +description: | + Axis error includes +- 0.0/0.0 contribution (?////EXCEPT OVERALL NORMALIZATION). +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DP] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [22.0] +name: Table 27 + diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..640bcf96b4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_14GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,32 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.55 + sys_norm: 2.24400000e+00 +- error: 1.11 + sys_norm: 1.86150000e+00 +- error: 0.83 + sys_norm: 1.42800000e+00 +- error: 0.66 + sys_norm: 1.0625 +- error: 0.7 + sys_norm: 0.9775 +- error: 0.41 + sys_norm: 6.53650000e-01 +- error: 0.56 + sys_norm: 0.4675 +- error: 0.37 + sys_norm: 2.75400000e-01 +- error: 0.2 + sys_norm: 0.136 +- error: 0.15 + sys_norm: 0.10625 +- error: 0.04 + sys_norm: 1.19000000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..fa722a7022 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/data.yaml @@ -0,0 +1,14 @@ +data_central: +- 42.3 +- 34.1 +- 26.8 +- 23.1 +- 18.0 +- 14.3 +- 10.9 +- 5.9 +- 4.43 +- 2.84 +- 0.94 +- 0.35 +- 0.11 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..a7cb832336 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table26.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter_core.py new file mode 120000 index 0000000000..c003c3c7e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..d9d8dc53c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,53 @@ +bins: +- z: + min: 0.03 + mid: 0.034 + max: 0.039 +- z: + min: 0.039 + mid: 0.043 + max: 0.047 +- z: + min: 0.047 + mid: 0.052 + max: 0.056 +- z: + min: 0.056 + mid: 0.06 + max: 0.065 +- z: + min: 0.065 + mid: 0.069 + max: 0.074 +- z: + min: 0.074 + mid: 8.30000000e-02 + max: 0.092 +- z: + min: 0.092 + mid: 0.101 + max: 0.11 +- z: + min: 0.11 + mid: 0.127 + max: 0.146 +- z: + min: 0.146 + mid: 1.63000000e-01 + max: 0.18 +- z: + min: 0.18 + mid: 0.21 + max: 0.24 +- z: + min: 0.27 + mid: 0.3 + max: 0.35 +- z: + min: 0.35 + mid: 0.38 + max: 0.42 +- z: + min: 0.42 + mid: 0.55 + max: 0.91 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..8c61af8671 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_22GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 13 + tables: [26] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 22 GeV PI- + PI+ production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/rawdata new file mode 120000 index 0000000000..00bf1e2842 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..72aff64c28 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_22GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,36 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 2.7 + sys_norm: 2.66490000e+00 +- error: 2.1 + sys_norm: 2.14830000e+00 +- error: 1.6 + sys_norm: 1.68840000e+00 +- error: 1.5 + sys_norm: 1.4553 +- error: 1.2 + sys_norm: 1.134 +- error: 1.0 + sys_norm: 0.9009 +- error: 1.3 + sys_norm: 0.6867 +- error: 0.8 + sys_norm: 3.71700000e-01 +- error: 0.5 + sys_norm: 0.27909 +- error: 0.38 + sys_norm: 0.17892 +- error: 0.19 + sys_norm: 5.92200000e-02 +- error: 0.1 + sys_norm: 2.20500000e-02 +- error: 0.03 + sys_norm: 6.93000000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..31265c6fb6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 4.11 +- 4.51 +- 3.41 +- 3.11 +- 2.64 +- 1.49 +- 1.54 +- 0.808 +- 0.733 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..5673bac0cc --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table5.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter_core.py new file mode 120000 index 0000000000..ca098199fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..de8c0a1190 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,37 @@ +bins: +- ph: + min: null + mid: 0.35 + max: null +- ph: + min: null + mid: 0.4 + max: null +- ph: + min: null + mid: 0.45 + max: null +- ph: + min: null + mid: 0.55 + max: null +- ph: + min: null + mid: 0.6 + max: null +- ph: + min: null + mid: 0.8 + max: null +- ph: + min: null + mid: 1.0 + max: null +- ph: + min: null + mid: 1.2 + max: null +- ph: + min: null + mid: 1.4 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..3bd091fb03 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_30GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 9 + tables: [5] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 30 GeV PI- + PI+ : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/rawdata new file mode 120000 index 0000000000..0b306241b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..f3df202006 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_30GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,28 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.05 + sys_norm: 8.22000000e-01 +- error: 1.06 + sys_norm: 9.02000000e-01 +- error: 0.87 + sys_norm: 0.682 +- error: 0.8 + sys_norm: 0.622 +- error: 0.56 + sys_norm: 0.528 +- error: 0.33 + sys_norm: 0.298 +- error: 0.39 + sys_norm: 0.308 +- error: 0.272 + sys_norm: 0.1616 +- error: 0.256 + sys_norm: 0.1466 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..23e72cc3e0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/data.yaml @@ -0,0 +1,17 @@ +data_central: +- 162.0 +- 151.0 +- 129.0 +- 116.0 +- 98.9 +- 79.8 +- 59.1 +- 43.1 +- 30.3 +- 19.3 +- 9.1 +- 7.7 +- 5.0 +- 2.85 +- 0.91 +- 0.11 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..2406e0d587 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table7.yaml" +ndat = 16 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..132c0dd4fb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py @@ -0,0 +1,54 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][0]['values'] + + for i in range(ndat): + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + if 'value' in input['independent_variables'][0]['values'][i]: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + else: + kin_mid = (kin_min + kin_max) / 2 + + kin_value = {var_name: {'min': kin_min, 'mid': kin_mid, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['error'] = values[i]['errors'][0]['symerror'] + error_value['sys_norm'] = pta(values[i]['errors'][1]['symerror'], data_central_value) + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + error_definition = {} + error_definition['error'] = { + 'definition': 'total uncertainty', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + error_definition['sys_norm'] = { + 'definition': 'systematic uncertainty - normalisation', + 'treatment': 'MULT', + 'type': 'CORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..684e791b43 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,65 @@ +bins: +- xp: + min: 0.0171 + mid: 0.02 + max: 0.0229 +- xp: + min: 0.0229 + mid: 0.0257 + max: 0.0286 +- xp: + min: 0.0286 + mid: 0.0314 + max: 0.0343 +- xp: + min: 0.0343 + mid: 0.0371 + max: 0.04 +- xp: + min: 0.04 + mid: 0.0429 + max: 0.0457 +- xp: + min: 0.0457 + mid: 0.0514 + max: 0.0571 +- xp: + min: 0.0571 + mid: 0.0629 + max: 0.0686 +- xp: + min: 0.0686 + mid: 0.0789 + max: 0.0914 +- xp: + min: 0.0914 + mid: 0.102 + max: 0.114 +- xp: + min: 0.114 + mid: 0.13 + max: 0.146 +- xp: + min: 0.171 + mid: 0.182 + max: 0.194 +- xp: + min: 0.194 + mid: 0.204 + max: 0.217 +- xp: + min: 0.217 + mid: 0.237 + max: 0.263 +- xp: + min: 0.263 + mid: 0.297 + max: 0.343 +- xp: + min: 0.343 + mid: 0.434 + max: 0.571 +- xp: + min: 0.571 + mid: 0.73 + max: 0.971 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..0f255d6de5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_34GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 16 + tables: [7] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 34 GeV PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100644 index 0000000000..85af50bc73 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,75 @@ +dependent_variables: +- header: {name: SIG(Q=PI)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.014} + value: 0.947 + - errors: + - {symerror: 0.014} + value: 0.922 + - errors: + - {symerror: 0.015} + value: 0.869 + - errors: + - {symerror: 0.018} + value: 0.856 + - errors: + - {symerror: 0.019} + value: 0.848 + - errors: + - {symerror: 0.015} + value: 0.822 + - errors: + - {symerror: 0.056} + value: 0.783 + - errors: + - {symerror: 0.048} + value: 0.769 + - errors: + - {symerror: 0.043} + value: 0.759 + - errors: + - {symerror: 0.04} + value: 0.73 + - errors: + - {symerror: 0.065} + value: 0.61 + - errors: + - {symerror: 0.057} + value: 0.649 + - errors: + - {symerror: 0.043} + value: 0.616 + - errors: + - {symerror: 0.039} + value: 0.607 + - errors: + - {symerror: 0.038} + value: 0.579 + - errors: + - {symerror: 0.099} + value: 0.584 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229} + - {high: 0.0343, low: 0.0286} + - {high: 0.04, low: 0.0343} + - {high: 0.0457, low: 0.04} + - {high: 0.0571, low: 0.0457} + - {high: 0.0686, low: 0.0571} + - {high: 0.0914, low: 0.0686} + - {high: 0.114, low: 0.0914} + - {high: 0.146, low: 0.114} + - {high: 0.194, low: 0.171} + - {high: 0.217, low: 0.194} + - {high: 0.263, low: 0.217} + - {high: 0.343, low: 0.263} + - {high: 0.571, low: 0.343} + - {high: 0.971, low: 0.571} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table10.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table10.yaml new file mode 100644 index 0000000000..5c665d6965 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table10.yaml @@ -0,0 +1,70 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 4.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 202.0 + - errors: + - {symerror: 8.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 188.0 + - errors: + - {symerror: 4.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 166.0 + - errors: + - {symerror: 6.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 143.0 + - errors: + - {symerror: 11.4} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 96.8 + - errors: + - {symerror: 6.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 56.5 + - errors: + - {symerror: 5.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 33.9 + - errors: + - {symerror: 4.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 25.5 + - errors: + - {symerror: 2.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 12.9 + - errors: + - {symerror: 0.5} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 6.4 + - errors: + - {symerror: 0.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 2.1 + - errors: + - {symerror: 0.04} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.2 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182, value: 0.0205} + - {high: 0.0273, low: 0.0227} + - {high: 0.0318, low: 0.0273, value: 0.0295} + - {high: 0.0545, low: 0.0364, value: 0.0445} + - {high: 0.0727, low: 0.0545, value: 0.0627} + - {high: 0.0909, low: 0.0727, value: 0.0809} + - {high: 0.118, low: 0.0909, value: 0.103} + - {high: 0.173, low: 0.136, value: 0.152} + - {high: 0.273, low: 0.173, value: 0.216} + - {high: 0.455, low: 0.273, value: 0.345} + - {high: 1.0, low: 0.455, value: 0.682} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table11.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table11.yaml new file mode 100644 index 0000000000..f3b346a260 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table11.yaml @@ -0,0 +1,30 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 1.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 8.8 + - errors: + - {symerror: 5.3} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 19.8 + - errors: + - {symerror: 2.6} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 21.3 + - errors: + - {symerror: 3.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 23.3 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182, value: 0.0205} + - {high: 0.0273, low: 0.0227} + - {high: 0.0318, low: 0.0273, value: 0.0295} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table12.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table12.yaml new file mode 100644 index 0000000000..b5e68cefc4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table12.yaml @@ -0,0 +1,30 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 1.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 2.4 + - errors: + - {symerror: 1.3} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 6.6 + - errors: + - {symerror: 1.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 5.7 + - errors: + - {symerror: 1.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 8.8 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182, value: 0.0205} + - {high: 0.0273, low: 0.0227} + - {high: 0.0318, low: 0.0273, value: 0.0295} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table13.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table13.yaml new file mode 100644 index 0000000000..693a0f1167 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table13.yaml @@ -0,0 +1,52 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {label: stat, symerror: 8.1} + - {label: sys, symerror: 8.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 39.2 + - errors: + - {label: stat, symerror: 5.5} + - {label: sys, symerror: 3.5} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 18.0 + - errors: + - {label: stat, symerror: 2.1} + - {label: sys, symerror: 2.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 11.1 + - errors: + - {label: stat, symerror: 1.3} + - {label: sys, symerror: 1.3} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 7.2 + - errors: + - {label: stat, symerror: 0.57} + - {label: sys, symerror: 0.68} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 2.64 + - errors: + - {label: stat, symerror: 0.11} + - {label: sys, symerror: 0.13} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.57 + - errors: + - {label: stat, symerror: 0.015} + - {label: sys, symerror: 0.011} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.04 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0682, low: 0.0455, value: 0.0555} + - {high: 0.0909, low: 0.0682} + - {high: 0.136, low: 0.0909, value: 0.11} + - {high: 0.182, low: 0.136, value: 0.156} + - {high: 0.273, low: 0.182, value: 0.219} + - {high: 0.545, low: 0.273, value: 0.391} + - {high: 1.0, low: 0.545, value: 0.705} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table14.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table14.yaml new file mode 100644 index 0000000000..2d748e6169 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table14.yaml @@ -0,0 +1,56 @@ +dependent_variables: +- header: {name: MULT(Q=PI)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=PI0), value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: 34.0-44.0} + values: + - errors: + - {symerror: 0.5} + value: 10.9 + - errors: + - {symerror: 0.5} + value: 11.1 +- header: {name: MULT(Q=K)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=PI0), value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: 34.0-44.0} + values: + - errors: + - {symerror: 0.2} + value: 1.76 + - {value: '-'} +- header: {name: MULT(Q=P)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=PI0), value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: 34.0-44.0} + values: + - errors: + - {symerror: 0.06} + value: 0.67 + - {value: '-'} +- header: {name: MULT(Q=PI0)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=PI0), value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: 34.0-44.0} + values: + - {value: '-'} + - errors: + - {symerror: 1.0} + value: 5.4 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 34.0} + - {value: 44.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table15.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table15.yaml new file mode 100644 index 0000000000..0465257b25 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table15.yaml @@ -0,0 +1,17 @@ +dependent_variables: +- header: {name: MULT(P=3+4)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: 34.0-44.0} + values: + - errors: + - {symerror: 0.5} + value: 10.9 + - errors: + - {symerror: 0.5} + value: 11.1 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 34.0} + - {value: 44.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table16.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table16.yaml new file mode 100644 index 0000000000..b430cb57b3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table16.yaml @@ -0,0 +1,13 @@ +dependent_variables: +- header: {name: MULT(P=3+4)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.2} + value: 1.76 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 34.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table17.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table17.yaml new file mode 100644 index 0000000000..b07e2c305f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table17.yaml @@ -0,0 +1,13 @@ +dependent_variables: +- header: {name: MULT(P=3+4)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.06} + value: 0.67 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 34.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table18.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table18.yaml new file mode 100644 index 0000000000..40e2922dda --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table18.yaml @@ -0,0 +1,13 @@ +dependent_variables: +- header: {name: MULT(P=3)} + qualifiers: + - {name: RE, value: E+ E- --> PI0 X} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 1.0} + value: 5.4 +independent_variables: +- header: {name: SQRT(S), units: GEV} + values: + - {value: 44.0} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100644 index 0000000000..ca075b1802 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: SIG(Q=K)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.003} + value: 0.044 + - errors: + - {symerror: 0.005} + value: 0.061 + - errors: + - {symerror: 0.008} + value: 0.108 + - errors: + - {symerror: 0.013} + value: 0.11 + - errors: + - {symerror: 0.026} + value: 0.114 + - errors: + - {symerror: 0.029} + value: 0.125 + - errors: + - {symerror: 0.036} + value: 0.167 + - errors: + - {symerror: 0.07} + value: 0.156 + - errors: + - {symerror: 0.045} + value: 0.266 + - errors: + - {symerror: 0.046} + value: 0.294 + - errors: + - {symerror: 0.113} + value: 0.256 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229} + - {high: 0.0343, low: 0.0286} + - {high: 0.04, low: 0.0343} + - {high: 0.0457, low: 0.04} + - {high: 0.0571, low: 0.0457} + - {high: 0.0914, low: 0.0571} + - {high: 0.114, low: 0.0914} + - {high: 0.217, low: 0.171} + - {high: 0.343, low: 0.217} + - {high: 0.971, low: 0.571} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100644 index 0000000000..beecec0ac0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,55 @@ +dependent_variables: +- header: {name: SIG(Q=P)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.005} + value: 0.009 + - errors: + - {symerror: 0.003} + value: 0.016 + - errors: + - {symerror: 0.002} + value: 0.022 + - errors: + - {symerror: 0.004} + value: 0.034 + - errors: + - {symerror: 0.009} + value: 0.039 + - errors: + - {symerror: 0.005} + value: 0.055 + - errors: + - {symerror: 0.012} + value: 0.073 + - errors: + - {symerror: 0.026} + value: 0.085 + - errors: + - {symerror: 0.032} + value: 0.102 + - errors: + - {symerror: 0.037} + value: 0.094 + - errors: + - {symerror: 0.081} + value: 0.16 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229} + - {high: 0.0343, low: 0.0286} + - {high: 0.04, low: 0.0343} + - {high: 0.0457, low: 0.04} + - {high: 0.0686, low: 0.0457} + - {high: 0.0914, low: 0.0686} + - {high: 0.114, low: 0.0914} + - {high: 0.217, low: 0.171} + - {high: 0.343, low: 0.217} + - {high: 0.971, low: 0.571} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100644 index 0000000000..b18a13be67 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,59 @@ +dependent_variables: +- header: {name: SIG(Q=PI)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 0.014} + value: 0.948 + - errors: + - {symerror: 0.036} + value: 0.878 + - errors: + - {symerror: 0.02} + value: 0.86 + - errors: + - {symerror: 0.028} + value: 0.816 + - errors: + - {symerror: 0.095} + value: 0.815 + - errors: + - {symerror: 0.076} + value: 0.713 + - errors: + - {symerror: 0.092} + value: 0.615 + - errors: + - {symerror: 0.098} + value: 0.635 + - errors: + - {symerror: 0.093} + value: 0.61 + - errors: + - {symerror: 0.047} + value: 0.629 + - errors: + - {symerror: 0.069} + value: 0.645 + - errors: + - {symerror: 0.126} + value: 0.588 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182} + - {high: 0.0273, low: 0.0227} + - {high: 0.0318, low: 0.0273} + - {high: 0.0545, low: 0.0364} + - {high: 0.0727, low: 0.0545} + - {high: 0.0909, low: 0.0727} + - {high: 0.118, low: 0.0909} + - {high: 0.173, low: 0.136} + - {high: 0.273, low: 0.173} + - {high: 0.455, low: 0.273} + - {high: 1.0, low: 0.455} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100644 index 0000000000..8ecbbb3f58 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,27 @@ +dependent_variables: +- header: {name: SIG(Q=K)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 0.006} + value: 0.041 + - errors: + - {symerror: 0.025} + value: 0.092 + - errors: + - {symerror: 0.014} + value: 0.11 + - errors: + - {symerror: 0.018} + value: 0.133 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182} + - {high: 0.0173, low: 0.0227} + - {high: 0.0318, low: 0.0273} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100644 index 0000000000..d647403343 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,27 @@ +dependent_variables: +- header: {name: SIG(Q=P)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '44.0'} + - {name: SQRT(S), units: GeV, value: '44.0'} + values: + - errors: + - {symerror: 0.005} + value: 0.011 + - errors: + - {symerror: 0.006} + value: 0.031 + - errors: + - {symerror: 0.006} + value: 0.03 + - errors: + - {symerror: 0.006} + value: 0.05 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0182, low: 0.0136} + - {high: 0.0227, low: 0.0182} + - {high: 0.0273, low: 0.0227} + - {high: 0.0318, low: 0.0273} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100644 index 0000000000..1ec8df9f8a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,90 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 3.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 162.0 + - errors: + - {symerror: 3.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 151.0 + - errors: + - {symerror: 3.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 129.0 + - errors: + - {symerror: 3.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 116.0 + - errors: + - {symerror: 2.5} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 98.9 + - errors: + - {symerror: 1.6} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 79.8 + - errors: + - {symerror: 4.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 59.1 + - errors: + - {symerror: 2.8} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 43.1 + - errors: + - {symerror: 1.7} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 30.3 + - errors: + - {symerror: 1.1} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 19.3 + - errors: + - {symerror: 1.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 9.1 + - errors: + - {symerror: 0.7} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 7.7 + - errors: + - {symerror: 0.4} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 5.0 + - errors: + - {symerror: 0.19} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 2.85 + - errors: + - {symerror: 0.052} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.91 + - errors: + - {symerror: 0.02} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.11 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229, value: 0.0257} + - {high: 0.0343, low: 0.0286, value: 0.0314} + - {high: 0.04, low: 0.0343, value: 0.0371} + - {high: 0.0457, low: 0.04, value: 0.0429} + - {high: 0.0571, low: 0.0457} + - {high: 0.0686, low: 0.0571, value: 0.0629} + - {high: 0.0914, low: 0.0686, value: 0.0789} + - {high: 0.114, low: 0.0914, value: 0.102} + - {high: 0.146, low: 0.114} + - {high: 0.194, low: 0.171, value: 0.182} + - {high: 0.217, low: 0.194, value: 0.204} + - {high: 0.263, low: 0.217, value: 0.237} + - {high: 0.343, low: 0.263, value: 0.297} + - {high: 0.571, low: 0.343, value: 0.434} + - {high: 0.971, low: 0.571, value: 0.73} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table8.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table8.yaml new file mode 100644 index 0000000000..05f0cae47d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table8.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.5} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 7.5 + - errors: + - {symerror: 0.9} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 10.0 + - errors: + - {symerror: 1.2} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 16.1 + - errors: + - {symerror: 1.7} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 14.9 + - errors: + - {symerror: 3.0} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 13.3 + - errors: + - {symerror: 2.8} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 12.1 + - errors: + - {symerror: 2.3} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 10.5 + - errors: + - {symerror: 2.8} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 6.3 + - errors: + - {symerror: 0.61} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 3.57 + - errors: + - {symerror: 0.28} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 1.75 + - errors: + - {symerror: 0.02} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.05 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229, value: 0.0257} + - {high: 0.0343, low: 0.0286, value: 0.0314} + - {high: 0.04, low: 0.0343, value: 0.0371} + - {high: 0.0457, low: 0.04, value: 0.0429} + - {high: 0.0571, low: 0.0457} + - {high: 0.0914, low: 0.0571, value: 0.0726} + - {high: 0.114, low: 0.0914, value: 0.102} + - {high: 0.217, low: 0.171, value: 0.191} + - {high: 0.343, low: 0.217, value: 0.271} + - {high: 0.971, low: 0.571, value: 0.73} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table9.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table9.yaml new file mode 100644 index 0000000000..f5c079dd34 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/Table9.yaml @@ -0,0 +1,65 @@ +dependent_variables: +- header: {name: (D(SIG)/D(X))/SIG(NAME=TOTAL)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '34.0'} + - {name: SQRT(S), units: GeV, value: '34.0'} + values: + - errors: + - {symerror: 0.86} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 1.54 + - errors: + - {symerror: 0.53} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 2.63 + - errors: + - {symerror: 0.35} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 3.33 + - errors: + - {symerror: 0.53} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 4.55 + - errors: + - {symerror: 1.05} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 4.55 + - errors: + - {symerror: 0.44} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 4.74 + - errors: + - {symerror: 0.67} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 4.1 + - errors: + - {symerror: 1.03} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 3.4 + - errors: + - {symerror: 0.42} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 1.37 + - errors: + - {symerror: 0.23} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.56 + - errors: + - {symerror: 0.016} + - {label: 'sys,Overall normalization error', symerror: 6.0%} + value: 0.032 +independent_variables: +- header: {name: X(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.0229, low: 0.0171} + - {high: 0.0286, low: 0.0229, value: 0.0257} + - {high: 0.0343, low: 0.0286, value: 0.0314} + - {high: 0.04, low: 0.0343, value: 0.0371} + - {high: 0.0457, low: 0.04, value: 0.0429} + - {high: 0.0686, low: 0.0457, value: 0.056} + - {high: 0.0914, low: 0.0686, value: 0.0789} + - {high: 0.114, low: 0.0914, value: 0.102} + - {high: 0.217, low: 0.171, value: 0.191} + - {high: 0.343, low: 0.217, value: 0.271} + - {high: 0.971, low: 0.571, value: 0.73} diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/submission.yaml new file mode 100644 index 0000000000..eb5350df02 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,288 @@ +--- +comment: | + DESY-PETRA. Measurement of inclusive pion, kaon and proton cross sections at CM energies of 34 and 44 GeV by the TASSO Collaboration. + CORR. FOR INITIAL STATE RADIATION, NO REF. +dateupdated: 23/10/1990 00:00:00 +modifications: +- {action: Encoded, date: 23 OCT 1990, who: HMD} +- {action: Modified, date: 23 OCT 1990, who: Mike Whalley} +- {action: Modified, date: 23 OCT 1990, who: OPY} +record_ids: +- {id: 267755, type: inspire} +- {id: 1499, type: red} + +--- +data_file: Table1.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 1a +name: Table 1 + +--- +data_file: Table2.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [34.0] +location: Data from T 1a +name: Table 2 + +--- +data_file: Table3.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 1a +name: Table 3 + +--- +data_file: Table4.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from T 1b +name: Table 4 + +--- +data_file: Table5.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [44.0] +location: Data from T 1b +name: Table 5 + +--- +data_file: Table6.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from T 1b +name: Table 6 + +--- +data_file: Table7.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 2a +name: Table 7 + +--- +data_file: Table8.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [34.0] +location: Data from T 2a +name: Table 8 + +--- +data_file: Table9.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from T 2a +name: Table 9 + +--- +data_file: Table10.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from T 2b +name: Table 10 + +--- +data_file: Table11.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [44.0] +location: Data from T 2b +name: Table 11 + +--- +data_file: Table12.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from T 2b +name: Table 12 + +--- +data_file: Table13.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI0 X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from T 3 +name: Table 13 + +--- +data_file: Table14.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> PI0 X, E+ E- + --> PI- X, E+ E- --> PI+ X, E+ E- --> P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, E+ E- Scattering, Strange production] +- name: cmenergies + values: [34.0-44.0] +location: Data from P 5 (C=PREPRINT) +name: Table 14 + +--- +data_file: Table15.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, E+ E- Scattering] +- name: cmenergies + values: [34.0-44.0] +location: Data from P 197 +name: Table 15 + +--- +data_file: Table16.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, E+ E- Scattering, Strange production] +- name: cmenergies + values: [34.0] +location: Data from P 197 +name: Table 16 + +--- +data_file: Table17.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, E+ E- Scattering] +- name: cmenergies + values: [34.0] +location: Data from P 197 +name: Table 17 + +--- +data_file: Table18.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI0 X] +- name: observables + values: [MULT] +- name: phrases + values: [Inclusive, E+ E- Scattering] +- name: cmenergies + values: [44.0] +location: Data from P 197 +name: Table 18 + diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..839377ea89 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_34GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,42 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 3.0 + sys_norm: 9.72 +- error: 3.0 + sys_norm: 9.06 +- error: 3.0 + sys_norm: 7.74 +- error: 3.0 + sys_norm: 6.96 +- error: 2.5 + sys_norm: 5.93400000e+00 +- error: 1.6 + sys_norm: 4.78800000e+00 +- error: 4.2 + sys_norm: 3.54600000e+00 +- error: 2.8 + sys_norm: 2.58600000e+00 +- error: 1.7 + sys_norm: 1.818 +- error: 1.1 + sys_norm: 1.15800000e+00 +- error: 1.0 + sys_norm: 5.46000000e-01 +- error: 0.7 + sys_norm: 0.462 +- error: 0.4 + sys_norm: 0.3 +- error: 0.19 + sys_norm: 0.171 +- error: 0.052 + sys_norm: 0.0546 +- error: 0.02 + sys_norm: 6.60000000e-03 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..5d8a1b31ab --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/data.yaml @@ -0,0 +1,13 @@ +data_central: +- 202.0 +- 188.0 +- 166.0 +- 143.0 +- 96.8 +- 56.5 +- 33.9 +- 25.5 +- 12.9 +- 6.4 +- 2.1 +- 0.2 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..1a8b10122b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table10.yaml" +ndat = 12 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter_core.py new file mode 120000 index 0000000000..25dccca8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..f68f3cd2ed --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,49 @@ +bins: +- xp: + min: 0.0136 + mid: 0.0159 + max: 0.0182 +- xp: + min: 0.0182 + mid: 0.0205 + max: 0.0227 +- xp: + min: 0.0227 + mid: 0.025 + max: 0.0273 +- xp: + min: 0.0273 + mid: 0.0295 + max: 0.0318 +- xp: + min: 0.0364 + mid: 0.0445 + max: 0.0545 +- xp: + min: 0.0545 + mid: 0.0627 + max: 0.0727 +- xp: + min: 0.0727 + mid: 0.0809 + max: 0.0909 +- xp: + min: 0.0909 + mid: 0.103 + max: 0.118 +- xp: + min: 0.136 + mid: 0.152 + max: 0.173 +- xp: + min: 0.173 + mid: 0.216 + max: 0.273 +- xp: + min: 0.273 + mid: 0.345 + max: 0.455 +- xp: + min: 0.455 + mid: 0.682 + max: 1.0 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..78f8c92dea --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PI_44GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 12 + tables: [10] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 44 GeV PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/rawdata new file mode 120000 index 0000000000..652ce5c3ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..b11fb4967e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PI_44GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,34 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 4.0 + sys_norm: 1.21200000e+01 +- error: 8.0 + sys_norm: 11.28 +- error: 4.0 + sys_norm: 9.96 +- error: 6.0 + sys_norm: 8.58 +- error: 11.4 + sys_norm: 5.808 +- error: 6.2 + sys_norm: 3.39 +- error: 5.1 + sys_norm: 2.034 +- error: 4.0 + sys_norm: 1.53 +- error: 2.0 + sys_norm: 0.774 +- error: 0.5 + sys_norm: 3.84000000e-01 +- error: 0.2 + sys_norm: 1.26000000e-01 +- error: 0.04 + sys_norm: 1.20000000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..bf1c752f95 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/data.yaml @@ -0,0 +1,4 @@ +data_central: +- 0.71 +- 0.8 +- 0.16 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..6edb30808d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table4.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..ca098199fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..60bf33e70c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,13 @@ +bins: +- ph: + min: null + mid: 0.6 + max: null +- ph: + min: null + mid: 0.85 + max: null +- ph: + min: null + mid: 1.575 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..a7f538e1c6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_12GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 3 + tables: [4] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 12 GeV P + PBAR : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..0b306241b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..2cfc4a9270 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_12GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,16 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 2.8 + sys_norm: 0.142 +- error: 0.34 + sys_norm: 0.16 +- error: 0.12 + sys_norm: 0.032 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..9a0f730af9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 1.55 +- 1.14 +- 1.49 +- 1.74 +- 1.34 +- 1.28 +- 0.71 +- 0.27 +- 0.11 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..3675025e30 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table24.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..c003c3c7e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..1c8428365b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,37 @@ +bins: +- z: + min: 0.145 + mid: 0.148 + max: 0.151 +- z: + min: 0.151 + mid: 0.155 + max: 0.159 +- z: + min: 0.159 + mid: 0.163 + max: 0.167 +- z: + min: 0.167 + mid: 0.171 + max: 0.176 +- z: + min: 0.176 + mid: 0.185 + max: 0.196 +- z: + min: 0.196 + mid: 0.206 + max: 0.22 +- z: + min: 0.22 + mid: 0.24 + max: 0.27 +- z: + min: 0.27 + mid: 0.29 + max: 0.32 +- z: + min: 0.45 + mid: 0.53 + max: 0.67 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..494e20bc06 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_14GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 9 + tables: [24] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 14 GeV P + PBAR production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..00bf1e2842 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..af22e98ffd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_14GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,28 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.48 + sys_norm: 0.13175 +- error: 0.36 + sys_norm: 0.0969 +- error: 0.38 + sys_norm: 1.26650000e-01 +- error: 0.41 + sys_norm: 0.1479 +- error: 0.28 + sys_norm: 0.1139 +- error: 0.39 + sys_norm: 1.08800000e-01 +- error: 0.24 + sys_norm: 0.06035 +- error: 0.15 + sys_norm: 2.29500000e-02 +- error: 0.05 + sys_norm: 0.00935 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..297c8df7dd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 3.7 +- 1.7 +- 2.6 +- 3.0 +- 2.1 +- 1.4 +- 0.7 +- 0.29 +- 0.15 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..00fc9864f6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table12.yaml" +var_name = 'z' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..c003c3c7e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..849e94d1ed --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,37 @@ +bins: +- z: + min: 0.092 + mid: 0.094 + max: 0.096 +- z: + min: 0.096 + mid: 0.099 + max: 0.101 +- z: + min: 0.101 + mid: 0.104 + max: 0.106 +- z: + min: 0.106 + mid: 0.109 + max: 0.112 +- z: + min: 0.112 + mid: 0.125 + max: 0.138 +- z: + min: 0.138 + mid: 0.152 + max: 0.17 +- z: + min: 0.17 + mid: 0.18 + max: 0.2 +- z: + min: 0.29 + mid: 0.32 + max: 0.36 +- z: + min: 0.36 + mid: 0.39 + max: 0.43 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..b3465650e2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_22GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/181470" +hepdata: + url: "https://www.hepdata.net/record/ins181470" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt z times s/beta", label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 9 + tables: [12] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: ' TASSO SIA 22 GeV P + PBAR production: $\frac{s}{\beta}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{s}{\beta}\frac{d\sigma}{dz}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..00bf1e2842 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_14GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..f78a23207b --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_22GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,28 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.3 + sys_norm: 0.2331 +- error: 0.8 + sys_norm: 1.07100000e-01 +- error: 0.8 + sys_norm: 0.1638 +- error: 0.8 + sys_norm: 0.189 +- error: 0.4 + sys_norm: 0.1323 +- error: 0.3 + sys_norm: 8.82000000e-02 +- error: 0.31 + sys_norm: 4.41000000e-02 +- error: 0.16 + sys_norm: 1.82700000e-02 +- error: 0.09 + sys_norm: 0.00945 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..735fa2c7a9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/data.yaml @@ -0,0 +1,4 @@ +data_central: +- 0.097 +- 0.129 +- 0.07 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..8277aceee7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter.py @@ -0,0 +1,14 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table7.yaml" +var_name = 'ph' + +data, kin, err = magic(table, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..ca098199fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..55a7a3b5fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,13 @@ +bins: +- ph: + min: null + mid: 0.6 + max: null +- ph: + min: null + mid: 0.8 + max: null +- ph: + min: null + mid: 1.665 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..0c5e4e8488 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_30GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/153656" +hepdata: + url: "https://www.hepdata.net/record/ins153656" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "x-sec differential wrt $p_h$", label: '$\frac{d\sigma^h}{dp_h}$', units: '$$'} + observable_name: PH + process_type: SIA_PH + ndata: 3 + tables: [7] + kinematics: + variables: + ph: {description: "hadron momentum", label: '$p_h$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [ph] + plotting: + dataset_label: 'TASSO SIA 30 GeV P + PBAR : $\frac{d\sigma^h}{dp_h}$' + x_scale: linear + plot_x: ph + y_label: '$\frac{d\sigma^h}{dp_h}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..0b306241b6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_12GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..7d4220de23 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_30GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,16 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.031 + sys_norm: 0.0194 +- error: 0.039 + sys_norm: 0.0258 +- error: 0.027 + sys_norm: 1.40000000e-02 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..e916dbe232 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/data.yaml @@ -0,0 +1,12 @@ +data_central: +- 1.54 +- 2.63 +- 3.33 +- 4.55 +- 4.55 +- 4.74 +- 4.1 +- 3.4 +- 1.37 +- 0.56 +- 0.032 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..3d98734b14 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table9.yaml" +ndat = 11 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..25dccca8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..ba58627aa2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,45 @@ +bins: +- xp: + min: 0.0171 + mid: 0.02 + max: 0.0229 +- xp: + min: 0.0229 + mid: 0.0257 + max: 0.0286 +- xp: + min: 0.0286 + mid: 0.0314 + max: 0.0343 +- xp: + min: 0.0343 + mid: 0.0371 + max: 0.04 +- xp: + min: 0.04 + mid: 0.0429 + max: 0.0457 +- xp: + min: 0.0457 + mid: 0.056 + max: 0.0686 +- xp: + min: 0.0686 + mid: 0.0789 + max: 0.0914 +- xp: + min: 0.0914 + mid: 0.102 + max: 0.114 +- xp: + min: 0.171 + mid: 0.191 + max: 0.217 +- xp: + min: 0.217 + mid: 0.271 + max: 0.343 +- xp: + min: 0.571 + mid: 0.73 + max: 0.971 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..eda6abf449 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_34GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 11 + tables: [9] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 34 GeV P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..652ce5c3ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..9a9036f089 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_34GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,32 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 0.86 + sys_norm: 9.24000000e-02 +- error: 0.53 + sys_norm: 0.1578 +- error: 0.35 + sys_norm: 0.1998 +- error: 0.53 + sys_norm: 2.73000000e-01 +- error: 1.05 + sys_norm: 2.73000000e-01 +- error: 0.44 + sys_norm: 2.84400000e-01 +- error: 0.67 + sys_norm: 0.246 +- error: 1.03 + sys_norm: 0.204 +- error: 0.42 + sys_norm: 8.22000000e-02 +- error: 0.23 + sys_norm: 3.36000000e-02 +- error: 0.016 + sys_norm: 0.00192 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..78e1a29cdf --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/data.yaml @@ -0,0 +1,5 @@ +data_central: +- 2.4 +- 6.6 +- 5.7 +- 8.8 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..567d3f7dc7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table12.yaml" +ndat = 4 +var_name = 'xp' + +data, kin, err = magic(table, ndat, var_name) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..25dccca8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..49a085a267 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,17 @@ +bins: +- xp: + min: 0.0136 + mid: 0.0159 + max: 0.0182 +- xp: + min: 0.0182 + mid: 0.0205 + max: 0.0227 +- xp: + min: 0.0227 + mid: 0.025 + max: 0.0273 +- xp: + min: 0.0273 + mid: 0.0295 + max: 0.0318 diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..49315d1b71 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TASSO_SIA-PRO_44GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TASSO" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/267755" +hepdata: + url: "https://www.hepdata.net/record/ins267755" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized x-sec differential wrt $x_p$", label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$', units: '$$'} + observable_name: XP + process_type: SIA_XP + ndata: 4 + tables: [12] + kinematics: + variables: + xp: {description: "hadron 3-momentum scaled to beam 3-momentum", label: '$x_p$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xp] + plotting: + dataset_label: 'TASSO SIA 44 GeV P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' + x_scale: linear + plot_x: xp + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{dx_p}$' +# theory: +# FK_tables: +# - - +# operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..652ce5c3ee --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TASSO_SIA-PI_34GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..8ac46220fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TASSO_SIA-PRO_44GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,18 @@ +definitions: + error: + definition: total uncertainty + treatment: ADD + type: UNCORR + sys_norm: + definition: systematic uncertainty - normalisation + treatment: MULT + type: CORR +bins: +- error: 1.1 + sys_norm: 0.144 +- error: 1.3 + sys_norm: 3.96000000e-01 +- error: 1.2 + sys_norm: 0.342 +- error: 1.1 + sys_norm: 0.528 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..61c0fcf9b1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/data.yaml @@ -0,0 +1,13 @@ +data_central: +- 0.41 +- 0.61 +- 0.63 +- 0.75 +- 0.69 +- 0.51 +- 0.39 +- 0.44 +- 0.48 +- 0.29 +- 0.24 +- 0.12 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..ed56ebf8b9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +ndat = 12 +var_name = 'xi' + +data, kin, err = magic(table, ndat, var_name, 1) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..0f6f89753a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TOPAZ_SIA-PI_58GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..76ff137807 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,49 @@ +bins: +- xi: + min: null + mid: 1.32 + max: null +- xi: + min: null + mid: 1.62 + max: null +- xi: + min: null + mid: 1.92 + max: null +- xi: + min: null + mid: 2.62 + max: null +- xi: + min: null + mid: 2.77 + max: null +- xi: + min: null + mid: 3.41 + max: null +- xi: + min: null + mid: 3.51 + max: null +- xi: + min: null + mid: 3.61 + max: null +- xi: + min: null + mid: 3.77 + max: null +- xi: + min: null + mid: 3.96 + max: null +- xi: + min: null + mid: 4.14 + max: null +- xi: + min: null + mid: 4.42 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..a171dac4ac --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TOPAZ_SIA-KA_58GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TOPAZ" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/9412015" +iNSPIRE: + url: "https://inspirehep.net/literature/381900" +hepdata: + url: "https://www.hepdata.net/record/ins381900" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: 'normalized x-sec differential wrt $\xi$', label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$', units: ''} + observable_name: XI + process_type: SIA_XI + ndata: 12 + tables: [2] + kinematics: + variables: + xi: {description: "ln(1/x_p)", label: '$\xi$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xi] + plotting: + dataset_label: 'TOPAZ 58 GEV SIA KA- + KA+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + x_scale: linear + plot_x: xi + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..67ef04197a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..f514482ef3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-KA_58GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,18 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 0.08 +- error: 0.1 +- error: 0.1 +- error: 0.19 +- error: 0.16 +- error: 0.08 +- error: 0.06 +- error: 0.06 +- error: 0.06 +- error: 0.04 +- error: 0.03 +- error: 0.02 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..b0ad74a84f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/data.yaml @@ -0,0 +1,18 @@ +data_central: +- 1.07 +- 1.5 +- 2.24 +- 2.75 +- 3.25 +- 3.75 +- 3.95 +- 3.84 +- 4.75 +- 4.86 +- 4.79 +- 4.53 +- 4.18 +- 3.82 +- 3.27 +- 2.27 +- 1.94 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..714344aeb5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +ndat = 17 +var_name = 'xi' + +data, kin, err = magic(table, ndat, var_name, 0) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..45b7941ef4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/filter_core.py @@ -0,0 +1,53 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float +from nnpdf_data.filter_utils.utils import symmetrize_errors as se + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name, index): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][index]['values'] + total_bins = len(values) + + for i in range(total_bins): + if values[i]['value'] == '-': + continue + else: + kin_mid = input['independent_variables'][0]['values'][i]['value'] + + kin_value = {var_name: {'min': None, 'mid': kin_mid, 'max': None}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['error'] = values[i]['errors'][0]['symerror'] + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + if len(data_central) != ndat: + raise ValueError( + f"Number of data points {len(data_central)} does not match expected {ndat}" + ) + + error_definition = {} + error_definition['error'] = { + 'definition': 'all uncertainties added in quadrature', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..d43d13159f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,69 @@ +bins: +- xi: + min: null + mid: 1.32 + max: null +- xi: + min: null + mid: 1.62 + max: null +- xi: + min: null + mid: 1.92 + max: null +- xi: + min: null + mid: 2.22 + max: null +- xi: + min: null + mid: 2.47 + max: null +- xi: + min: null + mid: 2.62 + max: null +- xi: + min: null + mid: 2.77 + max: null +- xi: + min: null + mid: 2.98 + max: null +- xi: + min: null + mid: 3.41 + max: null +- xi: + min: null + mid: 3.51 + max: null +- xi: + min: null + mid: 3.61 + max: null +- xi: + min: null + mid: 3.77 + max: null +- xi: + min: null + mid: 3.96 + max: null +- xi: + min: null + mid: 4.14 + max: null +- xi: + min: null + mid: 4.42 + max: null +- xi: + min: null + mid: 4.71 + max: null +- xi: + min: null + mid: 4.83 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..fc847468d5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TOPAZ_SIA-PI_58GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TOPAZ" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/9412015" +iNSPIRE: + url: "https://inspirehep.net/literature/381900" +hepdata: + url: "https://www.hepdata.net/record/ins381900" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: 'normalized x-sec differential wrt $\xi$', label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$', units: ''} + observable_name: XI + process_type: SIA_XI + ndata: 17 + tables: [2] + kinematics: + variables: + xi: {description: "ln(1/x_p)", label: '$\xi$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xi] + plotting: + dataset_label: 'TOPAZ 58 GEV SIA PI- + PI+ : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + x_scale: linear + plot_x: xi + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..76adec3819 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,99 @@ +dependent_variables: +- header: {name: (1/SIG(Q=HAD))*D(SIG(Q=CHARGED))/D(LN(1/X))} + qualifiers: + - {name: RE(Q=CHARGED), value: E+ E- --> CHARGED X} + - {name: RE(Q=HAD), value: E+ E- --> 2HADRON (HADRONS)} + - {name: SQRT(S), units: GeV, value: '58.0'} + - {name: SQRT(S), units: GeV, value: '58.0'} + values: + - errors: + - {symerror: 0.015} + value: 0.287 + - errors: + - {symerror: 0.018} + value: 0.656 + - errors: + - {symerror: 0.024} + value: 0.942 + - errors: + - {symerror: 0.031} + value: 1.313 + - errors: + - {symerror: 0.041} + value: 1.783 + - errors: + - {symerror: 0.055} + value: 2.455 + - errors: + - {symerror: 0.067} + value: 3.116 + - errors: + - {symerror: 0.076} + value: 3.547 + - errors: + - {symerror: 0.089} + value: 4.182 + - errors: + - {symerror: 0.093} + value: 4.38 + - errors: + - {symerror: 0.103} + value: 4.877 + - errors: + - {symerror: 0.107} + value: 5.089 + - errors: + - {symerror: 0.119} + value: 5.674 + - errors: + - {symerror: 0.12} + value: 5.705 + - errors: + - {symerror: 0.119} + value: 5.673 + - errors: + - {symerror: 0.114} + value: 5.406 + - errors: + - {symerror: 0.109} + value: 5.135 + - errors: + - {symerror: 0.098} + value: 4.564 + - errors: + - {symerror: 0.087} + value: 4.037 + - errors: + - {symerror: 0.071} + value: 3.265 + - errors: + - {symerror: 0.055} + value: 2.498 + - errors: + - {symerror: 0.046} + value: 1.637 +independent_variables: +- header: {name: LN(1/X(DEF=2*P(P=3)/SQRT(S)))} + values: + - {value: 0.7} + - {value: 0.9} + - {value: 1.1} + - {value: 1.3} + - {value: 1.5} + - {value: 1.7} + - {value: 1.9} + - {value: 2.1} + - {value: 2.3} + - {value: 2.5} + - {value: 2.7} + - {value: 2.9} + - {value: 3.1} + - {value: 3.3} + - {value: 3.5} + - {value: 3.7} + - {value: 3.9} + - {value: 4.1} + - {value: 4.3} + - {value: 4.5} + - {value: 4.7} + - {value: 4.9} diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..d0b7e29836 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,173 @@ +dependent_variables: +- header: {name: (1/SIG(Q=HAD))*D(SIG)/D(LN(1/X))} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: RE(Q=HAD), value: E+ E- --> 2HADRON (HADRONS)} + - {name: SQRT(S), units: GeV, value: '58.0'} + - {name: SQRT(S), units: GeV, value: '58.0'} + values: + - errors: + - {symerror: 0.12} + value: 1.07 + - errors: + - {symerror: 0.14} + value: 1.5 + - errors: + - {symerror: 0.21} + value: 2.24 + - errors: + - {symerror: 0.23} + value: 2.75 + - errors: + - {symerror: 0.27} + value: 3.25 + - errors: + - {symerror: 0.42} + value: 3.75 + - errors: + - {symerror: 0.64} + value: 3.95 + - errors: + - {symerror: 0.8} + value: 3.84 + - {value: '-'} + - errors: + - {symerror: 0.5} + value: 4.75 + - errors: + - {symerror: 0.46} + value: 4.86 + - errors: + - {symerror: 0.37} + value: 4.79 + - errors: + - {symerror: 0.37} + value: 4.53 + - errors: + - {symerror: 0.34} + value: 4.18 + - errors: + - {symerror: 0.36} + value: 3.82 + - errors: + - {symerror: 0.28} + value: 3.27 + - errors: + - {symerror: 0.18} + value: 2.27 + - errors: + - {symerror: 0.36} + value: 1.94 +- header: {name: (1/SIG(Q=HAD))*D(SIG)/D(LN(1/X))} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=HAD), value: E+ E- --> 2HADRON (HADRONS)} + - {name: SQRT(S), units: GeV, value: '58.0'} + - {name: SQRT(S), units: GeV, value: '58.0'} + values: + - errors: + - {symerror: 0.08} + value: 0.41 + - errors: + - {symerror: 0.1} + value: 0.61 + - errors: + - {symerror: 0.1} + value: 0.63 + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.19} + value: 0.75 + - errors: + - {symerror: 0.16} + value: 0.69 + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.08} + value: 0.51 + - errors: + - {symerror: 0.06} + value: 0.39 + - errors: + - {symerror: 0.06} + value: 0.44 + - errors: + - {symerror: 0.06} + value: 0.48 + - errors: + - {symerror: 0.04} + value: 0.29 + - errors: + - {symerror: 0.03} + value: 0.24 + - errors: + - {symerror: 0.02} + value: 0.12 + - {value: '-'} + - {value: '-'} +- header: {name: (1/SIG(Q=HAD))*D(SIG)/D(LN(1/X))} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=HAD), value: E+ E- --> 2HADRON (HADRONS)} + - {name: SQRT(S), units: GeV, value: '58.0'} + - {name: SQRT(S), units: GeV, value: '58.0'} + values: + - errors: + - {symerror: 0.04} + value: 0.17 + - errors: + - {symerror: 0.05} + value: 0.25 + - errors: + - {symerror: 0.04} + value: 0.23 + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.21} + value: 0.3 + - errors: + - {symerror: 0.22} + value: 0.33 + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.04} + value: 0.22 + - errors: + - {symerror: 0.03} + value: 0.2 + - errors: + - {symerror: 0.03} + value: 0.21 + - errors: + - {symerror: 0.02} + value: 0.13 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} +independent_variables: +- header: {name: LN(1/X(DEF=2*P(P=3)/SQRT(S)))} + values: + - {value: 1.32} + - {value: 1.62} + - {value: 1.92} + - {value: 2.22} + - {value: 2.47} + - {value: 2.62} + - {value: 2.77} + - {value: 2.98} + - {value: 3.22} + - {value: 3.41} + - {value: 3.51} + - {value: 3.61} + - {value: 3.77} + - {value: 3.96} + - {value: 4.14} + - {value: 4.42} + - {value: 4.71} + - {value: 4.83} diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..c61b022b9c --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,39 @@ +dependent_variables: +- header: {name: (1/SIG(Q=HAD))*D(SIG(Q=KS))/D(LN(1/X))} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> 2HADRON (HADRONS)} + - {name: RE(Q=KS), value: E+ E- --> (K0 + KBAR0) X} + - {name: SQRT(S), units: GeV, value: '58.0'} + - {name: SQRT(S), units: GeV, value: '58.0'} + values: + - errors: + - {symerror: 0.1} + value: 0.58 + - errors: + - {symerror: 0.12} + value: 0.65 + - errors: + - {symerror: 0.1} + value: 0.68 + - errors: + - {symerror: 0.09} + value: 0.61 + - errors: + - {symerror: 0.09} + value: 0.62 + - errors: + - {symerror: 0.09} + value: 0.49 + - errors: + - {symerror: 0.04} + value: 0.23 +independent_variables: +- header: {name: LN(1/X(DEF=2*P(P=3)/SQRT(S)))} + values: + - {value: 1.8} + - {value: 2.25} + - {value: 2.55} + - {value: 2.85} + - {value: 3.15} + - {value: 3.45} + - {value: 4.05} diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..8b169133ca --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,61 @@ +--- +comment: | + KEK-TRISTAN. TOPAZ Collaboration. Measurement of inclusive production spectra of the stable particles. +dateupdated: 25/03/1993 00:00:00 +modifications: +- {action: Encoded, date: 25 MAR 1993, who: VVE} +record_ids: +- {id: 381900, type: inspire} +- {id: 1746, type: red} + +--- +data_file: Table1.yaml +description: | + Errors include both statistical and systematic errors. +keywords: +- name: reactions + values: [E+ E- --> CHARGED X] +- name: observables + values: [D2SIG/DLN1/X] +- name: phrases + values: [Inclusive, Double Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [58.0] +location: Data from T 1 +name: Table 1 + +--- +data_file: Table2.yaml +description: | + Errors include both statistical and systematic errors. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> PI- X, E+ E- + --> PI+ X, E+ E- --> P X] +- name: observables + values: [D2SIG/DLN1/X] +- name: phrases + values: [Inclusive, Double Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [58.0] +location: Data from T 3 +name: Table 2 + +--- +data_file: Table3.yaml +description: | + Statistical errors only. +keywords: +- name: reactions + values: [E+ E- --> K0 X, E+ E- --> KBAR0 X] +- name: observables + values: [D2SIG/DLN1/X] +- name: phrases + values: [Inclusive, Double Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [58.0] +location: Data from T 3 +name: Table 3 + diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..e721ea04ec --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PI_58GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,23 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 0.12 +- error: 0.14 +- error: 0.21 +- error: 0.23 +- error: 0.27 +- error: 0.42 +- error: 0.64 +- error: 0.8 +- error: 0.5 +- error: 0.46 +- error: 0.37 +- error: 0.37 +- error: 0.34 +- error: 0.36 +- error: 0.28 +- error: 0.18 +- error: 0.36 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..e5da4877b0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 0.17 +- 0.25 +- 0.23 +- 0.3 +- 0.33 +- 0.22 +- 0.2 +- 0.21 +- 0.13 diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..fd43411699 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table = "rawdata/Table2.yaml" +ndat = 9 +var_name = 'xi' + +data, kin, err = magic(table, ndat, var_name, 2) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..0f6f89753a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TOPAZ_SIA-PI_58GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..65521d9356 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,37 @@ +bins: +- xi: + min: null + mid: 1.32 + max: null +- xi: + min: null + mid: 1.62 + max: null +- xi: + min: null + mid: 1.92 + max: null +- xi: + min: null + mid: 2.62 + max: null +- xi: + min: null + mid: 2.77 + max: null +- xi: + min: null + mid: 3.41 + max: null +- xi: + min: null + mid: 3.51 + max: null +- xi: + min: null + mid: 3.61 + max: null +- xi: + min: null + mid: 3.77 + max: null diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..a991751f6f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TOPAZ_SIA-PRO_58GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TOPAZ" + +arXiv: + url: "https://arxiv.org/abs/hep-ex/9412015" +iNSPIRE: + url: "https://inspirehep.net/literature/381900" +hepdata: + url: "https://www.hepdata.net/record/ins381900" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: 'normalized x-sec differential wrt $\xi$', label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$', units: ''} + observable_name: XI + process_type: SIA_XI + ndata: 9 + tables: [2] + kinematics: + variables: + xi: {description: "ln(1/x_p)", label: '$\xi$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [xi] + plotting: + dataset_label: 'TOPAZ 58 GEV SIA P + PBAR : $\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + x_scale: linear + plot_x: xi + y_label: '$\frac{1}{\sigma_{tot}}\frac{d\sigma^h}{d\xi}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..67ef04197a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TOPAZ_SIA-PI_58GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..4cb39a9e07 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TOPAZ_SIA-PRO_58GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,15 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 0.04 +- error: 0.05 +- error: 0.04 +- error: 0.21 +- error: 0.22 +- error: 0.04 +- error: 0.03 +- error: 0.03 +- error: 0.02 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/data.yaml new file mode 100644 index 0000000000..160cd6db12 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/data.yaml @@ -0,0 +1,22 @@ +data_central: +- 5.56 +- 7.21 +- 7.6 +- 9.3 +- 8.55 +- 8.73 +- 8.48 +- 9.2 +- 8.8 +- 5.6 +- 6.32 +- 5.13 +- 5.13 +- 5.0 +- 1.73 +- 1.161 +- 0.842 +- 0.47 +- 0.249 +- 0.09 +- 0.0225 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter.py new file mode 100644 index 0000000000..aeb2b50025 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +ndat = 21 +var_name = 'z' + +data, kin, err = magic(table_1, ndat, var_name, 1) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter_core.py new file mode 120000 index 0000000000..bb5d5417b2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/filter_core.py @@ -0,0 +1 @@ +../TPC_SIA-PI_29GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/kinematics.yaml new file mode 100644 index 0000000000..1f5351e003 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/kinematics.yaml @@ -0,0 +1,85 @@ +bins: +- z: + min: 0.025 + mid: null + max: 0.03 +- z: + min: 0.03 + mid: null + max: 0.035 +- z: + min: 0.035 + mid: null + max: 0.04 +- z: + min: 0.04 + mid: null + max: 0.045 +- z: + min: 0.045 + mid: null + max: 0.05 +- z: + min: 0.05 + mid: null + max: 0.055 +- z: + min: 0.055 + mid: null + max: 0.06 +- z: + min: 0.06 + mid: null + max: 0.065 +- z: + min: 0.065 + mid: null + max: 0.07 +- z: + min: 0.09 + mid: null + max: 0.1 +- z: + min: 0.1 + mid: null + max: 0.11 +- z: + min: 0.11 + mid: null + max: 0.12 +- z: + min: 0.12 + mid: null + max: 0.13 +- z: + min: 0.13 + mid: null + max: 0.14 +- z: + min: 0.25 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/metadata.yaml new file mode 100644 index 0000000000..b006721197 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TPC_SIA-KA_29GEV_EE-KASUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-KA" + experiment: "TPC" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/262143" +hepdata: + url: "https://www.hepdata.net/record/ins262143" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized differential x-sec wrt z", label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 21 + tables: [1] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'TPC SIA 29 GeV KA- + KA+ production: $\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/rawdata new file mode 120000 index 0000000000..50e4d0378d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/rawdata @@ -0,0 +1 @@ +../TPC_SIA-PI_29GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/uncertainties.yaml new file mode 100644 index 0000000000..144260fbd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-KA_29GEV_EE-KASUM/uncertainties.yaml @@ -0,0 +1,27 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 0.49 +- error: 0.56 +- error: 0.59 +- error: 1.2 +- error: 0.96 +- error: 0.65 +- error: 0.74 +- error: 1.3 +- error: 2.3 +- error: 1.5 +- error: 0.92 +- error: 0.61 +- error: 0.49 +- error: 0.38 +- error: 0.11 +- error: 0.073 +- error: 0.055 +- error: 0.03 +- error: 0.02 +- error: 0.012 +- error: 0.0048 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/data.yaml new file mode 100644 index 0000000000..a015ea37cb --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/data.yaml @@ -0,0 +1,26 @@ +data_central: +- 88.4 +- 138.3 +- 149.5 +- 144.2 +- 130.9 +- 112.9 +- 104.6 +- 93.8 +- 83.8 +- 76.0 +- 68.2 +- 60.9 +- 36.0 +- 29.9 +- 12.48 +- 10.77 +- 7.95 +- 6.13 +- 4.09 +- 2.61 +- 1.581 +- 0.874 +- 0.37 +- 0.19 +- 0.0466 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter.py new file mode 100644 index 0000000000..a03e30cbed --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +ndat = 25 +var_name = 'z' + +data, kin, err = magic(table_1, ndat, var_name, 0) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter_core.py new file mode 100644 index 0000000000..d690906a7a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/filter_core.py @@ -0,0 +1,54 @@ +import yaml + +from nnpdf_data.filter_utils.utils import percentage_to_absolute as pta +from nnpdf_data.filter_utils.utils import prettify_float +from nnpdf_data.filter_utils.utils import symmetrize_errors as se + +yaml.add_representer(float, prettify_float) + + +def magic(table, ndat, var_name, index): + with open(table, 'r') as f: + input = yaml.safe_load(f) + + data_central = [] + kin = [] + error = [] + + values = input['dependent_variables'][index]['values'] + total_bins = len(values) + + for i in range(total_bins): + if values[i]['value'] == '-': + continue + else: + kin_min = input['independent_variables'][0]['values'][i]['low'] + kin_max = input['independent_variables'][0]['values'][i]['high'] + + kin_value = {var_name: {'min': kin_min, 'mid': None, 'max': kin_max}} + + data_central_value = values[i]['value'] + error_value = {} + error_value['error'] = values[i]['errors'][0]['symerror'] + + kin.append(kin_value) + data_central.append(data_central_value) + error.append(error_value) + + if len(data_central) != ndat: + raise ValueError( + f"Number of data points {len(data_central)} does not match expected {ndat}" + ) + + error_definition = {} + error_definition['error'] = { + 'definition': 'all uncertainties added in quadrature', + 'treatment': 'ADD', + 'type': 'UNCORR', + } + + data_central_yaml = {'data_central': data_central} + kin_yaml = {'bins': kin} + uncertainties_yaml = {'definitions': error_definition, 'bins': error} + + return data_central_yaml, kin_yaml, uncertainties_yaml diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/kinematics.yaml new file mode 100644 index 0000000000..69e1e4b248 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/kinematics.yaml @@ -0,0 +1,101 @@ +bins: +- z: + min: 0.01 + mid: null + max: 0.015 +- z: + min: 0.015 + mid: null + max: 0.02 +- z: + min: 0.02 + mid: null + max: 0.025 +- z: + min: 0.025 + mid: null + max: 0.03 +- z: + min: 0.03 + mid: null + max: 0.035 +- z: + min: 0.035 + mid: null + max: 0.04 +- z: + min: 0.04 + mid: null + max: 0.045 +- z: + min: 0.045 + mid: null + max: 0.05 +- z: + min: 0.05 + mid: null + max: 0.055 +- z: + min: 0.055 + mid: null + max: 0.06 +- z: + min: 0.06 + mid: null + max: 0.065 +- z: + min: 0.065 + mid: null + max: 0.07 +- z: + min: 0.09 + mid: null + max: 0.1 +- z: + min: 0.1 + mid: null + max: 0.11 +- z: + min: 0.16 + mid: null + max: 0.18 +- z: + min: 0.18 + mid: null + max: 0.2 +- z: + min: 0.2 + mid: null + max: 0.22 +- z: + min: 0.22 + mid: null + max: 0.25 +- z: + min: 0.25 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/metadata.yaml new file mode 100644 index 0000000000..91400146e7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TPC_SIA-PI_29GEV_EE-PISUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PI" + experiment: "TPC" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/262143" +hepdata: + url: "https://www.hepdata.net/record/ins262143" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized differential x-sec wrt z", label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 25 + tables: [1] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'TPC SIA 29 GeV PI- + PI+ production: $\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table1.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table1.yaml new file mode 100755 index 0000000000..9c0a0586e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table1.yaml @@ -0,0 +1,406 @@ +dependent_variables: +- header: {name: (1/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 7.2} + value: 88.4 + - errors: + - {symerror: 5.4} + value: 138.3 + - errors: + - {symerror: 6.6} + value: 149.5 + - errors: + - {symerror: 5.0} + value: 144.2 + - errors: + - {symerror: 4.1} + value: 130.9 + - errors: + - {symerror: 3.5} + value: 112.9 + - errors: + - {symerror: 3.2} + value: 104.6 + - errors: + - {symerror: 3.0} + value: 93.8 + - errors: + - {symerror: 2.7} + value: 83.8 + - errors: + - {symerror: 2.5} + value: 76.0 + - errors: + - {symerror: 2.6} + value: 68.2 + - errors: + - {symerror: 3.0} + value: 60.9 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 1.9} + value: 36.0 + - errors: + - {symerror: 1.5} + value: 29.9 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.51} + value: 12.48 + - errors: + - {symerror: 0.45} + value: 10.77 + - errors: + - {symerror: 0.36} + value: 7.95 + - errors: + - {symerror: 0.26} + value: 6.13 + - errors: + - {symerror: 0.14} + value: 4.09 + - errors: + - {symerror: 0.1} + value: 2.61 + - errors: + - {symerror: 0.071} + value: 1.581 + - errors: + - {symerror: 0.038} + value: 0.874 + - errors: + - {symerror: 0.022} + value: 0.37 + - errors: + - {symerror: 0.015} + value: 0.19 + - errors: + - {symerror: 0.007} + value: 0.0466 +- header: {name: (1/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.49} + value: 5.56 + - errors: + - {symerror: 0.56} + value: 7.21 + - errors: + - {symerror: 0.59} + value: 7.6 + - errors: + - {symerror: 1.2} + value: 9.3 + - errors: + - {symerror: 0.96} + value: 8.55 + - errors: + - {symerror: 0.65} + value: 8.73 + - errors: + - {symerror: 0.74} + value: 8.48 + - errors: + - {symerror: 1.3} + value: 9.2 + - errors: + - {symerror: 2.3} + value: 8.8 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 1.5} + value: 5.6 + - errors: + - {symerror: 0.92} + value: 6.32 + - errors: + - {symerror: 0.61} + value: 5.13 + - errors: + - {symerror: 0.49} + value: 5.13 + - errors: + - {symerror: 0.38} + value: 5.0 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.11} + value: 1.73 + - errors: + - {symerror: 0.073} + value: 1.161 + - errors: + - {symerror: 0.055} + value: 0.842 + - errors: + - {symerror: 0.03} + value: 0.47 + - errors: + - {symerror: 0.02} + value: 0.249 + - errors: + - {symerror: 0.012} + value: 0.09 + - errors: + - {symerror: 0.0048} + value: 0.0225 +- header: {name: (1/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.65} + value: 3.63 + - errors: + - {symerror: 0.46} + value: 3.46 + - errors: + - {symerror: 0.46} + value: 3.99 + - errors: + - {symerror: 0.41} + value: 3.64 + - errors: + - {symerror: 0.39} + value: 3.35 + - errors: + - {symerror: 0.39} + value: 3.32 + - errors: + - {symerror: 0.33} + value: 2.76 + - errors: + - {symerror: 0.48} + value: 4.0 + - errors: + - {symerror: 0.58} + value: 3.04 + - errors: + - {symerror: 1.2} + value: 3.9 + - errors: + - {symerror: 0.57} + value: 3.43 + - errors: + - {symerror: 0.33} + value: 3.06 + - errors: + - {symerror: 0.6} + value: 2.69 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.1} + value: 0.42 + - errors: + - {symerror: 0.062} + value: 0.313 + - errors: + - {symerror: 0.046} + value: 0.222 + - errors: + - {symerror: 0.022} + value: 0.12 + - errors: + - {symerror: 0.012} + value: 0.044 + - errors: + - {symerror: 0.008} + value: 0.0305 + - errors: + - {symerror: 0.0023} + value: 0.0064 +- header: {name: (1/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> CHGD-HADRONS X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 7.4} + value: 91.5 + - errors: + - {symerror: 5.6} + value: 144.8 + - errors: + - {symerror: 7.0} + value: 157.7 + - errors: + - {symerror: 5.2} + value: 153.4 + - errors: + - {symerror: 4.3} + value: 142.2 + - errors: + - {symerror: 3.8} + value: 124.1 + - errors: + - {symerror: 3.6} + value: 117.3 + - errors: + - {symerror: 3.3} + value: 106.4 + - errors: + - {symerror: 3.0} + value: 96.2 + - errors: + - {symerror: 2.7} + value: 87.8 + - errors: + - {symerror: 2.6} + value: 80.7 + - errors: + - {symerror: 2.4} + value: 72.5 + - errors: + - {symerror: 2.4} + value: 69.2 + - errors: + - {symerror: 2.2} + value: 60.0 + - errors: + - {symerror: 2.2} + value: 53.3 + - errors: + - {symerror: 1.8} + value: 49.2 + - errors: + - {symerror: 1.4} + value: 44.6 + - errors: + - {symerror: 1.3} + value: 39.0 + - errors: + - {symerror: 1.3} + value: 33.9 + - errors: + - {symerror: 1.1} + value: 29.4 + - errors: + - {symerror: 1.0} + value: 26.1 + - errors: + - {symerror: 0.82} + value: 22.11 + - errors: + - {symerror: 0.79} + value: 20.44 + - errors: + - {symerror: 0.58} + value: 17.0 + - errors: + - {symerror: 0.58} + value: 14.38 + - errors: + - {symerror: 0.44} + value: 11.31 + - errors: + - {symerror: 0.32} + value: 8.96 + - errors: + - {symerror: 0.18} + value: 6.24 + - errors: + - {symerror: 0.13} + value: 4.08 + - errors: + - {symerror: 0.093} + value: 2.644 + - errors: + - {symerror: 0.049} + value: 1.463 + - errors: + - {symerror: 0.029} + value: 0.663 + - errors: + - {symerror: 0.019} + value: 0.31 + - errors: + - {symerror: 0.0098} + value: 0.0755 +independent_variables: +- header: {name: Z(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.015, low: 0.01} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {high: 0.075, low: 0.07} + - {high: 0.08, low: 0.075} + - {high: 0.085, low: 0.08} + - {high: 0.09, low: 0.085} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {high: 0.12, low: 0.11} + - {high: 0.13, low: 0.12} + - {high: 0.14, low: 0.13} + - {high: 0.15, low: 0.14} + - {high: 0.16, low: 0.15} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.22, low: 0.2} + - {high: 0.25, low: 0.22} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} + - {high: 0.9, low: 0.7} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table2.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table2.yaml new file mode 100755 index 0000000000..7fa92a5c3f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table2.yaml @@ -0,0 +1,135 @@ +dependent_variables: +- header: {name: 1/(BETA*SIG(C=TOTAL))*D(SIG)/D(X)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 12.0} + value: 142.0 + - errors: + - {symerror: 7.1} + value: 180.9 + - errors: + - {symerror: 7.8} + value: 177.2 + - errors: + - {symerror: 5.6} + value: 162.1 + - errors: + - {symerror: 4.5} + value: 142.5 + - errors: + - {symerror: 3.7} + value: 120.4 + - errors: + - {symerror: 3.4} + value: 110.0 + - errors: + - {symerror: 3.1} + value: 97.7 + - errors: + - {symerror: 2.8} + value: 86.6 + - errors: + - {symerror: 2.6} + value: 78.1 + - errors: + - {symerror: 2.6} + value: 69.8 + - errors: + - {symerror: 3.0} + value: 62.2 + - {value: '-'} + - errors: + - {symerror: 1.9} + value: 36.4 + - errors: + - {symerror: 1.5} + value: 30.2 + - {value: '-'} + - errors: + - {symerror: 0.51} + value: 12.52 + - errors: + - {symerror: 0.45} + value: 10.79 + - errors: + - {symerror: 0.36} + value: 7.97 + - errors: + - {symerror: 0.26} + value: 6.14 + - errors: + - {symerror: 0.14} + value: 4.09 + - errors: + - {symerror: 0.1} + value: 2.61 + - errors: + - {symerror: 0.071} + value: 1.582 + - errors: + - {symerror: 0.038} + value: 0.875 + - errors: + - {symerror: 0.022} + value: 0.37 +independent_variables: +- header: {name: Z(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.015, low: 0.01} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {value: '-'} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {value: '-'} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.22, low: 0.2} + - {high: 0.25, low: 0.22} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} +- header: {name: X(DEF=2E(P=3)/SQRT(S))} + values: + - {value: 0.016} + - {value: 0.02} + - {value: 0.024} + - {value: 0.029} + - {value: 0.034} + - {value: 0.039} + - {value: 0.044} + - {value: 0.048} + - {value: 0.053} + - {value: 0.058} + - {value: 0.063} + - {value: 0.068} + - {value: '-'} + - {value: 0.095} + - {value: 0.105} + - {value: '-'} + - {value: 0.17} + - {value: 0.19} + - {value: 0.21} + - {value: 0.235} + - {value: 0.275} + - {value: 0.325} + - {value: 0.375} + - {value: 0.45} + - {value: 0.55} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table3.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table3.yaml new file mode 100755 index 0000000000..0070615990 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table3.yaml @@ -0,0 +1,115 @@ +dependent_variables: +- header: {name: 1/(BETA*SIG(C=TOTAL))*D(SIG)/D(X)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 1.2} + value: 14.1 + - errors: + - {symerror: 1.2} + value: 15.2 + - errors: + - {symerror: 1.1} + value: 13.9 + - errors: + - {symerror: 2.0} + value: 15.2 + - errors: + - {symerror: 1.5} + value: 13.0 + - errors: + - {symerror: 0.9} + value: 12.4 + - errors: + - {symerror: 1.0} + value: 11.5 + - errors: + - {symerror: 1.7} + value: 11.9 + - errors: + - {symerror: 2.8} + value: 11.1 + - {value: '-'} + - errors: + - {symerror: 1.7} + value: 6.3 + - errors: + - {symerror: 1.0} + value: 7.0 + - errors: + - {symerror: 0.67} + value: 5.58 + - errors: + - {symerror: 0.52} + value: 5.51 + - errors: + - {symerror: 0.41} + value: 5.32 + - {value: '-'} + - errors: + - {symerror: 0.11} + value: 1.76 + - errors: + - {symerror: 0.074} + value: 1.174 + - errors: + - {symerror: 0.055} + value: 0.849 + - errors: + - {symerror: 0.03} + value: 0.472 + - errors: + - {symerror: 0.02} + value: 0.25 +independent_variables: +- header: {name: Z(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {value: '-'} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {high: 0.12, low: 0.11} + - {high: 0.13, low: 0.12} + - {high: 0.14, low: 0.13} + - {value: '-'} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} +- header: {name: X(DEF=2E(P=3)/SQRT(S))} + values: + - {value: 0.044} + - {value: 0.047} + - {value: 0.051} + - {value: 0.054} + - {value: 0.058} + - {value: 0.063} + - {value: 0.067} + - {value: 0.071} + - {value: 0.076} + - {value: '-'} + - {value: 0.101} + - {value: 0.11} + - {value: 0.12} + - {value: 0.13} + - {value: 0.139} + - {value: '-'} + - {value: 0.277} + - {value: 0.327} + - {value: 0.377} + - {value: 0.451} + - {value: 0.551} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table4.yaml new file mode 100755 index 0000000000..33d7f85f4e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table4.yaml @@ -0,0 +1,112 @@ +dependent_variables: +- header: {name: 1/(BETA*SIG(C=TOTAL))*D(SIG)/D(X)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 2.6} + value: 14.5 + - errors: + - {symerror: 1.5} + value: 11.5 + - errors: + - {symerror: 1.3} + value: 11.4 + - errors: + - {symerror: 1.0} + value: 9.2 + - errors: + - {symerror: 0.89} + value: 7.6 + - errors: + - {symerror: 0.81} + value: 6.87 + - errors: + - {symerror: 0.63} + value: 5.3 + - errors: + - {symerror: 0.86} + value: 7.18 + - errors: + - {symerror: 0.98} + value: 5.15 + - errors: + - {symerror: 1.9} + value: 6.3 + - errors: + - {symerror: 0.88} + value: 5.31 + - errors: + - {symerror: 0.48} + value: 4.49 + - errors: + - {symerror: 0.83} + value: 3.72 + - {value: '-'} + - errors: + - {symerror: 0.11} + value: 0.45 + - errors: + - {symerror: 0.064} + value: 0.326 + - errors: + - {symerror: 0.047} + value: 0.229 + - errors: + - {symerror: 0.023} + value: 0.122 + - errors: + - {symerror: 0.012} + value: 0.045 + - errors: + - {symerror: 0.0081} + value: 0.0308 +independent_variables: +- header: {name: Z(DEF=P(P=3)/P(P=1))} + values: + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {high: 0.075, low: 0.07} + - {high: 0.08, low: 0.075} + - {high: 0.085, low: 0.08} + - {high: 0.09, low: 0.085} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {value: '-'} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} +- header: {name: X(DEF=2E(P=3)/SQRT(S))} + values: + - {value: 0.075} + - {value: 0.077} + - {value: 0.08} + - {value: 0.083} + - {value: 0.087} + - {value: 0.09} + - {value: 0.094} + - {value: 0.097} + - {value: 0.101} + - {value: 0.105} + - {value: 0.109} + - {value: 0.115} + - {value: 0.123} + - {value: '-'} + - {value: 0.283} + - {value: 0.331} + - {value: 0.381} + - {value: 0.455} + - {value: 0.554} + - {value: 0.653} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table5.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table5.yaml new file mode 100755 index 0000000000..034338722f --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table5.yaml @@ -0,0 +1,296 @@ +dependent_variables: +- header: {name: (Z/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - errors: + - {symerror: 0.091} + value: 1.118 + - errors: + - {symerror: 0.095} + value: 2.426 + - errors: + - {symerror: 0.15} + value: 3.36 + - errors: + - {symerror: 0.14} + value: 3.96 + - errors: + - {symerror: 0.13} + value: 4.25 + - errors: + - {symerror: 0.13} + value: 4.23 + - errors: + - {symerror: 0.14} + value: 4.44 + - errors: + - {symerror: 0.14} + value: 4.45 + - errors: + - {symerror: 0.14} + value: 4.4 + - errors: + - {symerror: 0.14} + value: 4.36 + - errors: + - {symerror: 0.16} + value: 4.26 + - errors: + - {symerror: 0.2} + value: 4.11 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.18} + value: 3.41 + - errors: + - {symerror: 0.16} + value: 3.14 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.086} + value: 2.12 + - errors: + - {symerror: 0.084} + value: 2.042 + - errors: + - {symerror: 0.076} + value: 1.666 + - errors: + - {symerror: 0.06} + value: 1.438 + - errors: + - {symerror: 0.039} + value: 1.115 + - errors: + - {symerror: 0.032} + value: 0.843 + - errors: + - {symerror: 0.026} + value: 0.588 + - errors: + - {symerror: 0.017} + value: 0.388 + - errors: + - {symerror: 0.012} + value: 0.2 + - errors: + - {symerror: 0.0097} + value: 0.1214 + - errors: + - {symerror: 0.0054} + value: 0.0359 +- header: {name: (Z/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (K+ + K-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.014} + value: 0.153 + - errors: + - {symerror: 0.018} + value: 0.234 + - errors: + - {symerror: 0.022} + value: 0.284 + - errors: + - {symerror: 0.051} + value: 0.393 + - errors: + - {symerror: 0.046} + value: 0.405 + - errors: + - {symerror: 0.034} + value: 0.458 + - errors: + - {symerror: 0.042} + value: 0.488 + - errors: + - {symerror: 0.084} + value: 0.574 + - errors: + - {symerror: 0.15} + value: 0.6 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.14} + value: 0.53 + - errors: + - {symerror: 0.097} + value: 0.663 + - errors: + - {symerror: 0.07} + value: 0.589 + - errors: + - {symerror: 0.061} + value: 0.6401 + - errors: + - {symerror: 0.052} + value: 0.674 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.029} + value: 0.473 + - errors: + - {symerror: 0.024} + value: 0.376 + - errors: + - {symerror: 0.02} + value: 0.313 + - errors: + - {symerror: 0.013} + value: 0.208 + - errors: + - {symerror: 0.011} + value: 0.135 + - errors: + - {symerror: 0.0075} + value: 0.0579 + - errors: + - {symerror: 0.0037} + value: 0.0173 +- header: {name: (Z/SIG(C=TOTAL))*D(SIG)/D(Z)} + qualifiers: + - {name: RE, value: E+ E- --> (P + PBAR) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SYS, value: Errors contain systematic errors added in quadrature. Statistical + errors dominate above Z} + values: + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.024} + value: 0.136 + - errors: + - {symerror: 0.02} + value: 0.147 + - errors: + - {symerror: 0.022} + value: 0.189 + - errors: + - {symerror: 0.022} + value: 0.191 + - errors: + - {symerror: 0.023} + value: 0.192 + - errors: + - {symerror: 0.024} + value: 0.207 + - errors: + - {symerror: 0.022} + value: 0.186 + - errors: + - {symerror: 0.035} + value: 0.289 + - errors: + - {symerror: 0.045} + value: 0.235 + - errors: + - {symerror: 0.098} + value: 0.321 + - errors: + - {symerror: 0.05} + value: 0.3 + - errors: + - {symerror: 0.031} + value: 0.29 + - errors: + - {symerror: 0.063} + value: 0.283 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.027} + value: 0.166 + - errors: + - {symerror: 0.02} + value: 0.101 + - errors: + - {symerror: 0.017} + value: 0.083 + - errors: + - {symerror: 0.0098} + value: 0.0531 + - errors: + - {symerror: 0.0064} + value: 0.024 + - errors: + - {symerror: 0.0051} + value: 0.0195 + - errors: + - {symerror: 0.0017} + value: 0.005 +independent_variables: +- header: {name: Z(DEF=P(P=1)/P(P=3))} + values: + - {high: 0.015, low: 0.01, value: 0.0126} + - {high: 0.02, low: 0.015} + - {high: 0.025, low: 0.02} + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035, value: 0.0374} + - {high: 0.045, low: 0.04, value: 0.0424} + - {high: 0.05, low: 0.045, value: 0.0474} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {high: 0.075, low: 0.07, value: 0.0724} + - {high: 0.08, low: 0.075} + - {high: 0.085, low: 0.08} + - {high: 0.09, low: 0.085} + - {high: 0.1, low: 0.09, value: 0.0948} + - {high: 0.11, low: 0.1, value: 0.1049} + - {high: 0.12, low: 0.11, value: 0.1149} + - {high: 0.13, low: 0.12, value: 0.1248} + - {high: 0.14, low: 0.13, value: 0.1349} + - {high: 0.15, low: 0.14, value: 0.1448} + - {high: 0.16, low: 0.15} + - {high: 0.18, low: 0.16, value: 0.1699} + - {high: 0.2, low: 0.18, value: 0.1896} + - {high: 0.22, low: 0.2, value: 0.2095} + - {high: 0.25, low: 0.22, value: 0.2346} + - {high: 0.3, low: 0.25, value: 0.2728} + - {high: 0.35, low: 0.3, value: 0.3236} + - {high: 0.4, low: 0.35, value: 0.3722} + - {high: 0.5, low: 0.4, value: 0.4438} + - {high: 0.6, low: 0.5, value: 0.542} + - {high: 0.7, low: 0.6, value: 0.6408} + - {high: 0.9, low: 0.7, value: 0.7701} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table6.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table6.yaml new file mode 100755 index 0000000000..939720fd59 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table6.yaml @@ -0,0 +1,251 @@ +dependent_variables: +- header: {name: SIG(Q=PI)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS X} + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - errors: + - {symerror: 0.66} + value: 90.95 + - errors: + - {symerror: 0.99} + value: 89.15 + - errors: + - {symerror: 0.9} + value: 88.21 + - errors: + - {symerror: 0.74} + value: 87.13 + - errors: + - {symerror: 0.89} + value: 86.52 + - errors: + - {symerror: 1.7} + value: 84.5 + - errors: + - {symerror: 3.1} + value: 84.0 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 3.5} + value: 80.7 + - errors: + - {symerror: 3.2} + value: 76.9 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 1.6} + value: 73.4 + - errors: + - {symerror: 1.9} + value: 74.8 + - errors: + - {symerror: 1.6} + value: 70.3 + - errors: + - {symerror: 1.6} + value: 68.4 + - errors: + - {symerror: 1.1} + value: 65.4 + - errors: + - {symerror: 1.3} + value: 63.9 + - errors: + - {symerror: 1.7} + value: 59.8 + - errors: + - {symerror: 1.5} + value: 59.7 + - errors: + - {symerror: 2.3} + value: 55.8 + - errors: + - {symerror: 3.2} + value: 61.0 +- header: {name: SIG(Q=K)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS X} + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - errors: + - {symerror: 0.45} + value: 6.12 + - errors: + - {symerror: 0.94} + value: 7.9 + - errors: + - {symerror: 0.84} + value: 8.04 + - errors: + - {symerror: 0.63} + value: 9.08 + - errors: + - {symerror: 0.8} + value: 9.66 + - errors: + - {symerror: 1.6} + value: 11.4 + - errors: + - {symerror: 3.1} + value: 12.2 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 3.3} + value: 12.4 + - errors: + - {symerror: 2.3} + value: 16.2 + - errors: + - {symerror: 1.7} + value: 15.1 + - errors: + - {symerror: 1.6} + value: 17.4 + - errors: + - {symerror: 1.3} + value: 19.1 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 1.6} + value: 27.8 + - errors: + - {symerror: 1.6} + value: 28.4 + - errors: + - {symerror: 1.8} + value: 31.8 + - errors: + - {symerror: 1.7} + value: 32.1 + - errors: + - {symerror: 2.5} + value: 37.5 + - errors: + - {symerror: 3.4} + value: 29.1 +- header: {name: SIG(Q=P)/SIG(Q=HAD)} + qualifiers: + - {name: RE(Q=HAD), value: E+ E- --> CHGD-HADRONS X} + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - errors: + - {symerror: 0.51} + value: 2.93 + - errors: + - {symerror: 0.38} + value: 2.95 + - errors: + - {symerror: 0.41} + value: 3.75 + - errors: + - {symerror: 0.41} + value: 3.79 + - errors: + - {symerror: 0.43} + value: 3.82 + - errors: + - {symerror: 0.47} + value: 4.11 + - errors: + - {symerror: 0.44} + value: 3.81 + - errors: + - {symerror: 0.66} + value: 5.77 + - errors: + - {symerror: 0.92} + value: 5.06 + - errors: + - {symerror: 2.1} + value: 7.3 + - errors: + - {symerror: 1.1} + value: 7.0 + - errors: + - {symerror: 0.7} + value: 6.86 + - errors: + - {symerror: 1.5} + value: 6.9 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 1.6} + value: 6.8 + - errors: + - {symerror: 1.5} + value: 7.7 + - errors: + - {symerror: 1.7} + value: 8.4 + - errors: + - {symerror: 1.5} + value: 8.2 + - errors: + - {symerror: 1.8} + value: 6.7 + - errors: + - {symerror: 2.5} + value: 9.8 +independent_variables: +- header: {name: Z(DEF=P(P=1)/P(P=3))} + values: + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {high: 0.075, low: 0.07} + - {high: 0.08, low: 0.075} + - {high: 0.085, low: 0.08} + - {high: 0.09, low: 0.085} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {high: 0.12, low: 0.11} + - {high: 0.13, low: 0.12} + - {high: 0.14, low: 0.13} + - {value: '-'} + - {high: 0.18, low: 0.16} + - {high: 0.2, low: 0.18} + - {high: 0.22, low: 0.2} + - {high: 0.25, low: 0.22} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table7.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table7.yaml new file mode 100755 index 0000000000..6c5f4cbc8e --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/Table7.yaml @@ -0,0 +1,218 @@ +dependent_variables: +- header: {name: SIG(Q=K)/SIG(Q=PI)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - errors: + - {symerror: 0.0035} + value: 0.0386 + - errors: + - {symerror: 0.0043} + value: 0.0551 + - errors: + - {symerror: 0.0053} + value: 0.0673 + - errors: + - {symerror: 0.012} + value: 0.089 + - errors: + - {symerror: 0.01} + value: 0.091 + - errors: + - {symerror: 0.008} + value: 0.1042 + - errors: + - {symerror: 0.01} + value: 0.112 + - errors: + - {symerror: 0.022} + value: 0.135 + - errors: + - {symerror: 0.042} + value: 0.145 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.047} + value: 0.154 + - errors: + - {symerror: 0.038} + value: 0.211 + - {value: '-'} + - errors: + - {symerror: 0.027} + value: 0.424 + - errors: + - {symerror: 0.03} + value: 0.446 + - errors: + - {symerror: 0.04} + value: 0.532 + - errors: + - {symerror: 0.039} + value: 0.537 + - errors: + - {symerror: 0.067} + value: 0.673 + - errors: + - {symerror: 0.075} + value: 0.477 +- header: {name: SIG(Q=P)/SIG(Q=PI)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.0058} + value: 0.0322 + - errors: + - {symerror: 0.0044} + value: 0.0331 + - errors: + - {symerror: 0.0049} + value: 0.0426 + - errors: + - {symerror: 0.005} + value: 0.0434 + - errors: + - {symerror: 0.0052} + value: 0.0441 + - errors: + - {symerror: 0.0059} + value: 0.0486 + - errors: + - {symerror: 0.0056} + value: 0.0453 + - errors: + - {symerror: 0.0074} + value: 0.0612 + - errors: + - {symerror: 0.01} + value: 0.053 + - errors: + - {symerror: 0.024} + value: 0.079 + - errors: + - {symerror: 0.012} + value: 0.075 + - errors: + - {symerror: 0.011} + value: 0.085 + - errors: + - {symerror: 0.023} + value: 0.09 + - {value: '-'} + - errors: + - {symerror: 0.025} + value: 0.104 + - errors: + - {symerror: 0.024} + value: 0.12 + - errors: + - {symerror: 0.03} + value: 0.14 + - errors: + - {symerror: 0.026} + value: 0.137 + - errors: + - {symerror: 0.033} + value: 0.12 + - errors: + - {symerror: 0.044} + value: 0.161 +- header: {name: SIG(Q=P)/SIG(Q=PI + K)} + qualifiers: + - {name: RE(Q=K), value: E+ E- --> (K+ + K-) X} + - {name: RE(Q=P), value: E+ E- --> (P + PBAR) X} + - {name: RE(Q=PI), value: E+ E- --> (PI+ + PI-) X} + - {name: SQRT(S), units: GeV, value: '29.0'} + - {name: SQRT(S), units: GeV, value: '29.0'} + values: + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.0054} + value: 0.0302 + - errors: + - {symerror: 0.004} + value: 0.0304 + - errors: + - {symerror: 0.0044} + value: 0.039 + - errors: + - {symerror: 0.0045} + value: 0.0393 + - errors: + - {symerror: 0.0046} + value: 0.0397 + - errors: + - {symerror: 0.0051} + value: 0.0429 + - errors: + - {symerror: 0.0047} + value: 0.0396 + - {value: '-'} + - {value: '-'} + - {value: '-'} + - {value: '-'} + - errors: + - {symerror: 0.0081} + value: 0.0736 + - errors: + - {symerror: 0.018} + value: 0.074 + - {value: '-'} + - errors: + - {symerror: 0.018} + value: 0.073 + - errors: + - {symerror: 0.018} + value: 0.083 + - errors: + - {symerror: 0.02} + value: 0.092 + - errors: + - {symerror: 0.018} + value: 0.089 + - errors: + - {symerror: 0.02} + value: 0.072 + - errors: + - {symerror: 0.031} + value: 0.109 +independent_variables: +- header: {name: Z(DEF=P(P=1)/P(P=3))} + values: + - {high: 0.03, low: 0.025} + - {high: 0.035, low: 0.03} + - {high: 0.04, low: 0.035} + - {high: 0.045, low: 0.04} + - {high: 0.05, low: 0.045} + - {high: 0.055, low: 0.05} + - {high: 0.06, low: 0.055} + - {high: 0.065, low: 0.06} + - {high: 0.07, low: 0.065} + - {high: 0.075, low: 0.07} + - {high: 0.08, low: 0.075} + - {high: 0.085, low: 0.08} + - {high: 0.09, low: 0.085} + - {high: 0.1, low: 0.09} + - {high: 0.11, low: 0.1} + - {value: '-'} + - {high: 0.3, low: 0.25} + - {high: 0.35, low: 0.3} + - {high: 0.4, low: 0.35} + - {high: 0.5, low: 0.4} + - {high: 0.6, low: 0.5} + - {high: 0.7, low: 0.6} diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/submission.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/submission.yaml new file mode 100755 index 0000000000..ac3c32b3e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/rawdata/submission.yaml @@ -0,0 +1,125 @@ +--- +comment: | + SLAC-PEP. TPC/2 GAMMA Collaboration. Measurement of the charged hadron inclusive cross sections and fractions in E+ E- annihilation at sqrt(s) = 29 GeV. Numerical values are from the thesis of D.Cowan. +dateupdated: 30/09/1988 00:00:00 +modifications: +- {action: Encoded, date: 30 SEP 1988, who: Mike Whalley} +record_ids: +- {id: 262143, type: inspire} +- {id: 1495, type: red} + +--- +data_file: Table1.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> CHGD-HADRONS X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR + X, E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [29.0] +location: Data from T 6.1(C=THES) +name: Table 1 + +--- +data_file: Table2.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PI- X, E+ E- --> PI+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [29.0] +location: Data from T 6.2(C=THES), F 3(C=JOUR) +name: Table 2 + +--- +data_file: Table3.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [29.0] +location: Data from T 6.2(C=THES), F 3(C=JOUR) +name: Table 3 + +--- +data_file: Table4.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> PBAR X, E+ E- --> P X] +- name: observables + values: [DSIG/DX] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering] +- name: cmenergies + values: [29.0] +location: Data from T 6.2(C=THES), F 3(C=JOUR) +name: Table 4 + +--- +data_file: Table5.yaml +description: | + Mean Z is mean for all particle types combined. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> PI- X, E+ E- + --> PI+ X, E+ E- --> P X] +- name: observables + values: [DSIG/DZ] +- name: phrases + values: [Inclusive, Single Differential Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [29.0] +location: Data from T 6.4(C=THES) +name: Table 5 + +--- +data_file: Table6.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> CHGD-HADRONS X, E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR + X, E+ E- --> PI- X, E+ E- --> PI+ X, E+ E- --> P X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [29.0] +location: Data from T 6.5(C=THES),F 4(C=JOUR) +name: Table 6 + +--- +data_file: Table7.yaml +description: No description provided. +keywords: +- name: reactions + values: [E+ E- --> K- X, E+ E- --> K+ X, E+ E- --> PBAR X, E+ E- --> PI- X, E+ E- + --> PI+ X, E+ E- --> P X] +- name: observables + values: [SIG] +- name: phrases + values: [Inclusive, Integrated Cross Section, Cross Section, E+ E- Scattering, Strange + production] +- name: cmenergies + values: [29.0] +location: Data from T 6.6(C=THES) +name: Table 7 + diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/uncertainties.yaml new file mode 100644 index 0000000000..2b0f5a269a --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PI_29GEV_EE-PISUM/uncertainties.yaml @@ -0,0 +1,31 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 7.2 +- error: 5.4 +- error: 6.6 +- error: 5.0 +- error: 4.1 +- error: 3.5 +- error: 3.2 +- error: 3.0 +- error: 2.7 +- error: 2.5 +- error: 2.6 +- error: 3.0 +- error: 1.9 +- error: 1.5 +- error: 0.51 +- error: 0.45 +- error: 0.36 +- error: 0.26 +- error: 0.14 +- error: 0.1 +- error: 0.071 +- error: 0.038 +- error: 0.022 +- error: 0.015 +- error: 0.007 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/data.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/data.yaml new file mode 100644 index 0000000000..d71336c717 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/data.yaml @@ -0,0 +1,21 @@ +data_central: +- 3.63 +- 3.46 +- 3.99 +- 3.64 +- 3.35 +- 3.32 +- 2.76 +- 4.0 +- 3.04 +- 3.9 +- 3.43 +- 3.06 +- 2.69 +- 0.42 +- 0.313 +- 0.222 +- 0.12 +- 0.044 +- 0.0305 +- 0.0064 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter.py new file mode 100644 index 0000000000..126d22f610 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter.py @@ -0,0 +1,15 @@ +from filter_core import magic +import yaml + +table_1 = "rawdata/Table1.yaml" +ndat = 20 +var_name = 'z' + +data, kin, err = magic(table_1, ndat, var_name, 2) + +with open('data.yaml', 'w') as f: + yaml.dump(data, f, sort_keys=False) +with open('kinematics.yaml', 'w') as f: + yaml.dump(kin, f, sort_keys=False) +with open('uncertainties.yaml', 'w') as f: + yaml.dump(err, f, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter_core.py b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter_core.py new file mode 120000 index 0000000000..bb5d5417b2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/filter_core.py @@ -0,0 +1 @@ +../TPC_SIA-PI_29GEV_EE-PISUM/filter_core.py \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/kinematics.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/kinematics.yaml new file mode 100644 index 0000000000..935da555dd --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/kinematics.yaml @@ -0,0 +1,81 @@ +bins: +- z: + min: 0.035 + mid: null + max: 0.04 +- z: + min: 0.04 + mid: null + max: 0.045 +- z: + min: 0.045 + mid: null + max: 0.05 +- z: + min: 0.05 + mid: null + max: 0.055 +- z: + min: 0.055 + mid: null + max: 0.06 +- z: + min: 0.06 + mid: null + max: 0.065 +- z: + min: 0.065 + mid: null + max: 0.07 +- z: + min: 0.07 + mid: null + max: 0.075 +- z: + min: 0.075 + mid: null + max: 0.08 +- z: + min: 0.08 + mid: null + max: 0.085 +- z: + min: 0.085 + mid: null + max: 0.09 +- z: + min: 0.09 + mid: null + max: 0.1 +- z: + min: 0.1 + mid: null + max: 0.11 +- z: + min: 0.25 + mid: null + max: 0.3 +- z: + min: 0.3 + mid: null + max: 0.35 +- z: + min: 0.35 + mid: null + max: 0.4 +- z: + min: 0.4 + mid: null + max: 0.5 +- z: + min: 0.5 + mid: null + max: 0.6 +- z: + min: 0.6 + mid: null + max: 0.7 +- z: + min: 0.7 + mid: null + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/metadata.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/metadata.yaml new file mode 100644 index 0000000000..05fe5c8d73 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/metadata.yaml @@ -0,0 +1,41 @@ +setname: 'TPC_SIA-PRO_29GEV_EE-PROSUM' + +nnpdf_metadata: + nnpdf31_process: "SIA-PRO" + experiment: "TPC" + +arXiv: + url: "N/A" +iNSPIRE: + url: "https://inspirehep.net/literature/262143" +hepdata: + url: "https://www.hepdata.net/record/ins262143" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + +- observable: {description: "normalized differential x-sec wrt z", label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$', units: '$$'} + observable_name: Z + process_type: SIA_Z + ndata: 20 + tables: [1] + kinematics: + variables: + z: {description: "fractional hadron momentum", label: '$z$', units: ''} + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [z] + plotting: + dataset_label: 'TPC SIA 29 GeV P + PBAR production: $\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + x_scale: linear + plot_x: z + y_label: '$\frac{1}{\beta\sigma_{tot}}\frac{d\sigma}{dz}$' + # theory: + # FK_tables: + # - - + # operation: 'null' diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/rawdata b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/rawdata new file mode 120000 index 0000000000..50e4d0378d --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/rawdata @@ -0,0 +1 @@ +../TPC_SIA-PI_29GEV_EE-PISUM/rawdata/ \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/uncertainties.yaml b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/uncertainties.yaml new file mode 100644 index 0000000000..49107ed7d8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/commondata/TPC_SIA-PRO_29GEV_EE-PROSUM/uncertainties.yaml @@ -0,0 +1,26 @@ +definitions: + error: + definition: all uncertainties added in quadrature + treatment: ADD + type: UNCORR +bins: +- error: 0.65 +- error: 0.46 +- error: 0.46 +- error: 0.41 +- error: 0.39 +- error: 0.39 +- error: 0.33 +- error: 0.48 +- error: 0.58 +- error: 1.2 +- error: 0.57 +- error: 0.33 +- error: 0.6 +- error: 0.1 +- error: 0.062 +- error: 0.046 +- error: 0.022 +- error: 0.012 +- error: 0.008 +- error: 0.0023 diff --git a/nnpdf_data/nnpdf_data/process_options.py b/nnpdf_data/nnpdf_data/process_options.py index 73e3dba6fe..caef357eff 100644 --- a/nnpdf_data/nnpdf_data/process_options.py +++ b/nnpdf_data/nnpdf_data/process_options.py @@ -45,6 +45,12 @@ class _Vars: m_ll = "m_ll" m_ll2 = "m_ll2" abs_y = "abs_y" + # SIA Variables + sia_particle = "sia_particle" + xp = "xp" + z = "z" + ph = "ph" + xi = "xi" class _KinematicsInformation: @@ -65,6 +71,10 @@ def __init__(self, kin_df, metadata): if "sqrts" not in kin_cov: kins[_Vars.sqrts] = metadata.cm_energy + # needed to use correct hadron masses without function duplication + if metadata.process.startswith("SIA-"): + kins[_Vars.sia_particle] = metadata.process + self._kins = kins self._variables = list(kins.keys()) @@ -331,6 +341,70 @@ def _dymll_xq2map(kin_info): return x, m_ll2 +def _sia_z_zq2map(kin_info): + z = kin_info[_Vars.z] + q2 = kin_info[_Vars.sqrts] ** 2 + + return z, q2 + + +def _sia_xp_zq2map(kin_info): + xp = kin_info[_Vars.xp] + q2 = kin_info[_Vars.sqrts] ** 2 + particle = kin_info[_Vars.sia_particle] + + if particle == "SIA-PI": + mass_h = 0.13957 + elif particle == "SIA-KA": + mass_h = 0.49367 + elif particle == "SIA-PRO": + mass_h = 0.93827 + else: + raise ValueError(f"Unknown particle for SIA process") + + z = xp * np.sqrt(1 + (4 * mass_h**2) / (xp**2 * q2)) + + return z, q2 + + +def _sia_ph_zq2map(kin_info): + ph = kin_info[_Vars.ph] + q2 = kin_info[_Vars.sqrts] ** 2 + particle = kin_info[_Vars.sia_particle] + + if particle == "SIA-PI": + mass_h = 0.13957 + elif particle == "SIA-KA": + mass_h = 0.49367 + elif particle == "SIA-PRO": + mass_h = 0.93827 + else: + raise ValueError(f"Unknown particle for SIA process") + + z = 2 * np.sqrt((ph**2 + mass_h**2) / q2) + + return z, q2 + + +def _sia_xi_zq2map(kin_info): + xi = kin_info[_Vars.xi] + q2 = kin_info[_Vars.sqrts] ** 2 + particle = kin_info[_Vars.sia_particle] + + if particle == "SIA-PI": + mass_h = 0.13957 + elif particle == "SIA-KA": + mass_h = 0.49367 + elif particle == "SIA-PRO": + mass_h = 0.93827 + else: + raise ValueError(f"Unknown particle for SIA process") + + z = np.exp(-xi) * np.sqrt(1 + 4 * np.exp(2 * xi) * (mass_h**2) / (q2)) + + return z, q2 + + DIS = _Process( "DIS", "Deep Inelastic Scattering", @@ -480,7 +554,6 @@ def _dymll_xq2map(kin_info): xq2map_function=_dybosonptrap_xq2map, ) - POS_XPDF = _Process("POS_XPDF", "Positivity of MS bar PDFs", accepted_variables=(_Vars.x, _Vars.Q2)) POS_DIS = _Process( @@ -507,6 +580,30 @@ def _dymll_xq2map(kin_info): xq2map_function=_singletop_xq2map, ) +SIA_Z = _Process( + "SIA_Z", "SIA - z", accepted_variables=(_Vars.z, _Vars.sqrts), xq2map_function=_sia_z_zq2map +) + +SIA_XP = _Process( + "SIA_XP", + "SIA - xp", + accepted_variables=(_Vars.xp, _Vars.sqrts, _Vars.sia_particle), + xq2map_function=_sia_xp_zq2map, +) + +SIA_PH = _Process( + "SIA_PH", + "SIA - ph", + accepted_variables=(_Vars.ph, _Vars.sqrts, _Vars.sia_particle), + xq2map_function=_sia_ph_zq2map, +) + +SIA_XI = _Process( + "SIA_XI", + "SIA - xi", + accepted_variables=(_Vars.xi, _Vars.sqrts, _Vars.sia_particle), + xq2map_function=_sia_xi_zq2map, +) PROCESSES = { "DIS": DIS, @@ -547,6 +644,10 @@ def _dymll_xq2map(kin_info): "INTEG": dataclasses.replace(POS_DIS, name="INTEG", description="Integrability dataset"), "PHT": PHT, "SINGLETOP": SINGLETOP, + "SIA_Z": SIA_Z, + "SIA_XP": SIA_XP, + "SIA_PH": SIA_PH, + "SIA_XI": SIA_XI, }