diff --git a/nnpdf_data/nnpdf_data/filter_utils/correlations.py b/nnpdf_data/nnpdf_data/filter_utils/correlations.py new file mode 100644 index 0000000000..c9c1cdc07b --- /dev/null +++ b/nnpdf_data/nnpdf_data/filter_utils/correlations.py @@ -0,0 +1,90 @@ +import numpy as np +from numpy.linalg import eig + + +def upper_triangular_to_symmetric(ut, dim): + """Build a symmetric matrix from the upper diagonal""" + corr = np.zeros((dim, dim)) + last = dim + first = 0 + for i in range(dim): + corr[i, i:] = ut[first:last] + last += dim - i - 1 + first += dim - i + return corr + + +def compute_covmat(corrmat: np.ndarray, unc: np.ndarray, ndata: int) -> list: + """Compute the covariance matrix with the artificial stat uncertainties.""" + # multiply by stat err + cov_mat = np.einsum("i,ij,j->ij", unc, corrmat, unc) + return covmat_to_artunc(ndata, cov_mat.flatten().tolist()) + + +def covmat_to_artunc(ndata, covmat_list, no_of_norm_mat=0): + r"""Convert the covariance matrix to a matrix of + artificial uncertainties. + + NOTE: This function has been taken from validphys.newcommondata_utils. + If those utils get merged in the future, we can replace this. + + Parameters + ---------- + ndata : integer + Number of data points + covmat_list : list + A one dimensional list which contains the elements of + the covariance matrix row by row. Since experimental + datasets provide these matrices in a list form, this + simplifies the implementation for the user. + no_of_norm_mat : int + Normalized covariance matrices may have an eigenvalue + of 0 due to the last data point not being linearly + independent. To allow for this, the user should input + the number of normalized matrices that are being treated + in an instance. For example, if a single covariance matrix + of a normalized distribution is being processed, the input + would be 1. If a covariance matrix contains pertains to + 3 normalized datasets (i.e. cross covmat for 3 + distributions), the input would be 3. The default value is + 0 for when the covariance matrix pertains to an absolute + distribution. + + Returns + ------- + artunc : list + A two dimensional matrix (given as a list of lists) + which contains artificial uncertainties to be added + to the commondata. i^th row (or list) contains the + artificial uncertainties of the i^th data point. + + """ + epsilon = -0.0000000001 + neg_eval_count = 0 + psd_check = True + covmat = np.zeros((ndata, ndata)) + artunc = np.zeros((ndata, ndata)) + for i in range(len(covmat_list)): + a = i // ndata + b = i % ndata + covmat[a][b] = covmat_list[i] + eigval, eigvec = eig(covmat) + for j in range(len(eigval)): + if eigval[j] < epsilon: + psd_check = False + elif eigval[j] > epsilon and eigval[j] <= 0: + neg_eval_count = neg_eval_count + 1 + if neg_eval_count == (no_of_norm_mat + 1): + psd_check = False + elif eigval[j] > 0: + continue + if psd_check == False: + raise ValueError("The covariance matrix is not positive-semidefinite") + else: + for i in range(ndata): + for j in range(ndata): + if eigval[j] < 0: + continue + else: + artunc[i][j] = eigvec[i][j] * np.sqrt(eigval[j]) + return artunc.tolist() diff --git a/nnpdf_data/nnpdf_data/filter_utils/uncertainties.py b/nnpdf_data/nnpdf_data/filter_utils/uncertainties.py new file mode 100644 index 0000000000..8d2a923dd8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/filter_utils/uncertainties.py @@ -0,0 +1,27 @@ + +import numpy as np + +def symmetrize_errors(delta_plus, delta_minus): + r"""Compute the symmetrized uncertainty and the shift in data point. + + Parameters + ---------- + delta_plus : float + The top/plus uncertainty with sign + delta_minus : float + The bottom/minus uncertainty with sign + + Returns + ------- + se_delta : float + The value to be added to the data point + se_sigma : float + The symmetrized uncertainty to be used in commondata + + """ + semi_diff = (delta_plus + delta_minus) / 2 + average = (delta_plus - delta_minus) / 2 + se_delta = semi_diff + se_sigma = np.sqrt(average * average + 2 * semi_diff * semi_diff) + return se_delta, se_sigma + diff --git a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/filter.py b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/filter.py index 38e3209d55..8ffa9f2f16 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_ED/filter.py @@ -9,8 +9,7 @@ HERE = pathlib.Path(__file__).parent sys.path = [str(HERE.parent / "HERMES_NC_7GEV_EP")] + sys.path -from filter import compute_covmat - +from nnpdf_data.filter_utils.correlations import compute_covmat def read_data(fnames): df = pd.DataFrame() @@ -81,11 +80,9 @@ def write_data(df): # Extract the correlation matrix and compute artificial systematics ndata_points = len(data_central) corrmatrix = read_corrmatrix(nb_datapoints=ndata_points) - # Compute the covariance matrix - compute_covmat(corrmatrix, df, ndata_points) # Compute the covariance matrix - art_sys = compute_covmat(corrmatrix, df, ndata_points) + art_sys = compute_covmat(corrmatrix, df['stat'], ndata_points) error = [] for i in range(ndata_points): diff --git a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/filter.py index 7b4613de30..055db9276e 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/HERMES_NC_7GEV_EP/filter.py @@ -2,10 +2,10 @@ import pathlib import numpy as np -from numpy.linalg import eig import pandas as pd import yaml +from nnpdf_data.filter_utils.correlations import compute_covmat def read_data(fnames): df = pd.DataFrame() @@ -49,84 +49,6 @@ def read_corrmatrix(nb_datapoints: int = 15) -> np.ndarray: return df_corrs.value.values.reshape((nb_datapoints, nb_datapoints)) - -def covmat_to_artunc(ndata, covmat_list, no_of_norm_mat=0): - r"""Convert the covariance matrix to a matrix of - artificial uncertainties. - - NOTE: This function has been taken from validphys.newcommondata_utils. - If those utils get merged in the future, we can replace this. - - Parameters - ---------- - ndata : integer - Number of data points - covmat_list : list - A one dimensional list which contains the elements of - the covariance matrix row by row. Since experimental - datasets provide these matrices in a list form, this - simplifies the implementation for the user. - no_of_norm_mat : int - Normalized covariance matrices may have an eigenvalue - of 0 due to the last data point not being linearly - independent. To allow for this, the user should input - the number of normalized matrices that are being treated - in an instance. For example, if a single covariance matrix - of a normalized distribution is being processed, the input - would be 1. If a covariance matrix contains pertains to - 3 normalized datasets (i.e. cross covmat for 3 - distributions), the input would be 3. The default value is - 0 for when the covariance matrix pertains to an absolute - distribution. - - Returns - ------- - artunc : list - A two dimensional matrix (given as a list of lists) - which contains artificial uncertainties to be added - to the commondata. i^th row (or list) contains the - artificial uncertainties of the i^th data point. - - """ - epsilon = -0.0000000001 - neg_eval_count = 0 - psd_check = True - covmat = np.zeros((ndata, ndata)) - artunc = np.zeros((ndata, ndata)) - for i in range(len(covmat_list)): - a = i // ndata - b = i % ndata - covmat[a][b] = covmat_list[i] - eigval, eigvec = eig(covmat) - for j in range(len(eigval)): - if eigval[j] < epsilon: - psd_check = False - elif eigval[j] > epsilon and eigval[j] <= 0: - neg_eval_count = neg_eval_count + 1 - if neg_eval_count == (no_of_norm_mat + 1): - psd_check = False - elif eigval[j] > 0: - continue - if psd_check == False: - raise ValueError('The covariance matrix is not positive-semidefinite') - else: - for i in range(ndata): - for j in range(ndata): - if eigval[j] < 0: - continue - else: - artunc[i][j] = eigvec[i][j] * np.sqrt(eigval[j]) - return artunc.tolist() - - -def compute_covmat(corrmat: np.ndarray, df: pd.DataFrame, ndata: int) -> list: - """Compute the covariance matrix with the artificial stat uncertanties.""" - # multiply by stat err - stat = df["stat"] - cov_mat = np.einsum("i,ij,j->ij", stat, corrmat, stat) - return covmat_to_artunc(ndata, cov_mat.flatten().tolist()) - - def write_data(df): data_central = [] for i in range(len(df["G"])): @@ -153,11 +75,9 @@ def write_data(df): # Extract the correlation matrix and compute artificial systematics ndata_points = len(data_central) corrmatrix = read_corrmatrix(nb_datapoints=ndata_points) - # Compute the covariance matrix - compute_covmat(corrmatrix, df, ndata_points) # Compute the covariance matrix - art_sys = compute_covmat(corrmatrix, df, ndata_points) + art_sys = compute_covmat(corrmatrix, df['stat'], ndata_points) error = [] for i in range(ndata_points): diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/data.yaml new file mode 100644 index 0000000000..cd826a98f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/data.yaml @@ -0,0 +1,7 @@ +data_central: +- -0.0014 +- -0.0005 +- 0.0058 +- 0.0034 +- 0.0077 +- -0.0181 diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/filter.py new file mode 100644 index 0000000000..2ab7f0a26d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/filter.py @@ -0,0 +1,101 @@ +import pandas as pd +import yaml + +POL_UNC = 0.094 + + +def read_data(): + df = pd.DataFrame() + + with open("rawdata/Table4.yaml", "r") as file: + data = yaml.safe_load(file) + + pTbsub = data["independent_variables"][0]["values"] + pTsub = data["dependent_variables"][0]["values"] + ALLsub = data["dependent_variables"][1]["values"] + + for i in range(len(ALLsub)): + df = pd.concat( + [ + df, + pd.DataFrame( + { + "pT": [pTsub[i]["value"]], + "pTmin": [pTbsub[i]["low"]], + "pTmax": [pTbsub[i]["high"]], + "eta": [0.0], + "eta_min": [-0.35], + "eta_max": [0.35], + "sqrts": [200], + "ALL": [ALLsub[i]["value"]], + "stat": [ALLsub[i]["errors"][0]["symerror"]], + } + ), + ], + ignore_index=True, + ) + + df["pol"] = POL_UNC * abs(df["ALL"]) + return df + + +def write_data(df): + data_central = [] + for i in range(len(df["ALL"])): + data_central.append(float(df.loc[i, "ALL"])) + + data_central_yaml = {"data_central": data_central} + with open("data.yaml", "w") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + # Write kin file + kin = [] + for i in range(len(df["ALL"])): + kin_value = { + "pT": { + "min": float(df.loc[i, "pTmin"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pTmax"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": float(df.loc[i, "eta_min"]), + "mid": float(df.loc[i, "eta"]), + "max": float(df.loc[i, "eta_max"]), + }, + } + kin.append(kin_value) + + kinematics_yaml = {"bins": kin} + + with open("kinematics.yaml", "w") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(len(df)): + e = {"stat": float(df.loc[i, "stat"]), "pol": float(df.loc[i, "pol"])} + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": "RHIC2005POL", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open("uncertainties.yaml", "w") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + df = read_data() + write_data(df) diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/kinematics.yaml new file mode 100644 index 0000000000..c66d84ce98 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/kinematics.yaml @@ -0,0 +1,73 @@ +bins: +- pT: + min: 4.0 + mid: 4.4 + max: 5.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 +- pT: + min: 5.0 + mid: 5.4 + max: 6.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 +- pT: + min: 6.0 + mid: 6.4 + max: 7.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 +- pT: + min: 7.0 + mid: 7.4 + max: 8.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 +- pT: + min: 8.0 + mid: 8.8 + max: 10.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 +- pT: + min: 10.0 + mid: 10.8 + max: 12.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.35 + mid: 0.0 + max: 0.35 diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..e1d7611cc0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/metadata.yaml @@ -0,0 +1,55 @@ +setname: "PHENIX_1JET_200GEV" + +nnpdf_metadata: + experiment: "PHENIX" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/1009.4921 +iNSPIRE: + url: "https://inspirehep.net/literature/870912" +hepdata: + url: "https://www.hepdata.net/record/ins870912" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "ALL w.r.t. pT", label: "$A_{LL}$", units: "" } + observable_name: ALL + process_type: JET_POL + ndata: 6 + tables: [4] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - PHENIX_1JET_200GEV_ALL-POL + - - PHENIX_1JET_200GEV_ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Figure18.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Figure18.yaml new file mode 100644 index 0000000000..acc552a160 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Figure18.yaml @@ -0,0 +1,50 @@ +# This table is not correct presumably, as it contains two additional bins not shown in the figure +# and the stat error does not match with Table4 and Figure 18 of the paper. +independent_variables: +- header: {name: '$p^{reco}_T$ Bins (GeV/$c$)'} + values: + - {low: 2, high: 3} + - {low: 3, high: 4} + - {low: 4, high: 5} + - {low: 5, high: 6} + - {low: 6, high: 7} + - {low: 7, high: 8} + - {low: 8, high: 10} + - {low: 10, high: 12} +dependent_variables: +- header: {name: '$$ (GeV/$c$)'} + values: + - value: 2.4 + - value: 3.4 + - value: 4.4 + - value: 5.4 + - value: 6.4 + - value: 7.4 + - value: 8.8 + - value: 10.8 +- header: {name: 'Jet $A_{LL}$'} + values: + - value: -0.0007 + errors: + - {symerror: 7.7e-5, label: 'stat.'} + - value: 0.0039 + errors: + - {symerror: 8.2e-4, label: 'stat.'} + - value: -0.0014 + errors: + - {symerror: 5.2e-4, label: 'stat.'} + - value: -0.0005 + errors: + - {symerror: 3.0e-4, label: 'stat.'} + - value: 0.0058 + errors: + - {symerror: 5.2e-3, label: 'stat.'} + - value: 0.0034 + errors: + - {symerror: 4.5e-3, label: 'stat.'} + - value: 0.0077 + errors: + - {symerror: 1.2e-2, label: 'stat.'} + - value: -0.0181 + errors: + - {symerror: 5.1e-2, label: 'stat.'} diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Table4.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Table4.yaml new file mode 100644 index 0000000000..2742edb4e7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/rawdata/Table4.yaml @@ -0,0 +1,39 @@ +independent_variables: +# Manually copied from the paper +- header: {name: '$p^{reco}_T$ Bins (GeV/$c$)'} + values: + - {low: 4, high: 5} + - {low: 5, high: 6} + - {low: 6, high: 7} + - {low: 7, high: 8} + - {low: 8, high: 10} + - {low: 10, high: 12} +dependent_variables: +- header: {name: '$$ (GeV/$c$)'} + values: + - value: 4.4 + - value: 5.4 + - value: 6.4 + - value: 7.4 + - value: 8.8 + - value: 10.8 +- header: {name: 'Jet $A_{LL}$'} + values: + - value: -0.0014 + errors: + - {symerror: 0.0037, label: 'stat.'} + - value: -0.0005 + errors: + - {symerror: 0.0059, label: 'stat.'} + - value: 0.0058 + errors: + - {symerror: 0.0089, label: 'stat.'} + - value: 0.0034 + errors: + - {symerror: 0.0132, label: 'stat.'} + - value: 0.0077 + errors: + - {symerror: 0.0152, label: 'stat.'} + - value: -0.0181 + errors: + - {symerror: 0.0282, label: 'stat.'} diff --git a/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/uncertainties.yaml new file mode 100644 index 0000000000..c0c3d91ac8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/PHENIX_1JET_200GEV/uncertainties.yaml @@ -0,0 +1,22 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + pol: + description: beam polarization uncertainty + treatment: MULT + type: RHIC2005POL +bins: +- stat: 0.0037 + pol: 0.0001316 +- stat: 0.0059 + pol: 4.7000000000000004e-05 +- stat: 0.0089 + pol: 0.0005451999999999999 +- stat: 0.0132 + pol: 0.00031959999999999996 +- stat: 0.0152 + pol: 0.0007238 +- stat: 0.0282 + pol: 0.0017014 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/data.yaml new file mode 100644 index 0000000000..4223da7b92 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/data.yaml @@ -0,0 +1,7 @@ +data_central: +- 0.014 +- -0.066 +- -0.019 +- -0.015 +- -0.009 +- 0.004 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/filter.py new file mode 100644 index 0000000000..67d95de3e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/filter.py @@ -0,0 +1,93 @@ +"""This script provides the filer to the inclusive jet STAR 2004 dataset.""" +import pandas as pd +import yaml + +POL_UNC = 0.25 +SQRTS = 200 +ETA_MIN = 0.2 +ETA_MAX = 0.8 + + +def read_data(): + df = pd.DataFrame() + file_raw = "HEPData-ins723509-v1-Figure_3.csv" + with open(f"rawdata/{file_raw}", "r", encoding="utf-8") as file: + df = pd.read_csv(file, skiprows=8) + + df["stat"] = df["stat +"] + df["sys"] = df["syst +"] + df["pol"] = POL_UNC * abs(df["$A_{LL}$"]) + df["sqrts"] = SQRTS + df["eta"] = (ETA_MAX + ETA_MIN) / 2 + return df + + +def write_data(df): + data_central = [] + for i in range(len(df["$A_{LL}$"])): + data_central.append(float(df.loc[i, "$A_{LL}$"])) + + data_central_yaml = {"data_central": data_central} + with open("data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + # Write kin file + kin = [] + for i in range(len(df["$A_{LL}$"])): + kin_value = { + "pT": { + "min": float(df.loc[i, "$p_T (GeV/c)$ LOW"]), + "mid": float(df.loc[i, "$p_T (GeV/c)$"]), + "max": float(df.loc[i, "$p_T (GeV/c)$ HIGH"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": ETA_MIN, + "mid": float(df.loc[i, "eta"]), + "max": ETA_MAX, + }, + } + kin.append(kin_value) + + kinematics_yaml = {"bins": kin} + + with open("kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(len(df)): + e = { + "stat": float(df.loc[i, "stat"]), + "sys": float(df.loc[i, "sys"]), + "pol": float(df.loc[i, "pol"]), + } + error.append(e) + + error_definition = { + "stat": { + "description": "statistical uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "sys": { + "description": "systematic uncertainty", + "treatment": "ADD", + "type": "UNCORR", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": "RHIC2004POL", + }, + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open("uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + df = read_data() + write_data(df) diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/kinematics.yaml new file mode 100644 index 0000000000..b44cdedd5e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/kinematics.yaml @@ -0,0 +1,73 @@ +bins: +- pT: + min: 5.0 + mid: 5.5 + max: 6.2 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 6.2 + mid: 6.8 + max: 7.6 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 7.6 + mid: 8.3 + max: 9.3 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 9.3 + mid: 10.2 + max: 11.4 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 11.4 + mid: 12.6 + max: 14.1 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 14.1 + mid: 15.4 + max: 17.3 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..fb20c359a6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/metadata.yaml @@ -0,0 +1,56 @@ +setname: "STAR_2004_1JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/hep-ex/0608030 +iNSPIRE: + url: https://inspirehep.net/literature/723509 +hepdata: + url: https://www.hepdata.net/record/ins723509 + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "ALL w.r.t. pT", label: "$A_{LL}$", units: "" } + observable_name: ALL + process_type: JET_POL + ndata: 6 + tables: [3] + npoints: [6] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2004_1JET_200GEV_ALL-POL + - - STAR_2004_1JET_200GEV_ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/rawdata/HEPData-ins723509-v1-Figure_3.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/rawdata/HEPData-ins723509-v1-Figure_3.csv new file mode 100644 index 0000000000..4dbeeb23ae --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/rawdata/HEPData-ins723509-v1-Figure_3.csv @@ -0,0 +1,16 @@ +8#: table_doi: 10.17182/hepdata.104928.v1/t3 +#: name: Figure 3 +#: description: The longitudinal double-spin asymmetry ALL in p+p-> jet +X at sqrt(s) = 200 GeV versus jet pT. The uncertainties on the data points are statistical. The gray band indicates the systematic uncertainty from the beam polarization measurement, and the hatched band the total systematic uncertainty. The curves show predictions based on deep-inelastic scattering parametrizations of gluon polarization. +#: data_file: Figure_3.yaml +#: keyword reactions: pp --> jet + X +#: keyword cmenergies: 200 +#: keyword phrases: jets | RHIC | STAR +#: $p_T (GeV/c)$,,,Filled circles (high tower trigger) +$p_T (GeV/c)$,$p_T (GeV/c)$ LOW,$p_T (GeV/c)$ HIGH,$A_{LL}$,stat +,stat -,syst +,syst - +5.5,5.0,6.2,0.014,0.022,-0.022,0.015,-0.015 +6.8,6.2,7.6,-0.066,0.024,-0.024,0.022,-0.022 +8.3,7.6,9.3,-0.019,0.029,-0.029,0.015,-0.015 +10.2,9.3,11.4,-0.015,0.038,-0.038,0.015,-0.015 +12.6,11.4,14.1,-0.009,0.052,-0.052,0.015,-0.015 +15.4,14.1,17.3,0.004,0.075,-0.075,0.015,-0.015 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/uncertainties.yaml new file mode 100644 index 0000000000..fdef3b1d93 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2004_1JET_200GEV/uncertainties.yaml @@ -0,0 +1,32 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR + pol: + description: beam polarization uncertainty + treatment: MULT + type: RHIC2004POL +bins: +- stat: 0.022 + sys: 0.015 + pol: 0.0035 +- stat: 0.024 + sys: 0.022 + pol: 0.0165 +- stat: 0.029 + sys: 0.015 + pol: 0.00475 +- stat: 0.038 + sys: 0.015 + pol: 0.00375 +- stat: 0.052 + sys: 0.015 + pol: 0.00225 +- stat: 0.075 + sys: 0.015 + pol: 0.001 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/data.yaml new file mode 100644 index 0000000000..b5bc5e2f36 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/data.yaml @@ -0,0 +1,11 @@ +data_central: +- 0.0053 +- -0.00275 +- 0.0023 +- 0.01465 +- -0.00625 +- 0.0031000000000000003 +- -0.0142 +- -0.0522 +- 0.0569 +- 0.147 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/filter.py new file mode 100644 index 0000000000..38673c4cd0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/filter.py @@ -0,0 +1,121 @@ +import glob +import sys + +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.uncertainties import symmetrize_errors as se + +POL_UNC = 0.094 + +def read_data(fnames): + df = pd.DataFrame() + for fname in fnames: + with open(fname, "r") as file: + data = yaml.safe_load(file) + if "14" in fname: + eta_min = 0.2 + eta_max = 0.8 + + elif "15" in fname: + eta_min = -0.7 + eta_max = 0.9 + + else: + print("ERROR: Unknown table number detected! Check input files.") + + pTsub = data["independent_variables"][0]["values"] + ALLsub = data["dependent_variables"][0]["values"] + + for i in range(len(ALLsub)): + df = pd.concat( + [ + df, + pd.DataFrame( + { + "pT": [pTsub[i]["value"]], + "pTmin": [pTsub[i]["low"]], + "pTmax": [pTsub[i]["high"]], + "eta": [(eta_min + eta_max) / 2], + "eta_min": [eta_min], + "eta_max": [eta_max], + "sqrts": [200], + "ALL": [ALLsub[i]["value"] * 1e-3], + "stat": [ALLsub[i]["errors"]["symerror"]["value"] * 1e-3], + "sys_min": [ALLsub[i]["errors"]["asymerror"]["minus"] * 1e-3], + "sys_max": [ALLsub[i]["errors"]["asymerror"]["plus"] * 1e-3], + } + ), + ], + ignore_index=True, + ) + for i in range(len(df)): + shift, unc = se(df.loc[i, "sys_max"], df.loc[i, "sys_min"]) + df.loc[i, "sys"] = unc + df.loc[i, "ALL"] += shift + + df["pol"] = POL_UNC * abs(df["ALL"]) + return df + + +def write_data(df): + data_central = [] + for i in range(len(df["ALL"])): + data_central.append(float(df.loc[i, "ALL"])) + + data_central_yaml = {"data_central": data_central} + with open("data.yaml", "w") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + # Write kin file + kin = [] + for i in range(len(df["ALL"])): + kin_value = { + "pT": { + "min": float(df.loc[i, "pTmin"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pTmax"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": float(df.loc[i, "eta_min"]), + "mid": float(df.loc[i, "eta"]), + "max": float(df.loc[i, "eta_max"]), + }, + } + kin.append(kin_value) + + kinematics_yaml = {"bins": kin} + + with open("kinematics.yaml", "w") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(len(df)): + e = { + "stat": float(df.loc[i, "stat"]), + "sys": float(df.loc[i, "sys"]), + "pol": float(df.loc[i, "pol"]) + } + error.append(e) + + error_definition = { + "stat": {"description": "statistical uncertainty", "treatment": "ADD", "type": "UNCORR"}, + "sys": {"description": "systematic uncertainty", "treatment": "ADD", "type": "UNCORR"}, + "pol": {"description": "beam polarization uncertainty", "treatment": "MULT", "type": "RHIC2005POL"} + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open("uncertainties.yaml", "w") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # TODO: Need to generate `observable` cards and corresponding + # pineappl grids and FK tables as the orders have changed!!!! + fnames = glob.glob("rawdata/*.yaml") + nnames = sorted([i for i in fnames]) + df = read_data(nnames) + write_data(df) diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/kinematics.yaml new file mode 100644 index 0000000000..c0c8b17dfd --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/kinematics.yaml @@ -0,0 +1,121 @@ +bins: +- pT: + min: 4.9 + mid: 5.3 + max: 5.7 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 5.9 + mid: 6.3 + max: 6.8 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 6.7 + mid: 7.1 + max: 7.7 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 8.1 + mid: 8.7 + max: 9.4 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 10.0 + mid: 10.7 + max: 11.5 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 12.3 + mid: 13.1 + max: 14.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 15.2 + mid: 16.0 + max: 17.0 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 18.4 + mid: 19.4 + max: 20.7 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 22.4 + mid: 23.6 + max: 25.1 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 +- pT: + min: 26.7 + mid: 28.1 + max: 29.9 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: 0.2 + mid: 0.5 + max: 0.8 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..0f02f2a65e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/metadata.yaml @@ -0,0 +1,56 @@ +setname: "STAR_2005_1JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/1205.2735 +iNSPIRE: + url: "https://inspirehep.net/literature/1114529" +hepdata: + url: "https://www.hepdata.net/record/ins1114529" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "ALL w.r.t. pT", label: "$A_{LL}$", units: "" } + observable_name: ALL + process_type: JET_POL + ndata: 10 + tables: [14] + npoints: [10] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2005_1JET_200GEV_ALL-POL + - - STAR_2005_1JET_200GEV_ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/rawdata/Table_14.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/rawdata/Table_14.yaml new file mode 100644 index 0000000000..e654ea3dc8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/rawdata/Table_14.yaml @@ -0,0 +1,69 @@ +dependent_variables: + - header: { name: '$A_{LL}\times 10^{-3}$' } + qualifiers: + - { name: "Source", value: "2005 STAR Data" } + + values: + - value: 5.3 + errors: + symerror: { "value": 5.9, label: "stat" } + asymerror: { minus: -2.4, plus: 2.4 } + + - value: -2.7 + errors: + symerror: { "value": 5.4, label: "stat" } + asymerror: { minus: -1.9, plus: 1.8 } + + - value: 2.4 + errors: + symerror: { "value": 5.7, label: "stat" } + asymerror: { minus: -1.9, plus: 1.7 } + + - value: 14.3 + errors: + symerror: { "value": 6.7, label: "stat" } + asymerror: { minus: -2.2, plus: 2.9 } + + - value: -6.7 + errors: + symerror: { "value": 8.7, label: "stat" } + asymerror: { minus: -1.7, plus: 2.6 } + + - value: 2.6 + errors: + symerror: { "value": 12.7, label: "stat" } + asymerror: { minus: -1.7, plus: 2.7 } + + - value: -14.6 + errors: + symerror: { "value": 20.3, label: "stat" } + asymerror: { minus: -2.2, plus: 3.0 } + + - value: -52.2 + errors: + symerror: { "value": 35.0, label: "stat" } + asymerror: { minus: -2.9, plus: 2.9 } + + - value: 56.9 + errors: + symerror: { "value": 67.1, label: "stat" } + asymerror: { minus: -4.1, plus: 4.1 } + + - value: 146 + errors: + symerror: { "value": 138, label: "stat" } + asymerror: { minus: -3.7, plus: 5.7 } + +independent_variables: + - header: { name: "$p_{T}$", units: GeV/c } + values: + - { value: 5.3, low: 4.9, high: 5.7 } + - { value: 6.3, low: 5.9, high: 6.8 } + - { value: 7.1, low: 6.7, high: 7.7 } + - { value: 8.7, low: 8.1, high: 9.4 } + - { value: 10.7, low: 10.0, high: 11.5 } + - { value: 13.1, low: 12.3, high: 14.0 } + - { value: 16.0, low: 15.2, high: 17.0 } + - { value: 19.4, low: 18.4, high: 20.7 } + - { value: 23.6, low: 22.4, high: 25.1 } + - { value: 28.1, low: 26.7, high: 29.9 } diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/uncertainties.yaml new file mode 100644 index 0000000000..f5afbd72a1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2005_1JET_200GEV/uncertainties.yaml @@ -0,0 +1,44 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR + pol: + description: beam polarization uncertainty + treatment: MULT + type: RHIC2005POL +bins: +- stat: 0.005900000000000001 + sys: 0.0024 + pol: 0.0004982 +- stat: 0.0054 + sys: 0.0018513508581573619 + pol: 0.0002585 +- stat: 0.0057 + sys: 0.0018055470085267787 + pol: 0.0002162 +- stat: 0.0067 + sys: 0.002597595041572108 + pol: 0.0013771 +- stat: 0.0087 + sys: 0.0022422087324778664 + pol: 0.0005875 +- stat: 0.0127 + sys: 0.002310844001658269 + pol: 0.00029140000000000004 +- stat: 0.020300000000000002 + sys: 0.002660826939130014 + pol: 0.0013348000000000001 +- stat: 0.035 + sys: 0.0029 + pol: 0.0049068 +- stat: 0.06709999999999999 + sys: 0.0040999999999999995 + pol: 0.0053486 +- stat: 0.138 + sys: 0.004908156476723211 + pol: 0.013817999999999999 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/data.yaml new file mode 100644 index 0000000000..9a5cd41d27 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/data.yaml @@ -0,0 +1,10 @@ +data_central: +- 0.0033 +- 0.00365 +- 0.01025 +- 0.00135 +- 0.00925 +- 0.02595 +- 0.026850000000000002 +- 0.02375 +- 0.0139 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/filter.py new file mode 100644 index 0000000000..d305bbb45c --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/filter.py @@ -0,0 +1,121 @@ +import glob +import sys + +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.uncertainties import symmetrize_errors as se + +POL_UNC = 0.083 + +def read_data(fnames): + df = pd.DataFrame() + for fname in fnames: + with open(fname, "r") as file: + data = yaml.safe_load(file) + if "14" in fname: + eta_min = 0.2 + eta_max = 0.8 + + elif "15" in fname: + eta_min = -0.7 + eta_max = 0.9 + + else: + print("ERROR: Unknown table number detected! Check input files.") + + pTsub = data["independent_variables"][0]["values"] + ALLsub = data["dependent_variables"][0]["values"] + + for i in range(len(ALLsub)): + df = pd.concat( + [ + df, + pd.DataFrame( + { + "pT": [pTsub[i]["value"]], + "pTmin": [pTsub[i]["low"]], + "pTmax": [pTsub[i]["high"]], + "eta": [(eta_min + eta_max) / 2], + "eta_min": [eta_min], + "eta_max": [eta_max], + "sqrts": [200], + "ALL": [ALLsub[i]["value"] * 1e-3], + "stat": [ALLsub[i]["errors"]["symerror"]["value"] * 1e-3], + "sys_min": [ALLsub[i]["errors"]["asymerror"]["minus"] * 1e-3], + "sys_max": [ALLsub[i]["errors"]["asymerror"]["plus"] * 1e-3], + } + ), + ], + ignore_index=True, + ) + for i in range(len(df)): + shift, unc = se(df.loc[i, "sys_max"], df.loc[i, "sys_min"]) + df.loc[i, "sys"] = unc + df.loc[i, "ALL"] += shift + + df["pol"] = POL_UNC * abs(df["ALL"]) + return df + + +def write_data(df): + data_central = [] + for i in range(len(df["ALL"])): + data_central.append(float(df.loc[i, "ALL"])) + + data_central_yaml = {"data_central": data_central} + with open("data.yaml", "w") as file: + yaml.dump(data_central_yaml, file, sort_keys=False) + + # Write kin file + kin = [] + for i in range(len(df["ALL"])): + kin_value = { + "pT": { + "min": float(df.loc[i, "pTmin"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pTmax"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": float(df.loc[i, "eta_min"]), + "mid": float(df.loc[i, "eta"]), + "max": float(df.loc[i, "eta_max"]), + }, + } + kin.append(kin_value) + + kinematics_yaml = {"bins": kin} + + with open("kinematics.yaml", "w") as file: + yaml.dump(kinematics_yaml, file, sort_keys=False) + + # Write unc file + error = [] + for i in range(len(df)): + e = { + "stat": float(df.loc[i, "stat"]), + "sys": float(df.loc[i, "sys"]), + "pol": float(df.loc[i, "pol"]), + } + error.append(e) + + error_definition = { + "stat": {"description": "statistical uncertainty", "treatment": "ADD", "type": "UNCORR"}, + "sys": {"description": "systematic uncertainty", "treatment": "ADD", "type": "UNCORR"}, + "pol": {"description": "beam polarization uncertainty", "treatment": "MULT", "type": "STAR2006POL"} + } + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + + with open("uncertainties.yaml", "w") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # TODO: Need to generate `observable` cards and corresponding + # pineappl grids and FK tables as the orders have changed!!!! + fnames = glob.glob("rawdata/*.yaml") + nnames = sorted([i for i in fnames]) + df = read_data(nnames) + write_data(df) diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/kinematics.yaml new file mode 100644 index 0000000000..b9f422549d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/kinematics.yaml @@ -0,0 +1,109 @@ +bins: +- pT: + min: 7.8 + mid: 8.5 + max: 9.3 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 9.5 + mid: 10.3 + max: 11.1 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 11.3 + mid: 12.2 + max: 13.1 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 13.4 + mid: 14.4 + max: 15.4 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 16.1 + mid: 17.2 + max: 18.3 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 19.2 + mid: 20.5 + max: 21.8 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 22.9 + mid: 24.4 + max: 25.9 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 27.6 + mid: 29.4 + max: 31.2 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 +- pT: + min: 32.0 + mid: 34.7 + max: 37.3 + sqrts: + min: null + mid: 200.0 + max: null + eta: + min: -0.7 + mid: 0.10000000000000003 + max: 0.9 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..d8d069f9b8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/metadata.yaml @@ -0,0 +1,56 @@ +setname: "STAR_2006_1JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/1205.2735 +iNSPIRE: + url: "https://inspirehep.net/literature/1114529" +hepdata: + url: "https://www.hepdata.net/record/ins1114529" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "ALL w.r.t. pT", label: "$A_{LL}$", units: "" } + observable_name: ALL + process_type: JET_POL + ndata: 9 + tables: [15] + npoints: [9] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2006_1JET_200GEV_ALL-POL + - - STAR_2006_1JET_200GEV_ALL-UNPOL + operation: "ratio" diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/rawdata/Table_15.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/rawdata/Table_15.yaml new file mode 100644 index 0000000000..a8ac09d945 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/rawdata/Table_15.yaml @@ -0,0 +1,63 @@ +dependent_variables: + - header: { name: '$A_{LL}\times 10^{-3}$' } + qualifiers: + - { name: "Source", value: '2006 STAR Data, -0.7 < $\eta$ < 0.9' } + + values: + - value: 2.7 + errors: + symerror: { value: 5.3, label: "stat" } + asymerror: { minus: -2.6, plus: 3.8 } + + - value: 3.3 + errors: + symerror: { value: 4.3, label: "stat" } + asymerror: { minus: -1.6, plus: 2.3 } + + - value: 9.9 + errors: + symerror: { value: 4.1, label: "stat" } + asymerror: { minus: -1.6, plus: 2.3 } + + - value: 1.2 + errors: + symerror: { value: 4.5, label: "stat" } + asymerror: { minus: -1.2, plus: 1.5 } + + - value: 9.2 + errors: + symerror: { value: 5.8, label: "stat" } + asymerror: { minus: -1.1, plus: 1.2 } + + - value: 25.7 + errors: + symerror: { value: 8.8, label: "stat" } + asymerror: { minus: -1.3, plus: 1.8 } + + - value: 25.6 + errors: + symerror: { value: 15.4, label: "stat" } + asymerror: { minus: -1.6, plus: 4.1 } + + - value: 22.0 + errors: + symerror: { value: 31.0, label: "stat" } + asymerror: { minus: -2.1, plus: 5.6 } + + - value: 12.0 + errors: + symerror: { value: 70.6, label: "stat" } + asymerror: { minus: -3.3, plus: 7.1 } + +independent_variables: + - header: { name: "$p_{T}$", units: GeV/c } + values: + - { value: 8.5, low: 7.8, high: 9.3 } + - { value: 10.3, low: 9.5, high: 11.1 } + - { value: 12.2, low: 11.3, high: 13.1 } + - { value: 14.4, low: 13.4, high: 15.4 } + - { value: 17.2, low: 16.1, high: 18.3 } + - { value: 20.5, low: 19.2, high: 21.8 } + - { value: 24.4, low: 22.9, high: 25.9 } + - { value: 29.4, low: 27.6, high: 31.2 } + - { value: 34.7, low: 32.0, high: 37.3 } diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/uncertainties.yaml new file mode 100644 index 0000000000..5d183cf01f --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2006_1JET_200GEV/uncertainties.yaml @@ -0,0 +1,41 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: ADD + type: UNCORR + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2006POL +bins: +- stat: 0.0053 + sys: 0.00331058907144937 + pol: 0.0002739 +- stat: 0.0043 + sys: 0.002011839953873071 + pol: 0.00030295 +- stat: 0.0040999999999999995 + sys: 0.002011839953873071 + pol: 0.00085075 +- stat: 0.0045000000000000005 + sys: 0.001366565036871645 + pol: 0.00011205000000000001 +- stat: 0.0058 + sys: 0.0011521718621802911 + pol: 0.00076775 +- stat: 0.0088 + sys: 0.0015898113095584648 + pol: 0.00215385 +- stat: 0.0154 + sys: 0.0033537292675468 + pol: 0.00222855 +- stat: 0.031 + sys: 0.004576843890717707 + pol: 0.00197125 +- stat: 0.0706 + sys: 0.005853204250664759 + pol: 0.0011537 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CC.yaml new file mode 100644 index 0000000000..df9f4f0e9d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CC.yaml @@ -0,0 +1,12 @@ +data_central: +- 0.002 +- 0.0056 +- 0.0013 +- 0.005 +- 0.0054 +- 0.0114 +- 0.0115 +- 0.0132 +- 0.0207 +- 0.0326 +- 0.0332 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CF.yaml new file mode 100644 index 0000000000..44f13d9a83 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/data_CF.yaml @@ -0,0 +1,12 @@ +data_central: +- 0.0018 +- 0.004 +- 0.0059 +- 0.0027 +- 0.0069 +- 0.0087 +- 0.015 +- 0.0195 +- 0.0333 +- 0.0437 +- 0.0055 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/filter.py new file mode 100644 index 0000000000..eaaccbadda --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/filter.py @@ -0,0 +1,348 @@ +"""This script provides the common filer to the jet and dijet STAR 2009 datasets. +Files need to be parsed all together as there are correlations provided. +""" + +import pathlib + +import numpy as np +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.correlations import compute_covmat + +TOPOPLOGY_LIST = ["CC", "CF", "SS", "OS", "A", "B", "C"] +POL_UNC = 0.065 +LUMI_UNC = 0.0005 +YEAR = 2009 +HERE = pathlib.Path(__file__).parent + +# NOTE: this is not the full relevant as the observable is symmetric +# for jet1 and jet2, so 1 and 2 are not ordered in pT and the +# information about the sign in missing. +TOPO_DEF = { + "B": {"eta1_min": -0.8, "eta1_max": 0, "eta2_min": 0.8, "eta2_max": 1.8}, + "C": {"eta1_min": 0, "eta1_max": 0.8, "eta2_min": 0.8, "eta2_max": 1.8}, + "A": {"eta1_min": 0.8, "eta1_max": 1.8, "eta2_min": 0.8, "eta2_max": 1.8}, + "SS": {"abs_eta_min": 0, "abs_eta_max": 0.8}, + "OS": {"abs_eta_min": 0, "abs_eta_max": 0.8}, + "CC": {"abs_eta_min": 0, "abs_eta_max": 0.5}, + "CF": {"abs_eta_min": 0.5, "abs_eta_max": 1.0}, +} + + +def read_1jet_data(topology): + tab_number = 3 if "CC" in topology else 4 + fnames = [ + f"rawdata/Table_{tab_number}_ALL.csv", + f"rawdata/Table_{tab_number}_pT.csv", + f"rawdata/Table_5.csv", + ] + + df = pd.DataFrame() + for fname in fnames: + dfi = pd.read_csv(fname) + if "pT" in fname: + df["pT"] = dfi["Parton Jet $p_T$ [GeV/c]"] + df["pT_min"] = df["pT"] - dfi["sys +"] + df["pT_max"] = df["pT"] + dfi["sys +"] + + elif "ALL" in fname: + df["ALL"] = dfi["$A_{LL}$"] + df["stat_min"] = dfi["stat -"] + df["stat_max"] = dfi["stat +"] + df["sys_min"] = dfi["sys -"] + df["sys_max"] = dfi["sys +"] + # elif "5" in fname: + # dfc_col = pd.read_csv(fname) + + # dfc = pd.DataFrame() + # biny = 1 + # for i in range(len(dfc_col)): + # if dfc_col.loc[i, "binx"] == "-": + # biny = float(dfc_col.loc[i, "val"]) + # else: + # binx = float(dfc_col.loc[i, "binx"]) + # dfc.loc[binx, biny] = dfc_col.loc[i, "val"] + # dfc = dfc.astype("float") + + df["abs_eta_min"] = TOPO_DEF[topology]["abs_eta_min"] + df["abs_eta_max"] = TOPO_DEF[topology]["abs_eta_max"] + df["abs_eta"] = (df["abs_eta_min"] + df["abs_eta_max"]) / 2 + df["stat"] = df["stat_max"] + df["sys"] = df["sys_max"] + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi"] = LUMI_UNC + df["sqrts"] = 200 + return df + + +def read_2jet_data(topology): + if "S" in topology: + fname = f"../STAR_{YEAR}_2JET_MIDRAP_200GEV/rawdata/Table_{topology}.yaml" + else: + fname = f"../STAR_{YEAR}_2JET_200GEV/rawdata/Table_{topology}.yaml" + df = pd.DataFrame() + with open(fname, "r", encoding="utf-8") as file: + data = yaml.safe_load(file) + + if topology in ["A", "B", "C"]: + Msub = data["independent_variables"][0]["values"] + Gsub = data["dependent_variables"][0]["values"] + + for i in range(len(Msub)): + df = pd.concat( + [ + df, + pd.DataFrame( + { + "m_low": [Msub[i]["low"]], + "m_high": [Msub[i]["high"]], + "ALL": [Gsub[i]["value"]], + "stat": [Gsub[i]["errors"][0]["symerror"]], + "sys": [Gsub[i]["errors"][1]["symerror"]], + } + ), + ], + ignore_index=True, + ) + df["m"] = (df["m_low"] + df["m_high"]) / 2 + df["eta1_min"] = TOPO_DEF[topology]["eta1_min"] + df["eta1_max"] = TOPO_DEF[topology]["eta1_max"] + df["eta2_min"] = TOPO_DEF[topology]["eta2_min"] + df["eta2_max"] = TOPO_DEF[topology]["eta2_max"] + df["eta1"] = (df["eta1_min"] + df["eta1_max"]) / 2 + df["eta2"] = (df["eta2_min"] + df["eta2_max"]) / 2 + else: + Msub = data["dependent_variables"][0]["values"] + Gsub = data["dependent_variables"][1]["values"] + + for i in range(len(Msub)): + df = pd.concat( + [ + df, + pd.DataFrame( + { + "m": [Msub[i]["value"]], + "ALL": [Gsub[i]["value"]], + "stat": [Gsub[i]["errors"][0]["symerror"]], + "sys": [Gsub[i]["errors"][1]["symerror"]], + "abs_eta_min": TOPO_DEF[topology]["abs_eta_min"], + "abs_eta_max": TOPO_DEF[topology]["abs_eta_max"], + } + ), + ], + ignore_index=True, + ) + + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi"] = LUMI_UNC + df["sqrts"] = 200 + return df + + +def write_1jet_data(df, topology, art_sys): + STORE_PATH = HERE + + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "pT": { + "min": float(df.loc[i, "pT_min"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pT_max"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = {"pol": float(df.loc[i, "pol"]), "lumi": float(df.loc[i, "lumi"])} + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +def write_2jet_data(df, topology, art_sys): + STORE_PATH = f"../STAR_{YEAR}_2JET_200GEV/" + if "S" in topology: + STORE_PATH = f"../STAR_{YEAR}_2JET_MIDRAP_200GEV/" + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH + f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + try: + kin_value = { + "m_jj": { + "min": float(df.loc[i, "m_low"]), + "mid": float(df.loc[i, "m"]), + "max": float(df.loc[i, "m_high"]), + }, + # "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta_1": { + "min": float(df.loc[i, "eta1_min"]), + "mid": float(df.loc[i, "eta1"]), + "max": float(df.loc[i, "eta1_max"]), + }, + "eta_2": { + "min": float(df.loc[i, "eta2_min"]), + "mid": float(df.loc[i, "eta2"]), + "max": float(df.loc[i, "eta2_max"]), + }, + } + except KeyError: + df["abs_eta"] = (df["abs_eta_min"] + df["abs_eta_max"]) / 2 + kin_value = { + "m_jj": {"min": None, "mid": float(df.loc[i, "m"]), "max": None}, + # "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta_1": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + "abs_eta_2": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH + f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = { + "pol": float(df.loc[i, "pol"]), + "lumi": float(df.loc[i, "lumi"]), + } + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH + f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # load all the data + dfs = {} + for topo in TOPOPLOGY_LIST[:2]: + dfs[topo] = read_1jet_data(topo) + for topo in TOPOPLOGY_LIST[2:]: + dfs[topo] = read_2jet_data(topo) + + # load correlations + ndata_dict = {a: len(b) for a, b in dfs.items()} + correlation_df = pd.read_csv( + "rawdata/correlation.csv", + index_col=0, + ) + # from the supplement material: + # https://journals.aps.org/prd/supplemental/10.1103/PhysRevD.98.032011/Supplementalmaterial.pdf + # we understand that stat jet and dijet are correlated, + # see also https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 + correlated_unc = [] + for a in TOPOPLOGY_LIST: + correlated_unc.extend( + np.sqrt(dfs[a]["sys"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() + ) + ndata_points = np.sum((*ndata_dict.values(),)) + # decompose uncertainties + art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) + + # write data + cnt = 0 + for topo, df in dfs.items(): + ndata = ndata_dict[topo] + syst = art_sys[cnt : cnt + ndata, :].tolist() + if topo in ["CC", "CF"]: + write_1jet_data(df, topo, syst) + else: + write_2jet_data(df, topo, syst) + cnt += ndata diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CC.yaml new file mode 100644 index 0000000000..fdf857b07d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CC.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 6.29 + mid: 5.5 + min: 4.71 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 7.29 + mid: 6.49 + min: 5.69 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 8.95 + mid: 8.25 + min: 7.55 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 10.75 + mid: 10.08 + min: 9.41 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 12.93 + mid: 12.26 + min: 11.59 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 15.489999999999998 + mid: 14.78 + min: 14.07 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 18.0 + mid: 17.23 + min: 16.46 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 21.439999999999998 + mid: 20.56 + min: 19.68 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 24.55 + mid: 23.61 + min: 22.669999999999998 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 28.76 + mid: 27.78 + min: 26.8 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 33.57 + mid: 32.46 + min: 31.35 + sqrts: + max: null + mid: 200.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CF.yaml new file mode 100644 index 0000000000..a0c92de0c5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/kinematics_CF.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 6.42 + mid: 5.61 + min: 4.800000000000001 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 7.43 + mid: 6.62 + min: 5.8100000000000005 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 9.17 + mid: 8.48 + min: 7.790000000000001 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 10.82 + mid: 10.17 + min: 9.52 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 12.84 + mid: 12.2 + min: 11.559999999999999 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 15.18 + mid: 14.57 + min: 13.96 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 17.68 + mid: 16.99 + min: 16.299999999999997 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 21.06 + mid: 20.16 + min: 19.26 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 24.28 + mid: 23.35 + min: 22.42 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 28.22 + mid: 27.13 + min: 26.04 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 32.16 + mid: 31.08 + min: 30.0 + sqrts: + max: null + mid: 200.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..c844d16563 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/metadata.yaml @@ -0,0 +1,94 @@ +setname: "STAR_2009_1JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/1405.5134 +iNSPIRE: + url: "https://inspirehep.net/literature/1297229" +hepdata: + url: "https://www.hepdata.net/record/ins1297229" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "ALL w.r.t. pT, central region", label: "$A_{LL}$", units: "" } + observable_name: CC-ALL + process_type: JET_POL + ndata: 11 + tables: [3] + npoints: [11] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + abs_eta: { description: "pseudorapidity", label: '$|\eta|$', units: "" } + + file: kinematics_CC.yaml + data_central: data_CC.yaml + data_uncertainties: + - uncertainties_CC.yaml + kinematic_coverage: [pT, sqrts, abs_eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_1JET_200GEV_CC-ALL-POL + - - STAR_2009_1JET_200GEV_CC-ALL-UNPOL + operation: "ratio" + - observable: { description: "ALL w.r.t. pT, forward region", label: "$A_{LL}$", units: "" } + observable_name: CF-ALL + process_type: JET_POL + ndata: 11 + tables: [4] + npoints: [11] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + abs_eta: { description: "pseudorapidity", label: '$|\eta|$', units: "" } + + file: kinematics_CF.yaml + data_central: data_CF.yaml + data_uncertainties: + - uncertainties_CF.yaml + kinematic_coverage: [pT, sqrts, abs_eta] + plotting: + kinematics_override: identity + dataset_label: "$A_{LL}$" + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_1JET_200GEV_CF-ALL-POL + - - STAR_2009_1JET_200GEV_CF-ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_ALL.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_ALL.csv new file mode 100644 index 0000000000..782f8abb98 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_ALL.csv @@ -0,0 +1,12 @@ +Bin,$A_{LL}$,stat +,stat -,sys +,sys - +1.0,0.002,0.0015,-0.0015,0.0003,-0.0003 +2.0,0.0056,0.0016,-0.0016,0.0004,-0.0004 +3.0,0.0013,0.0014,-0.0014,0.0004,-0.0004 +4.0,0.005,0.0016,-0.0016,0.0004,-0.0004 +5.0,0.0054,0.002,-0.002,0.0005,-0.0005 +6.0,0.0114,0.0026,-0.0026,0.0006,-0.0006 +7.0,0.0115,0.0037,-0.0037,0.0015,-0.0015 +8.0,0.0132,0.0055,-0.0055,0.0016,-0.0016 +9.0,0.0207,0.0092,-0.0092,0.0022,-0.0022 +10.0,0.0326,0.016,-0.016,0.0039,-0.0039 +11.0,0.0332,0.0297,-0.0297,0.0048,-0.0048 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_pT.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_pT.csv new file mode 100644 index 0000000000..26c494a751 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_3_pT.csv @@ -0,0 +1,12 @@ +Bin,Parton Jet $p_T$ [GeV/c],stat +,stat -,sys +,sys - +1.0,5.5,0.0,-0.0,0.79,-0.79 +2.0,6.49,0.0,-0.0,0.8,-0.8 +3.0,8.25,0.0,-0.0,0.7,-0.7 +4.0,10.08,0.0,-0.0,0.67,-0.67 +5.0,12.26,0.0,-0.0,0.67,-0.67 +6.0,14.78,0.0,-0.0,0.71,-0.71 +7.0,17.23,0.0,-0.0,0.77,-0.77 +8.0,20.56,0.0,-0.0,0.88,-0.88 +9.0,23.61,0.0,-0.0,0.94,-0.94 +10.0,27.78,0.0,-0.0,0.98,-0.98 +11.0,32.46,0.0,-0.0,1.11,-1.11 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_ALL.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_ALL.csv new file mode 100644 index 0000000000..50abb7106e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_ALL.csv @@ -0,0 +1,12 @@ +Bin,$A_{LL}$,stat +,stat -,sys +,sys - +12.0,0.0018,0.0016,-0.0016,0.0004,-0.0004 +13.0,0.004,0.0018,-0.0018,0.0004,-0.0004 +14.0,0.0059,0.0016,-0.0016,0.0004,-0.0004 +15.0,0.0027,0.0019,-0.0019,0.0004,-0.0004 +16.0,0.0069,0.0024,-0.0024,0.0005,-0.0005 +17.0,0.0087,0.0032,-0.0032,0.0006,-0.0006 +18.0,0.015,0.0046,-0.0046,0.0011,-0.0011 +19.0,0.0195,0.0071,-0.0071,0.0015,-0.0015 +20.0,0.0333,0.0122,-0.0122,0.0025,-0.0025 +21.0,0.0437,0.0221,-0.0221,0.0038,-0.0038 +22.0,0.0055,0.0434,-0.0434,0.006,-0.006 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_pT.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_pT.csv new file mode 100644 index 0000000000..40a537e8a5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_4_pT.csv @@ -0,0 +1,12 @@ +Bin,Parton Jet $p_T$ [GeV/c],stat +,stat -,sys +,sys - +12.0,5.61,0.0,-0.0,0.81,-0.81 +13.0,6.62,0.0,-0.0,0.81,-0.81 +14.0,8.48,0.0,-0.0,0.69,-0.69 +15.0,10.17,0.0,-0.0,0.65,-0.65 +16.0,12.2,0.0,-0.0,0.64,-0.64 +17.0,14.57,0.0,-0.0,0.61,-0.61 +18.0,16.99,0.0,-0.0,0.69,-0.69 +19.0,20.16,0.0,-0.0,0.9,-0.9 +20.0,23.35,0.0,-0.0,0.93,-0.93 +21.0,27.13,0.0,-0.0,1.09,-1.09 +22.0,31.08,0.0,-0.0,1.08,-1.08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_5.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_5.csv new file mode 100644 index 0000000000..3dbe5a424d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/Table_5.csv @@ -0,0 +1,507 @@ +binx,val +-,1.0 +1.0,1.0 +2.0,0.013 +3.0,0.008 +4.0,0.007 +5.0,0.008 +6.0,0.008 +7.0,0.006 +8.0,0.005 +9.0,0.003 +10.0,0.002 +11.0,0.002 +12.0,0.043 +13.0,0.011 +14.0,0.011 +15.0,0.005 +16.0,0.005 +17.0,0.003 +18.0,0.005 +19.0,0.002 +20.0,0.001 +21.0,0.002 +22.0,0.001 +-,2.0 +1.0,0.013 +2.0,1.0 +3.0,0.013 +4.0,0.011 +5.0,0.015 +6.0,0.015 +7.0,0.01 +8.0,0.009 +9.0,0.005 +10.0,0.004 +11.0,0.003 +12.0,0.011 +13.0,0.047 +14.0,0.018 +15.0,0.009 +16.0,0.008 +17.0,0.006 +18.0,0.009 +19.0,0.004 +20.0,0.003 +21.0,0.004 +22.0,0.002 +-,3.0 +1.0,0.008 +2.0,0.013 +3.0,1.0 +4.0,0.012 +5.0,0.014 +6.0,0.013 +7.0,0.009 +8.0,0.007 +9.0,0.004 +10.0,0.003 +11.0,0.002 +12.0,0.007 +13.0,0.011 +14.0,0.051 +15.0,0.009 +16.0,0.008 +17.0,0.007 +18.0,0.008 +19.0,0.004 +20.0,0.002 +21.0,0.002 +22.0,0.001 +-,4.0 +1.0,0.007 +2.0,0.011 +3.0,0.012 +4.0,1.0 +5.0,0.017 +6.0,0.017 +7.0,0.013 +8.0,0.009 +9.0,0.005 +10.0,0.003 +11.0,0.002 +12.0,0.006 +13.0,0.01 +14.0,0.013 +15.0,0.039 +16.0,0.012 +17.0,0.01 +18.0,0.01 +19.0,0.005 +20.0,0.003 +21.0,0.003 +22.0,0.001 +-,5.0 +1.0,0.008 +2.0,0.015 +3.0,0.014 +4.0,0.017 +5.0,1.0 +6.0,0.028 +7.0,0.022 +8.0,0.017 +9.0,0.01 +10.0,0.006 +11.0,0.003 +12.0,0.008 +13.0,0.013 +14.0,0.017 +15.0,0.014 +16.0,0.034 +17.0,0.016 +18.0,0.017 +19.0,0.011 +20.0,0.007 +21.0,0.005 +22.0,0.002 +-,6.0 +1.0,0.008 +2.0,0.015 +3.0,0.013 +4.0,0.017 +5.0,0.028 +6.0,1.0 +7.0,0.031 +8.0,0.026 +9.0,0.016 +10.0,0.009 +11.0,0.004 +12.0,0.008 +13.0,0.014 +14.0,0.018 +15.0,0.014 +16.0,0.018 +17.0,0.033 +18.0,0.026 +19.0,0.018 +20.0,0.011 +21.0,0.008 +22.0,0.003 +-,7.0 +1.0,0.006 +2.0,0.01 +3.0,0.009 +4.0,0.013 +5.0,0.022 +6.0,0.031 +7.0,1.0 +8.0,0.033 +9.0,0.024 +10.0,0.013 +11.0,0.006 +12.0,0.005 +13.0,0.009 +14.0,0.012 +15.0,0.01 +16.0,0.014 +17.0,0.019 +18.0,0.04 +19.0,0.024 +20.0,0.016 +21.0,0.011 +22.0,0.005 +-,8.0 +1.0,0.005 +2.0,0.009 +3.0,0.007 +4.0,0.009 +5.0,0.017 +6.0,0.026 +7.0,0.033 +8.0,1.0 +9.0,0.039 +10.0,0.026 +11.0,0.013 +12.0,0.004 +13.0,0.007 +14.0,0.01 +15.0,0.007 +16.0,0.01 +17.0,0.015 +18.0,0.026 +19.0,0.05 +20.0,0.026 +21.0,0.02 +22.0,0.009 +-,9.0 +1.0,0.003 +2.0,0.005 +3.0,0.004 +4.0,0.005 +5.0,0.01 +6.0,0.016 +7.0,0.024 +8.0,0.039 +9.0,1.0 +10.0,0.046 +11.0,0.028 +12.0,0.003 +13.0,0.005 +14.0,0.006 +15.0,0.004 +16.0,0.005 +17.0,0.009 +18.0,0.017 +19.0,0.026 +20.0,0.046 +21.0,0.032 +22.0,0.018 +-,10.0 +1.0,0.002 +2.0,0.004 +3.0,0.003 +4.0,0.003 +5.0,0.006 +6.0,0.009 +7.0,0.013 +8.0,0.026 +9.0,0.046 +10.0,1.0 +11.0,0.052 +12.0,0.002 +13.0,0.003 +14.0,0.004 +15.0,0.002 +16.0,0.003 +17.0,0.004 +18.0,0.008 +19.0,0.016 +20.0,0.026 +21.0,0.048 +22.0,0.032 +-,11.0 +1.0,0.002 +2.0,0.003 +3.0,0.002 +4.0,0.002 +5.0,0.003 +6.0,0.004 +7.0,0.006 +8.0,0.013 +9.0,0.028 +10.0,0.052 +11.0,1.0 +12.0,0.001 +13.0,0.003 +14.0,0.003 +15.0,0.001 +16.0,0.002 +17.0,0.002 +18.0,0.004 +19.0,0.006 +20.0,0.013 +21.0,0.028 +22.0,0.04 +-,12.0 +1.0,0.043 +2.0,0.011 +3.0,0.007 +4.0,0.006 +5.0,0.008 +6.0,0.008 +7.0,0.005 +8.0,0.004 +9.0,0.003 +10.0,0.002 +11.0,0.001 +12.0,1.0 +13.0,0.009 +14.0,0.009 +15.0,0.005 +16.0,0.003 +17.0,0.003 +18.0,0.004 +19.0,0.002 +20.0,0.001 +21.0,0.002 +22.0,0.001 +-,13.0 +1.0,0.011 +2.0,0.047 +3.0,0.011 +4.0,0.01 +5.0,0.013 +6.0,0.014 +7.0,0.009 +8.0,0.007 +9.0,0.005 +10.0,0.003 +11.0,0.003 +12.0,0.009 +13.0,1.0 +14.0,0.016 +15.0,0.008 +16.0,0.006 +17.0,0.004 +18.0,0.008 +19.0,0.003 +20.0,0.002 +21.0,0.003 +22.0,0.001 +-,14.0 +1.0,0.011 +2.0,0.018 +3.0,0.051 +4.0,0.013 +5.0,0.017 +6.0,0.018 +7.0,0.012 +8.0,0.01 +9.0,0.006 +10.0,0.004 +11.0,0.003 +12.0,0.009 +13.0,0.016 +14.0,1.0 +15.0,0.011 +16.0,0.009 +17.0,0.007 +18.0,0.01 +19.0,0.005 +20.0,0.004 +21.0,0.004 +22.0,0.002 +-,15.0 +1.0,0.005 +2.0,0.009 +3.0,0.009 +4.0,0.039 +5.0,0.014 +6.0,0.014 +7.0,0.01 +8.0,0.007 +9.0,0.004 +10.0,0.002 +11.0,0.001 +12.0,0.005 +13.0,0.008 +14.0,0.011 +15.0,1.0 +16.0,0.009 +17.0,0.008 +18.0,0.008 +19.0,0.004 +20.0,0.002 +21.0,0.003 +22.0,0.001 +-,16.0 +1.0,0.005 +2.0,0.008 +3.0,0.008 +4.0,0.012 +5.0,0.034 +6.0,0.018 +7.0,0.014 +8.0,0.01 +9.0,0.005 +10.0,0.003 +11.0,0.002 +12.0,0.003 +13.0,0.006 +14.0,0.009 +15.0,0.009 +16.0,1.0 +17.0,0.012 +18.0,0.011 +19.0,0.007 +20.0,0.004 +21.0,0.002 +22.0,0.002 +-,17.0 +1.0,0.003 +2.0,0.006 +3.0,0.007 +4.0,0.01 +5.0,0.016 +6.0,0.033 +7.0,0.019 +8.0,0.015 +9.0,0.009 +10.0,0.004 +11.0,0.002 +12.0,0.003 +13.0,0.004 +14.0,0.007 +15.0,0.008 +16.0,0.012 +17.0,1.0 +18.0,0.015 +19.0,0.01 +20.0,0.006 +21.0,0.004 +22.0,0.001 +-,18.0 +1.0,0.005 +2.0,0.009 +3.0,0.008 +4.0,0.01 +5.0,0.017 +6.0,0.026 +7.0,0.04 +8.0,0.026 +9.0,0.017 +10.0,0.008 +11.0,0.004 +12.0,0.004 +13.0,0.008 +14.0,0.01 +15.0,0.008 +16.0,0.011 +17.0,0.015 +18.0,1.0 +19.0,0.017 +20.0,0.01 +21.0,0.007 +22.0,0.003 +-,19.0 +1.0,0.002 +2.0,0.004 +3.0,0.004 +4.0,0.005 +5.0,0.011 +6.0,0.018 +7.0,0.024 +8.0,0.05 +9.0,0.026 +10.0,0.016 +11.0,0.006 +12.0,0.002 +13.0,0.003 +14.0,0.005 +15.0,0.004 +16.0,0.007 +17.0,0.01 +18.0,0.017 +19.0,1.0 +20.0,0.015 +21.0,0.011 +22.0,0.005 +-,20.0 +1.0,0.001 +2.0,0.003 +3.0,0.002 +4.0,0.003 +5.0,0.007 +6.0,0.011 +7.0,0.016 +8.0,0.026 +9.0,0.046 +10.0,0.026 +11.0,0.013 +12.0,0.001 +13.0,0.002 +14.0,0.004 +15.0,0.002 +16.0,0.004 +17.0,0.006 +18.0,0.01 +19.0,0.015 +20.0,1.0 +21.0,0.017 +22.0,0.008 +-,21.0 +1.0,0.002 +2.0,0.004 +3.0,0.002 +4.0,0.003 +5.0,0.005 +6.0,0.008 +7.0,0.011 +8.0,0.02 +9.0,0.032 +10.0,0.048 +11.0,0.028 +12.0,0.002 +13.0,0.003 +14.0,0.004 +15.0,0.003 +16.0,0.002 +17.0,0.004 +18.0,0.007 +19.0,0.011 +20.0,0.017 +21.0,1.0 +22.0,0.014 +-,22.0 +1.0,0.001 +2.0,0.002 +3.0,0.001 +4.0,0.001 +5.0,0.002 +6.0,0.003 +7.0,0.005 +8.0,0.009 +9.0,0.018 +10.0,0.032 +11.0,0.04 +12.0,0.001 +13.0,0.001 +14.0,0.002 +15.0,0.001 +16.0,0.002 +17.0,0.001 +18.0,0.003 +19.0,0.005 +20.0,0.008 +21.0,0.014 +22.0,1.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/correlation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/correlation.csv new file mode 100644 index 0000000000..79a3996ebd --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/rawdata/correlation.csv @@ -0,0 +1,56 @@ +,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55 +1,1.0,0.013,0.008,0.007,0.008,0.008,0.006,0.005,0.003,0.002,0.002,0.043,0.011,0.011,0.005,0.005,0.003,0.005,0.002,0.001,0.002,0.001,0.014,0.003,0.0,0.0,0.0,0.0,0.0,0.019,0.004,0.001,0.0,0.0,0.0,0.0,0.005,0.005,0.001,0.0,0.0,0.0,0.0,0.004,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,0.013,1.0,0.013,0.011,0.015,0.015,0.01,0.009,0.005,0.004,0.003,0.011,0.047,0.018,0.009,0.008,0.006,0.009,0.004,0.003,0.004,0.002,0.034,0.012,0.002,0.0,0.0,0.0,0.0,0.039,0.017,0.003,0.0,0.0,0.0,0.0,0.013,0.015,0.006,0.001,0.0,0.0,0.0,0.013,0.008,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +3,0.008,0.013,1.0,0.012,0.014,0.013,0.009,0.007,0.004,0.003,0.002,0.007,0.011,0.051,0.009,0.008,0.007,0.008,0.004,0.002,0.002,0.001,0.101,0.059,0.018,0.002,0.0,0.0,0.0,0.111,0.07,0.026,0.004,0.0,0.0,0.0,0.025,0.044,0.031,0.009,0.001,0.0,0.0,0.03,0.033,0.016,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +4,0.007,0.011,0.012,1.0,0.017,0.017,0.013,0.009,0.005,0.003,0.002,0.006,0.01,0.013,0.039,0.012,0.01,0.01,0.005,0.003,0.003,0.001,0.091,0.105,0.063,0.015,0.001,0.0,0.0,0.076,0.112,0.076,0.023,0.003,0.0,0.0,0.01,0.038,0.051,0.032,0.006,0.0,0.0,0.018,0.041,0.041,0.013,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +5,0.008,0.015,0.014,0.017,1.0,0.028,0.022,0.017,0.01,0.006,0.003,0.008,0.013,0.017,0.014,0.034,0.016,0.017,0.011,0.007,0.005,0.002,0.032,0.106,0.119,0.062,0.01,0.001,0.0,0.019,0.099,0.121,0.077,0.018,0.001,0.0,0.001,0.015,0.043,0.058,0.029,0.004,0.0,0.005,0.026,0.052,0.044,0.009,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +6,0.008,0.015,0.013,0.017,0.028,1.0,0.031,0.026,0.016,0.009,0.004,0.008,0.014,0.018,0.014,0.018,0.033,0.026,0.018,0.011,0.008,0.003,0.003,0.06,0.116,0.135,0.055,0.006,0.0,0.001,0.046,0.106,0.138,0.075,0.012,0.0,0.0,0.002,0.018,0.049,0.063,0.022,0.0,0.001,0.007,0.032,0.066,0.04,0.004,0.0,0.0,0.0,0.0,0.0,0.0 +7,0.006,0.01,0.009,0.013,0.022,0.031,1.0,0.033,0.024,0.013,0.006,0.005,0.009,0.012,0.01,0.014,0.019,0.04,0.024,0.016,0.011,0.005,0.0,0.017,0.066,0.132,0.145,0.042,0.0,0.0,0.01,0.057,0.117,0.151,0.063,0.001,0.0,0.0,0.003,0.018,0.056,0.063,0.001,0.0,0.001,0.009,0.039,0.074,0.029,0.0,0.0,0.0,0.0,0.0,0.0 +8,0.005,0.009,0.007,0.009,0.017,0.026,0.033,1.0,0.039,0.026,0.013,0.004,0.007,0.01,0.007,0.01,0.015,0.026,0.05,0.026,0.02,0.009,0.0,0.002,0.026,0.07,0.154,0.153,0.003,0.0,0.001,0.02,0.058,0.135,0.175,0.007,0.0,0.0,0.0,0.003,0.02,0.083,0.011,0.0,0.0,0.001,0.01,0.048,0.079,0.0,0.0,0.0,0.0,0.0,0.0 +9,0.003,0.005,0.004,0.005,0.01,0.016,0.024,0.039,1.0,0.046,0.028,0.003,0.005,0.006,0.004,0.005,0.009,0.017,0.026,0.046,0.032,0.018,0.0,0.0,0.007,0.024,0.076,0.232,0.032,0.0,0.0,0.004,0.019,0.059,0.219,0.058,0.0,0.0,0.0,0.0,0.003,0.047,0.051,0.0,0.0,0.0,0.001,0.01,0.078,0.013,0.0,0.0,0.0,0.0,0.0 +10,0.002,0.004,0.003,0.003,0.006,0.009,0.013,0.026,0.046,1.0,0.052,0.002,0.003,0.004,0.002,0.003,0.004,0.008,0.016,0.026,0.048,0.032,0.0,0.0,0.001,0.008,0.022,0.162,0.166,0.0,0.0,0.0,0.006,0.017,0.136,0.195,0.0,0.0,0.0,0.0,0.0,0.012,0.072,0.0,0.0,0.0,0.0,0.001,0.03,0.056,0.0,0.0,0.0,0.0,0.0 +11,0.002,0.003,0.002,0.002,0.003,0.004,0.006,0.013,0.028,0.052,1.0,0.001,0.003,0.003,0.001,0.002,0.002,0.004,0.006,0.013,0.028,0.04,0.0,0.0,0.0,0.002,0.007,0.06,0.266,0.0,0.0,0.0,0.001,0.005,0.046,0.245,0.0,0.0,0.0,0.0,0.0,0.002,0.037,0.0,0.0,0.0,0.0,0.0,0.006,0.058,0.0,0.0,0.0,0.0,0.0 +12,0.043,0.011,0.007,0.006,0.008,0.008,0.005,0.004,0.003,0.002,0.001,1.0,0.009,0.009,0.005,0.003,0.003,0.004,0.002,0.001,0.002,0.001,0.009,0.002,0.0,0.0,0.0,0.0,0.0,0.01,0.004,0.0,0.0,0.0,0.0,0.0,0.004,0.005,0.002,0.0,0.0,0.0,0.0,0.008,0.002,0.0,0.0,0.0,0.0,0.0,0.004,0.001,0.0,0.0,0.0 +13,0.011,0.047,0.011,0.01,0.013,0.014,0.009,0.007,0.005,0.003,0.003,0.009,1.0,0.016,0.008,0.006,0.004,0.008,0.003,0.002,0.003,0.001,0.021,0.007,0.001,0.0,0.0,0.0,0.0,0.017,0.012,0.003,0.0,0.0,0.0,0.0,0.009,0.012,0.007,0.002,0.0,0.0,0.0,0.021,0.008,0.001,0.0,0.0,0.0,0.0,0.009,0.003,0.0,0.0,0.0 +14,0.011,0.018,0.051,0.013,0.017,0.018,0.012,0.01,0.006,0.004,0.003,0.009,0.016,1.0,0.011,0.009,0.007,0.01,0.005,0.004,0.004,0.002,0.064,0.037,0.011,0.001,0.0,0.0,0.0,0.047,0.045,0.02,0.004,0.0,0.0,0.0,0.022,0.032,0.028,0.013,0.003,0.0,0.0,0.054,0.037,0.013,0.002,0.001,0.0,0.0,0.022,0.017,0.005,0.0,0.0 +15,0.005,0.009,0.009,0.039,0.014,0.014,0.01,0.007,0.004,0.002,0.001,0.005,0.008,0.011,1.0,0.009,0.008,0.008,0.004,0.002,0.003,0.001,0.055,0.065,0.037,0.008,0.001,0.0,0.0,0.02,0.059,0.049,0.018,0.003,0.0,0.0,0.011,0.027,0.037,0.032,0.012,0.002,0.0,0.042,0.056,0.037,0.009,0.002,0.001,0.0,0.018,0.024,0.016,0.003,0.0 +16,0.005,0.008,0.008,0.012,0.034,0.018,0.014,0.01,0.005,0.003,0.002,0.003,0.006,0.009,0.009,1.0,0.012,0.011,0.007,0.004,0.002,0.002,0.018,0.065,0.069,0.034,0.005,0.0,0.0,0.002,0.041,0.065,0.052,0.016,0.002,0.0,0.002,0.015,0.03,0.043,0.035,0.009,0.0,0.017,0.046,0.059,0.029,0.006,0.002,0.0,0.008,0.022,0.027,0.012,0.001 +17,0.003,0.006,0.007,0.01,0.016,0.033,0.019,0.015,0.009,0.004,0.002,0.003,0.004,0.007,0.008,0.012,1.0,0.015,0.01,0.006,0.004,0.001,0.001,0.036,0.068,0.076,0.029,0.003,0.0,0.0,0.014,0.051,0.074,0.052,0.011,0.0,0.0,0.005,0.016,0.033,0.049,0.035,0.001,0.004,0.022,0.05,0.059,0.02,0.005,0.0,0.002,0.012,0.025,0.026,0.009 +18,0.005,0.009,0.008,0.01,0.017,0.026,0.04,0.026,0.017,0.008,0.004,0.004,0.008,0.01,0.008,0.011,0.015,1.0,0.017,0.01,0.007,0.003,0.0,0.01,0.039,0.074,0.076,0.02,0.0,0.0,0.002,0.024,0.055,0.083,0.05,0.001,0.0,0.001,0.006,0.016,0.036,0.066,0.005,0.0,0.006,0.023,0.056,0.052,0.014,0.001,0.0,0.004,0.014,0.028,0.024 +19,0.002,0.004,0.004,0.005,0.011,0.018,0.024,0.05,0.026,0.016,0.006,0.002,0.003,0.005,0.004,0.007,0.01,0.017,1.0,0.015,0.011,0.005,0.0,0.001,0.015,0.039,0.083,0.073,0.001,0.0,0.0,0.007,0.025,0.061,0.106,0.008,0.0,0.0,0.002,0.006,0.017,0.066,0.033,0.0,0.001,0.007,0.024,0.059,0.044,0.003,0.0,0.001,0.005,0.015,0.028 +20,0.001,0.003,0.002,0.003,0.007,0.011,0.016,0.026,0.046,0.026,0.013,0.001,0.002,0.004,0.002,0.004,0.006,0.01,0.015,1.0,0.017,0.008,0.0,0.0,0.004,0.013,0.04,0.114,0.011,0.0,0.0,0.001,0.008,0.025,0.109,0.053,0.0,0.0,0.0,0.002,0.006,0.036,0.077,0.0,0.0,0.001,0.006,0.024,0.065,0.011,0.0,0.0,0.001,0.005,0.015 +21,0.002,0.004,0.002,0.003,0.005,0.008,0.011,0.02,0.032,0.048,0.028,0.002,0.003,0.004,0.003,0.002,0.004,0.007,0.011,0.017,1.0,0.014,0.0,0.0,0.001,0.004,0.012,0.081,0.07,0.0,0.0,0.0,0.002,0.007,0.058,0.127,0.0,0.0,0.0,0.0,0.002,0.014,0.074,0.0,0.0,0.0,0.001,0.007,0.039,0.027,0.0,0.0,0.0,0.001,0.005 +22,0.001,0.002,0.001,0.001,0.002,0.003,0.005,0.009,0.018,0.032,0.04,0.001,0.001,0.002,0.001,0.002,0.001,0.003,0.005,0.008,0.014,1.0,0.0,0.0,0.0,0.001,0.004,0.03,0.108,0.0,0.0,0.0,0.0,0.003,0.019,0.12,0.0,0.0,0.0,0.0,0.0,0.004,0.037,0.0,0.0,0.0,0.0,0.001,0.013,0.048,0.0,0.0,0.0,0.0,0.001 +23,0.014,0.034,0.101,0.091,0.032,0.003,0.0,0.0,0.0,0.0,0.0,0.009,0.021,0.064,0.055,0.018,0.001,0.0,0.0,0.0,0.0,0.0,1.0,0.002,0.001,0.002,0.001,0.0,0.001,0.01,0.004,0.004,0.004,0.002,0.003,0.001,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0 +24,0.003,0.012,0.059,0.105,0.106,0.06,0.017,0.002,0.0,0.0,0.0,0.002,0.007,0.037,0.065,0.065,0.036,0.01,0.001,0.0,0.0,0.0,0.002,1.0,0.003,0.003,0.003,0.001,0.001,0.006,0.016,0.006,0.008,0.004,0.005,0.002,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0 +25,0.0,0.002,0.018,0.063,0.119,0.116,0.066,0.026,0.007,0.001,0.0,0.0,0.001,0.011,0.037,0.069,0.068,0.039,0.015,0.004,0.001,0.0,0.001,0.003,1.0,0.002,0.001,0.0,0.001,0.003,0.005,0.01,0.005,0.002,0.003,0.001,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0 +26,0.0,0.0,0.002,0.015,0.062,0.135,0.132,0.07,0.024,0.008,0.002,0.0,0.0,0.001,0.008,0.034,0.076,0.074,0.039,0.013,0.004,0.001,0.002,0.003,0.002,1.0,0.002,0.0,0.001,0.004,0.005,0.004,0.009,0.003,0.003,0.001,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0 +27,0.0,0.0,0.0,0.001,0.01,0.055,0.145,0.154,0.076,0.022,0.007,0.0,0.0,0.0,0.001,0.005,0.029,0.076,0.083,0.04,0.012,0.004,0.001,0.003,0.001,0.002,1.0,0.0,0.001,0.003,0.005,0.004,0.005,0.009,0.003,0.001,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.001 +28,0.0,0.0,0.0,0.0,0.001,0.006,0.042,0.153,0.232,0.162,0.06,0.0,0.0,0.0,0.0,0.0,0.003,0.02,0.073,0.114,0.081,0.03,0.0,0.001,0.0,0.0,0.0,1.0,0.0,0.001,0.001,0.001,0.001,0.001,0.014,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0 +29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.032,0.166,0.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.011,0.07,0.108,0.001,0.001,0.001,0.001,0.001,0.0,1.0,0.001,0.002,0.001,0.002,0.001,0.001,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0 +30,0.019,0.039,0.111,0.076,0.019,0.001,0.0,0.0,0.0,0.0,0.0,0.01,0.017,0.047,0.02,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.006,0.003,0.004,0.003,0.001,0.001,1.0,0.011,0.009,0.011,0.005,0.007,0.003,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0 +31,0.004,0.017,0.07,0.112,0.099,0.046,0.01,0.001,0.0,0.0,0.0,0.004,0.012,0.045,0.059,0.041,0.014,0.002,0.0,0.0,0.0,0.0,0.004,0.016,0.005,0.005,0.005,0.001,0.002,0.011,1.0,0.012,0.015,0.007,0.009,0.004,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0 +32,0.001,0.003,0.026,0.076,0.121,0.106,0.057,0.02,0.004,0.0,0.0,0.0,0.003,0.02,0.049,0.065,0.051,0.024,0.007,0.001,0.0,0.0,0.004,0.006,0.01,0.004,0.004,0.001,0.001,0.009,0.012,1.0,0.012,0.006,0.008,0.003,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0 +33,0.0,0.0,0.004,0.023,0.077,0.138,0.117,0.058,0.019,0.006,0.001,0.0,0.0,0.004,0.018,0.052,0.074,0.055,0.025,0.008,0.002,0.0,0.004,0.008,0.005,0.009,0.005,0.001,0.002,0.011,0.015,0.012,1.0,0.007,0.009,0.004,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0 +34,0.0,0.0,0.0,0.003,0.018,0.075,0.151,0.135,0.059,0.017,0.005,0.0,0.0,0.0,0.003,0.016,0.052,0.083,0.061,0.025,0.007,0.003,0.002,0.004,0.002,0.003,0.009,0.001,0.001,0.005,0.007,0.006,0.007,1.0,0.005,0.002,0.0,0.0,0.0,0.0,0.008,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.001 +35,0.0,0.0,0.0,0.0,0.001,0.012,0.063,0.175,0.219,0.136,0.046,0.0,0.0,0.0,0.0,0.002,0.011,0.05,0.106,0.109,0.058,0.019,0.003,0.005,0.003,0.003,0.003,0.014,0.001,0.007,0.009,0.008,0.009,0.005,1.0,0.002,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,0.0,0.0,0.0,0.0 +36,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.007,0.058,0.195,0.245,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.008,0.053,0.127,0.12,0.001,0.002,0.001,0.001,0.001,0.0,0.005,0.003,0.004,0.003,0.004,0.002,0.002,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0 +37,0.005,0.013,0.025,0.01,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.009,0.022,0.011,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.005,0.006,0.01,0.009,0.007,0.011,0.009,0.008,0.006,0.009,0.009,0.009,0.004,0.008,0.007,0.008,0.009,0.006 +38,0.005,0.015,0.044,0.038,0.015,0.002,0.0,0.0,0.0,0.0,0.0,0.005,0.012,0.032,0.027,0.015,0.005,0.001,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.005,1.0,0.009,0.015,0.014,0.01,0.017,0.011,0.017,0.009,0.013,0.013,0.014,0.005,0.01,0.014,0.012,0.014,0.01 +39,0.001,0.006,0.031,0.051,0.043,0.018,0.003,0.0,0.0,0.0,0.0,0.002,0.007,0.028,0.037,0.03,0.016,0.006,0.002,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.006,0.009,1.0,0.019,0.017,0.012,0.021,0.013,0.014,0.016,0.016,0.016,0.016,0.007,0.012,0.013,0.017,0.017,0.012 +40,0.0,0.001,0.009,0.032,0.058,0.049,0.018,0.003,0.0,0.0,0.0,0.0,0.002,0.013,0.032,0.043,0.033,0.016,0.006,0.002,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.01,0.015,0.019,1.0,0.03,0.022,0.037,0.024,0.025,0.018,0.032,0.029,0.029,0.012,0.021,0.024,0.026,0.031,0.021 +41,0.0,0.0,0.001,0.006,0.029,0.063,0.056,0.02,0.003,0.0,0.0,0.0,0.0,0.003,0.012,0.035,0.049,0.036,0.017,0.006,0.002,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,0.009,0.014,0.017,0.03,1.0,0.02,0.033,0.021,0.023,0.016,0.026,0.032,0.026,0.011,0.019,0.021,0.023,0.027,0.019 +42,0.0,0.0,0.0,0.0,0.004,0.022,0.063,0.083,0.047,0.012,0.002,0.0,0.0,0.0,0.002,0.009,0.035,0.066,0.066,0.036,0.014,0.004,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,0.0,0.0,0.0,0.0,0.019,0.0,0.007,0.01,0.012,0.022,0.02,1.0,0.024,0.016,0.017,0.012,0.019,0.019,0.03,0.008,0.014,0.016,0.017,0.019,0.014 +43,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.011,0.051,0.072,0.037,0.0,0.0,0.0,0.0,0.0,0.001,0.005,0.033,0.077,0.074,0.037,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.011,0.017,0.021,0.037,0.033,0.024,1.0,0.026,0.028,0.02,0.032,0.032,0.032,0.015,0.023,0.026,0.029,0.033,0.023 +44,0.004,0.013,0.03,0.018,0.005,0.001,0.0,0.0,0.0,0.0,0.0,0.008,0.021,0.054,0.042,0.017,0.004,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.011,0.013,0.024,0.021,0.016,0.026,1.0,0.018,0.013,0.021,0.021,0.021,0.008,0.018,0.017,0.018,0.021,0.015 +45,0.002,0.008,0.033,0.041,0.026,0.007,0.001,0.0,0.0,0.0,0.0,0.002,0.008,0.037,0.056,0.046,0.022,0.006,0.001,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.008,0.017,0.014,0.025,0.023,0.017,0.028,0.018,1.0,0.014,0.022,0.022,0.022,0.009,0.016,0.022,0.02,0.023,0.016 +46,0.0,0.001,0.016,0.041,0.052,0.032,0.009,0.001,0.0,0.0,0.0,0.0,0.001,0.013,0.037,0.059,0.05,0.023,0.007,0.001,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,0.0,0.0,0.006,0.009,0.016,0.018,0.016,0.012,0.02,0.013,0.014,1.0,0.016,0.016,0.016,0.006,0.012,0.013,0.016,0.016,0.011 +47,0.0,0.0,0.002,0.013,0.044,0.066,0.039,0.01,0.001,0.0,0.0,0.0,0.0,0.002,0.009,0.029,0.059,0.056,0.024,0.006,0.001,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.009,0.013,0.016,0.032,0.026,0.019,0.032,0.021,0.022,0.016,1.0,0.025,0.025,0.01,0.018,0.021,0.022,0.027,0.018 +48,0.0,0.0,0.0,0.001,0.009,0.04,0.074,0.048,0.01,0.001,0.0,0.0,0.0,0.001,0.002,0.006,0.02,0.052,0.059,0.024,0.007,0.001,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.009,0.013,0.016,0.029,0.032,0.019,0.032,0.021,0.022,0.016,0.025,1.0,0.025,0.01,0.018,0.021,0.022,0.026,0.018 +49,0.0,0.0,0.0,0.0,0.0,0.004,0.029,0.079,0.078,0.03,0.006,0.0,0.0,0.0,0.001,0.002,0.005,0.014,0.044,0.065,0.039,0.013,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.009,0.014,0.016,0.029,0.026,0.03,0.032,0.021,0.022,0.016,0.025,0.025,1.0,0.01,0.018,0.021,0.023,0.026,0.018 +50,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.056,0.058,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.003,0.011,0.027,0.048,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.004,0.005,0.007,0.012,0.011,0.008,0.015,0.008,0.009,0.006,0.01,0.01,0.01,1.0,0.007,0.008,0.009,0.01,0.007 +51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.009,0.022,0.018,0.008,0.002,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.01,0.012,0.021,0.019,0.014,0.023,0.018,0.016,0.012,0.018,0.018,0.018,0.007,1.0,0.015,0.016,0.019,0.013 +52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.003,0.017,0.024,0.022,0.012,0.004,0.001,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,0.0,0.0,0.0,0.007,0.014,0.013,0.024,0.021,0.016,0.026,0.017,0.022,0.013,0.021,0.021,0.021,0.008,0.015,1.0,0.018,0.021,0.015 +53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.016,0.027,0.025,0.014,0.005,0.001,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.0,0.0,0.002,0.0,0.0,0.0,0.0,0.008,0.012,0.017,0.026,0.023,0.017,0.029,0.018,0.02,0.016,0.022,0.022,0.023,0.009,0.016,0.018,1.0,0.023,0.016 +54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.003,0.012,0.026,0.028,0.015,0.005,0.001,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.009,0.014,0.017,0.031,0.027,0.019,0.033,0.021,0.023,0.016,0.027,0.026,0.026,0.01,0.019,0.021,0.023,1.0,0.019 +55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.009,0.024,0.028,0.015,0.005,0.001,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.006,0.01,0.012,0.021,0.019,0.014,0.023,0.015,0.016,0.011,0.018,0.018,0.018,0.007,0.013,0.015,0.016,0.019,1.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml new file mode 100644 index 0000000000..87e5ac31d1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CC.yaml @@ -0,0 +1,857 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.00013000000000000002 + lumi: 0.0005 + sys_0: -4.560096602031162e-09 + sys_1: 2.4428412644459394e-08 + sys_2: 1.2684603265892943e-06 + sys_3: -1.1014521684599978e-06 + sys_4: -1.0171497575545482e-06 + sys_5: 9.249472202387696e-08 + sys_6: 2.391811035150065e-06 + sys_7: -3.626369300298676e-06 + sys_8: 1.071574964078692e-07 + sys_9: 3.1003545034459826e-06 + sys_10: 6.041925652886287e-07 + sys_11: 4.821952423431673e-07 + sys_12: 1.713736767236041e-06 + sys_13: -6.888111760621015e-07 + sys_14: 2.478850606828578e-07 + sys_15: -1.1829305159172325e-06 + sys_16: -1.3392613329049035e-06 + sys_17: 2.6767427116823496e-06 + sys_18: -3.7251439923508458e-06 + sys_19: 4.753305868980056e-08 + sys_20: -1.3637527784899613e-06 + sys_21: -9.041404089633108e-06 + sys_22: -6.864649078147824e-06 + sys_23: -2.8837299626865834e-06 + sys_24: 7.822546002887329e-08 + sys_25: -6.281404138602108e-07 + sys_26: 5.195814354069839e-06 + sys_27: 4.147300398148459e-06 + sys_28: 4.062628064804723e-06 + sys_29: 6.36452015592485e-07 + sys_30: -2.637819580469962e-06 + sys_31: -7.86840734272504e-06 + sys_32: -9.864676449518559e-06 + sys_33: 3.477716997795256e-06 + sys_34: -3.4234806730539725e-06 + sys_35: -8.633810077765413e-06 + sys_36: 7.031900031116394e-06 + sys_37: 3.4908448489498704e-05 + sys_38: 3.411383454025279e-06 + sys_39: 1.0845248742572464e-05 + sys_40: -2.7356807914590067e-05 + sys_41: 7.3679285270873105e-06 + sys_42: 6.426444846710027e-06 + sys_43: -1.6234555331377497e-06 + sys_44: -1.6953711975125955e-05 + sys_45: 1.8087075350102373e-05 + sys_46: -2.8027152144609412e-05 + sys_47: -3.6049757245086026e-05 + sys_48: 5.32027352444264e-05 + sys_49: 2.460992740656608e-05 + sys_50: -0.001468579266585301 + sys_51: -4.7677947095593646e-05 + sys_52: -0.0004004891142593906 + sys_53: -0.00010407535221523833 + sys_54: 2.954663880218572e-05 +- pol: 0.000364 + lumi: 0.0005 + sys_0: -1.4350515100821238e-08 + sys_1: 6.98388401614333e-08 + sys_2: 2.4812901550233576e-06 + sys_3: -2.4875088413795213e-06 + sys_4: -1.611097141836905e-06 + sys_5: 2.6063737605276263e-07 + sys_6: 3.5330583079319117e-06 + sys_7: -7.542239919877716e-06 + sys_8: 1.9714838426268054e-06 + sys_9: 6.609398167675757e-06 + sys_10: 1.3301996165753286e-06 + sys_11: 3.953981070875216e-07 + sys_12: 4.8429488457332475e-06 + sys_13: -3.254617777457859e-07 + sys_14: 1.4934978414340295e-06 + sys_15: -6.737235363180509e-06 + sys_16: -8.328073531005629e-06 + sys_17: 5.07416872423304e-06 + sys_18: -6.927958484511265e-06 + sys_19: -3.0492399451891985e-07 + sys_20: -2.735913753109002e-06 + sys_21: -2.885339301949838e-05 + sys_22: -1.8856658535124737e-05 + sys_23: -6.492905533665343e-06 + sys_24: 1.1138153197792638e-06 + sys_25: -2.2530424338070114e-06 + sys_26: 1.0246798772062311e-05 + sys_27: 8.00125964433146e-06 + sys_28: 8.600010351142834e-06 + sys_29: 1.2016967377275594e-06 + sys_30: -4.967429143549827e-06 + sys_31: -1.4995987528439933e-05 + sys_32: -3.2201809694915586e-05 + sys_33: 9.567812619543143e-06 + sys_34: -1.2765784125598125e-05 + sys_35: -2.269971614261191e-05 + sys_36: 1.564236376705338e-05 + sys_37: 7.941486553433716e-05 + sys_38: 7.308212275450037e-06 + sys_39: 1.729845707140729e-05 + sys_40: -7.48765624835082e-05 + sys_41: 3.229061945804663e-05 + sys_42: 1.2373521384920144e-05 + sys_43: 2.3389670344830197e-06 + sys_44: -3.6909598141926e-05 + sys_45: 2.9031619058603916e-05 + sys_46: -6.66439815866901e-05 + sys_47: -8.28128986996252e-05 + sys_48: 0.0003236228288981583 + sys_49: -5.873601484410936e-06 + sys_50: 6.391820997545912e-05 + sys_51: 4.980949144870765e-05 + sys_52: -0.0005412019082520859 + sys_53: 0.0007591695470461349 + sys_54: -0.0013070271436651112 +- pol: 8.45e-05 + lumi: 0.0005 + sys_0: -4.8949168836575834e-08 + sys_1: 1.635009414589803e-06 + sys_2: 1.2466414086275518e-06 + sys_3: -1.0417493811180143e-06 + sys_4: -1.0519039018460297e-06 + sys_5: 4.982741172113026e-07 + sys_6: 2.148079212052723e-06 + sys_7: -3.451233811238195e-06 + sys_8: 1.3866507194651015e-05 + sys_9: 4.379868907485749e-06 + sys_10: 1.4459921130399144e-06 + sys_11: 1.3467020051862516e-08 + sys_12: 3.116798922367844e-06 + sys_13: -2.4714727536502207e-06 + sys_14: 3.4638030466580756e-06 + sys_15: -2.8901830077936217e-05 + sys_16: -3.724879285646485e-05 + sys_17: 4.01649332293061e-06 + sys_18: -5.391890693241455e-06 + sys_19: -4.210454381787708e-06 + sys_20: -2.296943704316622e-06 + sys_21: -7.11100605735854e-05 + sys_22: -2.8513298064913916e-05 + sys_23: -6.375634947844978e-06 + sys_24: 1.9309292419168992e-05 + sys_25: -1.3138195740667434e-05 + sys_26: 1.2000818188139e-05 + sys_27: 3.3885173049508478e-06 + sys_28: 1.7012349886561553e-05 + sys_29: -1.8651717902407688e-06 + sys_30: 3.6317430569236355e-07 + sys_31: -5.359405085463944e-06 + sys_32: -6.755963744010035e-05 + sys_33: 1.2358249167326299e-05 + sys_34: -4.725875189807159e-05 + sys_35: -6.047347821485889e-05 + sys_36: 3.9155211988379244e-05 + sys_37: 0.0001919653291310243 + sys_38: 2.1353137806799524e-05 + sys_39: -8.162607426295082e-06 + sys_40: -0.00017969791105140474 + sys_41: 0.00010095691577827111 + sys_42: -6.600048383401051e-06 + sys_43: 1.4894395627376434e-05 + sys_44: -9.033167684037203e-06 + sys_45: -2.6395082039649414e-05 + sys_46: 2.1304549563711377e-05 + sys_47: 9.197785885254403e-05 + sys_48: 2.3660777626871353e-05 + sys_49: -0.00138402763791214 + sys_50: -2.703209786900935e-05 + sys_51: 0.00022517601119598517 + sys_52: -5.5598169300623825e-05 + sys_53: 0.00014708267515579394 + sys_54: 0.00012768957782458365 +- pol: 0.00032500000000000004 + lumi: 0.0005 + sys_0: -1.8205210440309951e-07 + sys_1: 1.0385015502342131e-05 + sys_2: 1.4468870699877788e-06 + sys_3: -1.1790260617547365e-06 + sys_4: -1.3275342435102785e-06 + sys_5: 2.662402100407055e-06 + sys_6: 2.146789812207663e-06 + sys_7: -5.538668911703668e-06 + sys_8: 5.3775151748429556e-05 + sys_9: 4.356187414387071e-06 + sys_10: 5.292285421841136e-06 + sys_11: -1.1761079012548502e-06 + sys_12: 5.05715549755688e-06 + sys_13: -3.7718923475312575e-06 + sys_14: 4.856186564514883e-06 + sys_15: -5.231639973889442e-05 + sys_16: -6.98731392437344e-05 + sys_17: 8.953556731511881e-06 + sys_18: -1.1625633031459533e-05 + sys_19: -1.9994338794500726e-05 + sys_20: -8.915563500499414e-06 + sys_21: -6.640855229956514e-05 + sys_22: -7.390171717001009e-06 + sys_23: -7.764721494265769e-06 + sys_24: 6.200736609571238e-05 + sys_25: -3.585017273477217e-05 + sys_26: 4.062403605703637e-05 + sys_27: -1.5376857717215646e-07 + sys_28: 5.3389423501832087e-05 + sys_29: -6.7788087546181346e-06 + sys_30: -3.8887584494273963e-08 + sys_31: -4.223759107147952e-06 + sys_32: -5.9160242599703675e-05 + sys_33: 4.869134463071268e-06 + sys_34: -8.269924759179364e-05 + sys_35: -0.00014755987760509443 + sys_36: 9.522514072611805e-05 + sys_37: 0.00015761091676766667 + sys_38: 8.24766139298381e-05 + sys_39: -7.78587256543229e-05 + sys_40: -0.00020753603239468473 + sys_41: 0.00022134073316761507 + sys_42: -6.307021775684278e-05 + sys_43: 3.4539777323264196e-05 + sys_44: 4.853309488184174e-05 + sys_45: -0.00012385747740057733 + sys_46: 0.0002378079624416948 + sys_47: 0.00017104749809174807 + sys_48: 5.969430850046424e-05 + sys_49: -0.00022548486205091128 + sys_50: 5.129567479945272e-05 + sys_51: -0.0014219206695253485 + sys_52: 2.918771071828348e-05 + sys_53: -0.00047100870868830105 + sys_54: -0.00033624383806188927 +- pol: 0.000351 + lumi: 0.0005 + sys_0: -7.524403284754603e-07 + sys_1: 6.110429619211667e-05 + sys_2: 3.2316976046405205e-06 + sys_3: -3.118545211370617e-06 + sys_4: -2.4800044652928193e-06 + sys_5: 1.868510361201009e-05 + sys_6: 3.831010676910377e-06 + sys_7: -1.153850327158968e-05 + sys_8: 0.00011922350405679808 + sys_9: 1.2276678036466795e-05 + sys_10: 1.5302344697194968e-05 + sys_11: -6.708791630649695e-06 + sys_12: 1.495551667825199e-05 + sys_13: -1.0391094160617687e-05 + sys_14: 8.84607638676495e-06 + sys_15: -5.354603855918497e-05 + sys_16: -7.515231705422742e-05 + sys_17: 4.022032578357062e-05 + sys_18: -3.771609461981962e-05 + sys_19: -8.631417440382291e-05 + sys_20: -4.252836910910164e-05 + sys_21: -2.6775617254678702e-05 + sys_22: 6.058255059881807e-06 + sys_23: -1.1388174974746604e-05 + sys_24: 0.00010383198555827178 + sys_25: -6.355405407056147e-05 + sys_26: 0.00016765793977535298 + sys_27: -2.138457768507903e-05 + sys_28: 0.00017187799339848768 + sys_29: -2.865188788787562e-05 + sys_30: 1.9434522466218707e-06 + sys_31: 2.0163416396939003e-05 + sys_32: -2.9086197927227284e-05 + sys_33: 1.7110605559605936e-06 + sys_34: -8.818609505120338e-05 + sys_35: -0.0002923806318247833 + sys_36: 0.00019419898299386269 + sys_37: 4.7635889032121494e-05 + sys_38: 0.00015122701052680586 + sys_39: -0.00023706779060027398 + sys_40: -0.00011389683087034587 + sys_41: 0.0002923805776734542 + sys_42: -0.00020179499989953813 + sys_43: 5.7044914152072174e-05 + sys_44: 0.0003083138590418168 + sys_45: -0.0003528557600016581 + sys_46: -0.0017016876472354316 + sys_47: -0.000755830620738397 + sys_48: -0.00022999855639250274 + sys_49: -5.9319537873931496e-05 + sys_50: 1.8805482142969606e-05 + sys_51: -0.00017773334686711504 + sys_52: 4.946311995687257e-05 + sys_53: -4.278752088731884e-05 + sys_54: -2.7912834314105446e-06 +- pol: 0.000741 + lumi: 0.0005 + sys_0: -1.9604555064431743e-06 + sys_1: 0.00017160773766128194 + sys_2: 6.1683502786157975e-06 + sys_3: -6.299775246143367e-06 + sys_4: -4.704880655872315e-06 + sys_5: 0.00010267586593322797 + sys_6: 6.584792131367915e-06 + sys_7: -2.4596942232009612e-05 + sys_8: 0.00012387129200254593 + sys_9: 3.598925194661992e-05 + sys_10: 2.6782795407950756e-05 + sys_11: -2.9457713903028642e-05 + sys_12: 4.421708007527708e-05 + sys_13: -6.305685280289203e-05 + sys_14: 2.846080623158932e-05 + sys_15: -1.9776231753112484e-05 + sys_16: -4.2775259680793554e-05 + sys_17: 0.00018671818176553185 + sys_18: -4.784716081550442e-05 + sys_19: -0.0001826758114335547 + sys_20: -0.00019635095578864138 + sys_21: 7.5216552251806366e-06 + sys_22: 7.756485434297345e-06 + sys_23: 3.846319173022284e-05 + sys_24: 8.705890763075384e-05 + sys_25: -6.927986245733106e-05 + sys_26: 0.00043892605417136153 + sys_27: -0.0001322453499691359 + sys_28: 0.00037000682588054747 + sys_29: -8.276552995005455e-05 + sys_30: 6.892735336197996e-05 + sys_31: 0.00016422034065490023 + sys_32: 9.244018573004296e-06 + sys_33: 3.4228759020746574e-06 + sys_34: -4.642061467302348e-05 + sys_35: -0.0003437696206291846 + sys_36: 0.00023233118614142826 + sys_37: -1.5131125263042321e-05 + sys_38: 0.00011264049448128512 + sys_39: -0.000627669759616302 + sys_40: 2.2985894239690764e-05 + sys_41: 0.00015942763101099586 + sys_42: -0.0005069869207118745 + sys_43: 8.691990828817637e-05 + sys_44: -0.002212327456653561 + sys_45: 0.0008457649840796313 + sys_46: -0.00018485462107000082 + sys_47: -0.00012693660160142375 + sys_48: -7.999695234448494e-05 + sys_49: -1.2497023167811368e-05 + sys_50: 1.0176314762857157e-05 + sys_51: -5.216822609530119e-05 + sys_52: 3.471352678465345e-05 + sys_53: -3.135352700130002e-05 + sys_54: -2.0264809930116e-06 +- pol: 0.0007475 + lumi: 0.0005 + sys_0: -2.9254947869311066e-06 + sys_1: 0.0002317010479031277 + sys_2: 1.5794472301482664e-05 + sys_3: -1.7206007112067514e-05 + sys_4: -1.4286012281926876e-05 + sys_5: 0.00029286261450279903 + sys_6: 1.68696072876921e-05 + sys_7: -6.401794987400602e-05 + sys_8: 5.5754714357431256e-05 + sys_9: 0.00016116409357210383 + sys_10: 5.39381530140466e-05 + sys_11: -0.00019000810976038522 + sys_12: 0.00011935996680818521 + sys_13: -0.0003446093496851203 + sys_14: 6.851670014487451e-05 + sys_15: 3.566152603670388e-05 + sys_16: -1.3727549952986504e-05 + sys_17: 0.0006531419564800202 + sys_18: 0.00017753990530306648 + sys_19: -0.00023530132606138765 + sys_20: -0.00063571785078859 + sys_21: 8.025232264742943e-06 + sys_22: 3.7083257159444146e-06 + sys_23: 0.00033387886140126175 + sys_24: 4.455116756450709e-05 + sys_25: -5.9914321774195955e-05 + sys_26: 0.0007246118183336508 + sys_27: -0.0005435646600755206 + sys_28: 0.0006415186689724327 + sys_29: -0.00018757390439597317 + sys_30: 0.0007586311027336389 + sys_31: 0.0009452765196464993 + sys_32: 0.00020869561713017493 + sys_33: -8.902892302992497e-05 + sys_34: 9.110004761075139e-05 + sys_35: -0.0010964735357806177 + sys_36: 0.0006438353478154349 + sys_37: -0.0003238767523782583 + sys_38: 0.0007333017965956237 + sys_39: 0.0030255987960204596 + sys_40: -0.00014525397357050365 + sys_41: 0.0002229044147326953 + sys_42: 0.0004459508178381007 + sys_43: -0.00012894487134254177 + sys_44: -0.00019397342096312708 + sys_45: 0.00012389625684547874 + sys_46: -4.943658287455294e-05 + sys_47: -2.7101245158562847e-05 + sys_48: -2.6950037879127424e-05 + sys_49: 9.664388189555986e-07 + sys_50: 4.319503349591252e-06 + sys_51: -8.453160919563809e-06 + sys_52: 1.4944221889224057e-05 + sys_53: -1.3053544706310127e-05 + sys_54: -2.4143028225874583e-07 +- pol: 0.000858 + lumi: 0.0005 + sys_0: -2.023613764933343e-06 + sys_1: 0.00012288063657802615 + sys_2: 6.145814340100246e-05 + sys_3: -3.997775893783456e-05 + sys_4: -6.598373410876714e-05 + sys_5: 0.00028498681921190115 + sys_6: 3.8463096026470854e-05 + sys_7: -0.00020262417942494508 + sys_8: 7.935916061301043e-06 + sys_9: 0.0006497187406231657 + sys_10: 0.00014812835472705673 + sys_11: -0.0008740692497390651 + sys_12: 0.00011396906177454316 + sys_13: -0.001130378669512184 + sys_14: -0.00018603910629203798 + sys_15: 6.444703619354445e-05 + sys_16: -2.4441684683146103e-06 + sys_17: 0.0009084892447243422 + sys_18: 0.0012476101016886685 + sys_19: -0.0004277488575734429 + sys_20: -0.0012256146803807735 + sys_21: -3.201156452375464e-05 + sys_22: -1.7292903941638796e-05 + sys_23: 0.0010409531005511317 + sys_24: 7.065959064866499e-05 + sys_25: 3.1209354723915587e-06 + sys_26: 0.001822584054764026 + sys_27: 0.0038007237347611007 + sys_28: -0.00027959462285844937 + sys_29: 0.00027886527901149576 + sys_30: -0.00243915654123967 + sys_31: -0.0009061962001091868 + sys_32: -0.00012163400965698404 + sys_33: 7.566945122117982e-05 + sys_34: -6.922915055588664e-05 + sys_35: -4.5253624852202154e-05 + sys_36: 6.799903735286373e-05 + sys_37: -5.366489786171758e-06 + sys_38: 0.00012309092777058786 + sys_39: 0.0004476132759296302 + sys_40: -2.9949031725285892e-05 + sys_41: 7.347454686881526e-05 + sys_42: 0.00011221939465734653 + sys_43: -3.2530748138902996e-05 + sys_44: -6.26733818893808e-05 + sys_45: 3.38432037625807e-05 + sys_46: -1.0646597632365682e-05 + sys_47: -1.3849599588938712e-06 + sys_48: -1.1734257454425227e-05 + sys_49: 3.400146945165957e-06 + sys_50: 2.039562258964101e-06 + sys_51: 2.5441528738711875e-06 + sys_52: 8.405840861895127e-06 + sys_53: -7.116808896693639e-06 + sys_54: 4.399363244587302e-07 +- pol: 0.0013455000000000001 + lumi: 0.0005 + sys_0: -1.0507706816021392e-06 + sys_1: 3.374785867190488e-05 + sys_2: 0.00044447949958207906 + sys_3: -5.977339354934236e-05 + sys_4: -0.0005307404517739844 + sys_5: 0.00011222941474132726 + sys_6: -0.0001932223650361499 + sys_7: -0.00039538252223308274 + sys_8: 6.414019979796901e-06 + sys_9: 0.0018200920475480587 + sys_10: 0.0003905279591486095 + sys_11: -0.0032716966123211137 + sys_12: -0.00022077062659552865 + sys_13: -0.004125352917833185 + sys_14: -0.0023086648250417027 + sys_15: -2.984417228600345e-05 + sys_16: 1.3067931342768387e-06 + sys_17: 0.0021454799995885387 + sys_18: -0.00640864914360429 + sys_19: 0.002009349093768423 + sys_20: 0.0011454495073973865 + sys_21: 7.141138031008925e-05 + sys_22: 3.391663496083169e-05 + sys_23: -0.0009005697673310205 + sys_24: -4.7074229862855635e-05 + sys_25: -2.7478994595321822e-05 + sys_26: 5.566348093992993e-05 + sys_27: 0.00011049167415091196 + sys_28: 0.00010960067919343836 + sys_29: 0.0001840550093664683 + sys_30: -0.0005046067802955028 + sys_31: -0.00019240838454189066 + sys_32: -3.4115854650070855e-05 + sys_33: 6.476981775574654e-05 + sys_34: -3.679607697926645e-05 + sys_35: -1.640644497666166e-05 + sys_36: 3.081253735232797e-05 + sys_37: -7.280202602349878e-07 + sys_38: 3.940191351198442e-05 + sys_39: 0.0001220759660594485 + sys_40: -7.671794322031015e-06 + sys_41: 1.9269815799874348e-05 + sys_42: 2.7551506787972574e-05 + sys_43: -6.624005062344384e-06 + sys_44: -1.3823264594973159e-05 + sys_45: 5.785919398057196e-06 + sys_46: -2.6753452234788226e-07 + sys_47: 2.6343072772339526e-06 + sys_48: -4.0300721262836795e-06 + sys_49: 1.895468633747861e-06 + sys_50: 6.391550941324944e-07 + sys_51: 2.558765519259094e-06 + sys_52: 3.246940048976359e-06 + sys_53: -2.422037202090638e-06 + sys_54: 4.927865179263534e-08 +- pol: 0.002119 + lumi: 0.0005 + sys_0: -1.004827314675371e-06 + sys_1: 6.377656067478237e-06 + sys_2: 0.003198306649639695 + sys_3: 0.0006509136909840617 + sys_4: -0.002968466930536025 + sys_5: 2.915717435666434e-05 + sys_6: -0.0030864040453760246 + sys_7: 0.0003617178026052363 + sys_8: 2.6612428640752384e-05 + sys_9: 0.013909659447481348 + sys_10: 0.0031090399799236813 + sys_11: 0.005884189648466795 + sys_12: 0.0008298422943182119 + sys_13: 0.0014709067609793903 + sys_14: 0.000975049498871915 + sys_15: 4.30304419585386e-05 + sys_16: -1.666375291435974e-06 + sys_17: 0.00023116812446309022 + sys_18: -0.0005877744170731033 + sys_19: 0.00018327316887117162 + sys_20: 7.256973071946152e-05 + sys_21: 1.5081936553866105e-05 + sys_22: 7.4985726966697826e-06 + sys_23: -0.00015014074229981002 + sys_24: -1.8219180443196077e-05 + sys_25: -1.0804830595240094e-05 + sys_26: 2.3125016377372087e-05 + sys_27: 1.306134027651173e-05 + sys_28: 5.8096793620545035e-05 + sys_29: 0.00013835181281429093 + sys_30: -0.0001340201876535594 + sys_31: -4.8479894973141354e-05 + sys_32: 4.806973415946291e-06 + sys_33: 8.43996375299518e-05 + sys_34: -2.8329752372915186e-05 + sys_35: -1.086342901293884e-06 + sys_36: 1.1878320598052311e-05 + sys_37: 6.590382948679997e-07 + sys_38: 1.0813633576272636e-05 + sys_39: 3.05389273009438e-05 + sys_40: -1.8616094220752968e-06 + sys_41: 4.567934235123472e-06 + sys_42: 5.878949296634559e-06 + sys_43: -6.629690320819433e-07 + sys_44: -1.8237499841949237e-06 + sys_45: -3.2874341182112825e-07 + sys_46: 1.0533015807114109e-06 + sys_47: 1.7625883474284797e-06 + sys_48: -1.2494581914768121e-06 + sys_49: 9.232072347539184e-07 + sys_50: 2.1043974446938029e-07 + sys_51: 1.376747469501415e-06 + sys_52: 1.2414675007267248e-06 + sys_53: -9.34920974695067e-07 + sys_54: 1.3023832928227276e-07 +- pol: 0.002158 + lumi: 0.0005 + sys_0: -1.4333169523510956e-06 + sys_1: 1.6059377043692603e-05 + sys_2: 0.012170805056056035 + sys_3: 0.0041134595604770535 + sys_4: -0.014964171468280125 + sys_5: -9.074110994408382e-05 + sys_6: 0.02255102024166746 + sys_7: -0.0026150637720448763 + sys_8: -5.1753467016180005e-06 + sys_9: 0.0003759410852683396 + sys_10: 8.987244107400239e-05 + sys_11: 0.0006777942656984108 + sys_12: 0.0001896594826524572 + sys_13: 0.0002414601209482615 + sys_14: 0.00016526289369439798 + sys_15: 9.317445510364129e-06 + sys_16: -3.6921051141237556e-07 + sys_17: 5.068696716773351e-05 + sys_18: -0.00013120530325459438 + sys_19: 4.2212830185518144e-05 + sys_20: 1.4527058561194454e-05 + sys_21: 3.8139919698264083e-06 + sys_22: 1.9231954806285427e-06 + sys_23: -3.454389132679438e-05 + sys_24: -5.2519095532407106e-06 + sys_25: -3.015389268957236e-06 + sys_26: 5.29116237169242e-06 + sys_27: -3.4526908388442805e-07 + sys_28: 1.7821415362070935e-05 + sys_29: 4.2945398740740977e-05 + sys_30: -2.954440289411213e-05 + sys_31: -9.213124824306608e-06 + sys_32: 7.769480946130331e-06 + sys_33: 4.463099732671652e-05 + sys_34: -1.2783907732403276e-05 + sys_35: 1.0499617759029776e-06 + sys_36: 3.4933874496318827e-06 + sys_37: 5.767766095679024e-07 + sys_38: 2.257710734115617e-06 + sys_39: 5.994707260913041e-06 + sys_40: -4.3996874418396135e-07 + sys_41: 1.0173107051718301e-06 + sys_42: 7.247079738921621e-07 + sys_43: 2.758031745080538e-07 + sys_44: 3.4382180594730176e-08 + sys_45: -6.657477954840431e-07 + sys_46: 5.556464230758889e-07 + sys_47: 7.374834382578528e-07 + sys_48: -5.361082830551065e-07 + sys_49: 3.50757211756471e-07 + sys_50: 1.282480744485961e-07 + sys_51: 5.788206232275623e-07 + sys_52: 4.2799381896690266e-07 + sys_53: -3.531191147765054e-07 + sys_54: 5.71579373781375e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml new file mode 100644 index 0000000000..76e8bcfbd3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_1JET_200GEV/uncertainties_CF.yaml @@ -0,0 +1,857 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.000117 + lumi: 0.0005 + sys_0: -5.506821027750456e-09 + sys_1: 2.739252211864794e-08 + sys_2: 1.1137868577419495e-06 + sys_3: -1.2992980376070698e-06 + sys_4: -5.087499552713517e-07 + sys_5: 1.058952572342688e-07 + sys_6: 9.605686614058354e-07 + sys_7: -3.6379546498137694e-06 + sys_8: 1.3791167703116183e-07 + sys_9: 3.253049442198996e-06 + sys_10: 6.006400597813714e-07 + sys_11: 3.953712520603916e-07 + sys_12: 1.7681045060450807e-06 + sys_13: -7.639940358036286e-07 + sys_14: 3.4331642908065405e-07 + sys_15: -2.3258421629724617e-06 + sys_16: -2.7971493763970495e-06 + sys_17: 2.65588964002764e-06 + sys_18: -4.157757531814495e-06 + sys_19: 1.7493997308158419e-07 + sys_20: -1.1213394043393006e-06 + sys_21: -9.63882945264967e-06 + sys_22: -5.755520798266188e-06 + sys_23: -3.390650190918901e-06 + sys_24: 8.440681953506727e-07 + sys_25: 1.0938902531043213e-06 + sys_26: 4.623811527778041e-06 + sys_27: 3.722796766152232e-06 + sys_28: 3.4930777311396345e-06 + sys_29: 4.742985147702295e-07 + sys_30: -2.1809632310722423e-06 + sys_31: -6.235986392968818e-06 + sys_32: -1.7686237078010353e-05 + sys_33: 5.726486843199723e-06 + sys_34: -2.056539461722482e-06 + sys_35: -3.2256908598487226e-06 + sys_36: 1.060142703231449e-05 + sys_37: 1.9923449041793833e-05 + sys_38: 3.130718482924489e-06 + sys_39: 9.800093598912354e-06 + sys_40: -2.096099532405574e-05 + sys_41: 9.373740811821575e-06 + sys_42: 7.256731353875657e-06 + sys_43: 2.543380412717439e-07 + sys_44: -2.1714459422880685e-05 + sys_45: 1.6087047736703096e-05 + sys_46: -3.89548504047662e-05 + sys_47: -5.431434246191443e-05 + sys_48: 6.932791109463223e-05 + sys_49: 1.5474831855534645e-05 + sys_50: 0.00037113542494003274 + sys_51: 0.00013359733801602053 + sys_52: -0.001431996473686652 + sys_53: -0.0006691412348854212 + sys_54: 0.00023226151201889545 +- pol: 0.00026000000000000003 + lumi: 0.0005 + sys_0: -1.6713648631843347e-08 + sys_1: 8.507211557487013e-08 + sys_2: 1.9034110932635708e-06 + sys_3: -1.1910558281776848e-06 + sys_4: -2.1058523653469666e-06 + sys_5: 2.9864674166434496e-07 + sys_6: 4.226884208954114e-06 + sys_7: -6.544450063481272e-06 + sys_8: 4.074250963919467e-06 + sys_9: 5.707076639490448e-06 + sys_10: 1.2813744110015189e-06 + sys_11: 2.5559729003532106e-07 + sys_12: 3.7830117987222475e-06 + sys_13: -1.4372090803130597e-06 + sys_14: 1.1976095739202343e-06 + sys_15: -8.649686031399713e-06 + sys_16: -1.087470099546647e-05 + sys_17: 5.074088039905319e-06 + sys_18: -7.961320292181775e-06 + sys_19: 1.890517327436923e-07 + sys_20: -2.1009540827966806e-06 + sys_21: -2.6038125974001887e-05 + sys_22: -1.4481862054348523e-05 + sys_23: -5.720284402087226e-06 + sys_24: 4.289922931660878e-06 + sys_25: 3.5033359259920206e-06 + sys_26: 9.530666773555164e-06 + sys_27: 7.2030923186474694e-06 + sys_28: 7.425554777468945e-06 + sys_29: 3.050579694664354e-07 + sys_30: -2.572204371456083e-06 + sys_31: -1.3321261063110006e-05 + sys_32: -5.32542309620597e-05 + sys_33: 1.5330571680739146e-05 + sys_34: -1.0519058295030789e-05 + sys_35: -8.759016948095886e-06 + sys_36: 2.499441513020369e-05 + sys_37: 3.992095199103468e-05 + sys_38: 1.2844149140967452e-05 + sys_39: 1.8730208964982052e-05 + sys_40: -5.822611659064576e-05 + sys_41: 2.9278247161608315e-05 + sys_42: 1.0723165962028554e-05 + sys_43: 5.481015891147782e-06 + sys_44: -4.895761555351499e-05 + sys_45: 3.465089084961219e-05 + sys_46: -0.00014218771934916492 + sys_47: -0.00027194474632430415 + sys_48: 0.0017848888213523267 + sys_49: 8.249064762344913e-06 + sys_50: 1.7663707667548472e-05 + sys_51: 2.6307349222720505e-05 + sys_52: 0.0001983428360535271 + sys_53: -0.00015667196741128093 + sys_54: 0.000198245003893842 +- pol: 0.0003835 + lumi: 0.0005 + sys_0: -1.0220742150566305e-07 + sys_1: 5.245833161303965e-06 + sys_2: 2.482701320279961e-06 + sys_3: -2.4906626639965587e-06 + sys_4: -1.6341639050774432e-06 + sys_5: 2.2778402665689073e-06 + sys_6: 3.5291193941398643e-06 + sys_7: -7.519784471273873e-06 + sys_8: 2.229366729988681e-05 + sys_9: 6.571400895634383e-06 + sys_10: 2.66290568712464e-06 + sys_11: -7.666946773618737e-07 + sys_12: 6.140639749270558e-06 + sys_13: -1.9637233448317e-06 + sys_14: 4.625236898003928e-06 + sys_15: -3.6336695208200157e-05 + sys_16: -3.3180544170339334e-05 + sys_17: 5.984213557227238e-06 + sys_18: -9.109220336764415e-06 + sys_19: -3.4965045332011883e-06 + sys_20: -2.811492869009659e-06 + sys_21: -6.0866863200135444e-05 + sys_22: -3.0580017474865036e-05 + sys_23: -8.408329117542404e-06 + sys_24: 3.125570197744028e-05 + sys_25: 1.54034555688977e-05 + sys_26: 1.3950401734360129e-05 + sys_27: 8.108708465422818e-06 + sys_28: 1.7537963646322367e-05 + sys_29: -1.293934253847924e-06 + sys_30: -1.7353977835793513e-06 + sys_31: -7.685742914905494e-06 + sys_32: -0.00012132797681576696 + sys_33: 2.7019119695541595e-05 + sys_34: -5.1439360079425735e-05 + sys_35: -2.909882383958611e-05 + sys_36: 5.286882001812904e-05 + sys_37: 9.430068016414139e-05 + sys_38: 3.3008286402863915e-05 + sys_39: 4.8177735622847465e-06 + sys_40: -0.0001409644345823095 + sys_41: 8.301405550411476e-05 + sys_42: -1.9887152331947547e-06 + sys_43: 1.2855954184188334e-05 + sys_44: -3.227446038817147e-05 + sys_45: -1.0584001633689927e-05 + sys_46: -1.4535743200222368e-05 + sys_47: 7.265573504438368e-05 + sys_48: 8.63082689083722e-05 + sys_49: 0.00010263349387993995 + sys_50: 6.751309807748266e-05 + sys_51: -0.0005589358672759232 + sys_52: -0.00045104260152289196 + sys_53: 0.0011732981269151682 + sys_54: 0.0008542942163520528 +- pol: 0.0001755 + lumi: 0.0005 + sys_0: -3.306559247974167e-07 + sys_1: 2.3963771038924308e-05 + sys_2: 1.3380565868564755e-06 + sys_3: -1.5306657536456862e-06 + sys_4: -7.616651461963939e-07 + sys_5: 4.580367369537355e-06 + sys_6: 8.070289328571305e-07 + sys_7: -6.166209846946845e-06 + sys_8: 6.359328211436958e-05 + sys_9: 4.262908233499366e-06 + sys_10: 1.0834986645638136e-07 + sys_11: -1.1564419849840946e-06 + sys_12: 4.404777773631566e-06 + sys_13: -6.840463722257582e-06 + sys_14: 9.760697658898952e-06 + sys_15: -6.970339964636184e-05 + sys_16: -4.0697205804903156e-05 + sys_17: 8.08151389337509e-06 + sys_18: -1.010497991972664e-05 + sys_19: -1.5067914575676083e-05 + sys_20: -8.507409343408245e-06 + sys_21: -5.885803060339501e-05 + sys_22: -1.4741402143984045e-05 + sys_23: -6.030363102713063e-06 + sys_24: 8.904584165809768e-05 + sys_25: 9.066841757882706e-06 + sys_26: 2.8912102495721512e-05 + sys_27: 1.6907285240349474e-06 + sys_28: 4.8192180504714964e-05 + sys_29: -4.945225582292102e-06 + sys_30: 2.17157295198101e-06 + sys_31: 3.074643054880254e-06 + sys_32: -0.00013018298326901475 + sys_33: 1.711874161639387e-05 + sys_34: -0.00011679981375860605 + sys_35: -9.127042092134025e-05 + sys_36: 8.328622085926798e-05 + sys_37: 5.191616757786581e-05 + sys_38: 7.988758311397349e-05 + sys_39: -5.7471926642166366e-05 + sys_40: -0.00016694539728376396 + sys_41: 0.0001662684257525695 + sys_42: -6.278477784928502e-05 + sys_43: 1.0000715315446381e-05 + sys_44: 3.457182568324471e-05 + sys_45: -0.00015139392983054938 + sys_46: 0.0008941331707266404 + sys_47: -0.0016620260625612227 + sys_48: -0.00018015099974277488 + sys_49: -4.5170209116394797e-05 + sys_50: 8.406940708987477e-06 + sys_51: -3.612745226256384e-05 + sys_52: 7.569621418054519e-06 + sys_53: 4.4219488111829463e-05 + sys_54: 3.652372167785963e-05 +- pol: 0.0004485 + lumi: 0.0005 + sys_0: -3.445054598318295e-06 + sys_1: 8.715067735216908e-05 + sys_2: 3.078977181126551e-06 + sys_3: -3.915549273411908e-06 + sys_4: -1.1582390678906375e-06 + sys_5: 1.3584688173704005e-05 + sys_6: 4.005825250141189e-06 + sys_7: -5.952362822772893e-06 + sys_8: 0.00010757305677835142 + sys_9: 1.3898547256001118e-05 + sys_10: -1.695673332817857e-05 + sys_11: -4.928219106220575e-06 + sys_12: 1.4276730678549667e-05 + sys_13: -2.0771466916085787e-05 + sys_14: 2.4248710471272084e-05 + sys_15: -9.730412093595128e-05 + sys_16: -2.0774368536169926e-05 + sys_17: 2.56149350734144e-05 + sys_18: -2.727555109713215e-05 + sys_19: -6.61248759943897e-05 + sys_20: -4.3457619441903405e-05 + sys_21: -3.678672232456824e-05 + sys_22: 2.9795018814194244e-06 + sys_23: -3.182125088360519e-06 + sys_24: 0.00017123868630870013 + sys_25: -2.5867973214167466e-05 + sys_26: 0.0001134191757108326 + sys_27: -1.894348654007404e-05 + sys_28: 0.00014942605279869253 + sys_29: -1.7841970357197793e-05 + sys_30: 3.2881241299791685e-06 + sys_31: 3.272818659055348e-05 + sys_32: -8.564899372004523e-05 + sys_33: 3.2834098589901165e-06 + sys_34: -0.0001575507953304718 + sys_35: -0.00021349838044825147 + sys_36: 0.00014387320408088968 + sys_37: -3.82422589119752e-06 + sys_38: 0.00010443811943392616 + sys_39: -0.00019517624606405794 + sys_40: -9.246888639923556e-05 + sys_41: 0.00022420174286191938 + sys_42: -0.00024048345914626882 + sys_43: -1.637317476187498e-05 + sys_44: 0.0010436167252547515 + sys_45: 0.002128188083228883 + sys_46: -6.16814422778658e-05 + sys_47: -0.00010852506080969159 + sys_48: -3.372398099014073e-05 + sys_49: -2.051320634753333e-05 + sys_50: 7.999391117825363e-06 + sys_51: -5.3568325628144064e-05 + sys_52: 9.709891318091707e-06 + sys_53: -8.489135480679004e-06 + sys_54: 3.2947994033049656e-06 +- pol: 0.0005655 + lumi: 0.0005 + sys_0: -3.1177566337896694e-05 + sys_1: 0.00016190513702466595 + sys_2: 2.9871546705156885e-06 + sys_3: -2.4403801133114067e-06 + sys_4: -3.336149073487851e-06 + sys_5: 6.155991880182924e-05 + sys_6: 4.099503310835715e-06 + sys_7: -1.586452201820984e-05 + sys_8: 0.00011083125398813991 + sys_9: 4.389658190589926e-05 + sys_10: -6.714477535162125e-05 + sys_11: -2.6894072514311257e-05 + sys_12: 4.529853195915236e-05 + sys_13: -9.980701969987461e-05 + sys_14: 8.563444542006823e-05 + sys_15: -8.64892600867386e-05 + sys_16: 7.138851026974831e-06 + sys_17: 0.0001239675062645892 + sys_18: -5.355714146199688e-05 + sys_19: -0.00020177960353825664 + sys_20: -0.00017093770792937638 + sys_21: -3.15049291353163e-06 + sys_22: 1.0944314765156176e-05 + sys_23: 5.543271051337811e-05 + sys_24: 0.00020084459865318366 + sys_25: -7.200259473394065e-05 + sys_26: 0.0003235355039072506 + sys_27: -0.00013276257475588698 + sys_28: 0.00028712631197225615 + sys_29: -4.954048713617774e-05 + sys_30: 5.482959071557022e-05 + sys_31: 0.00019131275247965954 + sys_32: -1.4048159449728757e-05 + sys_33: -4.374271709703631e-06 + sys_34: -0.00015447079679663418 + sys_35: -0.00036784856803077735 + sys_36: 0.00022127706035147572 + sys_37: -3.732958106840142e-05 + sys_38: 2.5674758807247903e-05 + sys_39: -0.0009575843156984673 + sys_40: 0.00010694549767644899 + sys_41: 0.00034649877199208375 + sys_42: 0.0027884993674921997 + sys_43: -0.0010282225292048426 + sys_44: -0.00014291286027106375 + sys_45: 0.00014170081918189075 + sys_46: -5.677794297337527e-05 + sys_47: -4.5800721258050445e-05 + sys_48: -2.0337272043228966e-05 + sys_49: -5.009789717876033e-06 + sys_50: 3.3159712072074815e-06 + sys_51: -2.0850883443268842e-05 + sys_52: 9.374338576575043e-06 + sys_53: -8.352098432696673e-06 + sys_54: 4.137255227625898e-07 +- pol: 0.000975 + lumi: 0.0005 + sys_0: -0.00011624681538156114 + sys_1: 0.00017494457506970134 + sys_2: 1.1759937829339071e-05 + sys_3: -1.2358971115159456e-05 + sys_4: -1.2776712629348762e-05 + sys_5: 0.00024644770575401443 + sys_6: 1.2824434862720983e-05 + sys_7: -4.7562926296495666e-05 + sys_8: 7.482616506567033e-05 + sys_9: 0.00015024039271191924 + sys_10: -9.8789944446949e-05 + sys_11: -0.00013435447755523827 + sys_12: 0.0001458643088745315 + sys_13: -0.00039061134517290693 + sys_14: 0.00015553424957055035 + sys_15: -3.0129084176605464e-05 + sys_16: 1.964705497954716e-05 + sys_17: 0.0004304413055506528 + sys_18: 9.4050881486392e-05 + sys_19: -0.00037954093670543554 + sys_20: -0.00046674579447836777 + sys_21: 2.3452696588559558e-05 + sys_22: 1.566338523977522e-05 + sys_23: 0.00031560734846120746 + sys_24: 0.00018548188993241512 + sys_25: -0.00012344465577655543 + sys_26: 0.0007172534651135219 + sys_27: -0.000740510219005201 + sys_28: 0.0007895579016721331 + sys_29: -0.00029640620547229313 + sys_30: 0.0015314511239551546 + sys_31: -0.004110566021820337 + sys_32: -0.0002208257424087715 + sys_33: 6.33666033878648e-05 + sys_34: 2.036282784052194e-05 + sys_35: 0.00024101168001640247 + sys_36: -9.560020901077079e-05 + sys_37: 2.815695187693195e-05 + sys_38: 9.553677303684737e-05 + sys_39: 0.00035840301416626986 + sys_40: -2.534299071169617e-05 + sys_41: 5.338899022757845e-05 + sys_42: 0.00012808025717778965 + sys_43: -2.1169713519570132e-05 + sys_44: -5.762617222583528e-05 + sys_45: 4.056279113613857e-05 + sys_46: -1.585462753718355e-05 + sys_47: -6.995875523304517e-06 + sys_48: -1.3346745000783663e-05 + sys_49: 2.160672031126353e-06 + sys_50: 2.237071287429767e-06 + sys_51: -1.064425439155315e-06 + sys_52: 8.100652819121784e-06 + sys_53: -6.9839676618968e-06 + sys_54: 3.7979550596807263e-07 +- pol: 0.0012675 + lumi: 0.0005 + sys_0: -0.00020697677037853602 + sys_1: 0.0001303266509736854 + sys_2: 4.144395721713278e-05 + sys_3: -3.6170611177530576e-05 + sys_4: -7.115973289439701e-05 + sys_5: 0.00044911995003678925 + sys_6: 3.4224140848569673e-06 + sys_7: -0.00013123827385293124 + sys_8: 3.40489648324984e-05 + sys_9: 0.0005098932735313479 + sys_10: -6.7749378986402165e-06 + sys_11: -0.0006473314042077218 + sys_12: 0.00022757438903579322 + sys_13: -0.001218429100656619 + sys_14: -2.9866522401058875e-05 + sys_15: 4.2501845089499964e-05 + sys_16: 1.7188648497985847e-05 + sys_17: 0.0009566381356044701 + sys_18: 0.0016573617228592056 + sys_19: -0.0009606723743130947 + sys_20: -0.0018190564862724128 + sys_21: 9.40469047011792e-05 + sys_22: 6.631771576900178e-05 + sys_23: -0.006472543534827582 + sys_24: -0.0001366986543882536 + sys_25: 5.721214097838624e-05 + sys_26: -0.0003124102352018091 + sys_27: 4.2573376585969664e-05 + sys_28: 6.896955049194162e-05 + sys_29: 0.00018368954404154986 + sys_30: -0.0003637874626566536 + sys_31: -0.00019092995134210226 + sys_32: -4.761455636178189e-05 + sys_33: 2.954860815052817e-05 + sys_34: -2.7530568471066124e-05 + sys_35: -6.251945936630198e-07 + sys_36: 2.0982798601597276e-05 + sys_37: -3.788773136820385e-07 + sys_38: 4.292871500287814e-05 + sys_39: 0.00012349940457800551 + sys_40: -8.043651793062205e-06 + sys_41: 2.1886077821140174e-05 + sys_42: 3.683924517409799e-05 + sys_43: -9.769791142635403e-06 + sys_44: -1.9694438206211038e-05 + sys_45: 1.0092791952778092e-05 + sys_46: -2.909636410031517e-06 + sys_47: 2.9429183845575976e-07 + sys_48: -3.7843055471097545e-06 + sys_49: 1.5563970525559356e-06 + sys_50: 5.577191428665169e-07 + sys_51: 1.3018557417355076e-06 + sys_52: 2.975875674352566e-06 + sys_53: -2.550626656575773e-06 + sys_54: -7.89802795286419e-09 +- pol: 0.0021645 + lumi: 0.0005 + sys_0: -0.00019226826959182054 + sys_1: 8.248379338950807e-05 + sys_2: 0.00027391038713103923 + sys_3: -0.0001143184282684871 + sys_4: -0.0006660182786875622 + sys_5: 0.00035611535568171325 + sys_6: -0.0003375613341109298 + sys_7: -0.00021596235640522666 + sys_8: 3.1252714233162446e-05 + sys_9: 0.0018603021236224524 + sys_10: 0.00027754316852016196 + sys_11: -0.007054694139206729 + sys_12: 0.0085353352498143 + sys_13: 0.005049705544476256 + sys_14: 0.0014396878953105133 + sys_15: -2.1486057707783678e-05 + sys_16: -1.4310135745556155e-05 + sys_17: -0.00010923159274764999 + sys_18: -0.0005548352301624606 + sys_19: 0.00021621118188303653 + sys_20: 0.00011740579183420667 + sys_21: 1.20081827781675e-05 + sys_22: 6.141698742651994e-06 + sys_23: -0.00017082864831847544 + sys_24: -2.392577751623796e-05 + sys_25: -1.0589689068815441e-05 + sys_26: -1.5539930182591537e-06 + sys_27: -4.6545982612664605e-05 + sys_28: 8.287208541220436e-05 + sys_29: 0.00015049120801443951 + sys_30: -0.00020976847756331234 + sys_31: -6.885039895191138e-05 + sys_32: -2.2608683432405345e-05 + sys_33: 3.0247541600462747e-05 + sys_34: -2.085118554443842e-05 + sys_35: -4.7135817897337285e-07 + sys_36: 1.2874591410517985e-05 + sys_37: -5.346321542997382e-07 + sys_38: 1.4300255360083174e-05 + sys_39: 4.131148047332628e-05 + sys_40: -2.1539718824862692e-06 + sys_41: 5.724904661585658e-06 + sys_42: 8.912710280591665e-06 + sys_43: -1.913862023203634e-06 + sys_44: -3.952857675054004e-06 + sys_45: 6.959301525076316e-07 + sys_46: 6.493784466529273e-07 + sys_47: 1.5404502800721786e-06 + sys_48: -1.2242577211467465e-06 + sys_49: 8.123210815364671e-07 + sys_50: 1.2236700414675673e-07 + sys_51: 1.3759105106236719e-06 + sys_52: 1.1663722121304543e-06 + sys_53: -1.1552386626513135e-06 + sys_54: 1.1214667092579576e-08 +- pol: 0.0028405 + lumi: 0.0005 + sys_0: -0.00012098225450670907 + sys_1: 6.0789693236933004e-05 + sys_2: 0.0022375170909480907 + sys_3: 0.00023739815901494 + sys_4: -0.0036887843920609185 + sys_5: 0.0003250303881546486 + sys_6: -0.005344332316351566 + sys_7: -0.02129126984565335 + sys_8: -8.827904845589508e-06 + sys_9: -0.0010693427313493659 + sys_10: -0.00019717534413783664 + sys_11: 0.0008914672490030538 + sys_12: 0.0001716461647427735 + sys_13: 0.00033585386710022734 + sys_14: 0.00015012419382282038 + sys_15: 4.4127091315889635e-06 + sys_16: -1.566006508273607e-07 + sys_17: 3.5566125083870905e-05 + sys_18: -0.00012580014177032033 + sys_19: 4.47014745068638e-05 + sys_20: 1.502862116186592e-05 + sys_21: 5.092215736576258e-06 + sys_22: 2.493995847713682e-06 + sys_23: -2.814856923149159e-05 + sys_24: -9.687603845898797e-06 + sys_25: -5.711515691392399e-06 + sys_26: -1.231224797385536e-06 + sys_27: -3.148990103265279e-05 + sys_28: 3.6129528848914096e-05 + sys_29: 7.645482870197614e-05 + sys_30: -6.586396964070428e-05 + sys_31: -1.5711982989908898e-05 + sys_32: -3.3584386828978814e-06 + sys_33: 2.7599942271847843e-05 + sys_34: -1.1581200810959032e-05 + sys_35: 2.1807710616622894e-06 + sys_36: 4.144659605302365e-06 + sys_37: 1.5591175236310132e-07 + sys_38: 2.9538550688622485e-06 + sys_39: 8.558108846044575e-06 + sys_40: -2.8192985483199423e-07 + sys_41: 8.055161363054198e-07 + sys_42: 8.537414357400066e-07 + sys_43: 2.0702845050676031e-07 + sys_44: 5.18700129868322e-07 + sys_45: -8.294386814415483e-07 + sys_46: 7.175736016930708e-07 + sys_47: 1.2673806876240145e-06 + sys_48: -5.75965879768399e-07 + sys_49: 4.193036372994683e-07 + sys_50: 9.83798369009177e-08 + sys_51: 8.260516473911181e-07 + sys_52: 6.452305132476701e-07 + sys_53: -4.7024574113328823e-07 + sys_54: 8.287956405008234e-08 +- pol: 0.0003575 + lumi: 0.0005 + sys_0: -5.851303888694402e-05 + sys_1: 2.7996178433072823e-05 + sys_2: 0.023224629640945512 + sys_3: -0.036237034818124646 + sys_4: 0.008003515837841282 + sys_5: -3.813740102301659e-05 + sys_6: 0.0016701056177554957 + sys_7: -0.00040765834137889074 + sys_8: -1.7737129262864104e-06 + sys_9: 2.0394080809534508e-05 + sys_10: 6.787560104914701e-06 + sys_11: 0.0001641059785509825 + sys_12: 4.708863366410807e-05 + sys_13: 6.224118370277068e-05 + sys_14: 3.08313575523923e-05 + sys_15: 1.8950480174166717e-06 + sys_16: -6.133377871660353e-08 + sys_17: 7.329579428766248e-06 + sys_18: -2.5443810548522317e-05 + sys_19: 9.118589876708405e-06 + sys_20: 4.2020390144850865e-06 + sys_21: 1.359261726746838e-06 + sys_22: 6.758100137681983e-07 + sys_23: -4.793114976627494e-06 + sys_24: -2.54766859105655e-06 + sys_25: -1.5271941226344646e-06 + sys_26: 1.0671919342521099e-08 + sys_27: -7.685967437978598e-06 + sys_28: 9.222131903998067e-06 + sys_29: 2.0422148006293946e-05 + sys_30: -1.3027245771655229e-05 + sys_31: -2.598688762849034e-06 + sys_32: 3.5439631001725985e-06 + sys_33: 2.1177186337386202e-05 + sys_34: -6.166277657691816e-06 + sys_35: 1.0765348093199076e-06 + sys_36: 1.3504894489862046e-06 + sys_37: 1.286873073837209e-07 + sys_38: 4.939571900975254e-07 + sys_39: 1.3572335039632471e-06 + sys_40: -4.508836659606546e-08 + sys_41: 1.4209188941054532e-07 + sys_42: 9.782771840926777e-08 + sys_43: 1.297144033846644e-07 + sys_44: 1.551932706389958e-07 + sys_45: -4.5351409065237435e-07 + sys_46: 2.3119338958952692e-07 + sys_47: 3.2643631158624316e-07 + sys_48: -1.0783881035789849e-07 + sys_49: 1.1462039465248088e-07 + sys_50: 2.5871992270863685e-08 + sys_51: 2.1207512424022603e-07 + sys_52: 1.7347859435983505e-07 + sys_53: -1.3260584191249427e-07 + sys_54: 2.1561410876753635e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_A.yaml new file mode 100644 index 0000000000..e0a271f93e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_A.yaml @@ -0,0 +1,6 @@ +data_central: +- 0.0019 +- -0.0069 +- 0.0212 +- 0.043 +- 0.078 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_B.yaml new file mode 100644 index 0000000000..ee5207be44 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_B.yaml @@ -0,0 +1,8 @@ +data_central: +- -0.0178 +- 0.0058 +- 0.0048 +- 0.0017 +- -0.0078 +- 0.0099 +- 0.012 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_C.yaml new file mode 100644 index 0000000000..ca01f4b281 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/data_C.yaml @@ -0,0 +1,8 @@ +data_central: +- -0.0034 +- 0.0131 +- 0.0027 +- 0.0066 +- 0.0209 +- 0.011 +- 0.031 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_A.yaml new file mode 100644 index 0000000000..9f24498bec --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_A.yaml @@ -0,0 +1,61 @@ +bins: +- eta_1: + max: 1.8 + mid: 1.3 + min: 0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 19.38 + mid: 18.5 + min: 17.62 +- eta_1: + max: 1.8 + mid: 1.3 + min: 0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 22.9 + mid: 21.7 + min: 20.5 +- eta_1: + max: 1.8 + mid: 1.3 + min: 0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 27.59 + mid: 26.310000000000002 + min: 25.03 +- eta_1: + max: 1.8 + mid: 1.3 + min: 0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 33.48 + mid: 31.74 + min: 30.0 +- eta_1: + max: 1.8 + mid: 1.3 + min: 0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 40.39 + mid: 38.879999999999995 + min: 37.37 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_B.yaml new file mode 100644 index 0000000000..462e9c811c --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_B.yaml @@ -0,0 +1,85 @@ +bins: +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 19.82 + mid: 18.439999999999998 + min: 17.06 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 23.1 + mid: 22.11 + min: 21.12 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 27.73 + mid: 26.57 + min: 25.41 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 33.76 + mid: 32.21 + min: 30.66 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 39.75 + mid: 38.35 + min: 36.95 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 49.66 + mid: 48.01 + min: 46.36 +- eta_1: + max: 0.0 + mid: -0.4 + min: -0.8 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 67.88 + mid: 65.72999999999999 + min: 63.58 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_C.yaml new file mode 100644 index 0000000000..1351f99837 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/kinematics_C.yaml @@ -0,0 +1,85 @@ +bins: +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 19.71 + mid: 18.509999999999998 + min: 17.31 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 22.94 + mid: 21.78 + min: 20.62 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 27.21 + mid: 26.02 + min: 24.83 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 32.16 + mid: 30.79 + min: 29.42 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 39.28 + mid: 37.95 + min: 36.62 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 47.98 + mid: 46.43 + min: 44.88 +- eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + eta_2: + max: 1.8 + mid: 1.3 + min: 0.8 + m_jj: + max: 66.04 + mid: 62.82000000000001 + min: 59.6 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..14289e5a5a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/metadata.yaml @@ -0,0 +1,129 @@ +setname: "STAR_2009_2JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "DIJET" + +arXiv: + url: https://arxiv.org/abs/1805.09742 +iNSPIRE: + url: "https://inspirehep.net/literature/1674714" +hepdata: + url: "https://www.hepdata.net/record/ins1674714" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: + { + description: "ALL as function of $M_{inv}$, topology A", + label: "$A_{LL}$", + units: "", + } + observable_name: A-ALL + process_type: DIJET_POL + ndata: 5 + tables: [9] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + eta_1: { description: "eta jet", label: r"$\eta_j$", units: "" } + eta_2: { description: "eta jet", label: r"$\eta_j$", units: "" } + file: kinematics_A.yaml + kinematic_coverage: [m_jj, eta_1, eta_2] + data_central: data_A.yaml + data_uncertainties: + - uncertainties_A.yaml + plotting: + dataset_label: "STAR 200 GeV (2009) DIJET $A_{LL}$, topology A" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_2JET_200GEV_A-ALL-POL + - - STAR_2009_2JET_200GEV_A-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology B", + label: "$A_{LL}$", + units: "", + } + observable_name: B-ALL + process_type: DIJET_POL + ndata: 7 + tables: [9] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + eta_1: { description: "eta jet", label: r"$\eta_j$", units: "" } + eta_2: { description: "eta jet", label: r"$\eta_j$", units: "" } + file: kinematics_B.yaml + kinematic_coverage: [m_jj, eta_1, eta_2] + data_central: data_B.yaml + data_uncertainties: + - uncertainties_B.yaml + plotting: + dataset_label: "STAR 200 GeV (2009) DIJET $A_{LL}$, topology B" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_2JET_200GEV_B-ALL-POL + - - STAR_2009_2JET_200GEV_B-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology C", + label: "$A_{LL}$", + units: "", + } + observable_name: C-ALL + process_type: DIJET_POL + ndata: 7 + tables: [9] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + eta_1: { description: "eta jet", label: r"$\eta_j$", units: "" } + eta_2: { description: "eta jet", label: r"$\eta_j$", units: "" } + file: kinematics_C.yaml + kinematic_coverage: [m_jj, eta_1, eta_2] + data_central: data_C.yaml + data_uncertainties: + - uncertainties_C.yaml + plotting: + dataset_label: "STAR 200 GeV (2009) DIJET $A_{LL}$, topology C" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_2JET_200GEV_C-ALL-POL + - - STAR_2009_2JET_200GEV_C-ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_A.yaml new file mode 100644 index 0000000000..ef946d92e2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_A.yaml @@ -0,0 +1,34 @@ +dependent_variables: +- header: {name: 'Dijet $A_{LL}$'} + qualifiers: + - {name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$', value: Endcap + Endcap} + values: + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.002} + value: 0.0019 + - errors: + - {label: stat, symerror: 0.007} + - {label: sys, symerror: 0.0024} + value: -0.0069 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.0016} + value: 0.0212 + - errors: + - {label: stat, symerror: 0.019} + - {label: sys, symerror: 0.005} + value: 0.043 + - errors: + - {label: stat, symerror: 0.05} + - {label: sys, symerror: 0.007} + value: 0.078 +independent_variables: +- header: {name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$'} + values: + - {high: 19.38, low: 17.62} + - {high: 22.9, low: 20.5} + - {high: 27.59, low: 25.03} + - {high: 33.48, low: 30.0} + - {high: 40.39, low: 37.37} diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_B.yaml new file mode 100644 index 0000000000..2bfa28f8fa --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_B.yaml @@ -0,0 +1,47 @@ +dependent_variables: + - header: { name: "Dijet $A_{LL}$" } + qualifiers: + - { + name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$', + value: East-Barrel + Endcap, + } + values: + - errors: + - { label: stat, symerror: 0.011 } + - { label: sys, symerror: 0.001 } + value: -0.0178 + - errors: + - { label: stat, symerror: 0.005 } + - { label: sys, symerror: 0.0015 } + value: 0.0058 + - errors: + - { label: stat, symerror: 0.004 } + - { label: sys, symerror: 0.0016 } + value: 0.0048 + - errors: + - { label: stat, symerror: 0.004 } + - { label: sys, symerror: 0.0013 } + value: 0.0017 + - errors: + - { label: stat, symerror: 0.006 } + - { label: sys, symerror: 0.0017 } + value: -0.0078 + - errors: + - { label: stat, symerror: 0.008 } + - { label: sys, symerror: 0.0027 } + value: 0.0099 + - errors: + - { label: stat, symerror: 0.03 } + - { label: sys, symerror: 0.007 } + value: 0.012 +independent_variables: + - header: { name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$' } + values: + - { high: 19.82, low: 17.06 } + - { high: 23.1, low: 21.12 } + - { high: 27.73, low: 25.41 } + - { high: 33.76, low: 30.66 } + - { high: 39.75, low: 36.95 } + - { high: 49.66, low: 46.36 } + - { high: 67.88, low: 63.58 } diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_C.yaml new file mode 100644 index 0000000000..5c094c43a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/rawdata/Table_C.yaml @@ -0,0 +1,44 @@ +dependent_variables: +- header: {name: 'Dijet $A_{LL}$'} + qualifiers: + - {name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$', value: West-Barrel + Endcap} + values: + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.0012} + value: -0.0034 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0015} + value: 0.0131 + - errors: + - {label: stat, symerror: 0.004} + - {label: sys, symerror: 0.0007} + value: 0.0027 + - errors: + - {label: stat, symerror: 0.006} + - {label: sys, symerror: 0.0015} + value: 0.0066 + - errors: + - {label: stat, symerror: 0.01} + - {label: sys, symerror: 0.0019} + value: 0.0209 + - errors: + - {label: stat, symerror: 0.016} + - {label: sys, symerror: 0.004} + value: 0.011 + - errors: + - {label: stat, symerror: 0.09} + - {label: sys, symerror: 0.006} + value: 0.031 +independent_variables: +- header: {name: 'Parton Level Dijet Invariant Mass $[\mathrm{GeV}/c^{2}]$'} + values: + - {high: 19.71, low: 17.31} + - {high: 22.94, low: 20.62} + - {high: 27.21, low: 24.83} + - {high: 32.16, low: 29.42} + - {high: 39.28, low: 36.62} + - {high: 47.98, low: 44.88} + - {high: 66.04, low: 59.6} diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml new file mode 100644 index 0000000000..b06ec55b25 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_A.yaml @@ -0,0 +1,515 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.0001235 + lumi: 0.0005 + sys_0: -4.487764521003347e-05 + sys_1: 6.776294327346385e-05 + sys_2: -4.475375173210361e-08 + sys_3: -7.288127908631825e-08 + sys_4: -1.0323936913318263e-07 + sys_5: 6.772707946976846e-05 + sys_6: 5.007464996784911e-07 + sys_7: 5.929374500752339e-07 + sys_8: 8.472419299650328e-05 + sys_9: 1.6447911154932662e-05 + sys_10: -6.839795439960895e-05 + sys_11: -1.2072006852373766e-06 + sys_12: 7.021870471994489e-06 + sys_13: -4.6537346925967824e-05 + sys_14: 8.224920326433771e-05 + sys_15: -0.00012536530768975928 + sys_16: -4.339701951119786e-07 + sys_17: -7.141506342442378e-06 + sys_18: -8.083269445668926e-05 + sys_19: -0.0001951233060699699 + sys_20: 6.338734683925385e-05 + sys_21: -0.0009768590346119592 + sys_22: -0.007204696849904446 + sys_23: -7.494840214607478e-05 + sys_24: -0.00014963393881897594 + sys_25: -6.448416482614003e-05 + sys_26: 7.134181533413e-06 + sys_27: -4.468400469827907e-05 + sys_28: 3.0860938166506564e-05 + sys_29: 4.066112316128444e-05 + sys_30: -4.5776867343968135e-05 + sys_31: -2.0911022416779835e-05 + sys_32: 3.569768622622148e-05 + sys_33: 7.407826135554369e-06 + sys_34: 1.2205305139498532e-05 + sys_35: -9.967646610683369e-06 + sys_36: -1.0804594799401085e-05 + sys_37: -7.805715662876204e-06 + sys_38: 1.7842256334993373e-06 + sys_39: 4.3153341823622435e-06 + sys_40: 6.438121316427456e-06 + sys_41: 3.60545328247151e-07 + sys_42: 4.4392127489967315e-06 + sys_43: -1.7296876522684008e-06 + sys_44: -1.8241776447359484e-06 + sys_45: 1.9024629962920555e-06 + sys_46: -2.8868156846663017e-06 + sys_47: 3.641971953253595e-06 + sys_48: -5.646766855556967e-06 + sys_49: 6.813857622443723e-06 + sys_50: 7.177985209728573e-07 + sys_51: 4.1107074359027654e-06 + sys_52: 5.412699908747443e-06 + sys_53: -6.900525625017889e-06 + sys_54: -9.746578040396577e-07 +- pol: 0.0004485 + lumi: 0.0005 + sys_0: -7.591357043922539e-05 + sys_1: 0.00010691588019715641 + sys_2: -8.001784119929725e-08 + sys_3: -9.802442709029202e-08 + sys_4: -1.5082926966769532e-07 + sys_5: 9.923874518601764e-05 + sys_6: 7.496399690236311e-07 + sys_7: 8.76612587812162e-07 + sys_8: 0.0001302568722127064 + sys_9: 2.6246554797873474e-05 + sys_10: -0.00010948465980482622 + sys_11: -1.6202126563722838e-06 + sys_12: 1.0439064079969871e-05 + sys_13: -6.962278212613307e-05 + sys_14: 0.00012294481970626477 + sys_15: -0.0001992703954252917 + sys_16: -1.64452595951945e-06 + sys_17: -9.03418159640951e-06 + sys_18: -0.0001340913304423088 + sys_19: -0.0003166435824641524 + sys_20: 0.00010368147250168464 + sys_21: -0.007310296096863622 + sys_22: 0.0009841167563202282 + sys_23: -7.781681763856134e-05 + sys_24: -0.0002423047784970487 + sys_25: -0.00014200396903434864 + sys_26: 4.922426172234378e-07 + sys_27: -6.348188421475927e-05 + sys_28: 3.837368180823679e-05 + sys_29: 6.106377102479592e-05 + sys_30: -7.06917305261564e-05 + sys_31: -2.685755638965519e-05 + sys_32: 4.7323477348822444e-05 + sys_33: 1.2676361298561961e-05 + sys_34: 4.003690356885349e-05 + sys_35: -4.660859596762982e-06 + sys_36: -1.2509717361004361e-05 + sys_37: -5.322117332404485e-06 + sys_38: -1.5076897108891833e-06 + sys_39: 1.3816767797450745e-05 + sys_40: 9.260946565966899e-06 + sys_41: -2.0724265625839358e-05 + sys_42: 4.131185927922603e-06 + sys_43: -1.3981520758021911e-06 + sys_44: -7.35925214434717e-06 + sys_45: -3.7465321520227257e-06 + sys_46: -1.6014439878353352e-06 + sys_47: 1.1905280127134495e-05 + sys_48: -6.04982725487401e-06 + sys_49: 1.3480537489503307e-05 + sys_50: 1.0161650639645577e-07 + sys_51: 1.3996075187030057e-05 + sys_52: 6.489943201972611e-06 + sys_53: -6.990601289143394e-06 + sys_54: -9.524187785711739e-07 +- pol: 0.001378 + lumi: 0.0005 + sys_0: -0.00012545248655006293 + sys_1: 0.00018134197418026677 + sys_2: -1.246452624123066e-07 + sys_3: -1.8349307540531249e-07 + sys_4: -2.8235488347490455e-07 + sys_5: 0.00017702230712274546 + sys_6: 1.3953672180265016e-06 + sys_7: 1.5250474659787819e-06 + sys_8: 0.00026380826253549565 + sys_9: 5.631703691358546e-05 + sys_10: -0.00023159800959980474 + sys_11: -6.032662154555042e-06 + sys_12: 3.6113575655598105e-05 + sys_13: -0.0003575772872949042 + sys_14: 0.0007156154026702314 + sys_15: -0.006096597817930245 + sys_16: -0.008024871606708176 + sys_17: -1.3679021737600494e-06 + sys_18: 0.00010768135812623616 + sys_19: 0.00031236145334555 + sys_20: -1.9997551760704497e-05 + sys_21: 0.00010227767393602877 + sys_22: 4.524653902676136e-05 + sys_23: 3.0188742242186744e-06 + sys_24: -0.00011950035602711568 + sys_25: -2.2847270355240728e-05 + sys_26: -7.772817495160407e-06 + sys_27: -3.0198664357243895e-05 + sys_28: 1.4184673107476048e-05 + sys_29: 4.122918393832987e-05 + sys_30: -4.764147798758603e-05 + sys_31: -7.848383185864193e-06 + sys_32: 3.0204867746304297e-05 + sys_33: 9.113907677094225e-06 + sys_34: 1.7637206349010965e-05 + sys_35: 1.2205823087214099e-05 + sys_36: -2.1803062009182082e-05 + sys_37: -1.4126396673860882e-06 + sys_38: -7.902542100944219e-06 + sys_39: 1.7468158430680826e-05 + sys_40: 4.30518329877271e-06 + sys_41: -7.566946606554212e-06 + sys_42: -2.797489264171231e-06 + sys_43: 2.1330087370707247e-06 + sys_44: -1.550305836336294e-06 + sys_45: -1.1733898984347631e-05 + sys_46: 7.390542357755991e-06 + sys_47: 1.6660789448449974e-05 + sys_48: 1.2169146756397495e-07 + sys_49: 8.288850787467816e-06 + sys_50: -8.692005600753583e-07 + sys_51: 1.4984382648851167e-05 + sys_52: 2.0712710300747106e-06 + sys_53: -1.978107433297965e-06 + sys_54: -8.375813076711462e-07 +- pol: 0.0027949999999999997 + lumi: 0.0005 + sys_0: -0.00044095452565256745 + sys_1: 0.0006989788713221395 + sys_2: -3.7879310630748673e-07 + sys_3: -8.408468149694218e-07 + sys_4: -1.7328916050368507e-06 + sys_5: 0.0009185336314958029 + sys_6: 8.505417935230395e-06 + sys_7: 1.55209665463206e-05 + sys_8: 0.01955412162813597 + sys_9: -0.0003539770030494964 + sys_10: 0.0013627337992099188 + sys_11: 3.1940449592001096e-05 + sys_12: -4.854458369967025e-05 + sys_13: 0.00011736075128381499 + sys_14: -0.00019147253066689174 + sys_15: 0.0002106553041478497 + sys_16: -1.9024055149846018e-06 + sys_17: -6.104777361871435e-06 + sys_18: 3.95476521095463e-05 + sys_19: 0.00012617936578061806 + sys_20: -3.128774902977689e-06 + sys_21: 4.560472311492932e-05 + sys_22: 2.0975861525278253e-05 + sys_23: 5.279313106886975e-06 + sys_24: -5.54687007847775e-05 + sys_25: -2.6306944287202693e-05 + sys_26: -1.846112519360696e-05 + sys_27: -2.1612335576890022e-05 + sys_28: 4.74814525319912e-06 + sys_29: 3.2143642342008834e-05 + sys_30: -3.960207658872762e-05 + sys_31: -5.515390056982402e-06 + sys_32: 2.3168914648166717e-05 + sys_33: 7.102182370731013e-06 + sys_34: 1.2079910384132948e-05 + sys_35: 2.329349616004872e-06 + sys_36: -1.175335413882643e-05 + sys_37: 1.3862675193959248e-06 + sys_38: -3.6721008183554177e-06 + sys_39: 3.985338257298774e-06 + sys_40: 1.4417798171307114e-06 + sys_41: -6.153721810382333e-06 + sys_42: -7.319846866995983e-06 + sys_43: 3.7792323954839316e-06 + sys_44: 7.380452317549037e-06 + sys_45: -1.3042609630305765e-05 + sys_46: 8.513084629186378e-06 + sys_47: 9.78398485850043e-06 + sys_48: 2.1992998402506355e-06 + sys_49: 1.784053782314967e-06 + sys_50: -4.2920443781682114e-07 + sys_51: 5.564140241751639e-06 + sys_52: -3.790580914859849e-07 + sys_53: 5.53454487523612e-07 + sys_54: 2.9749636295482442e-08 +- pol: 0.00507 + lumi: 0.0005 + sys_0: -0.0014082583078339084 + sys_1: 0.05045716889736562 + sys_2: -6.126762673481862e-05 + sys_3: 5.935319745720406e-06 + sys_4: 1.3191776067469619e-05 + sys_5: -0.000988323843134992 + sys_6: 3.055488643276154e-06 + sys_7: 2.3100785068747596e-05 + sys_8: -0.0002793402499156884 + sys_9: -4.2236493676857715e-05 + sys_10: 0.0001382699180752268 + sys_11: 1.9939305161420727e-05 + sys_12: -2.268261706791066e-05 + sys_13: 3.278354669420865e-05 + sys_14: -4.746950591695168e-05 + sys_15: 5.329612593773731e-05 + sys_16: -2.870027942953833e-07 + sys_17: -2.2193217919779843e-05 + sys_18: 7.247115755849143e-06 + sys_19: 3.574670902232163e-05 + sys_20: 1.543414111049113e-05 + sys_21: 1.4285822104275983e-05 + sys_22: 6.256602353603413e-06 + sys_23: 6.189764710996463e-06 + sys_24: -1.7548483968759022e-05 + sys_25: -7.666085241544518e-06 + sys_26: -9.645573167725121e-06 + sys_27: -1.0121148599565656e-05 + sys_28: -7.170868749487328e-07 + sys_29: 1.027122310286569e-05 + sys_30: -1.3211023100717597e-05 + sys_31: 5.409832615316132e-06 + sys_32: 7.504694316471003e-06 + sys_33: 2.4718142042344728e-06 + sys_34: 4.113854951258778e-06 + sys_35: 4.198013458080313e-06 + sys_36: -6.1833332751959605e-06 + sys_37: 1.7596638424681377e-06 + sys_38: -3.922907472689833e-06 + sys_39: -8.391207346508186e-06 + sys_40: 4.2761586940372117e-07 + sys_41: -3.0459436294284717e-06 + sys_42: -7.829763716125667e-06 + sys_43: 3.142947333768757e-06 + sys_44: 6.399062251349847e-06 + sys_45: -6.25972853066732e-06 + sys_46: 2.5296529562217686e-06 + sys_47: 1.9737722714827948e-06 + sys_48: 8.692811553166529e-07 + sys_49: 9.728632830895424e-08 + sys_50: -1.0511367959263173e-07 + sys_51: 6.263765489983346e-07 + sys_52: -3.3364707588337093e-07 + sys_53: 3.210077607322483e-07 + sys_54: 2.6116808349928885e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml new file mode 100644 index 0000000000..bfcea5c5f4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_B.yaml @@ -0,0 +1,629 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.001157 + lumi: 0.0005 + sys_0: -0.00016038738055355545 + sys_1: 0.00023582929389157333 + sys_2: 3.2266179588260196e-05 + sys_3: -3.98309883515136e-05 + sys_4: -1.9558011225979396e-05 + sys_5: 0.0002449237528926223 + sys_6: -1.0668647767120556e-05 + sys_7: -0.00023796394432372157 + sys_8: 0.0003574369649507943 + sys_9: 0.0005620296029499112 + sys_10: -0.00021701917146980902 + sys_11: -0.0010618229981677171 + sys_12: 0.0015206569354742152 + sys_13: -0.005854228817839665 + sys_14: 0.009009031101046462 + sys_15: 0.0013130780394518871 + sys_16: -4.077595042711742e-05 + sys_17: -0.00047990227332937496 + sys_18: 0.00029738266882304757 + sys_19: 0.0002576937573593926 + sys_20: 0.0001967878536799501 + sys_21: 7.400032007231744e-05 + sys_22: 3.479882967762771e-05 + sys_23: 0.0004005670081578373 + sys_24: -8.576811092304024e-05 + sys_25: -3.8349644937056635e-05 + sys_26: -0.0001423132627343489 + sys_27: -0.00021490972815025553 + sys_28: -1.898955401774948e-05 + sys_29: 1.500537587898302e-06 + sys_30: 3.3556067110908954e-05 + sys_31: 0.00015175282913345534 + sys_32: 3.936314119504192e-05 + sys_33: -7.103578227617909e-07 + sys_34: 1.885073525163685e-05 + sys_35: 1.9177057955864815e-05 + sys_36: -2.9278374872848197e-05 + sys_37: 9.791266984035379e-06 + sys_38: -2.9514215846685803e-05 + sys_39: -9.8863686504995e-05 + sys_40: 3.987588708293631e-06 + sys_41: -1.4919230917064818e-05 + sys_42: -4.5700872020765993e-05 + sys_43: 1.530475125653345e-05 + sys_44: 2.024820312802068e-05 + sys_45: -1.3234869009212376e-05 + sys_46: 4.020900599975891e-06 + sys_47: 1.3191356681955143e-06 + sys_48: 2.631652114716864e-06 + sys_49: -6.433941439693681e-07 + sys_50: -3.298663800669299e-07 + sys_51: -3.498375695125247e-07 + sys_52: -1.6827616689749973e-06 + sys_53: 1.5805071146354104e-06 + sys_54: 1.8039348618998293e-07 +- pol: 0.000377 + lumi: 0.0005 + sys_0: -0.0001231648493603605 + sys_1: 0.00017665580924533435 + sys_2: 0.00015045222696400456 + sys_3: -0.00014778839578276183 + sys_4: -8.219970896926539e-05 + sys_5: 0.0001726120508701715 + sys_6: 9.256199740513488e-05 + sys_7: -0.0004287252222768085 + sys_8: 0.0002084430787261461 + sys_9: 0.0004082992475814004 + sys_10: -7.859887026403528e-05 + sys_11: 2.0694318761751067e-05 + sys_12: 0.000415889007636151 + sys_13: 0.00018302815935867226 + sys_14: 0.00024667999530149056 + sys_15: -0.0002073722717015833 + sys_16: 4.103620387351944e-06 + sys_17: 0.00013199667705843647 + sys_18: -0.0005735512923050126 + sys_19: -5.7934550427121076e-05 + sys_20: 8.172744872671206e-05 + sys_21: -0.00013513510784499431 + sys_22: -6.415062405389798e-05 + sys_23: -0.000499691145448889 + sys_24: 0.0003339530740301337 + sys_25: 0.00021483816276339336 + sys_26: 2.607490803486726e-05 + sys_27: 0.0011631798325828083 + sys_28: -0.0014478571250442999 + sys_29: -0.004609492920863499 + sys_30: 0.0008567656362081706 + sys_31: 0.00013389933141344209 + sys_32: 0.00033003258504533137 + sys_33: -7.38579093132164e-05 + sys_34: 0.00018532269124980303 + sys_35: -9.017665354704687e-05 + sys_36: -7.870067229747748e-05 + sys_37: 1.1120363431983943e-05 + sys_38: -1.2245961340530263e-05 + sys_39: -6.160460877861431e-05 + sys_40: -3.4812051365457393e-06 + sys_41: 4.7409377267261584e-06 + sys_42: 7.507383679955734e-06 + sys_43: -6.176934731487974e-06 + sys_44: -1.938289118541504e-06 + sys_45: 1.3490333470933013e-05 + sys_46: -4.117501878343268e-06 + sys_47: -9.985270630214592e-06 + sys_48: 1.0427928861097797e-06 + sys_49: -2.8609977317627707e-06 + sys_50: 8.713692087663013e-08 + sys_51: -5.583887327622026e-06 + sys_52: -2.045762992028327e-06 + sys_53: 2.256765094602434e-06 + sys_54: 7.595227493370356e-07 +- pol: 0.000312 + lumi: 0.0005 + sys_0: -6.602015465560188e-05 + sys_1: 9.217982467710483e-05 + sys_2: -6.533264459857353e-08 + sys_3: -9.197846139229596e-08 + sys_4: -1.3694570309817204e-07 + sys_5: 8.998643060703919e-05 + sys_6: 6.53066695148006e-07 + sys_7: 7.905770936780601e-07 + sys_8: 0.00010886495850475943 + sys_9: 1.9459244919582087e-05 + sys_10: -8.104472343657457e-05 + sys_11: -1.1973366093550136e-06 + sys_12: 6.905899930253025e-06 + sys_13: -4.238431298155302e-05 + sys_14: 7.302193311799889e-05 + sys_15: -9.803641233532297e-05 + sys_16: 1.7417157941525935e-06 + sys_17: -4.489645131752122e-06 + sys_18: -3.794599735410332e-05 + sys_19: -9.45775625437715e-05 + sys_20: 1.8970492571419433e-05 + sys_21: -6.807944243828207e-05 + sys_22: -4.3881198557248174e-05 + sys_23: 1.2842740123938697e-05 + sys_24: 0.0001321589837996156 + sys_25: 7.502916154330281e-05 + sys_26: -8.385153718918696e-06 + sys_27: 0.00012982950830253616 + sys_28: -0.0001292318747516985 + sys_29: -0.00019628550403816324 + sys_30: 0.00030391668240612336 + sys_31: 0.0003449980331172517 + sys_32: -0.0039073309029647 + sys_33: 0.0013337680758518358 + sys_34: 0.0009733217979650638 + sys_35: -0.00023962946295131047 + sys_36: -0.0003066526442426941 + sys_37: -0.00014569279202033538 + sys_38: 1.9009378937649333e-05 + sys_39: 6.835433571213821e-05 + sys_40: 5.738462072748919e-05 + sys_41: -4.025613912347007e-06 + sys_42: 1.841288381989002e-05 + sys_43: -5.091060732735513e-06 + sys_44: -2.0035221292675147e-05 + sys_45: -1.1929417004561992e-05 + sys_46: -1.821805404391615e-05 + sys_47: 3.5751786999120526e-05 + sys_48: -2.0344936100846846e-05 + sys_49: 1.4412328550439342e-05 + sys_50: -1.2607198127819517e-06 + sys_51: 1.9531640771541306e-05 + sys_52: 1.7446050185264292e-05 + sys_53: -2.6653247341656194e-05 + sys_54: -1.5256109182085743e-05 +- pol: 0.0001105 + lumi: 0.0005 + sys_0: -6.876677407045636e-05 + sys_1: 9.851799333697248e-05 + sys_2: -6.904211471841915e-08 + sys_3: -9.742428294197204e-08 + sys_4: -1.4422783860129782e-07 + sys_5: 9.186318512656962e-05 + sys_6: 6.811224675964088e-07 + sys_7: 7.542538953554947e-07 + sys_8: 0.00011103921106026542 + sys_9: 2.1089874853154077e-05 + sys_10: -8.720818824537892e-05 + sys_11: -1.5144433415606543e-06 + sys_12: 7.4965625947218965e-06 + sys_13: -4.50337059770017e-05 + sys_14: 7.61677777271811e-05 + sys_15: -0.00010580001309719528 + sys_16: 3.417557679685951e-06 + sys_17: -2.4467389833885923e-06 + sys_18: -3.795196163679791e-05 + sys_19: -9.889982655184608e-05 + sys_20: 1.5137509894914107e-05 + sys_21: -0.00010102106379032653 + sys_22: -2.9856277745233662e-05 + sys_23: 8.156865978960867e-06 + sys_24: 0.00015017747786768028 + sys_25: 9.745061919985808e-05 + sys_26: 7.88788533633388e-06 + sys_27: 0.00010790841366752959 + sys_28: -8.73129804833578e-05 + sys_29: -0.00019121120091045447 + sys_30: 0.00029507596836749427 + sys_31: 0.0001455544899427932 + sys_32: -0.0011365435182670077 + sys_33: -0.0006198018164090695 + sys_34: -0.003918109816553557 + sys_35: -8.145319025024359e-05 + sys_36: -0.0005584919529164257 + sys_37: -5.071291647292438e-05 + sys_38: -3.0167868482855592e-05 + sys_39: 0.00017169119768983251 + sys_40: 4.721364115370268e-05 + sys_41: -0.00011901117045189169 + sys_42: -4.376410008345285e-05 + sys_43: 2.365045913340006e-05 + sys_44: -4.084609767400756e-05 + sys_45: -6.24009990143924e-05 + sys_46: -6.171182501182042e-06 + sys_47: 5.872221236452603e-05 + sys_48: -1.5591854686931582e-06 + sys_49: 2.1039685892739906e-05 + sys_50: -1.6784908713599173e-06 + sys_51: 3.431059909677125e-05 + sys_52: 8.677543356603302e-06 + sys_53: -1.3954676451524717e-05 + sys_54: -6.780253393706676e-06 +- pol: 0.000507 + lumi: 0.0005 + sys_0: -7.034102142152536e-05 + sys_1: 0.00010281831941004625 + sys_2: -4.5884499186903676e-08 + sys_3: -1.3002034359170632e-07 + sys_4: -2.327645855979689e-07 + sys_5: 0.00010218528063896675 + sys_6: 7.396117835420384e-07 + sys_7: 5.640374418579385e-07 + sys_8: 0.00012675832188788376 + sys_9: 2.5837143171002536e-05 + sys_10: -9.834813434046765e-05 + sys_11: -8.224242125624168e-06 + sys_12: 1.760911370412287e-05 + sys_13: -6.528931484864714e-05 + sys_14: 0.00010835840180849897 + sys_15: -0.000198099433287466 + sys_16: -3.381057943783329e-05 + sys_17: 1.5171921027189844e-05 + sys_18: -5.06499957901474e-05 + sys_19: -0.0001942261416907753 + sys_20: -2.0355891761546464e-05 + sys_21: -0.0001749656523749259 + sys_22: -8.854308459418272e-05 + sys_23: -0.00011880383764271696 + sys_24: 0.005641509119595749 + sys_25: -0.002581468396833277 + sys_26: -0.000278699909959755 + sys_27: -9.547866191135686e-05 + sys_28: -2.132415498384431e-05 + sys_29: 0.00015899780703889797 + sys_30: -0.0002125482764591385 + sys_31: 8.178888133539768e-05 + sys_32: 8.271948474864459e-05 + sys_33: 1.6740119591308206e-05 + sys_34: 5.295616528795112e-05 + sys_35: 4.746115726038265e-05 + sys_36: -6.480151518741758e-05 + sys_37: 1.7277566548896564e-06 + sys_38: -3.0354992381752597e-05 + sys_39: 4.637660840038305e-05 + sys_40: 6.6245163190970304e-06 + sys_41: -3.1257433063752355e-05 + sys_42: -7.044236481038546e-05 + sys_43: 3.077843119541767e-05 + sys_44: 2.8374572798919613e-06 + sys_45: -5.9846080928450637e-05 + sys_46: 2.2694702636898395e-05 + sys_47: 3.529097948976974e-05 + sys_48: 7.44466673166047e-06 + sys_49: 9.127091914694896e-06 + sys_50: -1.5353302284668286e-06 + sys_51: 2.2011652169224264e-05 + sys_52: -8.114787821705768e-07 + sys_53: 2.1143539971777176e-06 + sys_54: 4.072363595827956e-07 +- pol: 0.0006435000000000001 + lumi: 0.0005 + sys_0: -0.0001564445544623164 + sys_1: 0.00022899679299133774 + sys_2: 1.7374682708605977e-07 + sys_3: -3.178727982702053e-07 + sys_4: -1.4661199093112104e-06 + sys_5: 0.00022508970023871295 + sys_6: -1.7655484381966205e-07 + sys_7: -9.35249353138264e-06 + sys_8: 0.00033353653349145907 + sys_9: 7.486667966791372e-05 + sys_10: -0.0002551570567829156 + sys_11: -6.161210869997271e-05 + sys_12: 0.00010480357463629335 + sys_13: -0.0002052738145396133 + sys_14: 0.00036238735302633813 + sys_15: -0.0005784026247067037 + sys_16: 9.3027192808972e-06 + sys_17: 0.0002280330864786156 + sys_18: -0.002343809680177322 + sys_19: -0.008012466368789013 + sys_20: 0.0005325723316377388 + sys_21: 0.00035803593715349476 + sys_22: 0.0001537334587639701 + sys_23: 0.0003448771624320161 + sys_24: -0.00024342093002563856 + sys_25: -9.579740730388851e-05 + sys_26: -0.00013335219466500622 + sys_27: -5.744867771815875e-05 + sys_28: -3.635309622730754e-05 + sys_29: 0.00010237843103474346 + sys_30: -0.00015310913122770856 + sys_31: 0.00012048154110741823 + sys_32: 6.519539010572076e-05 + sys_33: 1.4931798567149707e-05 + sys_34: 3.218667874159153e-05 + sys_35: 2.2161878758880702e-05 + sys_36: -4.0581912805627095e-05 + sys_37: 9.591424480642392e-06 + sys_38: -2.4417437246679256e-05 + sys_39: -3.1624355182511645e-05 + sys_40: 2.0168812919032998e-06 + sys_41: -2.2980575960026197e-05 + sys_42: -6.410225267269358e-05 + sys_43: 2.5520943828694632e-05 + sys_44: 4.494138831413843e-05 + sys_45: -3.595079733233058e-05 + sys_46: 2.3074348185500315e-05 + sys_47: 1.3867395982305173e-05 + sys_48: 6.1661604669229626e-06 + sys_49: 1.379022857635685e-06 + sys_50: -7.678776045824867e-07 + sys_51: 6.427784309175805e-06 + sys_52: -2.39926273431876e-06 + sys_53: 3.0982771177328257e-06 + sys_54: 8.369443802909315e-07 +- pol: 0.0007800000000000001 + lumi: 0.0005 + sys_0: -0.0006406706068774938 + sys_1: 0.0015658855740103583 + sys_2: 3.222603438576747e-05 + sys_3: -5.671908078640468e-05 + sys_4: -5.659259838651732e-05 + sys_5: 0.030748840188567623 + sys_6: 0.00010500585402406215 + sys_7: 0.0002449031785548638 + sys_8: -0.0006417479048588652 + sys_9: -0.0001278921404207003 + sys_10: 0.0002679040043756695 + sys_11: 0.0001184718605339791 + sys_12: -0.00012178253541324027 + sys_13: 4.288298901820151e-05 + sys_14: -8.755102765106224e-05 + sys_15: 8.811418449756007e-05 + sys_16: -1.6468425265124108e-06 + sys_17: -5.49059119207344e-05 + sys_18: 6.185040661101141e-06 + sys_19: 6.599978587281024e-05 + sys_20: 4.623636920454578e-05 + sys_21: 2.112082415360047e-05 + sys_22: 1.0186367402495829e-05 + sys_23: 7.859991900123313e-05 + sys_24: -2.74753258667229e-05 + sys_25: -1.343360824506986e-05 + sys_26: -2.5149320709227464e-05 + sys_27: -3.592870260725644e-05 + sys_28: -3.3563972946562154e-06 + sys_29: 1.1982531837967154e-05 + sys_30: -6.0424022213986445e-06 + sys_31: 2.718791599751282e-05 + sys_32: 1.338571277675022e-05 + sys_33: 2.173224348666144e-06 + sys_34: 5.980923451373406e-06 + sys_35: 6.8201600701748155e-06 + sys_36: -1.0308277682802947e-05 + sys_37: 3.6829721450630843e-06 + sys_38: -9.191110574427682e-06 + sys_39: -3.231755999956265e-05 + sys_40: 1.269475263366444e-06 + sys_41: -3.9681526352130896e-06 + sys_42: -8.713950847513948e-06 + sys_43: 2.8770263720982754e-06 + sys_44: 9.796701284972975e-06 + sys_45: -4.421386004237672e-06 + sys_46: 2.0058023318658418e-06 + sys_47: 6.019257510970284e-07 + sys_48: 9.433696358185665e-07 + sys_49: -2.0868123061843871e-07 + sys_50: -1.0853254036289253e-07 + sys_51: 5.930184660628041e-09 + sys_52: -5.505185794152344e-07 + sys_53: 5.246108959387801e-07 + sys_54: 7.008762279479702e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml new file mode 100644 index 0000000000..7988a2b781 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_200GEV/uncertainties_C.yaml @@ -0,0 +1,629 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.000221 + lumi: 0.0005 + sys_0: -9.493291876578652e-05 + sys_1: 0.00013724028386582747 + sys_2: 4.266842937564774e-05 + sys_3: -5.603849307857628e-05 + sys_4: -1.630682712301522e-05 + sys_5: 0.0001342504096581925 + sys_6: -1.0445858861833677e-05 + sys_7: -0.00022370106677850808 + sys_8: 0.0001618216912066718 + sys_9: 0.00024526966192043665 + sys_10: -7.917543724439857e-05 + sys_11: -0.0001960060844792337 + sys_12: 0.0003231948429524448 + sys_13: -7.365347948513101e-05 + sys_14: 0.00014433847593545534 + sys_15: -0.000150641603564071 + sys_16: 6.626371185883186e-06 + sys_17: 0.00017694968050784292 + sys_18: -0.0005263873052195073 + sys_19: -2.451042091509384e-05 + sys_20: 2.096076280069559e-06 + sys_21: -0.00010695107835044028 + sys_22: -4.97579521433105e-05 + sys_23: -0.00047547735967764604 + sys_24: 0.0002663309016712874 + sys_25: 0.00016365656851004192 + sys_26: 0.000494499863786694 + sys_27: 0.002835038284196692 + sys_28: -0.0006695475329241001 + sys_29: 0.0017278709828212257 + sys_30: 0.003623232556203312 + sys_31: 0.0005925813209910661 + sys_32: 0.000308666859225249 + sys_33: -5.111642773009452e-05 + sys_34: 0.00015393302404085482 + sys_35: 4.819293963287885e-06 + sys_36: -0.00011566875079663919 + sys_37: 2.8035236820893867e-05 + sys_38: -7.331070587928676e-05 + sys_39: -0.00026333013285451205 + sys_40: 7.927898158789391e-06 + sys_41: -1.9253405403088195e-05 + sys_42: -3.7250076217786366e-05 + sys_43: 9.298953211318811e-06 + sys_44: 1.7549126900822733e-05 + sys_45: -2.6502255339580877e-06 + sys_46: -2.123309601883192e-07 + sys_47: -5.458716467111309e-06 + sys_48: 3.135748271888882e-06 + sys_49: -2.472659255890075e-06 + sys_50: -2.7639581359036515e-07 + sys_51: -4.031435080201931e-06 + sys_52: -2.9287199483812884e-06 + sys_53: 2.893797804148632e-06 + sys_54: 5.835398622680072e-07 +- pol: 0.0008515 + lumi: 0.0005 + sys_0: -3.072641781267699e-05 + sys_1: 4.8111421809580714e-05 + sys_2: 0.00013859662013706217 + sys_3: -0.00016037228669235723 + sys_4: -5.560253478535866e-05 + sys_5: 4.2584144601825764e-05 + sys_6: 0.00022632844832471503 + sys_7: -0.0001618130586551884 + sys_8: 5.392720472921101e-05 + sys_9: 0.0002311680414465379 + sys_10: 1.2176258045489244e-05 + sys_11: 0.00015633578691693703 + sys_12: 8.153359986889271e-05 + sys_13: 6.838295668884973e-05 + sys_14: 8.818662557405146e-05 + sys_15: -4.682852897119413e-05 + sys_16: -1.092443306525936e-06 + sys_17: 3.6038207125742416e-05 + sys_18: -0.00015767084988083422 + sys_19: -3.6825797489790045e-07 + sys_20: 3.0859372933488084e-05 + sys_21: -2.4581323379372438e-05 + sys_22: -1.6177850420703517e-05 + sys_23: -6.300989106454212e-05 + sys_24: 4.874076510302265e-05 + sys_25: 3.035191569936428e-05 + sys_26: 2.2001850254784516e-06 + sys_27: 5.917994323731648e-05 + sys_28: 2.769977364405627e-06 + sys_29: 5.7351875998981585e-05 + sys_30: -8.732100910404936e-05 + sys_31: -4.8722646176002556e-05 + sys_32: -0.0011427286730569279 + sys_33: -0.003968074129155194 + sys_34: 0.0009380536419906304 + sys_35: -0.00013529028277993097 + sys_36: -0.00011690396132933457 + sys_37: 7.587989579226704e-06 + sys_38: -1.013441463278164e-05 + sys_39: -3.907846625713198e-05 + sys_40: -2.0089159431754623e-06 + sys_41: 3.0627662807500576e-06 + sys_42: 6.8808882782611535e-06 + sys_43: -5.0226795878941694e-06 + sys_44: -2.1179123116704867e-06 + sys_45: 7.022427772399476e-06 + sys_46: -2.350511146289934e-06 + sys_47: -4.683978593929509e-06 + sys_48: 6.302917808703707e-07 + sys_49: -1.3319791220355508e-06 + sys_50: -2.479680571923792e-08 + sys_51: -2.60465302946429e-06 + sys_52: -1.0514649421289338e-06 + sys_53: 1.0545369817058917e-06 + sys_54: 2.3978311732875633e-07 +- pol: 0.0001755 + lumi: 0.0005 + sys_0: -5.395028464187759e-05 + sys_1: 7.850916244074662e-05 + sys_2: -5.7996245907865206e-08 + sys_3: -7.373670295683805e-08 + sys_4: -1.0857241842368123e-07 + sys_5: 7.241922335154159e-05 + sys_6: 5.275306095659062e-07 + sys_7: 6.373252576795818e-07 + sys_8: 8.94267845652543e-05 + sys_9: 1.649407107509208e-05 + sys_10: -6.898579854590693e-05 + sys_11: -9.475663575209092e-07 + sys_12: 5.559589963294424e-06 + sys_13: -3.431260356895135e-05 + sys_14: 5.919756020055179e-05 + sys_15: -8.120597601411731e-05 + sys_16: 6.824213143689054e-08 + sys_17: -3.833524638506595e-06 + sys_18: -2.933853721283037e-05 + sys_19: -7.283660248288648e-05 + sys_20: 1.515283785566949e-05 + sys_21: -5.4416104050065454e-05 + sys_22: -3.4309872080160953e-05 + sys_23: 9.848351171562676e-06 + sys_24: 0.00010152866486531097 + sys_25: 5.550097483369882e-05 + sys_26: -8.761347746991994e-06 + sys_27: 8.984577062026086e-05 + sys_28: -9.110039052028971e-05 + sys_29: -0.00013237028328841923 + sys_30: 0.0001849329087317588 + sys_31: 0.0001634486242082582 + sys_32: -0.0005351526176101846 + sys_33: -0.00013120247600673484 + sys_34: -0.0003440010557465555 + sys_35: 0.002330591683973872 + sys_36: 0.0032280191730738777 + sys_37: -0.00021788384009350866 + sys_38: 5.2983728097515016e-05 + sys_39: 7.266764483795487e-05 + sys_40: 3.868942221830488e-05 + sys_41: 1.6827023341014265e-05 + sys_42: 2.2097475974015114e-05 + sys_43: -7.45522896701254e-06 + sys_44: -1.4169875633663038e-05 + sys_45: -1.2549891057228772e-06 + sys_46: -1.1573178960403326e-05 + sys_47: 1.2961645825956368e-05 + sys_48: -8.583108341430419e-06 + sys_49: -2.6127305057694193e-06 + sys_50: -1.3912417838972802e-06 + sys_51: 2.506817479149303e-06 + sys_52: 5.942783948442148e-06 + sys_53: -9.927344953524282e-06 + sys_54: -1.0390760814783556e-05 +- pol: 0.000429 + lumi: 0.0005 + sys_0: -9.500814120454236e-05 + sys_1: 0.0001333728091780823 + sys_2: -9.418465634534685e-08 + sys_3: -1.3402174731162534e-07 + sys_4: -2.02034001661278e-07 + sys_5: 0.00013199936043199894 + sys_6: 9.62946758180687e-07 + sys_7: 1.1741273002960353e-06 + sys_8: 0.00016497524052058415 + sys_9: 3.0420492579846913e-05 + sys_10: -0.0001261717587549122 + sys_11: -2.2809409184398282e-06 + sys_12: 1.1861127527710934e-05 + sys_13: -7.560037337110963e-05 + sys_14: 0.00012975577771021636 + sys_15: -0.0001813215212941035 + sys_16: 4.141207029250693e-06 + sys_17: -6.935777692383898e-06 + sys_18: -8.42446092202504e-05 + sys_19: -0.00021777445990506515 + sys_20: 4.240931659536134e-05 + sys_21: -0.00025710347662073616 + sys_22: -8.884289484271321e-05 + sys_23: 2.8774648227348656e-05 + sys_24: 0.0025854927133486714 + sys_25: 0.005578296622335891 + sys_26: 2.8520085137699243e-05 + sys_27: -0.0002346742052745476 + sys_28: 0.00012972940478551587 + sys_29: 0.0001928511740777817 + sys_30: -0.00020583889587068294 + sys_31: -5.1029179907886e-05 + sys_32: 0.00010119416880399169 + sys_33: 2.949883031434932e-05 + sys_34: 6.514025596667258e-05 + sys_35: -2.4022414546320256e-05 + sys_36: -2.0480307178724738e-05 + sys_37: 2.2461790325073007e-06 + sys_38: 3.88604233468489e-06 + sys_39: 2.4795783694304058e-05 + sys_40: 1.7456964105797337e-06 + sys_41: -1.393723582061388e-05 + sys_42: -7.630268165507502e-06 + sys_43: 3.650731655783458e-06 + sys_44: -1.398391620315418e-05 + sys_45: -1.3493041738743298e-05 + sys_46: -8.759538775634096e-06 + sys_47: 1.0272694999450056e-05 + sys_48: -6.791158058576617e-07 + sys_49: -1.3115437979563227e-06 + sys_50: -4.0327785213592066e-07 + sys_51: 8.074712728451528e-07 + sys_52: 1.908949542002299e-06 + sys_53: -5.116907514373828e-06 + sys_54: -4.394967248288965e-06 +- pol: 0.0013585 + lumi: 0.0005 + sys_0: -0.00016819552993065353 + sys_1: 0.0002466799215604258 + sys_2: -1.510856282808973e-07 + sys_3: -2.655898579082951e-07 + sys_4: -4.660407671827057e-07 + sys_5: 0.000244913017637834 + sys_6: 1.814728223436926e-06 + sys_7: 2.0024688977505915e-06 + sys_8: 0.00036135857756229003 + sys_9: 7.84093724604574e-05 + sys_10: -0.00031460170636297545 + sys_11: -2.1342538900174346e-05 + sys_12: 7.377554787217257e-05 + sys_13: -0.000486228257372733 + sys_14: 0.0010185594866159943 + sys_15: -0.008052086771584914 + sys_16: 0.006070663134292959 + sys_17: 2.9879350436069186e-06 + sys_18: 0.0001389668986168038 + sys_19: 0.00042800495608913056 + sys_20: -2.6044744860158097e-05 + sys_21: 0.0001298903363943067 + sys_22: 5.86134817923431e-05 + sys_23: 2.337765677475499e-05 + sys_24: -0.0001251831293765522 + sys_25: -5.075162075152813e-05 + sys_26: -2.864887864113953e-06 + sys_27: -4.394038457062937e-05 + sys_28: 2.799726586590466e-05 + sys_29: 5.5571161860746174e-05 + sys_30: -7.163601748172847e-05 + sys_31: 5.522847405860963e-06 + sys_32: 3.901285098831688e-05 + sys_33: 1.1727629358216009e-05 + sys_34: 2.0422395651623645e-05 + sys_35: -7.352332027235302e-06 + sys_36: -1.2222526823483427e-05 + sys_37: 1.9505306862827234e-06 + sys_38: 2.5545614010840795e-07 + sys_39: 1.5062416145470245e-05 + sys_40: -1.5172920673572518e-06 + sys_41: -1.3342835450863213e-06 + sys_42: -1.7180739902446022e-05 + sys_43: 6.822822323033612e-06 + sys_44: -8.316341527097847e-06 + sys_45: -1.1098714471921314e-05 + sys_46: -3.2804707220161305e-06 + sys_47: 3.6172831365300037e-06 + sys_48: 6.82082685585858e-07 + sys_49: -4.796203061534093e-07 + sys_50: -4.613165634703656e-08 + sys_51: -3.90727922586669e-07 + sys_52: 2.37199134426849e-08 + sys_53: -6.690728135666189e-07 + sys_54: -5.987704411920428e-07 +- pol: 0.000715 + lumi: 0.0005 + sys_0: -0.00033031277643776194 + sys_1: 0.0005027150173447022 + sys_2: 1.9206314050316772e-07 + sys_3: -5.670131178519743e-07 + sys_4: -2.9904539457743166e-06 + sys_5: 0.0005823213147965042 + sys_6: -4.4449351620680264e-07 + sys_7: -3.00917055935812e-05 + sys_8: 0.001631716757787669 + sys_9: 0.003533504159871146 + sys_10: -0.015998098893180972 + sys_11: 0.00011095679678477295 + sys_12: -0.00011975229729658565 + sys_13: 0.00013294933466489813 + sys_14: -0.0002500347033443236 + sys_15: 0.0002611184222769524 + sys_16: -3.1401063750906975e-06 + sys_17: -7.366846916758516e-06 + sys_18: 3.681342609478873e-05 + sys_19: 0.00014035529519831162 + sys_20: 1.374849224977475e-06 + sys_21: 5.313500345988977e-05 + sys_22: 2.3393861590733513e-05 + sys_23: 4.263884390023869e-05 + sys_24: -5.749641628757088e-05 + sys_25: -2.9677327406650437e-05 + sys_26: -4.60317583408258e-06 + sys_27: -2.1343334057654818e-05 + sys_28: 1.2256473851887405e-05 + sys_29: 3.2400104495949154e-05 + sys_30: -4.583464159653856e-05 + sys_31: 1.956794593999883e-05 + sys_32: 2.531389098313723e-05 + sys_33: 6.453865309860918e-06 + sys_34: 1.2104813900562685e-05 + sys_35: -9.537130380904905e-06 + sys_36: -5.588296580137801e-06 + sys_37: 1.1497252833695917e-06 + sys_38: 1.1752983354706875e-06 + sys_39: 5.975268816332975e-06 + sys_40: -1.3166174277113915e-06 + sys_41: -3.1886569934803886e-07 + sys_42: -1.1609960427559685e-05 + sys_43: 4.159399627141157e-06 + sys_44: -2.28086866256756e-06 + sys_45: -1.8956044396094989e-06 + sys_46: -6.463394984536777e-07 + sys_47: -7.669447234469704e-07 + sys_48: 1.6888146737515647e-07 + sys_49: -3.99922220274755e-07 + sys_50: 3.29594462370691e-08 + sys_51: -7.569157647967605e-07 + sys_52: -2.50010868470211e-07 + sys_53: 3.3150782744646745e-07 + sys_54: 1.7192637131533295e-07 +- pol: 0.002015 + lumi: 0.0005 + sys_0: -0.0901958193595861 + sys_1: -0.0008075421546925004 + sys_2: -2.0705346813197266e-05 + sys_3: 2.3617739272075076e-05 + sys_4: 3.162843137651256e-06 + sys_5: -0.00021460752107831753 + sys_6: 6.132022268292377e-06 + sys_7: 2.8756943007635216e-05 + sys_8: -9.630046897284555e-05 + sys_9: -1.6206226038359014e-05 + sys_10: 5.006544299420353e-05 + sys_11: 1.6115376956362884e-05 + sys_12: -2.1412467226707926e-05 + sys_13: 2.7050839276468816e-06 + sys_14: -2.0694676868980328e-05 + sys_15: 1.996380298303034e-05 + sys_16: -9.073508073616766e-08 + sys_17: -2.8282164374726767e-06 + sys_18: 1.7053852272407012e-06 + sys_19: 1.3372850311835801e-05 + sys_20: 3.1269070878398353e-06 + sys_21: 5.321230218008752e-06 + sys_22: 2.0953546761177416e-06 + sys_23: 1.3701201869508346e-05 + sys_24: -5.881689249181089e-06 + sys_25: -3.453279807552322e-06 + sys_26: 2.817724272462935e-07 + sys_27: -2.1215276703567467e-06 + sys_28: 1.216079481491202e-06 + sys_29: 3.1210190213891643e-06 + sys_30: -4.680123192758351e-06 + sys_31: 3.724329362896258e-06 + sys_32: 3.1608320406361226e-06 + sys_33: 5.942568995031885e-07 + sys_34: 1.3922357665635735e-06 + sys_35: -1.3149467933973128e-06 + sys_36: -5.533469628165044e-07 + sys_37: 1.1717996590198879e-07 + sys_38: 6.28114122908241e-08 + sys_39: 4.1053579749333116e-08 + sys_40: -1.2821684120675743e-07 + sys_41: 7.385676250905749e-08 + sys_42: -6.259294180845676e-07 + sys_43: 1.7974643342319183e-07 + sys_44: -6.097475316098167e-08 + sys_45: 2.0875666393910094e-07 + sys_46: -5.889768121013157e-08 + sys_47: -2.0740468523778816e-07 + sys_48: 1.1489386555461357e-08 + sys_49: -6.189557619298634e-08 + sys_50: 5.489500182566103e-09 + sys_51: -1.1661781533954086e-07 + sys_52: -3.4806557457335935e-08 + sys_53: 4.721529918790479e-08 + sys_54: 2.4071563483724825e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_OS.yaml new file mode 100644 index 0000000000..af41072000 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_OS.yaml @@ -0,0 +1,8 @@ +data_central: +- 0.0059 +- 0.0096 +- 0.0068 +- 0.0151 +- 0.0083 +- 0.0092 +- -0.0282 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_SS.yaml new file mode 100644 index 0000000000..0adfd014d1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/data_SS.yaml @@ -0,0 +1,8 @@ +data_central: +- 0.0067 +- 0.0088 +- 0.0162 +- 0.0024 +- 0.013 +- 0.0336 +- 0.0755 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_OS.yaml new file mode 100644 index 0000000000..7ad694d6b5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_OS.yaml @@ -0,0 +1,85 @@ +bins: +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 17.99 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 21.58 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 26.29 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 31.72 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 38.38 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 48.79 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 67.32 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_SS.yaml new file mode 100644 index 0000000000..cc0479a1c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/kinematics_SS.yaml @@ -0,0 +1,85 @@ +bins: +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 17.7 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 21.34 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 26.02 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 31.66 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 38.25 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 48.28 + min: null +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: null + mid: 66.65 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/metadata.yaml new file mode 100644 index 0000000000..951800568a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/metadata.yaml @@ -0,0 +1,92 @@ +setname: "STAR_2009_2JET_MIDRAP_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "DIJET" + +arXiv: + url: https://arxiv.org/pdf/1610.06616 +iNSPIRE: + url: "https://inspirehep.net/literature/1493842" +hepdata: + url: "https://www.hepdata.net/record/ins1493842" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: + { + description: 'ALL as function of $M_{inv}$, opposite sign $\eta$ topology', + label: "$A_{LL}$", + units: "", + } + observable_name: OS-ALL + process_type: DIJET_POL + ndata: 7 + tables: [9] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_OS.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_OS.yaml + data_uncertainties: + - uncertainties_OS.yaml + plotting: + dataset_label: 'STAR 200 GeV (2009) DIJET $A_{LL}$, opposite sign $\eta$ topology' + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_2JET_MIDRAP_200GEV_OS-ALL-POL + - - STAR_2009_2JET_MIDRAP_200GEV_OS-ALL-UNPOL + operation: "ratio" + - observable: + { + description: 'ALL as function of $M_{inv}$, same sign $\eta$ topology', + label: "$A_{LL}$", + units: "", + } + observable_name: SS-ALL + process_type: DIJET_POL + ndata: 7 + tables: [7] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_SS.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_SS.yaml + data_uncertainties: + - uncertainties_SS.yaml + plotting: + dataset_label: 'STAR 200 GeV (2009) DIJET $A_{LL}$, same sign $\eta$ topology' + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2009_2JET_MIDRAP_200GEV_SS-ALL-POL + - - STAR_2009_2JET_MIDRAP_200GEV_SS-ALL-UNPOL + operation: "ratio" diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_OS.yaml new file mode 100644 index 0000000000..17a08d70f9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_OS.yaml @@ -0,0 +1,81 @@ +dependent_variables: +- header: {name: DIJET MASS, units: GEV} + qualifiers: + - {name: JET ALGORITHM, value: Anti-kT R = 0.6} + - {name: PHASE SPACE, value: '|ETA_1,ETA_2| < 0.8'} + - {name: RE, value: P P --> JET JET X} + - {name: SQRT(s), value: 200 GEV} + values: + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 0.54} + value: 17.99 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 0.96} + value: 21.58 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.32} + value: 26.29 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.72} + value: 31.72 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.7} + value: 38.38 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 2.07} + value: 48.79 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 3.35} + value: 67.32 +- header: {name: ASYMMETRY} + qualifiers: + - {name: JET ALGORITHM, value: Anti-kT R = 0.6} + - {name: PHASE SPACE, value: Sign(ETA_1) != Sign(ETA_2)} + - {name: RE, value: P P --> JET JET X} + - {name: SQRT(s), value: 200 GEV} + values: + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0005} + value: 0.0059 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0006} + value: 0.0096 + - errors: + - {label: stat, symerror: 0.0037} + - {label: sys, symerror: 0.0007} + value: 0.0068 + - errors: + - {label: stat, symerror: 0.005} + - {label: sys, symerror: 0.0009} + value: 0.0151 + - errors: + - {label: stat, symerror: 0.0077} + - {label: sys, symerror: 0.0013} + value: 0.0083 + - errors: + - {label: stat, symerror: 0.0109} + - {label: sys, symerror: 0.0022} + value: 0.0092 + - errors: + - {label: stat, symerror: 0.034} + - {label: sys, symerror: 0.0036} + value: -0.0282 +independent_variables: +- header: {name: Bin} + values: + - {value: 8.0} + - {value: 9.0} + - {value: 10.0} + - {value: 11.0} + - {value: 12.0} + - {value: 13.0} + - {value: 14.0} diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_SS.yaml new file mode 100644 index 0000000000..00e274aa76 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/rawdata/Table_SS.yaml @@ -0,0 +1,81 @@ +dependent_variables: +- header: {name: DIJET MASS, units: GEV} + qualifiers: + - {name: JET ALGORITHM, value: Anti-kT R = 0.6} + - {name: PHASE SPACE, value: '|ETA_1,ETA_2| < 0.8'} + - {name: RE, value: P P --> JET JET X} + - {name: SQRT(s), value: 200 GEV} + values: + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 0.56} + value: 17.7 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.07} + value: 21.34 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.33} + value: 26.02 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.39} + value: 31.66 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 1.79} + value: 38.25 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 2.17} + value: 48.28 + - errors: + - {label: stat, symerror: 0.0} + - {label: sys, symerror: 2.56} + value: 66.65 +- header: {name: ASYMMETRY} + qualifiers: + - {name: JET ALGORITHM, value: Anti-kT R = 0.6} + - {name: PHASE SPACE, value: Sign(ETA_1) = Sign(ETA_2)} + - {name: RE, value: P P --> JET JET X} + - {name: SQRT(s), value: 200 GEV} + values: + - errors: + - {label: stat, symerror: 0.0034} + - {label: sys, symerror: 0.0004} + value: 0.0067 + - errors: + - {label: stat, symerror: 0.0032} + - {label: sys, symerror: 0.0005} + value: 0.0088 + - errors: + - {label: stat, symerror: 0.0039} + - {label: sys, symerror: 0.0006} + value: 0.0162 + - errors: + - {label: stat, symerror: 0.0056} + - {label: sys, symerror: 0.001} + value: 0.0024 + - errors: + - {label: stat, symerror: 0.0089} + - {label: sys, symerror: 0.0015} + value: 0.013 + - errors: + - {label: stat, symerror: 0.0133} + - {label: sys, symerror: 0.0024} + value: 0.0336 + - errors: + - {label: stat, symerror: 0.046} + - {label: sys, symerror: 0.0041} + value: 0.0755 +independent_variables: +- header: {name: Bin} + values: + - {value: 1.0} + - {value: 2.0} + - {value: 3.0} + - {value: 4.0} + - {value: 5.0} + - {value: 6.0} + - {value: 7.0} diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml new file mode 100644 index 0000000000..93521c42a2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_OS.yaml @@ -0,0 +1,629 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.0003835 + lumi: 0.0005 + sys_0: -2.0070690602974216e-09 + sys_1: 2.8611672427228102e-08 + sys_2: 4.2896744472587744e-06 + sys_3: 2.819444982608877e-07 + sys_4: -9.127771282567537e-06 + sys_5: 1.8129696800612663e-08 + sys_6: -7.594486431755823e-06 + sys_7: 3.100627999563582e-06 + sys_8: 2.808709307282868e-07 + sys_9: 1.7866872519239872e-06 + sys_10: 3.1699066642131643e-07 + sys_11: -7.319951621518738e-06 + sys_12: 9.368502190742696e-06 + sys_13: -2.062583442242023e-05 + sys_14: -1.6727963772423892e-05 + sys_15: -1.9349825677702605e-06 + sys_16: -1.076094187008913e-06 + sys_17: 6.582557689157397e-06 + sys_18: 1.8397504562606584e-05 + sys_19: -7.242341005103075e-06 + sys_20: -2.3314567868111953e-05 + sys_21: -5.796552314458929e-06 + sys_22: -1.2677412346491513e-05 + sys_23: 1.685675480863622e-05 + sys_24: 5.915076633935533e-06 + sys_25: -1.6394095535473937e-06 + sys_26: 2.9503664370040805e-05 + sys_27: -1.7562473921296347e-05 + sys_28: 8.804804260870176e-05 + sys_29: -3.526730311227529e-05 + sys_30: 4.423320541054321e-05 + sys_31: 7.703960054808298e-05 + sys_32: -0.00016330396178095347 + sys_33: 3.583984012212362e-05 + sys_34: -3.5653767952351605e-05 + sys_35: -0.00025149807354148747 + sys_36: 0.0004197213583070048 + sys_37: 0.0038567004213793735 + sys_38: -0.0003833417780192327 + sys_39: 0.0002683665775095326 + sys_40: 0.00021914572680067557 + sys_41: -0.0001190673345958187 + sys_42: 4.111077635181518e-05 + sys_43: -4.9575947095020186e-05 + sys_44: -1.8615101177790413e-05 + sys_45: 2.3230913304595474e-05 + sys_46: -2.6281672909137027e-06 + sys_47: 1.545875761737514e-05 + sys_48: -2.7375067733354825e-05 + sys_49: 6.988024116541372e-05 + sys_50: 7.26770793681199e-06 + sys_51: 5.26675036435916e-05 + sys_52: 3.117647906091353e-05 + sys_53: -2.6115419857037124e-05 + sys_54: 8.322293457789328e-06 +- pol: 0.000624 + lumi: 0.0005 + sys_0: -5.284240800208635e-09 + sys_1: 1.1626305234994908e-07 + sys_2: 6.434285946305495e-06 + sys_3: 1.4579093408605777e-06 + sys_4: -9.606350664662261e-06 + sys_5: 1.6213883617312984e-07 + sys_6: -9.13088432859729e-06 + sys_7: 3.7256402328585426e-06 + sys_8: 8.285612232295047e-07 + sys_9: 1.3674957230039858e-06 + sys_10: 1.1772587925494011e-07 + sys_11: -7.78878470505458e-06 + sys_12: 1.0702779924752036e-05 + sys_13: -2.2620424262222088e-05 + sys_14: -1.6578150726703992e-05 + sys_15: -3.102697715167656e-06 + sys_16: -1.7119045587579535e-06 + sys_17: 1.3790813277160616e-05 + sys_18: 1.8511212682177597e-05 + sys_19: -1.1629901177030284e-05 + sys_20: -2.8582204291388793e-05 + sys_21: -2.8608005215361594e-05 + sys_22: 2.171408295739701e-06 + sys_23: 1.9172333541867278e-05 + sys_24: 1.835831273090482e-05 + sys_25: 1.1188240892774077e-05 + sys_26: 4.507226837908498e-05 + sys_27: -2.1838203184107475e-05 + sys_28: 9.7421316839225e-05 + sys_29: -3.107043715465292e-05 + sys_30: 3.964413623133258e-05 + sys_31: 5.159848564311588e-05 + sys_32: -3.552558792645962e-05 + sys_33: -1.1193274256245392e-05 + sys_34: -9.257815237959044e-05 + sys_35: -0.00016476062557988224 + sys_36: 0.00010809337192074355 + sys_37: 0.00015339408073554596 + sys_38: 0.00015765472087719552 + sys_39: -0.0002810102251959961 + sys_40: -0.00040314066718260123 + sys_41: 0.0021853241188164126 + sys_42: 0.0004904637038208591 + sys_43: 0.0022706589511969208 + sys_44: 5.090022661948469e-05 + sys_45: -0.00011073343864654401 + sys_46: 0.00010445002996954123 + sys_47: 0.00014398447704208083 + sys_48: 4.1550417704279945e-06 + sys_49: 7.022227734245338e-05 + sys_50: -5.399611177418655e-06 + sys_51: 0.00012608834407695118 + sys_52: 1.5879081689842938e-05 + sys_53: -7.551312923639582e-06 + sys_54: 4.87707692462083e-06 +- pol: 0.000442 + lumi: 0.0005 + sys_0: -2.2586118901380413e-08 + sys_1: 3.464646993543439e-07 + sys_2: 4.170734395004763e-06 + sys_3: 2.2736732114868504e-07 + sys_4: -8.884633106795245e-06 + sys_5: 9.069892371497344e-07 + sys_6: -7.22931341011608e-06 + sys_7: 2.223889186910371e-06 + sys_8: 1.7212610540192216e-06 + sys_9: 6.227506360440197e-06 + sys_10: 5.964664749494487e-07 + sys_11: -1.6678107689026423e-05 + sys_12: 1.6141536136912843e-05 + sys_13: -3.840347405208751e-05 + sys_14: -1.6865403962283348e-05 + sys_15: -2.5597773399924573e-05 + sys_16: -1.791242150075835e-05 + sys_17: 3.6891352930283695e-05 + sys_18: 2.0255175954157086e-05 + sys_19: -2.0888581425725698e-05 + sys_20: -6.33793264456119e-05 + sys_21: -2.8992650913905847e-06 + sys_22: 1.889836560054357e-07 + sys_23: 5.775885850686499e-06 + sys_24: 5.619671562679989e-05 + sys_25: -2.8806407001656642e-05 + sys_26: 0.00014991640472052626 + sys_27: 2.114340984867472e-05 + sys_28: 0.00021204080357583338 + sys_29: -4.931822659184177e-05 + sys_30: 5.5187324993300214e-05 + sys_31: -9.88837011027208e-05 + sys_32: -3.6465691371077796e-05 + sys_33: -4.270319298174136e-06 + sys_34: -0.00011327388260672888 + sys_35: -0.0010139756302356866 + sys_36: 0.0007046010967974121 + sys_37: 0.00025631667369230797 + sys_38: 0.0033168002736032216 + sys_39: -0.0009822974266433012 + sys_40: 0.00025818907265623024 + sys_41: -0.00048149629524201946 + sys_42: -0.00026882447548468735 + sys_43: 0.00010194824882691161 + sys_44: 0.00020317794617131745 + sys_45: -0.0002139290416852128 + sys_46: 0.00013768182652745397 + sys_47: 0.00013051896500651116 + sys_48: 3.108504360048413e-05 + sys_49: 2.8938321772724683e-05 + sys_50: -5.320887498068763e-06 + sys_51: 7.982870732594203e-05 + sys_52: -5.562301788029439e-06 + sys_53: 1.141776346215736e-05 + sys_54: 3.5307482858849182e-06 +- pol: 0.0009815000000000002 + lumi: 0.0005 + sys_0: -9.367538884138563e-08 + sys_1: 8.911728434347002e-07 + sys_2: 1.2103013722931863e-05 + sys_3: 2.7029292898364538e-06 + sys_4: -1.9735125344968857e-05 + sys_5: 3.2546923389909717e-06 + sys_6: -1.3875322102808332e-05 + sys_7: -7.556034695797357e-06 + sys_8: 2.4592592583516363e-05 + sys_9: 4.975888581564231e-05 + sys_10: 6.050443840896132e-06 + sys_11: -5.138316029424011e-05 + sys_12: 6.281747833997374e-05 + sys_13: -8.770156037024251e-05 + sys_14: -3.8525589517289844e-05 + sys_15: -2.333952201291793e-06 + sys_16: -2.2968051003324812e-06 + sys_17: 0.00014018899770802597 + sys_18: -2.1668459989287247e-05 + sys_19: -6.309983476751449e-05 + sys_20: -0.00019478155622020555 + sys_21: 3.3163900957465315e-06 + sys_22: 4.649905646504677e-06 + sys_23: -0.00011955615081118019 + sys_24: 6.895598008391906e-05 + sys_25: -5.050228806825519e-05 + sys_26: 0.0009594666498419969 + sys_27: 0.0008174796990282535 + sys_28: 0.004617752068900638 + sys_29: -0.001112099639944114 + sys_30: 0.0003780837126729992 + sys_31: 0.0008331575234705539 + sys_32: 3.16836436131654e-05 + sys_33: -1.3375237599489062e-05 + sys_34: 5.983524129978413e-05 + sys_35: 0.0004649349790019094 + sys_36: -0.00031118197473107217 + sys_37: -1.9965661075766742e-05 + sys_38: -0.0002696084033230357 + sys_39: -0.00042027942228310293 + sys_40: 5.258910086182561e-05 + sys_41: -0.00016803711275013475 + sys_42: -0.00021261502264706766 + sys_43: 7.119803008087905e-05 + sys_44: 0.0001982560488042819 + sys_45: -0.00015009938119404988 + sys_46: 7.590443592882095e-05 + sys_47: 5.286325172696895e-05 + sys_48: 2.1881990755796658e-05 + sys_49: 4.566957546324344e-06 + sys_50: -2.9925623176445365e-06 + sys_51: 2.1822195447250576e-05 + sys_52: -8.078850282810503e-06 + sys_53: 8.914669144058754e-06 + sys_54: 9.97645665354758e-07 +- pol: 0.0005395 + lumi: 0.0005 + sys_0: -8.738293030024384e-06 + sys_1: 6.602579914035618e-05 + sys_2: 2.9818276343473876e-05 + sys_3: -1.6170017742167167e-05 + sys_4: -3.2829887352332645e-05 + sys_5: 4.625418211992601e-05 + sys_6: 9.999249037300942e-06 + sys_7: -7.28486555478921e-05 + sys_8: -1.5134918578495592e-06 + sys_9: 0.00023507292138491939 + sys_10: 5.144361019566121e-05 + sys_11: -0.00022514374258228735 + sys_12: 0.0002933639413223962 + sys_13: -0.000294514339895533 + sys_14: -0.00011999651220544265 + sys_15: 1.24761203250597e-05 + sys_16: -2.221987520593638e-06 + sys_17: 0.0011403206256308358 + sys_18: -0.0014416867230703922 + sys_19: 5.2872259884693116e-05 + sys_20: -0.00735315080289963 + sys_21: -0.00010137154410486682 + sys_22: -5.133899131552469e-05 + sys_23: 0.0014268866270418388 + sys_24: -3.995897251266899e-05 + sys_25: 3.964629267910613e-05 + sys_26: -0.0006531434484419972 + sys_27: -0.0005562350036036043 + sys_28: -0.0002038921814537873 + sys_29: -4.3753257150393846e-05 + sys_30: 0.0002753096941822482 + sys_31: 0.00035524632761199426 + sys_32: 1.8853622565578195e-05 + sys_33: -2.1601636416174218e-05 + sys_34: 1.5759901905535633e-05 + sys_35: 0.00013741807534250344 + sys_36: -9.687199883477546e-05 + sys_37: 1.8815432099464806e-05 + sys_38: -0.00011667890959741919 + sys_39: -0.00033624385739658213 + sys_40: 2.1839855665450934e-05 + sys_41: -6.116776760677679e-05 + sys_42: -0.00011651011544322042 + sys_43: 3.702404461159845e-05 + sys_44: 8.455796672605015e-05 + sys_45: -5.0956016323892e-05 + sys_46: 1.8678371240015352e-05 + sys_47: 1.0561422910440479e-05 + sys_48: 8.480435637195874e-06 + sys_49: -5.193246063949312e-07 + sys_50: -1.222647371168934e-06 + sys_51: 2.7684440324487624e-06 + sys_52: -4.513793959294049e-06 + sys_53: 4.087748499518048e-06 + sys_54: 1.0723921979698017e-07 +- pol: 0.000598 + lumi: 0.0005 + sys_0: -9.760510588081825e-07 + sys_1: 3.2982173523095426e-06 + sys_2: 0.0002461648753249573 + sys_3: -0.00014826066564818866 + sys_4: -0.00028721035642905834 + sys_5: 2.5307246977877084e-05 + sys_6: 0.0003329430723853257 + sys_7: -0.0009969834753114494 + sys_8: 1.085915500947733e-05 + sys_9: 0.0029145841838451305 + sys_10: 0.0006302103891965757 + sys_11: -0.0008385429249779247 + sys_12: 0.005332132548805452 + sys_13: -0.006513836745363104 + sys_14: -0.005372781033024831 + sys_15: -0.00021982626028653333 + sys_16: 9.608033508857557e-06 + sys_17: -0.0019908999130607073 + sys_18: 0.0026594608581895374 + sys_19: -0.0007641667663534264 + sys_20: 7.733495270018974e-05 + sys_21: -4.158103005843695e-05 + sys_22: -2.2096784079061853e-05 + sys_23: 0.0009037313990061078 + sys_24: 2.0452489273009423e-05 + sys_25: 1.4541308621169646e-05 + sys_26: -0.00027350533469576373 + sys_27: -0.0004328094545077054 + sys_28: -9.68146049479721e-05 + sys_29: -0.00015542762030084837 + sys_30: 0.0004081045532262642 + sys_31: 0.00024444080808111115 + sys_32: 2.337190779790684e-05 + sys_33: -5.8339688696582285e-05 + sys_34: 2.8044159776294532e-05 + sys_35: 3.72279540905547e-05 + sys_36: -3.9619999149580605e-05 + sys_37: -3.9758980568553805e-06 + sys_38: -5.514092091061613e-05 + sys_39: -0.00015982883603593822 + sys_40: 1.280449261976766e-05 + sys_41: -2.870726377210201e-05 + sys_42: -3.935948644132474e-05 + sys_43: 7.950298482475439e-06 + sys_44: 2.012591694092418e-05 + sys_45: -9.68067319800534e-06 + sys_46: 1.7522183443564621e-06 + sys_47: -1.2976108012021999e-06 + sys_48: 3.6223275203775305e-06 + sys_49: -1.7846117863936533e-06 + sys_50: -5.712729578145397e-07 + sys_51: -2.0749258371053974e-06 + sys_52: -2.8104278658360173e-06 + sys_53: 2.2589700272245316e-06 + sys_54: -1.633139895745711e-07 +- pol: 0.001833 + lumi: 0.0005 + sys_0: -3.980543092058885e-06 + sys_1: 1.3970398524194827e-05 + sys_2: 0.006698695525763587 + sys_3: -0.00793412613824112 + sys_4: -0.030445063700132294 + sys_5: -7.702880306314849e-05 + sys_6: -0.010664823694105978 + sys_7: 0.004045701935387951 + sys_8: -2.080986418097191e-06 + sys_9: -0.001778520371006865 + sys_10: -0.00039920864031923396 + sys_11: -0.0007148417922962354 + sys_12: -0.0003507484962298639 + sys_13: -0.000280310250052849 + sys_14: -0.00014604134545650934 + sys_15: -6.1379837546738025e-06 + sys_16: 5.348445281537037e-07 + sys_17: -7.909706169156667e-05 + sys_18: 0.0002184054704118239 + sys_19: -6.89376215888873e-05 + sys_20: -2.598450008067757e-05 + sys_21: -4.33509734711091e-06 + sys_22: -2.1736458644610068e-06 + sys_23: 5.326387141743868e-05 + sys_24: 5.116577685065594e-06 + sys_25: 2.8475504628413597e-06 + sys_26: -7.0262723636100016e-06 + sys_27: -3.2749443307112043e-06 + sys_28: -1.8661919913722762e-05 + sys_29: -3.3765339113065e-05 + sys_30: 4.0929143886329305e-05 + sys_31: 1.3633282072982091e-05 + sys_32: -1.1493360209342068e-06 + sys_33: -2.4010967050596406e-05 + sys_34: 8.18218511486655e-06 + sys_35: 4.814138112902533e-07 + sys_36: -3.6548531854894057e-06 + sys_37: -1.643184661524371e-06 + sys_38: -3.6461298588737134e-06 + sys_39: -7.848204247780759e-06 + sys_40: 8.640501022415997e-07 + sys_41: -2.1121208712118595e-06 + sys_42: -1.324611046806053e-06 + sys_43: -4.0264779842782366e-07 + sys_44: 1.9977230560802901e-07 + sys_45: 4.404127961440465e-07 + sys_46: -4.842444951624331e-07 + sys_47: -7.365413583612433e-07 + sys_48: 3.7846729672894614e-07 + sys_49: -3.4935933045267453e-07 + sys_50: -7.018020041527868e-08 + sys_51: -5.694394543822049e-07 + sys_52: -3.8742966940176704e-07 + sys_53: 2.964432619699536e-07 + sys_54: -4.5220944437680936e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml new file mode 100644 index 0000000000..6d2ed1a16f --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2009_2JET_MIDRAP_200GEV/uncertainties_SS.yaml @@ -0,0 +1,629 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2009POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2009LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2009JETunc54 +bins: +- pol: 0.0004355 + lumi: 0.0005 + sys_0: -1.658056872888884e-09 + sys_1: 3.140827267008877e-08 + sys_2: 3.0418457957958104e-06 + sys_3: 1.288922481172695e-06 + sys_4: -2.192020358736063e-06 + sys_5: 2.996043296517624e-08 + sys_6: -3.029370230115433e-06 + sys_7: 1.218261160959624e-06 + sys_8: 3.6228990873453944e-07 + sys_9: 7.462720591574504e-08 + sys_10: -4.3965343196350976e-08 + sys_11: -1.7490608842930915e-06 + sys_12: 4.412074839935149e-06 + sys_13: -7.608695857573235e-06 + sys_14: -5.825735235180118e-06 + sys_15: -1.6816151122779383e-06 + sys_16: -1.1905123113740107e-06 + sys_17: 1.8158735573711971e-06 + sys_18: 5.148915516120548e-06 + sys_19: -3.273445683118801e-06 + sys_20: -8.182862372637505e-06 + sys_21: -4.787016215387209e-06 + sys_22: -9.948993839407328e-06 + sys_23: 4.754420081652677e-06 + sys_24: 6.021789472225856e-06 + sys_25: -1.394966296751198e-06 + sys_26: 1.4430955466254012e-05 + sys_27: -5.599405127546826e-06 + sys_28: 2.7649396292401746e-05 + sys_29: -1.0659112625496688e-05 + sys_30: 1.2535655606181161e-05 + sys_31: 1.9661612783345774e-05 + sys_32: -7.660137858855078e-05 + sys_33: 1.7584596780049033e-05 + sys_34: -2.2881629333917068e-05 + sys_35: -4.9773901299231286e-05 + sys_36: 9.545061238829889e-05 + sys_37: 0.00020299134732531304 + sys_38: 8.255796093877062e-05 + sys_39: -0.000189341118344038 + sys_40: -0.0033477500546966856 + sys_41: -0.0006051123535269574 + sys_42: 9.131715486246246e-05 + sys_43: -8.07675945648248e-05 + sys_44: -3.9671920135474006e-05 + sys_45: -1.669463979039761e-05 + sys_46: -5.452111055887787e-06 + sys_47: 8.19214157607349e-05 + sys_48: -3.0653113943515775e-05 + sys_49: 8.125942823378536e-05 + sys_50: 3.0347912756332494e-06 + sys_51: 9.133221855813155e-05 + sys_52: 3.730071017724539e-05 + sys_53: -3.7564684612704575e-05 + sys_54: -3.0777332776610266e-07 +- pol: 0.000572 + lumi: 0.0005 + sys_0: -8.293881943341726e-09 + sys_1: 1.5750662937975654e-07 + sys_2: 3.212247395153709e-06 + sys_3: 7.126612500023773e-07 + sys_4: -4.800875992010975e-06 + sys_5: 2.7551233322403476e-07 + sys_6: -4.493621540601891e-06 + sys_7: 1.6149106579787652e-06 + sys_8: 1.025135489990001e-06 + sys_9: 1.921135162354943e-06 + sys_10: 1.2219966859450356e-07 + sys_11: -5.816965990305692e-06 + sys_12: 5.717732609700918e-06 + sys_13: -1.4468511874718747e-05 + sys_14: -8.344732271301625e-06 + sys_15: -3.139430540385995e-06 + sys_16: -1.7381220149588226e-06 + sys_17: 1.2493639906319336e-05 + sys_18: 1.1548576980592622e-05 + sys_19: -1.196345097462731e-05 + sys_20: -2.3109897496549195e-05 + sys_21: -2.7887152355422904e-05 + sys_22: 2.632092298103474e-06 + sys_23: 1.0625464275110314e-05 + sys_24: 2.1593721604516617e-05 + sys_25: 9.494656487902311e-06 + sys_26: 5.01440673573955e-05 + sys_27: -2.2673911698770577e-05 + sys_28: 8.495100229926799e-05 + sys_29: -2.4116615168048463e-05 + sys_30: 4.330099787564309e-05 + sys_31: -1.8195602625372562e-06 + sys_32: -3.681743663987125e-05 + sys_33: -8.583556178778838e-06 + sys_34: -9.942180425826527e-05 + sys_35: -0.00018853530344037033 + sys_36: 0.00012018777748417468 + sys_37: 8.951922007924452e-05 + sys_38: 0.00015404810165720544 + sys_39: -0.00020457566939626978 + sys_40: -0.00034875728359026493 + sys_41: 0.002230474303850599 + sys_42: -0.0009863174683658335 + sys_43: -0.0020342677899925846 + sys_44: 9.494378355503931e-05 + sys_45: -0.0002391748739488747 + sys_46: 0.00012577107681740118 + sys_47: 0.0001714874567893477 + sys_48: 2.132201496834494e-05 + sys_49: 6.406641505355314e-05 + sys_50: -5.9174880485093314e-06 + sys_51: 0.00012532458404677983 + sys_52: 8.042852039985894e-06 + sys_53: 1.0316853492285339e-07 + sys_54: 5.375286095793707e-06 +- pol: 0.001053 + lumi: 0.0005 + sys_0: -3.86528944053241e-08 + sys_1: 4.341057308957434e-07 + sys_2: 3.7927293459710565e-06 + sys_3: 1.460188365465696e-06 + sys_4: -3.246370541761504e-06 + sys_5: 1.3481694635048517e-06 + sys_6: -4.584460138188952e-06 + sys_7: -3.544009546969133e-06 + sys_8: 1.974512591820861e-06 + sys_9: 1.0357757245388232e-05 + sys_10: 1.1442017832434212e-06 + sys_11: -1.965985224473067e-05 + sys_12: 2.1544794234755423e-05 + sys_13: -2.8107119348341946e-05 + sys_14: -5.1537905634616815e-06 + sys_15: -2.661395399641154e-05 + sys_16: -1.8885407369400812e-05 + sys_17: 4.330952996809773e-05 + sys_18: 2.2454406748608007e-06 + sys_19: -2.1433847460667918e-05 + sys_20: -6.587500016257086e-05 + sys_21: -8.712788235383739e-07 + sys_22: 1.5084968476842367e-06 + sys_23: -4.739382257638845e-05 + sys_24: 5.844501236514438e-05 + sys_25: -3.170716394676462e-05 + sys_26: 0.00019136042775149743 + sys_27: 5.316714236323755e-05 + sys_28: 0.0002370040941219164 + sys_29: -3.67023652697346e-05 + sys_30: 4.3053566414268186e-05 + sys_31: -0.0003958664764055727 + sys_32: -6.666785861562499e-05 + sys_33: 1.7918432020684777e-05 + sys_34: -0.0002114492860685621 + sys_35: -0.0027788703248067125 + sys_36: 0.0020025892410742816 + sys_37: -0.000512518598829953 + sys_38: -0.0015603644212928037 + sys_39: -0.0006427853382654503 + sys_40: 0.00011460868429644457 + sys_41: -0.00033020501494608026 + sys_42: -0.00034709723043768053 + sys_43: 0.00015681992297031185 + sys_44: 0.00021970919143579273 + sys_45: -0.00022610037615977308 + sys_46: 0.00014017078147833374 + sys_47: 0.0001142089195934172 + sys_48: 3.287447323277592e-05 + sys_49: 2.2627240620961506e-05 + sys_50: -5.357705939422036e-06 + sys_51: 6.641996402014042e-05 + sys_52: -8.206562841754246e-06 + sys_53: 1.4671843898102146e-05 + sys_54: 5.397479155526712e-06 +- pol: 0.000156 + lumi: 0.0005 + sys_0: -1.405235913056659e-07 + sys_1: 1.1094948413408155e-06 + sys_2: 1.1310647417757537e-05 + sys_3: -1.9772974944671523e-06 + sys_4: -1.0895389162513475e-05 + sys_5: 4.564382791703676e-06 + sys_6: -1.075830143519216e-06 + sys_7: -2.733250696306468e-05 + sys_8: 2.812278157035253e-05 + sys_9: 7.306218781094941e-05 + sys_10: 9.847956404673356e-06 + sys_11: -6.706803276735533e-05 + sys_12: 9.15659830880083e-05 + sys_13: -7.89192538769399e-05 + sys_14: -1.951614269577913e-05 + sys_15: -3.816488662935725e-07 + sys_16: -2.1943327104653643e-06 + sys_17: 0.00020045890217959436 + sys_18: -7.910491933922872e-05 + sys_19: -7.874164863772079e-05 + sys_20: -0.0002786473903350032 + sys_21: 1.2138110824379055e-05 + sys_22: 1.0723283203666212e-05 + sys_23: -0.0004339759222401963 + sys_24: 0.00013857454578271436 + sys_25: -0.00012870628255777394 + sys_26: 0.005216209674677451 + sys_27: -0.0017081774289940531 + sys_28: -0.0009979628777357957 + sys_29: 4.368148046850477e-05 + sys_30: 0.00016680257866688974 + sys_31: 0.0006190863519833422 + sys_32: 2.1990238788206318e-05 + sys_33: -1.913893243941028e-05 + sys_34: 3.1187326662368546e-05 + sys_35: 0.0002885531443222568 + sys_36: -0.0001935279233834747 + sys_37: 3.431650183072383e-05 + sys_38: -0.00018683444290037174 + sys_39: -0.0004166835750160621 + sys_40: 3.29264081507227e-05 + sys_41: -0.00011034970734723292 + sys_42: -0.0001971404725005824 + sys_43: 7.389329024242079e-05 + sys_44: 0.00018387030549467978 + sys_45: -0.00011590832296621203 + sys_46: 6.165695072644781e-05 + sys_47: 3.7251709342471866e-05 + sys_48: 1.7888089072459707e-05 + sys_49: 3.1955624056248205e-06 + sys_50: -2.4310926272423886e-06 + sys_51: 1.5520516259931415e-05 + sys_52: -7.336330876278512e-06 + sys_53: 7.992699050855597e-06 + sys_54: 1.1562017455937853e-06 +- pol: 0.0008449999999999999 + lumi: 0.0005 + sys_0: -1.0133915098326404e-05 + sys_1: 6.773051835710154e-05 + sys_2: 4.323295727813748e-05 + sys_3: -2.4182845029568217e-05 + sys_4: -4.1498214807209714e-05 + sys_5: 5.7252381910159354e-05 + sys_6: 2.4229939664840602e-05 + sys_7: -0.0001501541609170586 + sys_8: -1.7690079835589492e-06 + sys_9: 0.000382190405259982 + sys_10: 8.23042067668829e-05 + sys_11: -0.000421300092888262 + sys_12: 0.0006542145328550147 + sys_13: -0.0004292848982143248 + sys_14: -0.00018774966132862928 + sys_15: 3.61366019834232e-05 + sys_16: -3.5862881559855756e-06 + sys_17: 0.008467257224378001 + sys_18: 0.002404617169368004 + sys_19: -0.00032009810938632313 + sys_20: 0.001132168019998209 + sys_21: -3.570400915398507e-05 + sys_22: -2.0808257524156342e-05 + sys_23: 0.0009249227258425807 + sys_24: -9.46901431708618e-06 + sys_25: 2.0043300823376454e-05 + sys_26: -0.0004325405661530078 + sys_27: -0.000476527335509024 + sys_28: -0.0001294213710483865 + sys_29: -6.188977966601421e-05 + sys_30: 0.0002936665917891881 + sys_31: 0.0002877677681897996 + sys_32: 1.7958276816535406e-05 + sys_33: -2.340926952716313e-05 + sys_34: 1.3511535255922914e-05 + sys_35: 9.707241303847912e-05 + sys_36: -7.089722882868545e-05 + sys_37: 1.8287904857559516e-05 + sys_38: -9.144038297167738e-05 + sys_39: -0.00029226179693320165 + sys_40: 1.7237784173759237e-05 + sys_41: -4.395215994392126e-05 + sys_42: -7.645249014529061e-05 + sys_43: 2.2923420667782513e-05 + sys_44: 6.111094066483742e-05 + sys_45: -3.1209786059264546e-05 + sys_46: 1.165193178287576e-05 + sys_47: 5.577712140201446e-06 + sys_48: 6.238084691458367e-06 + sys_49: -7.686132252713681e-07 + sys_50: -9.202797123788808e-07 + sys_51: 9.716905474342095e-07 + sys_52: -3.600739873218766e-06 + sys_53: 3.1234585149748167e-06 + sys_54: -1.2656808237576771e-08 +- pol: 0.0021839999999999997 + lumi: 0.0005 + sys_0: -1.2412081850326375e-06 + sys_1: 3.80169502349936e-06 + sys_2: 0.0004085957453888543 + sys_3: -0.00031573744166006867 + sys_4: -0.0004157193630004238 + sys_5: 3.2076402312450046e-05 + sys_6: 0.0006387832987423233 + sys_7: -0.001994924131664162 + sys_8: 1.4163331259861884e-05 + sys_9: 0.006626542221658228 + sys_10: 0.0014605997696283885 + sys_11: -0.00905334117374445 + sys_12: -0.006717394910581496 + sys_13: 0.0001312805096088116 + sys_14: -0.00015212409009999497 + sys_15: -5.272225800721686e-05 + sys_16: 3.7050042490970324e-06 + sys_17: -0.000890704662308772 + sys_18: 0.0017435636003592123 + sys_19: -0.0005261406691111601 + sys_20: -8.173062303263898e-05 + sys_21: -2.728857938057027e-05 + sys_22: -1.401407515734364e-05 + sys_23: 0.0005024643985340287 + sys_24: 1.8762610463125133e-05 + sys_25: 1.0351265284113532e-05 + sys_26: -0.00016128310795032928 + sys_27: -0.0002935476806141325 + sys_28: -5.083601687037456e-05 + sys_29: -0.00013306708755349462 + sys_30: 0.00032448917119456245 + sys_31: 0.00014432090680774218 + sys_32: 1.4726062816181457e-05 + sys_33: -5.175682785436153e-05 + sys_34: 2.3442267195464685e-05 + sys_35: 1.9221676467422708e-05 + sys_36: -2.4106441951325965e-05 + sys_37: 3.007456519000364e-06 + sys_38: -3.247770206113025e-05 + sys_39: -0.00010814646187663032 + sys_40: 6.2928031077563696e-06 + sys_41: -1.5282726301976105e-05 + sys_42: -2.3140202618070226e-05 + sys_43: 6.12685807061345e-06 + sys_44: 1.2967948868318566e-05 + sys_45: -5.842824981036974e-06 + sys_46: 1.4524278823690404e-06 + sys_47: -6.172948980570606e-07 + sys_48: 2.617370136727245e-06 + sys_49: -1.008992485836469e-06 + sys_50: -4.2179335350293916e-07 + sys_51: -1.1247354549656814e-06 + sys_52: -1.9918000767159775e-06 + sys_53: 1.6156747555654028e-06 + sys_54: -9.062505725118879e-08 +- pol: 0.0049075 + lumi: 0.0005 + sys_0: -3.943045678963153e-06 + sys_1: 4.489839706987782e-05 + sys_2: 0.040456935062387185 + sys_3: 0.02082073324726161 + sys_4: 0.00540404430181898 + sys_5: 9.125186692559913e-06 + sys_6: -0.005442779476393657 + sys_7: 0.001534951991851094 + sys_8: -5.406384573764437e-07 + sys_9: -0.0009933094958683207 + sys_10: -0.0002241932967889574 + sys_11: -0.0005108274897183757 + sys_12: -0.00012587537248200223 + sys_13: -0.00013955250598919722 + sys_14: -8.679893758369106e-05 + sys_15: -4.318377836121957e-06 + sys_16: 2.1599555590776783e-07 + sys_17: -4.1517375729476716e-05 + sys_18: 0.00010956286015040405 + sys_19: -3.473094610735384e-05 + sys_20: -1.4127739861044218e-05 + sys_21: -2.3135032901655283e-06 + sys_22: -1.148723708927996e-06 + sys_23: 2.3370786789945835e-05 + sys_24: 2.787077508844311e-06 + sys_25: 1.6488638600525228e-06 + sys_26: -3.9177071459464075e-06 + sys_27: -1.0743371749885383e-06 + sys_28: -9.84691950255215e-06 + sys_29: -1.9833094929828224e-05 + sys_30: 2.0899281353493567e-05 + sys_31: 6.649730909568422e-06 + sys_32: -1.5755838610603534e-06 + sys_33: -1.6006258232858134e-05 + sys_34: 5.115016724538681e-06 + sys_35: 6.850030180857224e-08 + sys_36: -1.9746487335832137e-06 + sys_37: -5.064178900521006e-07 + sys_38: -1.5364179170256934e-06 + sys_39: -3.872252042783669e-06 + sys_40: 5.253867234223082e-07 + sys_41: -9.277383719802631e-07 + sys_42: -6.126622792770463e-07 + sys_43: -1.8873070995916441e-07 + sys_44: 5.570752965623039e-08 + sys_45: 2.804371869898015e-07 + sys_46: -2.7537327727124625e-07 + sys_47: -4.019236265125793e-07 + sys_48: 2.1754650250370236e-07 + sys_49: -1.8662544883500077e-07 + sys_50: -4.319177183898664e-08 + sys_51: -3.0596987859297205e-07 + sys_52: -2.1576141744187774e-07 + sys_53: 1.655365569083554e-07 + sys_54: -2.6227567542193994e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/data.yaml new file mode 100644 index 0000000000..7922dfd3e0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/data.yaml @@ -0,0 +1,15 @@ +data_central: +- 1.71e-05 +- -0.00215 +- 0.00162 +- 0.0005 +- 0.00148 +- 0.00293 +- 0.00158 +- 0.00445 +- 0.00496 +- 0.0036 +- 0.0169 +- -0.00492 +- 0.0122 +- 0.00177 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py new file mode 100644 index 0000000000..ff41a0d9e1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/filter.py @@ -0,0 +1,332 @@ +"""This script provides the common filer to the jet and dijet STAR 2012 datasets. +Files need to be parsed all together as there are correlations provided. +""" +import pathlib +import math + +import numpy as np +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.correlations import ( + compute_covmat, + upper_triangular_to_symmetric, +) + +# values from the paper https://arxiv.org/abs/1906.02740 +SQRTS = 510 +YEAR = 2012 +POL_UNC = 0.066 +TOPOPLOGY_LIST = ["I", "A", "B", "C", "D"] + +HERE = pathlib.Path(__file__).parent +RAWDATA_PATH = HERE / "rawdata/" + +# NOTE: the observable is symmetric for jet1 and jet2, +# so 1 and 2 are not ordered in pT. +TOPO_DEF = { + "A": { + "abs_eta1_min": 0.3, + "abs_eta1_max": 0.9, + "abs_eta2_min": 0.3, + "abs_eta2_max": 0.9, + }, + "B": { + "abs_eta1_min": 0, + "abs_eta1_max": 0.3, + "abs_eta2_min": 0.3, + "abs_eta2_max": 0.9, + }, + "C": { + "abs_eta1_min": 0, + "abs_eta1_max": 0.3, + "abs_eta2_min": 0, + "abs_eta2_max": 0.3, + }, + "D": { + "abs_eta1_min": 0.3, + "abs_eta1_max": 0.9, + "abs_eta2_min": 0.3, + "abs_eta2_max": 0.9, + }, + "I": {"abs_eta_min": 0, "abs_eta_max": 0.9}, +} + + +def read_1jet_data(): + data_table = pathlib.Path(RAWDATA_PATH / "Figure12(Run12).csv") + + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=6) + + df = pd.DataFrame() + df["pT"] = all_data["Parton Jet $p_{T}$ [GeV/c]"] + df["pT_min"] = all_data["Parton Jet $p_{T}$ [GeV/c] LOW"] + df["pT_max"] = all_data["Parton Jet $p_{T}$ [GeV/c] HIGH"] + df["eta"] = 0.0 + df["eta_min"] = -TOPO_DEF["I"]["abs_eta_max"] + df["eta_max"] = +TOPO_DEF["I"]["abs_eta_max"] + df["sqrts"] = SQRTS + df["ALL"] = all_data["Inclusive Jet $A_{LL}$"] + df["stat"] = all_data["stat +"] + df["syst"] = all_data["sys +"] + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi_ue"] = all_data["UE/RL sys +"] + + print("1JET data loaded. Npoint: ", len(df)) + return df + + +def read_2jet_data(topology): + data_table = RAWDATA_PATH / f"Figure14(b,{topology},data).csv" + + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=6) + + df = pd.DataFrame() + df["mjj"] = all_data["Parton DiJet $M_{inv}$ [$GeV/c^{2}$]"] + df["mjj_min"] = all_data["Parton DiJet $M_{inv}$ [$GeV/c^{2}$] LOW"] + df["mjj_max"] = all_data["Parton DiJet $M_{inv}$ [$GeV/c^{2}$] HIGH"] + + for p in ["1", "2"]: + df[f"abs_eta{p}_min"] = TOPO_DEF[topology][f"abs_eta{p}_min"] + df[f"abs_eta{p}_max"] = TOPO_DEF[topology][f"abs_eta{p}_max"] + df[f"abs_eta{p}"] = (df[f"abs_eta{p}_min"] + df[f"abs_eta{p}_max"]) / 2 + + df["sqrts"] = SQRTS + df["ALL"] = all_data[r"DiJet $A_{LL}$"] + df["stat"] = all_data[r"stat +"] + df["syst"] = all_data[r"sys +"] + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi_ue"] = all_data["UE/RL sys +"] + print(f"2JET {topology} data loaded. Npoint: ", len(df)) + return df + + +def read_correlations(ndata_dict): + """Read the correlation files and build a big matix""" + corr_rows = [] + # loop on block rows + for a, ndata_a in ndata_dict.items(): + la = [a for _ in range(ndata_a)] + corr_row = pd.DataFrame() + # loop on block columns + for b, ndata_b in ndata_dict.items(): + lb = [b for _ in range(ndata_b)] + # build the block + try: + with open(RAWDATA_PATH / f"corr{a}Vs{b}.tex", encoding="utf-8") as file: + corr_df = pd.read_csv( + file, sep="&", skiprows=3, skipfooter=3, engine="python" + ) + + # add some parsing + corr_vals = [] + for val in corr_df.values.flatten(): + if val is None: + continue + if isinstance(val, str): + val = val.replace("\\", "") + try: + val = float(val) + except ValueError: + continue + if not math.isnan(val): + corr_vals.append(val) + + if a == b: + corr = upper_triangular_to_symmetric(corr_vals, ndata_a) + else: + corr = np.array(corr_vals).reshape((ndata_a, ndata_b)) + except FileNotFoundError: + corr = pd.DataFrame(np.zeros((ndata_a, ndata_b)), index=la, columns=lb) + + corr = pd.DataFrame(corr, index=la, columns=lb) + corr_row = pd.concat([corr_row, corr], axis=1) + corr_rows.append(corr_row) + + tot_corr = pd.concat(corr_rows) + if not np.allclose(tot_corr, np.triu(tot_corr)): + raise ValueError("Correlation matrix not read correctly") + return tot_corr + tot_corr.T - np.eye(np.sum((*ndata_dict.values(),))) + + +def write_1jet_data(df, art_sys): + STORE_PATH = HERE + + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / "data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "pT": { + "min": float(df.loc[i, "pT_min"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pT_max"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": float(df.loc[i, "eta_min"]), + "mid": float(df.loc[i, "eta"]), + "max": float(df.loc[i, "eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open(STORE_PATH / "kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "lumi_ue": { + "description": "underlying event and relative luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMIUE", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = { + "lumi_ue": float(df.loc[i, "lumi_ue"]), + "pol": float(df.loc[i, "pol"]), + } + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open(STORE_PATH / "uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +def write_2jet_data(df, topology, art_sys): + STORE_PATH = HERE / f"../STAR_{YEAR}_2JET_{SQRTS}GEV/" + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "m_jj": { + "min": float(df.loc[i, "mjj_min"]), + "mid": float(df.loc[i, "mjj"]), + "max": float(df.loc[i, "mjj_max"]), + }, + # "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta_1": { + "min": float(df.loc[i, "abs_eta1_min"]), + "mid": float(df.loc[i, "abs_eta1"]), + "max": float(df.loc[i, "abs_eta1_max"]), + }, + "abs_eta_2": { + "min": float(df.loc[i, "abs_eta2_min"]), + "mid": float(df.loc[i, "abs_eta2"]), + "max": float(df.loc[i, "abs_eta2_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "lumi_ue": { + "description": "underlying event and relative luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMIUE", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = { + "lumi_ue": float(df.loc[i, "lumi_ue"]), + "pol": float(df.loc[i, "pol"]), + } + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # load all the data + dfs = {"I": read_1jet_data()} + for topo in TOPOPLOGY_LIST[1:]: + dfs[topo] = read_2jet_data(topo) + + # load correlations + ndata_dict = {a: len(b) for a, b in dfs.items()} + correlation_df = read_correlations(ndata_dict) + # sum stat and syst for both jet and dijets as recommended + # by E.Aschenauer, see https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 + correlated_unc = [] + for a in TOPOPLOGY_LIST: + correlated_unc.extend( + np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() + ) + ndata_points = np.sum((*ndata_dict.values(),)) + # decompose uncertainties + art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) + + # write data + cnt = 0 + for topo, df in dfs.items(): + ndata = ndata_dict[topo] + syst = art_sys[cnt : cnt + ndata, :].tolist() + if topo == "I": + write_1jet_data(df, syst) + else: + write_2jet_data(df, topo, syst) + cnt += ndata diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/kinematics.yaml new file mode 100644 index 0000000000..680a8a3950 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/kinematics.yaml @@ -0,0 +1,169 @@ +bins: +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 7.282 + mid: 7.02 + min: 6.758 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 8.267 + mid: 7.97 + min: 7.673 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 10.26 + mid: 9.9 + min: 9.54 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 12.002 + mid: 11.6 + min: 11.198 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 13.865 + mid: 13.4 + min: 12.935 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 16.1 + mid: 15.6 + min: 15.1 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 19.599 + mid: 19.0 + min: 18.401 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 22.829 + mid: 22.200000000000003 + min: 21.571 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 26.441 + mid: 25.7 + min: 24.959 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 30.533 + mid: 29.700000000000003 + min: 28.867 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 35.349 + mid: 34.4 + min: 33.451 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 40.78 + mid: 39.7 + min: 38.62 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 47.54 + mid: 46.3 + min: 45.06 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 55.29 + mid: 53.8 + min: 52.31 + sqrts: + max: null + mid: 510.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/metadata.yaml new file mode 100644 index 0000000000..cc03bd80e2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/metadata.yaml @@ -0,0 +1,59 @@ +setname: "STAR_2012_1JET_510GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +iNSPIRE: + url: "https://inspirehep.net/literature/1738738" +hepdata: + url: "https://www.hepdata.net/record/ins1738738" + version: 1 +arXiv: + url: https://arxiv.org/abs/1906.02740 + +version: 1 +version_comment: "Initial implementation, correlations from arXiv" + +implemented_observables: + - observable: + { + description: "$A_{LL}$ as function of $p_T$", + label: "$A_{LL}$", + units: "", + } + observable_name: ALL + process_type: JET_POL + ndata: 14 + tables: [12] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + dataset_label: "STAR 510 GeV (2012) 1-JET $A_{LL}$" + kinematics_override: identity + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2012_1JET_510GEV_ALL-POL + - - STAR_2012_1JET_510GEV_ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure12(Run12).csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure12(Run12).csv new file mode 100644 index 0000000000..3eabe1e964 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure12(Run12).csv @@ -0,0 +1,22 @@ +#: table_doi: 10.17182/hepdata.105278.v1/t29 +#: name: Figure 12 (Run12) +#: description: the inclusive jet asymmetries and systematic uncertainties,as function of pT compared to the theoretical predictions (Run12) +#: data_file: fig12_run12_input_yaml.yaml +#: keyword cmenergies: 510.0 +#: Parton Jet $p_{T}$ [GeV/c],,,Inclusive Jet $A_{LL}$, 510GeV, Run12, R=0.5,$\vert \eta \vert$ < 0.9 +Parton Jet $p_{T}$ [GeV/c],Parton Jet $p_{T}$ [GeV/c] LOW,Parton Jet $p_{T}$ [GeV/c] HIGH,Inclusive Jet $A_{LL}$,stat +,stat -,sys +,sys -,UE/RL sys +,UE/RL sys - +7.02,6.758,7.282,1.71e-05,0.00132,-0.00132,0.000132,-0.000132,0.000364,-0.000364 +7.97,7.673,8.267,-0.00215,0.0014,-0.0014,0.000485,-0.000485,0.000326,-0.000326 +9.899999999999999,9.54,10.26,0.00162,0.00101,-0.00101,0.000109,-0.000109,0.000311,-0.000311 +11.600000000000001,11.198,12.002,0.0005,0.00112,-0.00112,8.01e-05,-8.01e-05,0.000284,-0.000284 +13.4,12.935,13.865,0.00148,0.00129,-0.00129,0.000106,-0.000106,0.000272,-0.000272 +15.600000000000001,15.1,16.1,0.00293,0.00159,-0.00159,0.000159,-0.000159,0.000256,-0.000256 +19.0,18.401,19.599,0.00158,0.00158,-0.00158,0.000139,-0.000139,0.000251,-0.000251 +22.200000000000003,21.571,22.829,0.00445,0.00181,-0.00181,0.000228,-0.000228,0.000246,-0.000246 +25.7,24.959,26.441,0.00496,0.00214,-0.00214,0.000177,-0.000177,0.000239,-0.000239 +29.700000000000003,28.867,30.533,0.0036,0.00273,-0.00273,0.000251,-0.000251,0.000234,-0.000234 +34.4,33.451,35.349,0.0169,0.00372,-0.00372,0.000376,-0.000376,0.000231,-0.000231 +39.7,38.62,40.78,-0.00492,0.00537,-0.00537,0.000336,-0.000336,0.000229,-0.000229 +46.3,45.06,47.54,0.0122,0.00836,-0.00836,0.000687,-0.000687,0.000227,-0.000227 +53.8,52.31,55.29,0.00177,0.0137,-0.0137,0.000813,-0.000813,0.000226,-0.000226 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,A,data).csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,A,data).csv new file mode 100644 index 0000000000..7774167103 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,A,data).csv @@ -0,0 +1,18 @@ +#: table_doi: 10.17182/hepdata.105278.v1/t53 +#: name: Figure 14 (b,A,data) +#: description: Dijet asymmetries for the same topological bins in 510 GeV pp collisions (b,A,data) +#: data_file: fig14_b_data_A_input_yaml.yaml +#: keyword cmenergies: 510.0 +#: Parton DiJet $M_{inv}$ [$GeV/c^{2}$],,,DiJet $A_{LL}$,b, A, data +Parton DiJet $M_{inv}$ [$GeV/c^{2}$],Parton DiJet $M_{inv}$ [$GeV/c^{2}$] LOW,Parton DiJet $M_{inv}$ [$GeV/c^{2}$] HIGH,DiJet $A_{LL}$,stat +,stat -,sys +,sys -,UE/RL sys +,UE/RL sys - +19.04,18.22,19.86,-0.0128,0.0066,-0.0066,0.0002,-0.0002,0.00025,-0.00025 +21.619999999999997,20.66,22.58,0.009,0.0052,-0.0052,0.0002,-0.0002,0.00058,-0.00058 +26.380000000000003,25.3,27.46,0.0079,0.005,-0.005,0.0004,-0.0004,0.00062,-0.00062 +32.3,31.14,33.46,-0.0012,0.0052,-0.0052,0.0004,-0.0004,0.00056,-0.00056 +38.42,37.22,39.62,0.0101,0.0061,-0.0061,0.0004,-0.0004,0.00051,-0.00051 +45.18,43.7,46.66,-0.0013,0.0064,-0.0064,0.0006,-0.0006,0.00046,-0.00046 +53.42,51.87,54.97,0.0048,0.0081,-0.0081,0.0009,-0.0009,0.00044,-0.00044 +63.519999999999996,61.72,65.32,0.0052,0.0108,-0.0108,0.001,-0.001,0.00037,-0.00037 +75.55000000000001,73.34,77.76,0.0363,0.0167,-0.0167,0.002,-0.002,0.00037,-0.00037 +89.12,86.74,91.5,-0.0218,0.0264,-0.0264,0.0048,-0.0048,0.00031,-0.00031 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,B,data).csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,B,data).csv new file mode 100644 index 0000000000..5acdc8e0c6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,B,data).csv @@ -0,0 +1,19 @@ +#: table_doi: 10.17182/hepdata.105278.v1/t54 +#: name: Figure 14 (b,B,data) +#: description: Dijet asymmetries for the same topological bins in 510 GeV pp collisions (b,B,data) +#: data_file: fig14_b_data_B_input_yaml.yaml +#: keyword cmenergies: 510.0 +#: Parton DiJet $M_{inv}$ [$GeV/c^{2}$],,,DiJet $A_{LL}$,b, B, data +Parton DiJet $M_{inv}$ [$GeV/c^{2}$],Parton DiJet $M_{inv}$ [$GeV/c^{2}$] LOW,Parton DiJet $M_{inv}$ [$GeV/c^{2}$] HIGH,DiJet $A_{LL}$,stat +,stat -,sys +,sys -,UE/RL sys +,UE/RL sys - +18.799999999999997,17.99,19.61,-0.0023,0.0053,-0.0053,0.0002,-0.0002,0.0004,-0.0004 +21.799999999999997,20.86,22.74,0.0041,0.0036,-0.0036,0.0003,-0.0003,0.00063,-0.00063 +26.37,25.28,27.46,0.0016,0.0033,-0.0033,0.0003,-0.0003,0.00041,-0.00041 +32.24,31.17,33.31,0.0029,0.0034,-0.0034,0.0004,-0.0004,0.00043,-0.00043 +38.42,37.11,39.73,-0.0063,0.004,-0.004,0.0005,-0.0005,0.00035,-0.00035 +45.83,44.42,47.24,0.002,0.0041,-0.0041,0.0007,-0.0007,0.00036,-0.00036 +54.14,52.45,55.83,0.0128,0.005,-0.005,0.0008,-0.0008,0.0003,-0.0003 +64.17,62.34,66,-0.0022,0.0065,-0.0065,0.0011,-0.0011,0.00031,-0.00031 +76.06,73.93,78.19,-0.001,0.0096,-0.0096,0.0014,-0.0014,0.00028,-0.00028 +89.81,87.33,92.29,-0.016,0.0143,-0.0143,0.002,-0.002,0.00026,-0.00026 +107.92,105.03,110.81,-0.0205,0.0242,-0.0242,0.0027,-0.0027,0.00026,-0.00026 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,C,data).csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,C,data).csv new file mode 100644 index 0000000000..7ebe2ca958 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,C,data).csv @@ -0,0 +1,18 @@ +#: table_doi: 10.17182/hepdata.105278.v1/t55 +#: name: Figure 14 (b,C,data) +#: description: Dijet asymmetries for the same topological bins in 510 GeV pp collisions (b,C,data) +#: data_file: fig14_b_data_C_input_yaml.yaml +#: keyword cmenergies: 510.0 +#: Parton DiJet $M_{inv}$ [$GeV/c^{2}$],,,DiJet $A_{LL}$,b, C, data +Parton DiJet $M_{inv}$ [$GeV/c^{2}$],Parton DiJet $M_{inv}$ [$GeV/c^{2}$] LOW,Parton DiJet $M_{inv}$ [$GeV/c^{2}$] HIGH,DiJet $A_{LL}$,stat +,stat -,sys +,sys -,UE/RL sys +,UE/RL sys - +19.810000000000002,19,20.62,0.0058,0.0085,-0.0085,0.0002,-0.0002,0.00026,-0.00026 +22.009999999999998,20.89,23.13,-0.0006,0.0066,-0.0066,0.0006,-0.0006,0.00063,-0.00063 +26.159999999999997,25.08,27.24,-0.0043,0.0062,-0.0062,0.0004,-0.0004,0.00074,-0.00074 +32.7,31.51,33.89,0.0049,0.0065,-0.0065,0.0006,-0.0006,0.00078,-0.00078 +38.709999999999994,37.37,40.05,0.0046,0.0077,-0.0077,0.0007,-0.0007,0.00081,-0.00081 +46.01,44.65,47.37,0.0155,0.0079,-0.0079,0.0006,-0.0006,0.00052,-0.00052 +53.89,52.11,55.67,-0.0045,0.0098,-0.0098,0.0012,-0.0012,0.00053,-0.00053 +64.75,63.01,66.49,0.0104,0.0127,-0.0127,0.0014,-0.0014,0.00041,-0.00041 +77.15,74.88,79.42,0.0346,0.0192,-0.0192,0.0019,-0.0019,0.00041,-0.00041 +91.14,88.56,93.72,0.0593,0.0294,-0.0294,0.0073,-0.0073,0.00041,-0.00041 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,D,data).csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,D,data).csv new file mode 100644 index 0000000000..e83c815db6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/Figure14(b,D,data).csv @@ -0,0 +1,19 @@ +#: table_doi: 10.17182/hepdata.105278.v1/t56 +#: name: Figure 14 (b,D,data) +#: description: Dijet asymmetries for the same topological bins in 510 GeV pp collisions (b,D,data) +#: data_file: fig14_b_data_D_input_yaml.yaml +#: keyword cmenergies: 510.0 +#: Parton DiJet $M_{inv}$ [$GeV/c^{2}$],,,DiJet $A_{LL}$,b, D, data +Parton DiJet $M_{inv}$ [$GeV/c^{2}$],Parton DiJet $M_{inv}$ [$GeV/c^{2}$] LOW,Parton DiJet $M_{inv}$ [$GeV/c^{2}$] HIGH,DiJet $A_{LL}$,stat +,stat -,sys +,sys -,UE/RL sys +,UE/RL sys - +20.54,18.4,22.68,0.0054,0.0161,-0.0161,0.0002,-0.0002,0.00131,-0.00131 +22.09,21.14,23.04,0.0042,0.0051,-0.0051,0.0002,-0.0002,0.00022,-0.00022 +26.31,25.33,27.29,0.0051,0.005,-0.005,0.0003,-0.0003,0.00072,-0.00072 +31.72,30.5,32.94,-0.0031,0.0059,-0.0059,0.0003,-0.0003,0.00052,-0.00052 +38.480000000000004,37.17,39.79,-0.0018,0.006,-0.006,0.0004,-0.0004,0.00054,-0.00054 +45.209999999999994,43.66,46.76,-0.004,0.007,-0.007,0.0005,-0.0005,0.00044,-0.00044 +54.150000000000006,52.46,55.84,0.0034,0.0087,-0.0087,0.0008,-0.0008,0.00044,-0.00044 +64.3,62.38,66.22,0.005,0.0123,-0.0123,0.0011,-0.0011,0.00036,-0.00036 +76.66,74.51,78.81,0.0058,0.0178,-0.0178,0.0024,-0.0024,0.00036,-0.00036 +89.57,86.95,92.19,0.0291,0.0296,-0.0296,0.0014,-0.0014,0.00036,-0.00036 +106.86,103.89,109.83,-0.0055,0.0461,-0.0461,0.0028,-0.0028,0.00029,-0.00029 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsA.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsA.tex new file mode 100644 index 0000000000..efcf99dcb1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsA.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & A1 & A2 & A3 & A4 & A5 & A6 & A7 & A8 & A9 & A10 \\ +\hline +A1 & 1 & 0.003 & 0.004 & 0.004 & 0.004 & 0.004 & 0.004 & 0.003 & 0.004 & 0.006 \\ +A2 & & 1 & 0.015 & 0.013 & 0.011 & 0.011 & 0.010 & 0.007 & 0.007 & 0.009 \\ +A3 & & & 1 & 0.016 & 0.014 & 0.014 & 0.013 & 0.010 & 0.011 & 0.014 \\ +A4 & & & & 1 & 0.012 & 0.013 & 0.012 & 0.009 & 0.010 & 0.013 \\ +A5 & & & & & 1 & 0.011 & 0.011 & 0.009 & 0.010 & 0.013 \\ +A6 & & & & & & 1 & 0.013 & 0.010 & 0.012 & 0.017 \\ +A7 & & & & & & & 1 & 0.012 & 0.014 & 0.020 \\ +A8 & & & & & & & & 1 & 0.012 & 0.017 \\ +A9 & & & & & & & & & 1 & 0.021 \\ +A10 & & & & & & & & & & 1 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsB.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsB.tex new file mode 100644 index 0000000000..84ff964010 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsB.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & B1 & B2 & B3 & B4 & B5 & B6 & B7 & B8 & B9 & B10 & B11 \\ +\hline +A1 & 0.001 & 0.002 & 0.003 & 0.004 & 0.004 & 0.005 & 0.005 & 0.005 & 0.004 & 0.004 & 0.004 \\ +A2 & 0.002 & 0.003 & 0.004 & 0.005 & 0.005 & 0.007 & 0.007 & 0.007 & 0.006 & 0.006 & 0.005 \\ +A3 & 0.003 & 0.006 & 0.007 & 0.009 & 0.008 & 0.011 & 0.011 & 0.012 & 0.010 & 0.010 & 0.008 \\ +A4 & 0.003 & 0.005 & 0.007 & 0.009 & 0.008 & 0.011 & 0.011 & 0.012 & 0.010 & 0.010 & 0.008 \\ +A5 & 0.003 & 0.005 & 0.007 & 0.009 & 0.008 & 0.011 & 0.011 & 0.012 & 0.010 & 0.010 & 0.008 \\ +A6 & 0.004 & 0.007 & 0.009 & 0.011 & 0.010 & 0.015 & 0.014 & 0.016 & 0.013 & 0.013 & 0.010 \\ +A7 & 0.004 & 0.008 & 0.011 & 0.013 & 0.012 & 0.017 & 0.017 & 0.018 & 0.015 & 0.015 & 0.012 \\ +A8 & 0.004 & 0.007 & 0.009 & 0.011 & 0.010 & 0.015 & 0.014 & 0.016 & 0.013 & 0.013 & 0.010 \\ +A9 & 0.004 & 0.009 & 0.012 & 0.014 & 0.013 & 0.019 & 0.018 & 0.020 & 0.017 & 0.016 & 0.013 \\ +A10 & 0.007 & 0.014 & 0.018 & 0.022 & 0.020 & 0.028 & 0.027 & 0.030 & 0.025 & 0.025 & 0.020 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsC.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsC.tex new file mode 100644 index 0000000000..69651a090c --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsC.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & C1 & C2 & C3 & C4 & C5 & C6 & C7 & C8 & C9 & C10 \\ +\hline +A1 & 0.001 & 0.003 & 0.002 & 0.003 & 0.003 & 0.002 & 0.004 & 0.004 & 0.003 & 0.008 \\ +A2 & 0.001 & 0.004 & 0.003 & 0.004 & 0.004 & 0.003 & 0.005 & 0.005 & 0.004 & 0.011 \\ +A3 & 0.002 & 0.007 & 0.005 & 0.006 & 0.007 & 0.005 & 0.009 & 0.008 & 0.007 & 0.018 \\ +A4 & 0.002 & 0.007 & 0.005 & 0.006 & 0.006 & 0.005 & 0.008 & 0.008 & 0.007 & 0.017 \\ +A5 & 0.002 & 0.007 & 0.005 & 0.006 & 0.006 & 0.005 & 0.008 & 0.008 & 0.007 & 0.017 \\ +A6 & 0.002 & 0.009 & 0.006 & 0.008 & 0.008 & 0.007 & 0.011 & 0.010 & 0.009 & 0.023 \\ +A7 & 0.002 & 0.010 & 0.007 & 0.009 & 0.010 & 0.008 & 0.013 & 0.012 & 0.010 & 0.026 \\ +A8 & 0.002 & 0.009 & 0.006 & 0.008 & 0.008 & 0.007 & 0.011 & 0.011 & 0.009 & 0.023 \\ +A9 & 0.003 & 0.011 & 0.008 & 0.010 & 0.011 & 0.009 & 0.014 & 0.013 & 0.011 & 0.029 \\ +A10 & 0.004 & 0.017 & 0.012 & 0.015 & 0.016 & 0.013 & 0.021 & 0.020 & 0.017 & 0.043 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsD.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsD.tex new file mode 100644 index 0000000000..2ed9cb914e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrAVsD.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & D1 & D2 & D3 & D4 & D5 & D6 & D7 & D8 & D9 & D10 & D11 \\ +\hline +A1 & 0.000 & 0.001 & 0.002 & 0.002 & 0.002 & 0.002 & 0.003 & 0.003 & 0.004 & 0.002 & 0.002 \\ +A2 & 0.001 & 0.002 & 0.003 & 0.002 & 0.003 & 0.003 & 0.004 & 0.004 & 0.006 & 0.002 & 0.003 \\ +A3 & 0.001 & 0.003 & 0.004 & 0.004 & 0.005 & 0.006 & 0.006 & 0.007 & 0.010 & 0.004 & 0.004 \\ +A4 & 0.001 & 0.003 & 0.004 & 0.004 & 0.005 & 0.005 & 0.006 & 0.006 & 0.009 & 0.003 & 0.004 \\ +A5 & 0.001 & 0.003 & 0.004 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.010 & 0.003 & 0.004 \\ +A6 & 0.001 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.008 & 0.008 & 0.012 & 0.004 & 0.006 \\ +A7 & 0.001 & 0.005 & 0.006 & 0.006 & 0.007 & 0.008 & 0.010 & 0.010 & 0.014 & 0.005 & 0.007 \\ +A8 & 0.001 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.008 & 0.009 & 0.012 & 0.005 & 0.006 \\ +A9 & 0.002 & 0.006 & 0.007 & 0.006 & 0.008 & 0.009 & 0.010 & 0.011 & 0.016 & 0.006 & 0.007 \\ +A10 & 0.002 & 0.008 & 0.010 & 0.010 & 0.012 & 0.013 & 0.016 & 0.016 & 0.024 & 0.009 & 0.011 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsB.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsB.tex new file mode 100644 index 0000000000..8465e239f8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsB.tex @@ -0,0 +1,19 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & B1 & B2 & B3 & B4 & B5 & B6 & B7 & B8 & B9 & B10 & B11 \\ +\hline +B1 & 1 & 0.013 & 0.010 & 0.011 & 0.008 & 0.010 & 0.008 & 0.008 & 0.006 & 0.006 & 0.005 \\ +B2 & & 1 & 0.024 & 0.027 & 0.019 & 0.023 & 0.018 & 0.018 & 0.014 & 0.012 & 0.009 \\ +B3 & & & 1 & 0.023 & 0.018 & 0.023 & 0.019 & 0.020 & 0.016 & 0.015 & 0.012 \\ +B4 & & & & 1 & 0.021 & 0.026 & 0.023 & 0.024 & 0.019 & 0.018 & 0.014 \\ +B5 & & & & & 1 & 0.022 & 0.020 & 0.021 & 0.017 & 0.016 & 0.013 \\ +B6 & & & & & & 1 & 0.027 & 0.029 & 0.023 & 0.022 & 0.018 \\ +B7 & & & & & & & 1 & 0.027 & 0.022 & 0.022 & 0.017 \\ +B8 & & & & & & & & 1 & 0.024 & 0.024 & 0.019 \\ +B9 & & & & & & & & & 1 & 0.020 & 0.016 \\ +B10 & & & & & & & & & & 1 & 0.015 \\ +B11 & & & & & & & & & & & 1 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsC.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsC.tex new file mode 100644 index 0000000000..569ff26fb8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsC.tex @@ -0,0 +1,19 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & C1 & C2 & C3 & C4 & C5 & C6 & C7 & C8 & C9 & C10 \\ +\hline +B1 & 0.001 & 0.004 & 0.002 & 0.003 & 0.003 & 0.003 & 0.004 & 0.004 & 0.004 & 0.009 \\ +B2 & 0.002 & 0.007 & 0.005 & 0.007 & 0.007 & 0.006 & 0.009 & 0.009 & 0.007 & 0.018 \\ +B3 & 0.002 & 0.009 & 0.006 & 0.009 & 0.009 & 0.007 & 0.012 & 0.011 & 0.009 & 0.024 \\ +B4 & 0.003 & 0.012 & 0.008 & 0.011 & 0.011 & 0.009 & 0.014 & 0.014 & 0.012 & 0.029 \\ +B5 & 0.002 & 0.011 & 0.007 & 0.010 & 0.010 & 0.008 & 0.013 & 0.012 & 0.011 & 0.027 \\ +B6 & 0.003 & 0.015 & 0.010 & 0.014 & 0.014 & 0.011 & 0.018 & 0.017 & 0.015 & 0.038 \\ +B7 & 0.003 & 0.015 & 0.010 & 0.013 & 0.014 & 0.011 & 0.018 & 0.017 & 0.015 & 0.037 \\ +B8 & 0.004 & 0.016 & 0.011 & 0.015 & 0.015 & 0.012 & 0.020 & 0.019 & 0.016 & 0.041 \\ +B9 & 0.003 & 0.013 & 0.009 & 0.012 & 0.013 & 0.010 & 0.017 & 0.016 & 0.014 & 0.034 \\ +B10 & 0.003 & 0.013 & 0.009 & 0.012 & 0.012 & 0.010 & 0.016 & 0.015 & 0.013 & 0.033 \\ +B11 & 0.002 & 0.010 & 0.007 & 0.010 & 0.010 & 0.008 & 0.013 & 0.012 & 0.011 & 0.027 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsD.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsD.tex new file mode 100644 index 0000000000..7c29a0c7ab --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrBVsD.tex @@ -0,0 +1,19 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & D1 & D2 & D3 & D4 & D5 & D6 & D7 & D8 & D9 & D10 & D11 \\ +\hline +B1 & 0.001 & 0.002 & 0.002 & 0.002 & 0.003 & 0.003 & 0.003 & 0.003 & 0.005 & 0.002 & 0.002 \\ +B2 & 0.001 & 0.004 & 0.004 & 0.004 & 0.005 & 0.006 & 0.007 & 0.007 & 0.010 & 0.004 & 0.005 \\ +B3 & 0.001 & 0.005 & 0.006 & 0.005 & 0.007 & 0.007 & 0.009 & 0.009 & 0.013 & 0.005 & 0.006 \\ +B4 & 0.002 & 0.006 & 0.007 & 0.007 & 0.008 & 0.009 & 0.011 & 0.011 & 0.016 & 0.006 & 0.007 \\ +B5 & 0.002 & 0.005 & 0.006 & 0.006 & 0.008 & 0.008 & 0.010 & 0.010 & 0.015 & 0.005 & 0.007 \\ +B6 & 0.002 & 0.007 & 0.009 & 0.008 & 0.011 & 0.012 & 0.014 & 0.014 & 0.021 & 0.007 & 0.010 \\ +B7 & 0.002 & 0.007 & 0.009 & 0.008 & 0.010 & 0.012 & 0.014 & 0.014 & 0.020 & 0.007 & 0.009 \\ +B8 & 0.002 & 0.008 & 0.010 & 0.009 & 0.011 & 0.013 & 0.015 & 0.015 & 0.022 & 0.008 & 0.010 \\ +B9 & 0.002 & 0.007 & 0.008 & 0.008 & 0.010 & 0.011 & 0.012 & 0.013 & 0.019 & 0.007 & 0.009 \\ +B10 & 0.002 & 0.006 & 0.008 & 0.007 & 0.009 & 0.010 & 0.012 & 0.012 & 0.018 & 0.007 & 0.008 \\ +B11 & 0.002 & 0.005 & 0.006 & 0.006 & 0.008 & 0.008 & 0.010 & 0.010 & 0.015 & 0.005 & 0.007 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsC.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsC.tex new file mode 100644 index 0000000000..cd24942170 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsC.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & C1 & C2 & C3 & C4 & C5 & C6 & C7 & C8 & C9 & C10 \\ +\hline +C1 & 1 & 0.004 & 0.003 & 0.004 & 0.004 & 0.003 & 0.003 & 0.003 & 0.002 & 0.006 \\ +C2 & & 1 & 0.016 & 0.018 & 0.017 & 0.012 & 0.016 & 0.013 & 0.011 & 0.024 \\ +C3 & & & 1 & 0.019 & 0.017 & 0.012 & 0.013 & 0.010 & 0.008 & 0.017 \\ +C4 & & & & 1 & 0.019 & 0.013 & 0.016 & 0.013 & 0.010 & 0.022 \\ +C5 & & & & & 1 & 0.012 & 0.015 & 0.013 & 0.010 & 0.023 \\ +C6 & & & & & & 1 & 0.012 & 0.010 & 0.008 & 0.018 \\ +C7 & & & & & & & 1 & 0.015 & 0.012 & 0.029 \\ +C8 & & & & & & & & 1 & 0.011 & 0.027 \\ +C9 & & & & & & & & & 1 & 0.023 \\ +C10 & & & & & & & & & & 1 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsD.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsD.tex new file mode 100644 index 0000000000..a6931b51d8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrCVsD.tex @@ -0,0 +1,18 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & D1 & D2 & D3 & D4 & D5 & D6 & D7 & D8 & D9 & D10 & D11 \\ +\hline +C1 & 0.000 & 0.001 & 0.001 & 0.001 & 0.002 & 0.002 & 0.002 & 0.002 & 0.003 & 0.001 & 0.001 \\ +C2 & 0.001 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.008 & 0.009 & 0.013 & 0.005 & 0.006 \\ +C3 & 0.001 & 0.003 & 0.004 & 0.004 & 0.004 & 0.005 & 0.006 & 0.006 & 0.009 & 0.003 & 0.004 \\ +C4 & 0.001 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.008 & 0.008 & 0.011 & 0.004 & 0.005 \\ +C5 & 0.001 & 0.004 & 0.005 & 0.005 & 0.006 & 0.007 & 0.008 & 0.008 & 0.012 & 0.004 & 0.005 \\ +C6 & 0.001 & 0.003 & 0.004 & 0.004 & 0.005 & 0.006 & 0.006 & 0.007 & 0.010 & 0.004 & 0.004 \\ +C7 & 0.002 & 0.006 & 0.007 & 0.006 & 0.008 & 0.009 & 0.010 & 0.011 & 0.016 & 0.006 & 0.007 \\ +C8 & 0.002 & 0.005 & 0.006 & 0.006 & 0.008 & 0.008 & 0.010 & 0.010 & 0.015 & 0.005 & 0.007 \\ +C9 & 0.001 & 0.005 & 0.006 & 0.005 & 0.007 & 0.007 & 0.008 & 0.009 & 0.013 & 0.005 & 0.006 \\ +C10 & 0.003 & 0.011 & 0.014 & 0.013 & 0.016 & 0.018 & 0.021 & 0.022 & 0.032 & 0.012 & 0.015 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrDVsD.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrDVsD.tex new file mode 100644 index 0000000000..239b258913 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrDVsD.tex @@ -0,0 +1,19 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & D1 & D2 & D3 & D4 & D5 & D6 & D7 & D8 & D9 & D10 & D11 \\ +\hline +D1 & 1 & 0.004 & 0.012 & 0.007 & 0.007 & 0.005 & 0.005 & 0.003 & 0.003 & 0.001 & 0.001 \\ +D2 & & 1 & 0.009 & 0.006 & 0.007 & 0.006 & 0.006 & 0.005 & 0.007 & 0.003 & 0.003 \\ +D3 & & & 1 & 0.014 & 0.015 & 0.012 & 0.011 & 0.008 & 0.010 & 0.004 & 0.004 \\ +D4 & & & & 1 & 0.010 & 0.008 & 0.008 & 0.007 & 0.008 & 0.003 & 0.004 \\ +D5 & & & & & 1 & 0.010 & 0.010 & 0.008 & 0.010 & 0.004 & 0.004 \\ +D6 & & & & & & 1 & 0.009 & 0.008 & 0.011 & 0.004 & 0.005 \\ +D7 & & & & & & & 1 & 0.009 & 0.012 & 0.005 & 0.006 \\ +D8 & & & & & & & & 1 & 0.012 & 0.005 & 0.006 \\ +D9 & & & & & & & & & 1 & 0.007 & 0.008 \\ +D10 & & & & & & & & & & 1 & 0.003 \\ +D11 & & & & & & & & & & & 1 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsA.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsA.tex new file mode 100644 index 0000000000..05ea6a40f9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsA.tex @@ -0,0 +1,22 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & A1 & A2 & A3 & A4 & A5 & A6 & A7 & A8 & A9 & A10 \\ +\hline +I1 & 0.020 & 0.011 & 0.009 & 0.007 & 0.007 & 0.009 & 0.010 & 0.009 & 0.011 & 0.017 \\ +I2 & 0.027 & 0.025 & 0.023 & 0.018 & 0.018 & 0.023 & 0.027 & 0.023 & 0.029 & 0.044 \\ +I3 & 0.066 & 0.054 & 0.029 & 0.013 & 0.006 & 0.006 & 0.007 & 0.006 & 0.008 & 0.012 \\ +I4 & 0.033 & 0.062 & 0.056 & 0.025 & 0.009 & 0.006 & 0.006 & 0.006 & 0.007 & 0.010 \\ +I5 & 0.006 & 0.053 & 0.064 & 0.053 & 0.020 & 0.010 & 0.007 & 0.006 & 0.007 & 0.011 \\ +I6 & 0.002 & 0.023 & 0.058 & 0.064 & 0.042 & 0.018 & 0.008 & 0.005 & 0.007 & 0.010 \\ +I7 & 0.002 & 0.005 & 0.047 & 0.072 & 0.078 & 0.059 & 0.024 & 0.009 & 0.008 & 0.012 \\ +I8 & 0.003 & 0.005 & 0.026 & 0.059 & 0.073 & 0.096 & 0.059 & 0.023 & 0.014 & 0.019 \\ +I9 & 0.002 & 0.003 & 0.008 & 0.034 & 0.052 & 0.081 & 0.103 & 0.052 & 0.018 & 0.012 \\ +I10 & 0.002 & 0.003 & 0.005 & 0.016 & 0.031 & 0.056 & 0.086 & 0.116 & 0.048 & 0.021 \\ +I11 & 0.002 & 0.003 & 0.005 & 0.007 & 0.015 & 0.031 & 0.057 & 0.093 & 0.124 & 0.047 \\ +I12 & 0.001 & 0.002 & 0.003 & 0.003 & 0.005 & 0.012 & 0.026 & 0.057 & 0.096 & 0.131 \\ +I13 & 0.002 & 0.003 & 0.005 & 0.004 & 0.005 & 0.008 & 0.014 & 0.029 & 0.063 & 0.116 \\ +I14 & 0.001 & 0.002 & 0.003 & 0.003 & 0.003 & 0.004 & 0.006 & 0.011 & 0.026 & 0.064 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsB.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsB.tex new file mode 100644 index 0000000000..73afd6f419 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsB.tex @@ -0,0 +1,22 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & B1 & B2 & B3 & B4 & B5 & B6 & B7 & B8 & B9 & B10 & B11 \\ +\hline +I1 & 0.028 & 0.020 & 0.013 & 0.012 & 0.011 & 0.015 & 0.015 & 0.016 & 0.013 & 0.013 & 0.010 \\ +I2 & 0.033 & 0.043 & 0.035 & 0.032 & 0.028 & 0.038 & 0.038 & 0.041 & 0.034 & 0.034 & 0.027 \\ +I3 & 0.086 & 0.085 & 0.051 & 0.024 & 0.011 & 0.011 & 0.010 & 0.011 & 0.009 & 0.009 & 0.007 \\ +I4 & 0.032 & 0.090 & 0.087 & 0.046 & 0.018 & 0.012 & 0.009 & 0.010 & 0.008 & 0.008 & 0.006 \\ +I5 & 0.005 & 0.063 & 0.094 & 0.089 & 0.037 & 0.019 & 0.011 & 0.011 & 0.009 & 0.009 & 0.007 \\ +I6 & 0.002 & 0.022 & 0.082 & 0.094 & 0.078 & 0.035 & 0.014 & 0.010 & 0.008 & 0.008 & 0.006 \\ +I7 & 0.003 & 0.006 & 0.055 & 0.101 & 0.109 & 0.103 & 0.043 & 0.019 & 0.010 & 0.010 & 0.008 \\ +I8 & 0.004 & 0.008 & 0.027 & 0.080 & 0.103 & 0.138 & 0.105 & 0.047 & 0.020 & 0.015 & 0.012 \\ +I9 & 0.002 & 0.005 & 0.008 & 0.043 & 0.071 & 0.114 & 0.147 & 0.101 & 0.033 & 0.012 & 0.007 \\ +I10 & 0.003 & 0.006 & 0.007 & 0.020 & 0.041 & 0.078 & 0.119 & 0.171 & 0.094 & 0.031 & 0.010 \\ +I11 & 0.003 & 0.005 & 0.007 & 0.010 & 0.020 & 0.043 & 0.077 & 0.131 & 0.185 & 0.089 & 0.023 \\ +I12 & 0.001 & 0.003 & 0.003 & 0.004 & 0.006 & 0.017 & 0.035 & 0.076 & 0.134 & 0.200 & 0.072 \\ +I13 & 0.002 & 0.005 & 0.006 & 0.008 & 0.007 & 0.012 & 0.019 & 0.040 & 0.081 & 0.156 & 0.208 \\ +I14 & 0.002 & 0.003 & 0.004 & 0.005 & 0.005 & 0.006 & 0.008 & 0.016 & 0.035 & 0.086 & 0.179 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsC.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsC.tex new file mode 100644 index 0000000000..743124a965 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsC.tex @@ -0,0 +1,22 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & C1 & C2 & C3 & C4 & C5 & C6 & C7 & C8 & C9 & C10 \\ +\hline +I1 & 0.016 & 0.014 & 0.008 & 0.008 & 0.008 & 0.007 & 0.011 & 0.011 & 0.009 & 0.023 \\ +I2 & 0.021 & 0.034 & 0.020 & 0.022 & 0.022 & 0.018 & 0.029 & 0.027 & 0.023 & 0.059 \\ +I3 & 0.051 & 0.045 & 0.024 & 0.012 & 0.007 & 0.005 & 0.008 & 0.007 & 0.006 & 0.016 \\ +I4 & 0.026 & 0.052 & 0.044 & 0.022 & 0.009 & 0.005 & 0.007 & 0.007 & 0.006 & 0.014 \\ +I5 & 0.004 & 0.046 & 0.052 & 0.045 & 0.018 & 0.008 & 0.008 & 0.007 & 0.006 & 0.015 \\ +I6 & 0.001 & 0.021 & 0.047 & 0.055 & 0.038 & 0.015 & 0.008 & 0.006 & 0.005 & 0.013 \\ +I7 & 0.002 & 0.008 & 0.036 & 0.057 & 0.062 & 0.046 & 0.021 & 0.010 & 0.007 & 0.017 \\ +I8 & 0.002 & 0.010 & 0.020 & 0.048 & 0.060 & 0.077 & 0.051 & 0.023 & 0.012 & 0.025 \\ +I9 & 0.001 & 0.006 & 0.006 & 0.028 & 0.044 & 0.065 & 0.086 & 0.045 & 0.015 & 0.016 \\ +I10 & 0.002 & 0.007 & 0.005 & 0.015 & 0.027 & 0.046 & 0.073 & 0.096 & 0.041 & 0.025 \\ +I11 & 0.002 & 0.006 & 0.004 & 0.007 & 0.015 & 0.025 & 0.049 & 0.080 & 0.102 & 0.047 \\ +I12 & 0.001 & 0.003 & 0.002 & 0.003 & 0.005 & 0.010 & 0.024 & 0.051 & 0.083 & 0.112 \\ +I13 & 0.001 & 0.006 & 0.004 & 0.005 & 0.006 & 0.006 & 0.014 & 0.027 & 0.055 & 0.108 \\ +I14 & 0.001 & 0.004 & 0.003 & 0.004 & 0.004 & 0.003 & 0.006 & 0.012 & 0.024 & 0.064 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsD.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsD.tex new file mode 100644 index 0000000000..963dc3f77f --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsD.tex @@ -0,0 +1,22 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & D1 & D2 & D3 & D4 & D5 & D6 & D7 & D8 & D9 & D10 & D11 \\ +\hline +I1 & 0.011 & 0.018 & 0.011 & 0.006 & 0.007 & 0.007 & 0.008 & 0.009 & 0.012 & 0.005 & 0.006 \\ +I2 & 0.011 & 0.029 & 0.026 & 0.017 & 0.017 & 0.019 & 0.022 & 0.022 & 0.032 & 0.012 & 0.015 \\ +I3 & 0.030 & 0.060 & 0.047 & 0.023 & 0.010 & 0.006 & 0.006 & 0.006 & 0.009 & 0.003 & 0.004 \\ +I4 & 0.004 & 0.042 & 0.061 & 0.043 & 0.019 & 0.009 & 0.006 & 0.005 & 0.008 & 0.003 & 0.004 \\ +I5 & 0.001 & 0.016 & 0.056 & 0.061 & 0.038 & 0.018 & 0.008 & 0.006 & 0.008 & 0.003 & 0.004 \\ +I6 & 0.001 & 0.004 & 0.034 & 0.057 & 0.057 & 0.037 & 0.014 & 0.006 & 0.007 & 0.003 & 0.003 \\ +I7 & 0.001 & 0.003 & 0.015 & 0.054 & 0.065 & 0.076 & 0.045 & 0.018 & 0.011 & 0.004 & 0.004 \\ +I8 & 0.001 & 0.005 & 0.008 & 0.034 & 0.056 & 0.078 & 0.085 & 0.047 & 0.023 & 0.006 & 0.007 \\ +I9 & 0.001 & 0.003 & 0.004 & 0.013 & 0.035 & 0.059 & 0.080 & 0.089 & 0.042 & 0.011 & 0.005 \\ +I10 & 0.001 & 0.003 & 0.004 & 0.005 & 0.018 & 0.036 & 0.060 & 0.091 & 0.096 & 0.036 & 0.010 \\ +I11 & 0.001 & 0.003 & 0.004 & 0.004 & 0.008 & 0.019 & 0.035 & 0.064 & 0.101 & 0.098 & 0.030 \\ +I12 & 0.000 & 0.002 & 0.002 & 0.002 & 0.003 & 0.006 & 0.015 & 0.032 & 0.064 & 0.109 & 0.094 \\ +I13 & 0.001 & 0.003 & 0.004 & 0.003 & 0.004 & 0.005 & 0.009 & 0.016 & 0.036 & 0.068 & 0.127 \\ +I14 & 0.001 & 0.002 & 0.002 & 0.002 & 0.003 & 0.003 & 0.004 & 0.006 & 0.016 & 0.033 & 0.076 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsI.tex b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsI.tex new file mode 100644 index 0000000000..99e5900359 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/rawdata/corrIVsI.tex @@ -0,0 +1,22 @@ +\begin{tabular}{c@{~~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c@{~~}c} +\hline + \hline +Bin & I1 & I2 & I3 & I4 & I5 & I6 & I7 & I8 & I9 & I10 & I11 & I12 & I13 & I14 \\ +\hline +I1 & 1 & 0.065 & 0.057 & 0.044 & 0.036 & 0.026 & 0.024 & 0.024 & 0.016 & 0.013 & 0.011 & 0.006 & 0.007 & 0.005 \\ +I2 & & 1 & 0.056 & 0.045 & 0.039 & 0.030 & 0.031 & 0.036 & 0.023 & 0.023 & 0.020 & 0.010 & 0.016 & 0.011 \\ +I3 & & & 1 & 0.046 & 0.039 & 0.030 & 0.027 & 0.024 & 0.016 & 0.013 & 0.009 & 0.005 & 0.006 & 0.004 \\ +I4 & & & & 1 & 0.035 & 0.028 & 0.025 & 0.022 & 0.014 & 0.011 & 0.008 & 0.005 & 0.005 & 0.003 \\ +I5 & & & & & 1 & 0.029 & 0.026 & 0.023 & 0.015 & 0.012 & 0.009 & 0.005 & 0.005 & 0.003 \\ +I6 & & & & & & 1 & 0.025 & 0.023 & 0.016 & 0.012 & 0.009 & 0.005 & 0.005 & 0.003 \\ +I7 & & & & & & & 1 & 0.028 & 0.022 & 0.019 & 0.014 & 0.008 & 0.008 & 0.005 \\ +I8 & & & & & & & & 1 & 0.029 & 0.027 & 0.022 & 0.014 & 0.012 & 0.008 \\ +I9 & & & & & & & & & 1 & 0.030 & 0.026 & 0.018 & 0.014 & 0.008 \\ +I10 & & & & & & & & & & 1 & 0.035 & 0.028 & 0.022 & 0.013 \\ +I11 & & & & & & & & & & & 1 & 0.037 & 0.031 & 0.020 \\ +I12 & & & & & & & & & & & & 1 & 0.041 & 0.030 \\ +I13 & & & & & & & & & & & & & 1 & 0.044 \\ +I14 & & & & & & & & & & & & & & 1 \\ +\hline + \hline +\end{tabular} \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml new file mode 100644 index 0000000000..bde5d73776 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_1JET_510GEV/uncertainties.yaml @@ -0,0 +1,1046 @@ +definitions: + lumi_ue: + description: underlying event and relative luminosity uncertainty + treatment: ADD + type: STAR2012LUMIUE + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2012POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc55 +bins: +- lumi_ue: 0.000364 + pol: 1.1285999999999999e-06 + sys_0: -8.821941748805665e-06 + sys_1: -3.647133093819715e-05 + sys_2: 1.8167870451191507e-06 + sys_3: 1.7483244936078064e-05 + sys_4: 8.483136631166403e-06 + sys_5: 1.2108429667596676e-05 + sys_6: -1.4968639805639232e-05 + sys_7: 1.1807884919821091e-05 + sys_8: 1.4271856486755282e-05 + sys_9: 1.233019052883303e-05 + sys_10: -8.46277556818203e-06 + sys_11: 1.3673607962112949e-05 + sys_12: -8.748427437422347e-06 + sys_13: -1.1353649503226805e-05 + sys_14: -1.7758882243814993e-05 + sys_15: 5.797017461791961e-06 + sys_16: 1.0949322616298886e-05 + sys_17: -2.1789787484307717e-05 + sys_18: 1.3317032520603892e-05 + sys_19: -9.563470189865437e-06 + sys_20: -8.22099465747639e-06 + sys_21: 5.306887824504082e-06 + sys_22: -1.1767831974255831e-05 + sys_23: -6.819927121922221e-05 + sys_24: -9.995071414958789e-05 + sys_25: 0.0003371072073149283 + sys_26: 0.0012092802633853932 + sys_27: 0.00029667443357125217 + sys_28: 0.0002579678419682714 + sys_29: -5.973614868422086e-05 + sys_30: 2.5349346947554508e-05 + sys_31: 5.429956819146516e-07 + sys_32: -4.673412227812524e-06 + sys_33: 9.400852661146199e-06 + sys_34: -5.545333821994411e-06 + sys_35: 5.899960672921897e-06 + sys_36: 2.881539531165112e-05 + sys_37: -7.284669141187073e-06 + sys_38: 1.7481194414994023e-05 + sys_39: -3.105042856976772e-05 + sys_40: 2.1203048280657375e-05 + sys_41: 3.665235752852848e-06 + sys_42: 1.054922251312889e-06 + sys_43: -4.391887800363986e-06 + sys_44: -6.2725605380339e-06 + sys_45: -6.5526794747025594e-06 + sys_46: -7.65597981933674e-06 + sys_47: -4.6889804405586205e-06 + sys_48: 4.389162725861691e-05 + sys_49: -1.0573358629473254e-05 + sys_50: 5.525284765141057e-06 + sys_51: 2.609308525613858e-05 + sys_52: -4.183167280418963e-06 + sys_53: 4.421650848751951e-06 + sys_54: 8.713837319860204e-06 + sys_55: -2.236862228506932e-06 +- lumi_ue: 0.000326 + pol: 0.0001419 + sys_0: -2.4651125270180278e-05 + sys_1: -0.00010423248114795092 + sys_2: 6.461774400155848e-06 + sys_3: 5.0755783085369855e-05 + sys_4: 2.5886190090542884e-05 + sys_5: 3.434046556061374e-05 + sys_6: -4.413282234670394e-05 + sys_7: 3.387356832711915e-05 + sys_8: 1.5140215739700306e-05 + sys_9: 3.4556828274942515e-05 + sys_10: -2.708027595840028e-05 + sys_11: 3.658591979024131e-05 + sys_12: -2.3358868305795577e-05 + sys_13: -3.18766538792554e-05 + sys_14: -5.1204285875975425e-05 + sys_15: 1.5958499322335407e-05 + sys_16: 3.199654902111686e-05 + sys_17: -3.183182831041024e-05 + sys_18: 3.9814171052103914e-05 + sys_19: -2.7973203300675215e-05 + sys_20: -2.68898268722321e-05 + sys_21: 1.611377348198906e-05 + sys_22: -3.3001238765655655e-05 + sys_23: -3.6421448414983004e-05 + sys_24: -3.814037112791418e-05 + sys_25: 9.850863580639559e-06 + sys_26: -0.0003605142850157763 + sys_27: 0.0013074999414781137 + sys_28: 0.0005284178908963244 + sys_29: -9.321864440223161e-05 + sys_30: -4.886071775293121e-06 + sys_31: 4.153589459864477e-05 + sys_32: -3.3975853696382736e-05 + sys_33: 2.7655981213856275e-05 + sys_34: -1.0747903478961235e-05 + sys_35: 3.444580547776212e-05 + sys_36: 7.200073775181437e-05 + sys_37: -1.895339868043444e-05 + sys_38: 4.588064373978041e-05 + sys_39: -7.738213209570178e-05 + sys_40: 2.559096713680055e-05 + sys_41: 1.998436403760806e-06 + sys_42: -9.502017315632864e-07 + sys_43: -1.3009563171178818e-05 + sys_44: -1.6781702234241515e-05 + sys_45: -1.8223746714133256e-05 + sys_46: -1.972382197925749e-05 + sys_47: -1.538110825662134e-05 + sys_48: 6.447675107626336e-05 + sys_49: -3.9107408034598666e-05 + sys_50: 1.1790185607145248e-05 + sys_51: 5.208940462340734e-05 + sys_52: -1.8275180676036436e-05 + sys_53: 2.5223710955441385e-05 + sys_54: 3.5112445714698695e-05 + sys_55: -6.572544656738637e-06 +- lumi_ue: 0.000311 + pol: 0.00010692 + sys_0: -4.565244424389384e-06 + sys_1: -1.970265582702826e-05 + sys_2: 1.4432189223262424e-06 + sys_3: 9.752101269003067e-06 + sys_4: 4.759285827117779e-06 + sys_5: 6.603377645516533e-06 + sys_6: -9.374485486261553e-06 + sys_7: 7.325337810628837e-06 + sys_8: 3.0473719916363456e-05 + sys_9: 6.924762678466928e-06 + sys_10: -4.452179533829526e-06 + sys_11: 7.276990148032912e-06 + sys_12: -4.912524616049502e-06 + sys_13: -6.8812111903450715e-06 + sys_14: -1.2203649686033053e-05 + sys_15: 3.630274103092674e-06 + sys_16: 9.410559209258135e-06 + sys_17: -5.3194190180568816e-05 + sys_18: 9.072777767896317e-06 + sys_19: -7.174824513943982e-06 + sys_20: -5.3690490047104125e-06 + sys_21: 6.505874793396553e-06 + sys_22: -1.3174927383869035e-05 + sys_23: 0.0009871074268236058 + sys_24: 2.9897639758911576e-05 + sys_25: -1.9453073958699017e-07 + sys_26: 7.718987901252863e-05 + sys_27: 5.8487873120822364e-05 + sys_28: 7.019631185197704e-05 + sys_29: -1.1902143329599017e-05 + sys_30: 1.807270999860068e-05 + sys_31: -9.75142808346033e-06 + sys_32: 8.200360745737252e-06 + sys_33: 3.6706746518516095e-05 + sys_34: -1.0983497582367771e-05 + sys_35: -1.1773302164072559e-05 + sys_36: 9.195299589110906e-05 + sys_37: -9.533173317125142e-06 + sys_38: 1.239952407555098e-05 + sys_39: -5.795433121188843e-05 + sys_40: 5.113641686727757e-05 + sys_41: 3.686298190929459e-05 + sys_42: 7.370686763842337e-06 + sys_43: 8.29120307185831e-08 + sys_44: -1.9068418715999476e-05 + sys_45: -5.562164949869389e-06 + sys_46: -1.4767368809122068e-05 + sys_47: -2.1114610145549154e-05 + sys_48: 0.00010165353074501726 + sys_49: -3.169942609770251e-05 + sys_50: 3.625051248116122e-05 + sys_51: 6.032640342866376e-05 + sys_52: 1.3946708904059124e-05 + sys_53: -2.4763858515754344e-05 + sys_54: 2.001155222455211e-05 + sys_55: -1.4942396739315224e-05 +- lumi_ue: 0.000284 + pol: 3.3e-05 + sys_0: -4.982569951077418e-06 + sys_1: -1.9165086995194648e-05 + sys_2: 9.969182075274186e-07 + sys_3: 8.922097207194344e-06 + sys_4: 4.532756643053262e-06 + sys_5: 7.33943348840447e-06 + sys_6: -9.053531372359484e-06 + sys_7: 6.803450143202951e-06 + sys_8: 4.491738091777618e-06 + sys_9: 7.132435633511772e-06 + sys_10: -5.271154567037556e-06 + sys_11: 8.504375654800911e-06 + sys_12: -4.762784462966737e-06 + sys_13: -8.006485783624243e-06 + sys_14: -1.2940078905763462e-05 + sys_15: 3.821663727112643e-06 + sys_16: 1.0609754079071273e-05 + sys_17: -3.079649210180774e-05 + sys_18: 1.1469765808417512e-05 + sys_19: -1.1086966120235752e-05 + sys_20: -7.840637626215566e-06 + sys_21: 1.1332477073039157e-05 + sys_22: -2.0408838168068715e-05 + sys_23: -3.569750509929854e-05 + sys_24: 0.0010892600351925486 + sys_25: 7.029038832929418e-05 + sys_26: 8.467024206217235e-05 + sys_27: 6.726312618466764e-05 + sys_28: 3.52181570816603e-05 + sys_29: 3.835252178633745e-06 + sys_30: 1.3039010334060759e-05 + sys_31: -9.750883590045155e-06 + sys_32: 1.0495802766332196e-05 + sys_33: 7.756944638420132e-05 + sys_34: -4.2319041538370446e-05 + sys_35: -2.7173551316460888e-06 + sys_36: 0.00012000761089983577 + sys_37: -2.0043363670876712e-05 + sys_38: 2.02436183909729e-05 + sys_39: -7.027237278624463e-05 + sys_40: 1.697300748657465e-05 + sys_41: 3.898114184573719e-05 + sys_42: -3.291653684154606e-06 + sys_43: -1.9152485612150458e-06 + sys_44: -4.338173138354873e-05 + sys_45: -1.1455001587335192e-05 + sys_46: -3.0656956940334807e-05 + sys_47: -4.315851147539138e-05 + sys_48: 5.6384372371457034e-05 + sys_49: -7.027976110496735e-05 + sys_50: 3.909230488927211e-05 + sys_51: 5.214331770888094e-05 + sys_52: 6.0072074859258085e-06 + sys_53: -4.206364582148231e-05 + sys_54: 5.3238194383032986e-05 + sys_55: -1.194100865111511e-05 +- lumi_ue: 0.000272 + pol: 9.768e-05 + sys_0: -5.791863240558061e-06 + sys_1: -2.3781441687033036e-05 + sys_2: 1.5157667327295666e-06 + sys_3: 1.1499659903876146e-05 + sys_4: 6.262831318883412e-06 + sys_5: 8.481116450756575e-06 + sys_6: -1.0509457250798398e-05 + sys_7: 7.921444885308103e-06 + sys_8: 1.3465081747272523e-06 + sys_9: 9.45817207406648e-06 + sys_10: -7.2759132118859895e-06 + sys_11: 1.0290329411362365e-05 + sys_12: -7.043114343511122e-06 + sys_13: -9.804339181286174e-06 + sys_14: -1.779590758283322e-05 + sys_15: 5.121122795227465e-06 + sys_16: 1.5339026200445256e-05 + sys_17: -7.1133398312393295e-06 + sys_18: 1.8469166763849632e-05 + sys_19: -2.1460237334443305e-05 + sys_20: -1.2976013147051995e-05 + sys_21: 2.5153295762025034e-05 + sys_22: -3.7467861895134425e-05 + sys_23: -2.0629104082912162e-05 + sys_24: 3.1549362160736234e-05 + sys_25: -0.0012002858881776256 + sys_26: 0.0003480730463768819 + sys_27: 0.00014962558948094544 + sys_28: -4.907883398966109e-05 + sys_29: 2.3454972326094435e-05 + sys_30: -9.849730597427417e-06 + sys_31: -3.37606151239097e-06 + sys_32: 1.1564754462232336e-05 + sys_33: 8.956642005875146e-05 + sys_34: -0.00011304805859799739 + sys_35: 2.6991873374860907e-05 + sys_36: 0.00011573152502613167 + sys_37: -4.568157404228279e-05 + sys_38: 3.942570246145924e-05 + sys_39: -8.355279002221479e-05 + sys_40: -1.4264233158822062e-05 + sys_41: 3.295865672847395e-05 + sys_42: -3.711617232019138e-05 + sys_43: -7.781468394874189e-06 + sys_44: -5.933402410220275e-05 + sys_45: -3.129306632426299e-05 + sys_46: -6.157672986103564e-05 + sys_47: -6.60135789016522e-05 + sys_48: 3.239302045746598e-05 + sys_49: -0.00010859544936986006 + sys_50: 1.1948553966371664e-05 + sys_51: 2.3499158257275753e-05 + sys_52: -1.9783192990009495e-06 + sys_53: -4.793707732895994e-05 + sys_54: 6.80248687761579e-05 + sys_55: -6.759040756419851e-06 +- lumi_ue: 0.000256 + pol: 0.00019338 + sys_0: -5.5038924599575e-06 + sys_1: -2.6137479906433326e-05 + sys_2: 1.0216165255878663e-06 + sys_3: 1.3262793344339309e-05 + sys_4: 6.713380460975631e-06 + sys_5: 9.16565937911155e-06 + sys_6: -1.2037152997670448e-05 + sys_7: 1.0443290254261821e-05 + sys_8: 1.7333943206571635e-06 + sys_9: 1.113921723716766e-05 + sys_10: -8.035274914100943e-06 + sys_11: 1.2061605398857993e-05 + sys_12: -9.543216724161129e-06 + sys_13: -1.1622741451102494e-05 + sys_14: -2.4170837772343507e-05 + sys_15: 6.117665966505702e-06 + sys_16: 3.1148351960020875e-05 + sys_17: -4.466208286961975e-06 + sys_18: 3.0020787526024137e-05 + sys_19: -4.447070508887425e-05 + sys_20: -1.8837663307174875e-05 + sys_21: 6.110137308698935e-05 + sys_22: -7.610608800472126e-05 + sys_23: -1.291610462428202e-05 + sys_24: 7.163255210143157e-06 + sys_25: -6.662207215772412e-05 + sys_26: -5.2265292923925616e-05 + sys_27: -0.00031166700454734634 + sys_28: 0.0005185251461987804 + sys_29: -0.0014164272834122453 + sys_30: -0.00017095743659372578 + sys_31: 2.6918698674558193e-05 + sys_32: 4.109467569443272e-06 + sys_33: 0.00010009440614104395 + sys_34: -0.00016414695740722397 + sys_35: 5.502933836949033e-05 + sys_36: 6.672156673061764e-05 + sys_37: -0.00011858843347493034 + sys_38: 9.409731583463018e-05 + sys_39: -7.836293849505595e-05 + sys_40: -1.184817361951193e-05 + sys_41: 1.481679725576671e-05 + sys_42: -7.702811349243193e-05 + sys_43: -2.5244271840240965e-05 + sys_44: -6.92366408454386e-05 + sys_45: -7.799413370403443e-05 + sys_46: -9.90062790536924e-05 + sys_47: -6.593503585707317e-05 + sys_48: 2.916712226206222e-05 + sys_49: -0.00011463842698924849 + sys_50: -3.8420654101437403e-05 + sys_51: 3.2905004016255615e-06 + sys_52: -1.0084081821722388e-05 + sys_53: -4.637015935355981e-05 + sys_54: 6.445125554986053e-05 + sys_55: 1.4218032798677879e-05 +- lumi_ue: 0.000251 + pol: 0.00010428000000000001 + sys_0: -7.332726355838066e-06 + sys_1: -3.427545258132407e-05 + sys_2: 1.198627954098668e-06 + sys_3: 1.5983773838048615e-05 + sys_4: 9.614508010556232e-06 + sys_5: 1.342698343755619e-05 + sys_6: -1.9144713779555767e-05 + sys_7: 1.2199552191146859e-05 + sys_8: 1.870693360255654e-06 + sys_9: 1.5922964805360876e-05 + sys_10: -1.0367001007465813e-05 + sys_11: 2.2815824590792513e-05 + sys_12: -2.9246052246533452e-05 + sys_13: -2.090725745487217e-05 + sys_14: -4.944044030000377e-05 + sys_15: 1.0247677523290065e-06 + sys_16: 8.611062166183704e-05 + sys_17: -6.178260198073444e-06 + sys_18: 6.431843043771244e-05 + sys_19: -9.432336993421684e-05 + sys_20: -1.2594441078704068e-05 + sys_21: 8.642278331285609e-05 + sys_22: -0.0001372239659849239 + sys_23: -1.732154254276027e-05 + sys_24: 1.2881721534218593e-07 + sys_25: -7.577024713073864e-05 + sys_26: -6.0037595320297644e-05 + sys_27: -0.00045323280449589674 + sys_28: 0.0012019571657234576 + sys_29: 0.0006640222096548526 + sys_30: -0.00043620363988313554 + sys_31: 0.00011839330244246104 + sys_32: -3.372578160819723e-05 + sys_33: 3.721235423260584e-05 + sys_34: -0.00014779284016539193 + sys_35: 6.596017849525106e-05 + sys_36: 1.3362281560254373e-05 + sys_37: -0.00012275950494662367 + sys_38: 0.000207128026993443 + sys_39: -6.829850061410559e-05 + sys_40: -1.091910081400456e-06 + sys_41: -1.6651816005041353e-05 + sys_42: -8.268045467219292e-05 + sys_43: -8.993068703281885e-05 + sys_44: -4.9453683914218405e-05 + sys_45: -0.0001287710284877532 + sys_46: -9.423900893851048e-05 + sys_47: -5.190340085540622e-05 + sys_48: 2.7118727201485725e-05 + sys_49: -9.53186427316261e-05 + sys_50: -7.397582414008277e-05 + sys_51: 2.9498352141892345e-06 + sys_52: -4.922590619239543e-05 + sys_53: -1.8712398334233148e-05 + sys_54: 2.7333062102747702e-05 + sys_55: 2.7179383849119263e-05 +- lumi_ue: 0.000246 + pol: 0.00029370000000000004 + sys_0: -1.4531320686131735e-05 + sys_1: -5.906649464146702e-05 + sys_2: 1.8354699269172787e-06 + sys_3: 2.9964851438954355e-05 + sys_4: 1.677001373338388e-05 + sys_5: 2.731649099159363e-05 + sys_6: -4.540862534083342e-05 + sys_7: 2.356558224617929e-05 + sys_8: 2.0087167328101553e-06 + sys_9: 2.8473721331546194e-05 + sys_10: -1.9367062008143123e-05 + sys_11: 5.880611620241099e-05 + sys_12: -8.536255913383565e-05 + sys_13: -5.250701914699015e-05 + sys_14: -0.00011494080613538739 + sys_15: -9.454843313858185e-06 + sys_16: 0.00017584212571698267 + sys_17: -4.960987458172187e-06 + sys_18: 0.00013700076147794214 + sys_19: -0.00014595864850027162 + sys_20: 2.3417086895063263e-06 + sys_21: 7.57119800445286e-05 + sys_22: -0.0001596115450664963 + sys_23: -1.3244827589537362e-05 + sys_24: -5.128125655174125e-06 + sys_25: -3.524420217820501e-05 + sys_26: -3.578498291706113e-05 + sys_27: -0.00014490156371427227 + sys_28: 0.00032136058248287777 + sys_29: 2.492766725590883e-05 + sys_30: 0.0016108287428603116 + sys_31: 0.00047795687583455676 + sys_32: -0.0001389226169479957 + sys_33: -1.747060931935861e-05 + sys_34: -9.594836665964868e-05 + sys_35: 8.901928946063245e-05 + sys_36: -4.54769118638531e-06 + sys_37: -0.00010033667034219528 + sys_38: 0.0002865523748037608 + sys_39: -9.799696235697907e-05 + sys_40: 5.680457420925754e-06 + sys_41: -6.329272705943741e-05 + sys_42: -6.566929783252569e-05 + sys_43: -0.00015857135686855476 + sys_44: -1.7938166004767783e-05 + sys_45: -0.0001248558516538365 + sys_46: -7.969712040822884e-05 + sys_47: -2.423005082119065e-05 + sys_48: 3.326578293537814e-05 + sys_49: -9.098067052196511e-05 + sys_50: -7.714098863909326e-05 + sys_51: 3.169252785690477e-05 + sys_52: -0.00016227507557808844 + sys_53: 2.9684395878558016e-05 + sys_54: -1.0218505438523867e-05 + sys_55: 1.563893729769318e-05 +- lumi_ue: 0.000239 + pol: 0.00032736 + sys_0: -1.272117586733791e-05 + sys_1: -5.375990841555208e-05 + sys_2: -1.3472527957306846e-05 + sys_3: 2.5393227188360944e-05 + sys_4: 1.449188989967145e-05 + sys_5: 4.6313594871349786e-05 + sys_6: -9.94445210398093e-05 + sys_7: 3.514896332545169e-05 + sys_8: 2.0848428285711266e-06 + sys_9: 3.511232265969161e-05 + sys_10: -2.4550290602501742e-05 + sys_11: 0.00013410982108297268 + sys_12: -0.00018932880774262905 + sys_13: -0.00012681038449283402 + sys_14: -0.0002065503495375271 + sys_15: -2.666673222626879e-05 + sys_16: 0.00019253885153976204 + sys_17: -1.9517961879461624e-06 + sys_18: 0.00024424648813223417 + sys_19: -0.00011220929489531388 + sys_20: 1.8456056053043454e-05 + sys_21: 5.022805954378928e-05 + sys_22: -0.00014559323679594525 + sys_23: -8.382894936700573e-06 + sys_24: -5.79775953091546e-06 + sys_25: -1.1731757705129818e-05 + sys_26: -1.9321625067752248e-05 + sys_27: -3.822311542566953e-05 + sys_28: 0.00014841000698274776 + sys_29: 2.1161616334797312e-05 + sys_30: 0.00032941367073075384 + sys_31: -0.001934350233922716 + sys_32: -0.00044682690867955526 + sys_33: -5.794397906803498e-05 + sys_34: 1.2751248898624037e-05 + sys_35: 0.00014435840447837156 + sys_36: -2.4306983302243385e-05 + sys_37: -5.680218454735558e-05 + sys_38: 0.0002487261509596028 + sys_39: -0.0001441746186061861 + sys_40: 1.4533630662262793e-05 + sys_41: -0.00017100364566967612 + sys_42: -1.0145135308812776e-05 + sys_43: -0.00012354692468630917 + sys_44: 1.410205581952277e-05 + sys_45: -8.865066696678397e-05 + sys_46: -4.134011789639426e-05 + sys_47: 6.973883769365745e-06 + sys_48: 2.7836357204105923e-05 + sys_49: -6.640619120971618e-05 + sys_50: -6.363751324763519e-05 + sys_51: 6.066530688749216e-05 + sys_52: -0.0002881392593830859 + sys_53: 8.801391663905872e-05 + sys_54: -3.8541369199169164e-05 + sys_55: -4.285495341085017e-07 +- lumi_ue: 0.000234 + pol: 0.0002376 + sys_0: -3.163055892263012e-05 + sys_1: -0.00012190567042053858 + sys_2: -7.723766765003094e-05 + sys_3: 5.519553672535731e-05 + sys_4: 2.6089586576773472e-05 + sys_5: 0.00014795078938444268 + sys_6: -0.00028060748130880595 + sys_7: 0.00010934528327043726 + sys_8: -1.0540484335741344e-06 + sys_9: 8.513687460958203e-05 + sys_10: -5.241496380355381e-05 + sys_11: 0.00030955638446766376 + sys_12: -0.0002267751359534543 + sys_13: -0.0003394260703075253 + sys_14: -0.0002660805409052375 + sys_15: 0.00011554091499488208 + sys_16: 0.00016589429796168894 + sys_17: -9.721512874623847e-07 + sys_18: 0.00024218239070157655 + sys_19: -9.03890040533799e-05 + sys_20: -2.062699720925894e-05 + sys_21: 1.0527515183326102e-05 + sys_22: -0.0001265710097310898 + sys_23: -4.698049302985964e-06 + sys_24: -4.421749933670291e-06 + sys_25: -1.099015991451604e-06 + sys_26: -8.981061418385324e-06 + sys_27: -4.337528682716684e-06 + sys_28: 5.749636685715271e-05 + sys_29: 1.084409679656013e-05 + sys_30: 0.00012120541376208125 + sys_31: -0.00028047607313918285 + sys_32: 0.0024767071448502692 + sys_33: -0.0001067225149816944 + sys_34: 0.0002611086759718761 + sys_35: 0.00046124658233016196 + sys_36: -1.169767482737116e-05 + sys_37: -9.253323981837141e-06 + sys_38: 0.0001796539883357399 + sys_39: -0.00027325884882541845 + sys_40: 2.6875640361524202e-05 + sys_41: -0.00037518651605681914 + sys_42: 7.111861208602164e-05 + sys_43: -2.9420533418085882e-05 + sys_44: 3.027589332612244e-05 + sys_45: -3.334595758983554e-05 + sys_46: 2.4104601219009836e-06 + sys_47: 2.3303574700550302e-05 + sys_48: 1.9058664809852123e-05 + sys_49: -3.638594480743389e-05 + sys_50: -4.1325916120801956e-05 + sys_51: 6.721609973331772e-05 + sys_52: -0.00027778621178378086 + sys_53: 0.00021114797355542542 + sys_54: 1.0202354904046142e-05 + sys_55: -3.499208720167625e-06 +- lumi_ue: 0.000231 + pol: 0.0011154 + sys_0: -0.00012212581198132945 + sys_1: -0.00033036285562441036 + sys_2: -0.00031095621803123996 + sys_3: 0.00015438182401224823 + sys_4: 6.699205092404173e-05 + sys_5: 0.0004421013334447652 + sys_6: -0.0004058164160997726 + sys_7: 0.0004300527091825558 + sys_8: -9.28779208136198e-06 + sys_9: 0.0002659836084422478 + sys_10: -0.00015546125917554376 + sys_11: 0.0003116068086842004 + sys_12: -0.00019514670332643118 + sys_13: -0.0003805315053511729 + sys_14: -0.00042176213967702044 + sys_15: 0.0005274139876771008 + sys_16: 8.625475383004218e-05 + sys_17: 4.8177209429191015e-06 + sys_18: 0.00018405109393553542 + sys_19: -6.98977219179789e-05 + sys_20: -0.00022059131147868328 + sys_21: -8.049428130208066e-05 + sys_22: -6.731458612449357e-05 + sys_23: -1.8990214549149987e-06 + sys_24: -2.5312022200053084e-06 + sys_25: 1.673230065395634e-06 + sys_26: -4.06009331144999e-06 + sys_27: 7.880581526198937e-06 + sys_28: 1.948759217808662e-05 + sys_29: 4.6895127809832764e-06 + sys_30: 4.170286356259282e-05 + sys_31: -9.253049994909227e-05 + sys_32: 0.0003145959583898994 + sys_33: 0.0001974154727192359 + sys_34: -0.0012846710729112786 + sys_35: -0.003046327479151329 + sys_36: -0.0005925529780293651 + sys_37: 0.0001303002005612171 + sys_38: 1.7039395932309695e-05 + sys_39: -0.0002450171109268212 + sys_40: 2.954906985780686e-05 + sys_41: -0.00041546004637857783 + sys_42: 0.00011262368872625079 + sys_43: 3.7900794137553893e-05 + sys_44: 4.3415445979063036e-05 + sys_45: 1.7443824761445526e-05 + sys_46: 3.705607187876777e-05 + sys_47: 2.3985718878439366e-05 + sys_48: 1.800116992719708e-05 + sys_49: -2.5859607088735488e-05 + sys_50: -2.644602481384765e-05 + sys_51: 8.93842823685833e-05 + sys_52: -0.00021831757237082081 + sys_53: 0.0006684626683092004 + sys_54: 0.0002124036763417546 + sys_55: -1.3164680470939133e-07 +- lumi_ue: 0.000229 + pol: 0.00032472 + sys_0: -0.0005338603840331941 + sys_1: -0.0009079395928587069 + sys_2: -0.00041573039276296105 + sys_3: 0.0006152169000324081 + sys_4: 0.00025998218948008236 + sys_5: 0.0004785319770068085 + sys_6: -0.0003435647151625801 + sys_7: 0.0004968537419461016 + sys_8: -1.564886481798407e-05 + sys_9: 0.0009502542282858696 + sys_10: -0.0005507106508078163 + sys_11: 0.00016633025465126637 + sys_12: -6.365093621446946e-05 + sys_13: -0.00029883597807117126 + sys_14: -0.0003238178244610279 + sys_15: 0.000608128045802369 + sys_16: -2.3621345443547028e-05 + sys_17: 1.8540311878168933e-05 + sys_18: 6.336477471971866e-05 + sys_19: -9.093989605931146e-05 + sys_20: -0.000796155361495956 + sys_21: -0.00032275274671473447 + sys_22: 7.882989956616827e-05 + sys_23: -6.204736050776246e-07 + sys_24: -1.4869535575153106e-06 + sys_25: 1.9792873418345765e-06 + sys_26: -1.2130405650873667e-06 + sys_27: 1.2049608445550758e-05 + sys_28: 5.441981319140669e-06 + sys_29: 1.0994713221432303e-06 + sys_30: 9.425921128533218e-06 + sys_31: -2.2715960405573773e-05 + sys_32: 9.156579122082103e-05 + sys_33: 4.6854621053720484e-05 + sys_34: -0.00019451586423559103 + sys_35: -0.00032110026246864556 + sys_36: -4.128080382943818e-06 + sys_37: -7.731307644453462e-05 + sys_38: 0.0001958641885875904 + sys_39: -0.00011974149847415661 + sys_40: 3.1676540335243745e-05 + sys_41: -0.0005491445113443124 + sys_42: 0.00020664107212566514 + sys_43: 0.0002070507508376697 + sys_44: 0.00012628979035638575 + sys_45: 0.0001666303335042055 + sys_46: 0.000165788719412759 + sys_47: 8.957468123431065e-05 + sys_48: -0.0003589924966736188 + sys_49: 0.0004929334526356282 + sys_50: 8.813130709498733e-05 + sys_51: -0.0004260586929318918 + sys_52: -0.0006654937631470925 + sys_53: -0.004198129208498813 + sys_54: -0.0021818462731636465 + sys_55: -2.9085431057963138e-05 +- lumi_ue: 0.000227 + pol: 0.0008052000000000001 + sys_0: -0.0011344626809096708 + sys_1: -0.001379222171286422 + sys_2: -0.0003293922426825763 + sys_3: 0.0010126366388589923 + sys_4: 0.0016996103665959607 + sys_5: 0.0004525807693516198 + sys_6: -0.00024752177389812284 + sys_7: 0.0005314580758777434 + sys_8: -1.333923644091311e-05 + sys_9: 0.0012883415936785815 + sys_10: -0.0011468156911945268 + sys_11: 2.251356763659235e-05 + sys_12: 3.9203649581895256e-05 + sys_13: -0.0002749150144992921 + sys_14: -0.0004451738756659846 + sys_15: 0.0011878648970476333 + sys_16: -0.00029692203211782617 + sys_17: 0.00012595242780659611 + sys_18: -0.00051723727742299 + sys_19: 0.0014731320040348777 + sys_20: 0.007175574255665434 + sys_21: 0.0019036532222926371 + sys_22: -0.00016347268221444808 + sys_23: -2.6424785283031796e-07 + sys_24: -5.069163330684674e-07 + sys_25: 7.570674450829787e-07 + sys_26: -2.6848915245545797e-07 + sys_27: 4.64483421127493e-06 + sys_28: 6.50844020158943e-07 + sys_29: 1.2546109887148115e-07 + sys_30: 1.5038197964675274e-06 + sys_31: -4.103745069737986e-06 + sys_32: 2.4347264478897088e-05 + sys_33: 1.3723437552812605e-05 + sys_34: -5.282016349701009e-05 + sys_35: -9.054089348220705e-05 + sys_36: -2.9164746354746226e-06 + sys_37: -1.5291067041763396e-05 + sys_38: 4.87396290064138e-05 + sys_39: -2.472091572731083e-05 + sys_40: -8.031855390479795e-06 + sys_41: 0.00020147390822134852 + sys_42: -8.840807090300744e-05 + sys_43: -0.0001009844458141237 + sys_44: -3.377780668659312e-05 + sys_45: -4.639192948381359e-05 + sys_46: -3.900749755260666e-05 + sys_47: -1.689972782246261e-05 + sys_48: -6.712962989767278e-07 + sys_49: 9.677953529210833e-06 + sys_50: 2.24564285364471e-07 + sys_51: -1.9269861593202862e-05 + sys_52: -7.600549678236182e-05 + sys_53: -0.0003739612830110184 + sys_54: -0.00018187543885374977 + sys_55: -1.6607595284776916e-06 +- lumi_ue: 0.000226 + pol: 0.00011682000000000001 + sys_0: -0.0011792988988075718 + sys_1: -0.001554624761739689 + sys_2: -0.00025096010725787874 + sys_3: 0.0012142135722346492 + sys_4: 0.0031897442521219496 + sys_5: 0.0003916856511898663 + sys_6: -0.00019509320187066333 + sys_7: 0.0006419893362667791 + sys_8: -7.978644295246272e-06 + sys_9: 0.004811853930770792 + sys_10: 0.012190577150071548 + sys_11: 0.0004309839837588902 + sys_12: -0.0003317571983019257 + sys_13: 5.026655400430366e-05 + sys_14: 5.691553732346379e-05 + sys_15: -0.00023377917877058946 + sys_16: 3.2706270133914466e-05 + sys_17: -1.5422448388643656e-06 + sys_18: 1.1648447773506607e-05 + sys_19: 4.025658319217579e-05 + sys_20: 0.0002950878768225439 + sys_21: 9.186854792379323e-05 + sys_22: -1.9978725959354006e-05 + sys_23: -8.162933145571044e-08 + sys_24: -1.2237212123207275e-07 + sys_25: 2.0077488117749855e-07 + sys_26: -8.597832244639287e-08 + sys_27: 1.2533583945318655e-06 + sys_28: -2.702532135964027e-07 + sys_29: -4.623989610333688e-08 + sys_30: -4.0273410889124476e-07 + sys_31: 9.157898299699803e-08 + sys_32: 3.675396367604172e-06 + sys_33: 3.181943494769836e-06 + sys_34: -1.1238115884331568e-05 + sys_35: -1.8002818181886484e-05 + sys_36: 4.051443573122217e-07 + sys_37: -2.4643777793563773e-06 + sys_38: 1.211691251156476e-05 + sys_39: -1.4063399318465847e-05 + sys_40: 1.8120678536185765e-06 + sys_41: 1.2343342922587835e-05 + sys_42: -6.507217148048175e-06 + sys_43: -1.3346961995240795e-05 + sys_44: -3.684039708186147e-06 + sys_45: -6.742826722031688e-06 + sys_46: -4.989609189391962e-06 + sys_47: -3.2207567685596017e-06 + sys_48: -1.1025377226617117e-06 + sys_49: 1.5706310355847158e-06 + sys_50: 1.7425869069738476e-07 + sys_51: -2.4112506769105785e-06 + sys_52: -1.981263990555784e-05 + sys_53: -7.62499737022925e-05 + sys_54: -3.621242382555173e-05 + sys_55: -9.090214968951425e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_A.yaml new file mode 100644 index 0000000000..96f7365a39 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_A.yaml @@ -0,0 +1,11 @@ +data_central: +- -0.0128 +- 0.009 +- 0.0079 +- -0.0012 +- 0.0101 +- -0.0013 +- 0.0048 +- 0.0052 +- 0.0363 +- -0.0218 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_B.yaml new file mode 100644 index 0000000000..1988cae035 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_B.yaml @@ -0,0 +1,12 @@ +data_central: +- -0.0023 +- 0.0041 +- 0.0016 +- 0.0029 +- -0.0063 +- 0.002 +- 0.0128 +- -0.0022 +- -0.001 +- -0.016 +- -0.0205 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_C.yaml new file mode 100644 index 0000000000..9fe7a0dfa4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_C.yaml @@ -0,0 +1,11 @@ +data_central: +- 0.0058 +- -0.0006 +- -0.0043 +- 0.0049 +- 0.0046 +- 0.0155 +- -0.0045 +- 0.0104 +- 0.0346 +- 0.0593 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_D.yaml new file mode 100644 index 0000000000..884dea27ab --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/data_D.yaml @@ -0,0 +1,12 @@ +data_central: +- 0.0054 +- 0.0042 +- 0.0051 +- -0.0031 +- -0.0018 +- -0.004 +- 0.0034 +- 0.005 +- 0.0058 +- 0.0291 +- -0.0055 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_A.yaml new file mode 100644 index 0000000000..50c243e4c3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_A.yaml @@ -0,0 +1,121 @@ +bins: +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 19.86 + mid: 19.04 + min: 18.22 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 22.58 + mid: 21.62 + min: 20.66 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.46 + mid: 26.380000000000003 + min: 25.3 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 33.46 + mid: 32.3 + min: 31.14 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 39.62 + mid: 38.42 + min: 37.22 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 46.66 + mid: 45.18 + min: 43.7 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 54.97 + mid: 53.42 + min: 51.87 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 65.32 + mid: 63.52 + min: 61.72 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 77.76 + mid: 75.55000000000001 + min: 73.34 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 91.5 + mid: 89.12 + min: 86.74 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_B.yaml new file mode 100644 index 0000000000..1c66a3548a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_B.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 19.61 + mid: 18.8 + min: 17.99 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 22.74 + mid: 21.8 + min: 20.86 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.46 + mid: 26.37 + min: 25.28 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 33.31 + mid: 32.24 + min: 31.17 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 39.73 + mid: 38.42 + min: 37.11 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 47.24 + mid: 45.83 + min: 44.42 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 55.83 + mid: 54.14 + min: 52.45 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 66.0 + mid: 64.17 + min: 62.34 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 78.19 + mid: 76.06 + min: 73.93 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 92.29 + mid: 89.81 + min: 87.33 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 110.81 + mid: 107.92 + min: 105.03 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_C.yaml new file mode 100644 index 0000000000..3ae84e0b49 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_C.yaml @@ -0,0 +1,121 @@ +bins: +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 20.62 + mid: 19.81 + min: 19.0 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 23.13 + mid: 22.01 + min: 20.89 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 27.24 + mid: 26.16 + min: 25.08 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 33.89 + mid: 32.7 + min: 31.51 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 40.05 + mid: 38.71 + min: 37.37 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 47.37 + mid: 46.01 + min: 44.65 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 55.67 + mid: 53.89 + min: 52.11 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 66.49 + mid: 64.75 + min: 63.01 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 79.42 + mid: 77.15 + min: 74.88 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 93.72 + mid: 91.14 + min: 88.56 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_D.yaml new file mode 100644 index 0000000000..4a58097629 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/kinematics_D.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 22.68 + mid: 20.54 + min: 18.4 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 23.04 + mid: 22.09 + min: 21.14 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.29 + mid: 26.31 + min: 25.33 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 32.94 + mid: 31.72 + min: 30.5 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 39.79 + mid: 38.48 + min: 37.17 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 46.76 + mid: 45.21 + min: 43.66 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 55.84 + mid: 54.150000000000006 + min: 52.46 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 66.22 + mid: 64.3 + min: 62.38 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 78.81 + mid: 76.66 + min: 74.51 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 92.19 + mid: 89.57 + min: 86.95 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 109.83 + mid: 106.86 + min: 103.89 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/metadata.yaml new file mode 100644 index 0000000000..c08e5f0256 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/metadata.yaml @@ -0,0 +1,166 @@ +setname: "STAR_2012_2JET_510GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: "https://arxiv.org/abs/1906.02740" +iNSPIRE: + url: "https://inspirehep.net/literature/1738738" +hepdata: + url: "https://www.hepdata.net/record/ins1738738" + version: 1 + +version: 1 +version_comment: "Initial implementation, correlations from arXiv" + +implemented_observables: + - observable: + { + description: "ALL as function of $M_{inv}$, topology A", + label: "$A_{LL}$", + units: "", + } + observable_name: A-ALL + process_type: DIJET_POL + ndata: 10 + tables: [14] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_A.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_A.yaml + data_uncertainties: + - uncertainties_A.yaml + plotting: + dataset_label: "STAR 510 GeV (2012) DIJET $A_{LL}$, topology A" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2012_2JET_510GEV_A-ALL-POL + - - STAR_2012_2JET_510GEV_A-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology B", + label: "$A_{LL}$", + units: "", + } + observable_name: B-ALL + process_type: DIJET_POL + ndata: 11 + tables: [14] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_B.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_B.yaml + data_uncertainties: + - uncertainties_B.yaml + plotting: + dataset_label: "STAR 510 GeV (2012) DIJET $A_{LL}$, topology B" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2012_2JET_510GEV_B-ALL-POL + - - STAR_2012_2JET_510GEV_B-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology C", + label: "$A_{LL}$", + units: "", + } + observable_name: C-ALL + process_type: DIJET_POL + ndata: 10 + tables: [14] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_C.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_C.yaml + data_uncertainties: + - uncertainties_C.yaml + plotting: + dataset_label: "STAR 510 GeV (2012) DIJET $A_{LL}$, topology C" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2012_2JET_510GEV_C-ALL-POL + - - STAR_2012_2JET_510GEV_C-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology D", + label: "$A_{LL}$", + units: "", + } + observable_name: D-ALL + process_type: DIJET_POL + ndata: 11 + tables: [14] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_D.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_D.yaml + data_uncertainties: + - uncertainties_D.yaml + plotting: + dataset_label: "STAR 510 GeV (2012) DIJET $A_{LL}$, topology D" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2012_2JET_510GEV_D-ALL-POL + - - STAR_2012_2JET_510GEV_D-ALL-UNPOL + operation: "ratio" diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml new file mode 100644 index 0000000000..f186a8a5e5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_A.yaml @@ -0,0 +1,814 @@ +definitions: + lumi_ue: + description: underlying event and relative luminosity uncertainty + treatment: ADD + type: STAR2012LUMIUE + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2012POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc55 +bins: +- lumi_ue: 0.00025 + pol: 0.0008448 + sys_0: -1.4932704724906427e-05 + sys_1: -6.647759476165218e-05 + sys_2: 1.630401314766415e-06 + sys_3: 3.267462248739768e-05 + sys_4: 1.8648986103258845e-05 + sys_5: 2.1859553427066885e-05 + sys_6: -2.764260471995212e-05 + sys_7: 2.4115688987795492e-05 + sys_8: -8.852057229814217e-07 + sys_9: 1.9676436951535432e-05 + sys_10: -2.470136930196038e-05 + sys_11: 3.2773228322757734e-05 + sys_12: -1.9051228579499554e-05 + sys_13: -2.8111048267594446e-05 + sys_14: -5.12509509844437e-05 + sys_15: 1.0412074064092471e-05 + sys_16: 4.30006594592918e-05 + sys_17: -1.7279491725085568e-05 + sys_18: 7.287847990577875e-05 + sys_19: -4.239594590359346e-05 + sys_20: -5.826381249556464e-05 + sys_21: 3.5333118951901086e-05 + sys_22: -0.00012248966955610044 + sys_23: -9.379346352906422e-06 + sys_24: -5.681445437858892e-06 + sys_25: -9.202584136986829e-07 + sys_26: -4.343627388829993e-06 + sys_27: -9.993231385711363e-06 + sys_28: -4.052711840196821e-06 + sys_29: 9.609466949300923e-07 + sys_30: 6.552758267957907e-07 + sys_31: -2.082527643860987e-06 + sys_32: 3.832889045005201e-06 + sys_33: -2.924095588034367e-06 + sys_34: 2.08530779506185e-06 + sys_35: -9.400423076269274e-06 + sys_36: -7.944704158280935e-06 + sys_37: 6.433286793025468e-06 + sys_38: -1.512996454985619e-05 + sys_39: -0.0012899074899340535 + sys_40: 0.006267890179352411 + sys_41: 0.0015718393759970746 + sys_42: 0.00018138990633743052 + sys_43: 0.000274893943632109 + sys_44: 5.351335772968877e-05 + sys_45: 0.00012535063276170882 + sys_46: 3.691584662912752e-05 + sys_47: 2.9581938993885017e-05 + sys_48: -3.0372601400343865e-05 + sys_49: 5.7357326164349544e-05 + sys_50: 1.260612571999675e-06 + sys_51: -1.6576428176356128e-05 + sys_52: 1.920024123827992e-05 + sys_53: -2.0752895197596427e-05 + sys_54: -3.088485672375722e-05 + sys_55: -5.323760568499265e-06 +- lumi_ue: 0.00058 + pol: 0.000594 + sys_0: -1.7448697144571878e-05 + sys_1: -7.071716384626306e-05 + sys_2: 5.646906878226978e-06 + sys_3: 3.8817205571691856e-05 + sys_4: 1.6964413210721972e-05 + sys_5: 2.2790584673087973e-05 + sys_6: -3.257219731054011e-05 + sys_7: 3.336011307342892e-05 + sys_8: 4.690322197470467e-06 + sys_9: 2.3024912136206896e-05 + sys_10: -2.1094342118640504e-05 + sys_11: 2.8579482393266353e-05 + sys_12: -1.821654651377933e-05 + sys_13: -4.5106966517342144e-05 + sys_14: -4.0781022286168694e-05 + sys_15: 1.301961927602584e-05 + sys_16: 3.2770242113663414e-05 + sys_17: -9.513064654925408e-06 + sys_18: 8.678525323332728e-05 + sys_19: -2.044158564125153e-05 + sys_20: -3.1783812459343364e-05 + sys_21: 1.5788409751183913e-05 + sys_22: -4.118181695480385e-05 + sys_23: -9.165767783637247e-06 + sys_24: -1.481633569578687e-05 + sys_25: 1.402044445029201e-05 + sys_26: -7.107779939715541e-06 + sys_27: -1.1016020830792787e-05 + sys_28: -6.430719677031306e-06 + sys_29: 9.73538241182531e-06 + sys_30: 3.446802972541415e-06 + sys_31: -4.9701569327811265e-06 + sys_32: 8.367314527027929e-06 + sys_33: -8.252125121485821e-06 + sys_34: 4.968461096107493e-06 + sys_35: -2.1803301622730377e-05 + sys_36: -2.05042257199938e-05 + sys_37: 1.4094289852541899e-05 + sys_38: -3.744712498200872e-05 + sys_39: -0.00011752363784629337 + sys_40: 3.002808680397793e-05 + sys_41: -2.5759690809529804e-05 + sys_42: -2.164314016087387e-05 + sys_43: -0.00013776566395570764 + sys_44: -3.748260234220189e-05 + sys_45: -0.00017668706026811808 + sys_46: -1.7013876153323996e-05 + sys_47: -1.6647001254640033e-05 + sys_48: 0.0006373704346195927 + sys_49: -0.003114956678088937 + sys_50: 0.004012929426909409 + sys_51: -0.00034224552747039844 + sys_52: 0.00021945602947121606 + sys_53: 4.5462613197947916e-05 + sys_54: -0.0006668489316886048 + sys_55: -0.0003946233239617898 +- lumi_ue: 0.00062 + pol: 0.0005214000000000001 + sys_0: -2.2851926122450446e-05 + sys_1: -0.00011157815978401811 + sys_2: 5.221142945513268e-06 + sys_3: 5.7090303351432004e-05 + sys_4: 2.619437124428177e-05 + sys_5: 3.823053046442071e-05 + sys_6: -5.149922129912152e-05 + sys_7: 4.941634283370895e-05 + sys_8: 3.796555649982347e-06 + sys_9: 3.6701046585308324e-05 + sys_10: -3.388345807073216e-05 + sys_11: 4.330893956945936e-05 + sys_12: -3.0915240580913865e-05 + sys_13: -6.012571969563282e-05 + sys_14: -6.7889545768717e-05 + sys_15: 1.8350824254361954e-05 + sys_16: 4.452143092340661e-05 + sys_17: -1.6085246666288194e-05 + sys_18: 0.00010386604724175386 + sys_19: -3.753458076382383e-05 + sys_20: -4.5845648630087276e-05 + sys_21: 3.0058323179504333e-05 + sys_22: -7.109552827629436e-05 + sys_23: -3.6517075944654932e-06 + sys_24: -1.3598290832217353e-05 + sys_25: 2.016980828465377e-05 + sys_26: -5.541075519533778e-06 + sys_27: 1.7327320197400086e-06 + sys_28: -2.9990753025706317e-05 + sys_29: 1.7211688439693902e-05 + sys_30: 4.855410306633013e-07 + sys_31: -1.0558079391692511e-05 + sys_32: 1.6495214077089027e-05 + sys_33: -1.4249011390188336e-05 + sys_34: 1.7543973765931605e-05 + sys_35: -4.4191097428797544e-05 + sys_36: -4.040381337593423e-05 + sys_37: 3.73149787922248e-05 + sys_38: -9.593764855402129e-05 + sys_39: -0.0001542741112277949 + sys_40: 2.7870276142540748e-05 + sys_41: -3.607027125553233e-05 + sys_42: -2.071695897809535e-05 + sys_43: -0.00013844591105060774 + sys_44: -4.8876693068881444e-05 + sys_45: -0.00018237578495351023 + sys_46: -3.853447712124857e-05 + sys_47: -3.4283846114594875e-05 + sys_48: 0.00032837124127178894 + sys_49: -0.0010815720455086496 + sys_50: 8.477427264166624e-05 + sys_51: 0.00024609070374347677 + sys_52: -0.00044602808046783184 + sys_53: -0.0017240250933269227 + sys_54: 0.0031712262544664406 + sys_55: 0.0032289552139117762 +- lumi_ue: 0.00056 + pol: 7.92e-05 + sys_0: -2.3623708728190217e-05 + sys_1: -0.00010876906699337744 + sys_2: 9.151279180348874e-06 + sys_3: 5.5519353587947016e-05 + sys_4: 2.844484607086698e-05 + sys_5: 3.9867895196579404e-05 + sys_6: -4.8440790910919775e-05 + sys_7: 4.7297532743180955e-05 + sys_8: 4.167287388414565e-06 + sys_9: 3.99694403873085e-05 + sys_10: -3.43374164567773e-05 + sys_11: 4.612160873474256e-05 + sys_12: -2.7614592191627536e-05 + sys_13: -5.8835972342791124e-05 + sys_14: -6.980237794885824e-05 + sys_15: 2.3814582304011626e-05 + sys_16: 5.1680519436975515e-05 + sys_17: -1.7258450732195274e-05 + sys_18: 0.00010967456146205192 + sys_19: -4.583108235576945e-05 + sys_20: -5.4863229087876815e-05 + sys_21: 2.524130843659431e-05 + sys_22: -7.656423555870332e-05 + sys_23: -2.3347747238659683e-07 + sys_24: -5.118537238708053e-06 + sys_25: 1.787516913533642e-05 + sys_26: -1.9529015777919013e-06 + sys_27: 1.1718359434956262e-05 + sys_28: -4.5126473795250125e-05 + sys_29: 1.291883826878846e-05 + sys_30: -2.179058115509319e-05 + sys_31: 9.699229020761318e-06 + sys_32: 3.57353314026892e-06 + sys_33: -1.0850972808666846e-05 + sys_34: 2.172224083436962e-05 + sys_35: -4.1499644963789655e-05 + sys_36: -2.6118171090673177e-05 + sys_37: 3.817598164194671e-05 + sys_38: -0.00010555994226455536 + sys_39: -0.0001875359345447311 + sys_40: 3.1875044628537535e-05 + sys_41: -5.228482459813645e-05 + sys_42: -2.5652107349112236e-05 + sys_43: -0.0001554411682048696 + sys_44: -5.8270751411580326e-05 + sys_45: -0.00020146611035755296 + sys_46: -6.20602118591317e-05 + sys_47: -4.714465896165653e-05 + sys_48: 0.0008159488079764539 + sys_49: -0.0037687289746036775 + sys_50: -0.003251413414299845 + sys_51: -0.0006138224132431326 + sys_52: 0.0006535156768812625 + sys_53: -0.00017138528974785966 + sys_54: -0.0007568106605238492 + sys_55: -0.0003960197253202313 +- lumi_ue: 0.00051 + pol: 0.0006666 + sys_0: -2.7891533631211103e-05 + sys_1: -0.00012929392394763224 + sys_2: 1.0710338036597585e-05 + sys_3: 6.633442417451472e-05 + sys_4: 3.4239472998051285e-05 + sys_5: 4.9234981033219406e-05 + sys_6: -6.629538233407767e-05 + sys_7: 5.7463279954453515e-05 + sys_8: 5.004736189597114e-06 + sys_9: 5.028524821457818e-05 + sys_10: -4.448168816830629e-05 + sys_11: 6.04176153177944e-05 + sys_12: -4.418795065070969e-05 + sys_13: -7.930802555577232e-05 + sys_14: -9.783427388456295e-05 + sys_15: 3.586446598983385e-05 + sys_16: 7.719856733092553e-05 + sys_17: -2.5144087537258273e-05 + sys_18: 0.00016209748434545794 + sys_19: -7.670892373984414e-05 + sys_20: -7.985523616997614e-05 + sys_21: 4.6191785990580217e-05 + sys_22: -0.00016676158562573822 + sys_23: 8.248269473208837e-07 + sys_24: -5.934300341969075e-07 + sys_25: 6.361204083204847e-06 + sys_26: 1.4456966382386567e-06 + sys_27: 1.0883089244721279e-05 + sys_28: -3.9663450972861495e-05 + sys_29: 6.17367719439858e-07 + sys_30: -2.926259250151215e-05 + sys_31: 2.2199913350733643e-05 + sys_32: -1.5326353337645914e-05 + sys_33: -5.699433722654145e-06 + sys_34: 2.072447101162225e-05 + sys_35: -1.1935887724342429e-05 + sys_36: -1.0363457523734907e-05 + sys_37: 2.2362808902879826e-05 + sys_38: -6.807152741495429e-05 + sys_39: -0.0005023267867951444 + sys_40: 9.413004806849578e-05 + sys_41: -0.0001875280987847846 + sys_42: -7.223232117326485e-05 + sys_43: -0.0005060619730382572 + sys_44: -0.0005102890224235388 + sys_45: -0.005950058684181292 + sys_46: 0.0009089929208653699 + sys_47: 0.0001864585540345155 + sys_48: -0.00013470051519680213 + sys_49: 0.0003084119393042814 + sys_50: 2.806544644247525e-06 + sys_51: -5.2635658602937784e-05 + sys_52: 0.00010180453157592814 + sys_53: -4.08905366982533e-05 + sys_54: -0.00010560183967338339 + sys_55: -6.0370813926019315e-05 +- lumi_ue: 0.00046 + pol: 8.58e-05 + sys_0: -4.357971460073679e-05 + sys_1: -0.00018304764706878021 + sys_2: 1.5371848608579998e-05 + sys_3: 9.012983267993946e-05 + sys_4: 4.3890855414142794e-05 + sys_5: 6.68808543989035e-05 + sys_6: -8.422569644729892e-05 + sys_7: 7.397521730202983e-05 + sys_8: 4.828952326862123e-06 + sys_9: 7.287853181518576e-05 + sys_10: -6.282384008406249e-05 + sys_11: 8.209295520473048e-05 + sys_12: -5.447817718056682e-05 + sys_13: -0.00010161893459716706 + sys_14: -0.0001555883023684476 + sys_15: 5.751007973023297e-05 + sys_16: 0.00011905406822319385 + sys_17: -2.855236264568773e-05 + sys_18: 0.00023722893750587732 + sys_19: -0.0001317205153232664 + sys_20: -0.0001079199168920674 + sys_21: 8.042322528517536e-05 + sys_22: -0.0003414178878790099 + sys_23: 9.351263157407117e-07 + sys_24: 5.478907011456752e-07 + sys_25: 2.63009278628185e-06 + sys_26: 2.062882706948684e-06 + sys_27: 6.20513617008951e-06 + sys_28: -3.223768001083468e-05 + sys_29: -5.660079727225412e-06 + sys_30: -4.6341172032371396e-05 + sys_31: 4.1679642692182146e-05 + sys_32: -4.013454566335236e-05 + sys_33: -5.57611091309882e-06 + sys_34: 2.9640292766917535e-05 + sys_35: 1.5329566418350315e-05 + sys_36: -5.284580787111377e-06 + sys_37: 1.9359488037382993e-05 + sys_38: -8.31074704807926e-05 + sys_39: -0.0013246880028472796 + sys_40: 0.00019563173156684132 + sys_41: -0.0008137433361192427 + sys_42: -0.0002526756223152571 + sys_43: -0.006148358661351584 + sys_44: 0.00028937176921907707 + sys_45: 0.0006551565954433485 + sys_46: 0.00017905670394164838 + sys_47: 7.773787935271128e-05 + sys_48: -0.00011036105335213015 + sys_49: 0.0002289877377729446 + sys_50: 1.2965981438570454e-05 + sys_51: -5.5636065536088635e-05 + sys_52: 0.00012399929125871893 + sys_53: -2.4773837499833723e-05 + sys_54: -6.376119520339673e-05 + sys_55: -4.07135516556888e-05 +- lumi_ue: 0.00044 + pol: 0.0003168 + sys_0: -6.558975593916512e-05 + sys_1: -0.0002741975059457175 + sys_2: 1.7925707941035928e-05 + sys_3: 0.0001429491872256803 + sys_4: 7.332560030772731e-05 + sys_5: 0.00010458413620829116 + sys_6: -0.00013969190757061027 + sys_7: 0.00012589635814142818 + sys_8: 6.170244340910283e-06 + sys_9: 0.00013612600657839823 + sys_10: -0.00010484319531473455 + sys_11: 0.00016264993380795545 + sys_12: -0.00011512573713771749 + sys_13: -0.00023713685034480755 + sys_14: -0.0004210333366614976 + sys_15: 0.0001864665996433193 + sys_16: 0.0005920693017631919 + sys_17: -0.00015192599600305972 + sys_18: 0.007916613466072833 + sys_19: 0.0015082467792499332 + sys_20: 0.00032805000705790627 + sys_21: -0.00047421468827241485 + sys_22: 0.00025109758877361275 + sys_23: 5.192678675302519e-07 + sys_24: 6.460150423080733e-07 + sys_25: 3.037369575072051e-07 + sys_26: 1.2699918448794705e-06 + sys_27: -1.160795634734146e-06 + sys_28: -1.3949665261721384e-05 + sys_29: -2.5856771184986075e-06 + sys_30: -2.7995140294592796e-05 + sys_31: 5.221225194167892e-05 + sys_32: -5.933976936451358e-05 + sys_33: -6.6236622852290446e-06 + sys_34: 3.598556642215005e-05 + sys_35: 4.955565185584831e-05 + sys_36: 3.5398087800130393e-06 + sys_37: 1.1961999671273325e-05 + sys_38: -5.735462589527588e-05 + sys_39: 0.0003611446888696711 + sys_40: -2.9255017234492096e-05 + sys_41: 0.00016428876410322856 + sys_42: 8.834914528765087e-06 + sys_43: 0.00010660480156959919 + sys_44: 3.233310598430856e-05 + sys_45: 9.165313034390438e-05 + sys_46: 3.7638687650889967e-05 + sys_47: 2.0302422812599866e-05 + sys_48: -4.053757200081875e-05 + sys_49: 8.414933803687042e-05 + sys_50: 5.86082530168522e-06 + sys_51: -3.207603010242334e-05 + sys_52: 8.820024348764762e-05 + sys_53: 2.350843043093833e-05 + sys_54: -3.1582293214310013e-06 + sys_55: -1.3847763145136433e-05 +- lumi_ue: 0.00037 + pol: 0.0003432 + sys_0: -7.885312401191409e-05 + sys_1: -0.00034958509985167377 + sys_2: 1.2602083202076646e-05 + sys_3: 0.00017924210257796107 + sys_4: 0.00010062620096050093 + sys_5: 0.00016088102901352024 + sys_6: -0.00020845096268411198 + sys_7: 0.00020664874402074907 + sys_8: 1.1790024274248009e-05 + sys_9: 0.00032460845267279215 + sys_10: -9.811568696775363e-05 + sys_11: 0.0004463794730115405 + sys_12: -0.00035256149730954797 + sys_13: -0.010752373556972545 + sys_14: 0.000965494823312216 + sys_15: -0.0004691344017381623 + sys_16: -0.00016083815136830993 + sys_17: 2.638919945631053e-05 + sys_18: -0.00018213025100169948 + sys_19: 4.339852857602859e-05 + sys_20: -0.00013786536039800369 + sys_21: -8.753145462480257e-05 + sys_22: 7.221752465361372e-05 + sys_23: 2.6921771619806113e-07 + sys_24: 3.4808248149948625e-07 + sys_25: -2.4822132478235777e-07 + sys_26: 4.7381772695788177e-07 + sys_27: -2.913070774636984e-06 + sys_28: -5.0845961997344105e-06 + sys_29: -7.773355512832876e-07 + sys_30: -1.045210215457081e-05 + sys_31: 2.561579510835711e-05 + sys_32: -7.58887061089544e-05 + sys_33: -7.1243895246230694e-06 + sys_34: 4.3433597459609044e-05 + sys_35: 8.492010024822946e-05 + sys_36: 1.2242234548942304e-05 + sys_37: 4.350345122766299e-06 + sys_38: -3.583640208617535e-05 + sys_39: 0.00013300930324833696 + sys_40: -7.920736959226624e-06 + sys_41: 8.17729454329053e-05 + sys_42: -5.603718482901359e-06 + sys_43: 2.4562893112120378e-05 + sys_44: 8.059639653474077e-06 + sys_45: 2.9555733803098208e-05 + sys_46: 1.0150009055520798e-05 + sys_47: 5.013883247979064e-06 + sys_48: -1.163081934307158e-05 + sys_49: 2.171284087777695e-05 + sys_50: 2.0028986635551135e-06 + sys_51: -7.256455326087037e-06 + sys_52: 6.356380600426073e-05 + sys_53: 9.474819131895561e-05 + sys_54: 4.597873930350965e-05 + sys_55: -4.878471626361834e-06 +- lumi_ue: 0.00037 + pol: 0.0023958 + sys_0: -0.00016128496600766496 + sys_1: -0.0008665316675798469 + sys_2: 3.41671150818469e-05 + sys_3: 0.0004888399468426547 + sys_4: 0.0003587391644981901 + sys_5: 0.0008710436434961518 + sys_6: -0.0020393671380570743 + sys_7: 0.01657318279963714 + sys_8: -0.0003272621332719397 + sys_9: -0.0013008686270556504 + sys_10: -0.00017663104925685826 + sys_11: -0.0003350154322819952 + sys_12: 0.00018806648383499531 + sys_13: 0.00018344274632430688 + sys_14: 0.00019999676839253648 + sys_15: -0.00014024838990905314 + sys_16: -5.058125727302465e-05 + sys_17: 1.1328402855143124e-05 + sys_18: -6.290859116187327e-05 + sys_19: -4.381339188079546e-06 + sys_20: -0.00018682353390755404 + sys_21: -7.797662404898313e-05 + sys_22: 3.99498744399607e-05 + sys_23: 4.3494970736592534e-08 + sys_24: 2.234480585389105e-07 + sys_25: -4.302008678581676e-07 + sys_26: 1.1039055226021833e-07 + sys_27: -3.1983150203516455e-06 + sys_28: -1.4590873570945874e-06 + sys_29: 2.0878075469903433e-08 + sys_30: -1.992088683663357e-06 + sys_31: 5.0203583153153494e-06 + sys_32: -2.3421783741994973e-05 + sys_33: -9.025178934615913e-06 + sys_34: 4.2335792137158006e-05 + sys_35: 8.289782073710602e-05 + sys_36: 9.744460777358795e-06 + sys_37: 3.6232481611322447e-06 + sys_38: -2.418408063129908e-05 + sys_39: 7.355571483698593e-05 + sys_40: -5.239095749914436e-06 + sys_41: 4.34537298705802e-05 + sys_42: -2.8262819553516286e-06 + sys_43: 1.1214076775988322e-05 + sys_44: 6.044502073620967e-06 + sys_45: 1.3205074553314394e-05 + sys_46: 6.682743656005294e-06 + sys_47: 2.301466092029081e-06 + sys_48: -1.6933593116356689e-06 + sys_49: 5.908634843708989e-06 + sys_50: 4.719193782923559e-07 + sys_51: -1.987798644157024e-06 + sys_52: 4.5521097068499716e-05 + sys_53: 0.00011224136455724005 + sys_54: 5.451735887218823e-05 + sys_55: -1.2886999446169458e-06 +- lumi_ue: 0.00031 + pol: 0.0014388 + sys_0: -0.0005272695142887919 + sys_1: -0.005731980469885267 + sys_2: 0.00026459620780513353 + sys_3: 0.02596692873227919 + sys_4: -0.0033439045280976064 + sys_5: -0.0006138007127057666 + sys_6: 0.0005559764499049813 + sys_7: -0.0003827184020584507 + sys_8: -1.941625219339778e-05 + sys_9: -0.0005101171696032952 + sys_10: -0.00029141834509494296 + sys_11: -0.00017223388028827347 + sys_12: 9.777490236761362e-05 + sys_13: 0.00010492270079568354 + sys_14: 0.00013325013980530133 + sys_15: -9.190409894446865e-05 + sys_16: -3.744089537717368e-05 + sys_17: 6.370971440391417e-06 + sys_18: -3.7414764890344135e-05 + sys_19: -1.890885377563217e-05 + sys_20: -0.0002186194357567714 + sys_21: -8.15209442347594e-05 + sys_22: 3.217818200662517e-05 + sys_23: -3.313569426780107e-08 + sys_24: 1.5050636763060819e-07 + sys_25: -3.6974286631733983e-07 + sys_26: -8.433420777058071e-08 + sys_27: -3.045949120475441e-06 + sys_28: -5.012127127015689e-07 + sys_29: 1.698895903068454e-07 + sys_30: 2.0518632286018634e-07 + sys_31: -9.440268320475954e-07 + sys_32: -2.9050124049808847e-06 + sys_33: -4.979941239923405e-06 + sys_34: 1.5188093711897291e-05 + sys_35: 1.7864079865429385e-05 + sys_36: -3.47925184591572e-06 + sys_37: 6.292547295993538e-06 + sys_38: -2.0532860667767702e-05 + sys_39: 5.642091881810538e-05 + sys_40: -3.18085093238913e-06 + sys_41: 2.21849379780013e-05 + sys_42: 1.280307130991647e-06 + sys_43: 9.696158481974046e-06 + sys_44: 6.828633656818436e-06 + sys_45: 9.621909518221789e-06 + sys_46: 8.211077321872226e-06 + sys_47: 4.522588630807568e-06 + sys_48: -2.4338542460818716e-06 + sys_49: 2.5614497431731453e-06 + sys_50: -2.851921557332187e-07 + sys_51: 3.462668505870031e-07 + sys_52: 3.3948045387218256e-05 + sys_53: 0.00010743765255831472 + sys_54: 5.040516348405297e-05 + sys_55: -2.3407043539685785e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml new file mode 100644 index 0000000000..0f56358218 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_B.yaml @@ -0,0 +1,872 @@ +definitions: + lumi_ue: + description: underlying event and relative luminosity uncertainty + treatment: ADD + type: STAR2012LUMIUE + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2012POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc55 +bins: +- lumi_ue: 0.0004 + pol: 0.0001518 + sys_0: -1.2127084455855676e-05 + sys_1: -5.957664999508456e-05 + sys_2: 2.7792835983556266e-06 + sys_3: 3.089930002646262e-05 + sys_4: 1.9478658111803377e-05 + sys_5: 2.277245938955261e-05 + sys_6: -2.6276511959514147e-05 + sys_7: 1.7725753879980015e-05 + sys_8: 5.269626359180479e-06 + sys_9: 2.5996516360252773e-05 + sys_10: -1.8206325716033787e-05 + sys_11: 2.25014763924241e-05 + sys_12: -1.3210037767774916e-05 + sys_13: -2.591048230500817e-05 + sys_14: -3.7546158791541625e-05 + sys_15: 1.806661364784346e-05 + sys_16: 2.352014494126754e-05 + sys_17: -9.502132380287067e-06 + sys_18: 3.712929688421318e-05 + sys_19: -3.089036298191876e-05 + sys_20: -3.3724324884334954e-05 + sys_21: 1.0465883945832142e-05 + sys_22: -4.291257109250796e-05 + sys_23: -1.5331325141184897e-05 + sys_24: -6.315758080066208e-06 + sys_25: -2.8463421287935103e-06 + sys_26: -7.460887848427138e-06 + sys_27: -1.5651504153223275e-05 + sys_28: -5.71848031458718e-06 + sys_29: 9.133326565330377e-07 + sys_30: 1.4994537085636773e-06 + sys_31: -4.240110513604957e-06 + sys_32: 5.894847018667872e-06 + sys_33: -1.6798067624589292e-05 + sys_34: 1.9064850988998743e-05 + sys_35: -1.81033222345089e-05 + sys_36: -6.821270567142943e-05 + sys_37: 3.1697704784224354e-05 + sys_38: -8.599594220593082e-05 + sys_39: -0.0001062875808803047 + sys_40: 2.740073110056892e-06 + sys_41: -3.9015022169845636e-05 + sys_42: 1.5407009463274112e-06 + sys_43: -2.6284393163539713e-05 + sys_44: -1.691897548775109e-05 + sys_45: -4.5398276142423945e-05 + sys_46: -5.175067844776848e-05 + sys_47: -2.4722066585768442e-05 + sys_48: 0.005142478599469914 + sys_49: 0.0011982799339871476 + sys_50: 5.201212773248915e-05 + sys_51: -0.00025889331456843185 + sys_52: 0.00025954366401053784 + sys_53: -0.0001900451217080789 + sys_54: -0.000158292932767926 + sys_55: -1.2908291549700766e-05 +- lumi_ue: 0.00063 + pol: 0.0002706 + sys_0: -2.0018111992396568e-05 + sys_1: -7.951557999445195e-05 + sys_2: 3.71637146663128e-06 + sys_3: 4.0781934789010414e-05 + sys_4: 2.2061117285197194e-05 + sys_5: 2.6406968132590152e-05 + sys_6: -3.511109801850549e-05 + sys_7: 2.6892759289451415e-05 + sys_8: 2.8591049401961313e-06 + sys_9: 3.249248496702468e-05 + sys_10: -2.6312495806486905e-05 + sys_11: 3.210170115378651e-05 + sys_12: -1.943795024417797e-05 + sys_13: -2.68449445858172e-05 + sys_14: -5.016842353168915e-05 + sys_15: 2.622207860440507e-05 + sys_16: 2.812794587107477e-05 + sys_17: -9.071065415520804e-06 + sys_18: 3.565282359991719e-05 + sys_19: -2.947333846291381e-05 + sys_20: -2.90313274831927e-05 + sys_21: 1.4950911547980001e-05 + sys_22: -3.4602653022678356e-05 + sys_23: -2.165498489724073e-05 + sys_24: -3.161125891096009e-05 + sys_25: 2.2293798296056834e-05 + sys_26: -1.520010050833814e-05 + sys_27: -3.1574965564850344e-05 + sys_28: -9.044139551416337e-06 + sys_29: 1.3981981745848449e-05 + sys_30: 9.573451542616767e-06 + sys_31: -1.634368943778136e-05 + sys_32: 3.1874896905736055e-05 + sys_33: -0.0002768288826563623 + sys_34: 0.0005756599200745192 + sys_35: -0.0008596928538691271 + sys_36: 0.0034210491945004112 + sys_37: -0.00018774366519766437 + sys_38: 0.0003127844396941321 + sys_39: -7.875943235513845e-05 + sys_40: 2.3164931290539002e-06 + sys_41: -3.566562505146244e-05 + sys_42: -4.359575943831004e-06 + sys_43: -8.325540593207647e-06 + sys_44: -1.4062047357209339e-05 + sys_45: -1.7399139274065185e-05 + sys_46: -2.079951826116592e-05 + sys_47: -1.2749744291478302e-05 + sys_48: 0.00010646905941216662 + sys_49: -3.465834276504506e-05 + sys_50: -8.341589342791208e-06 + sys_51: 5.182377174100396e-05 + sys_52: -7.670343470468059e-05 + sys_53: 7.15069710587334e-05 + sys_54: 5.0093170217805884e-05 + sys_55: 5.932888540143401e-06 +- lumi_ue: 0.00041 + pol: 0.0001056 + sys_0: -2.2181341053520078e-05 + sys_1: -9.612587642809677e-05 + sys_2: 5.596961930973682e-06 + sys_3: 4.739659387857984e-05 + sys_4: 2.7059498076348584e-05 + sys_5: 3.068402087386519e-05 + sys_6: -4.130223640461054e-05 + sys_7: 3.2389797303754585e-05 + sys_8: 2.2478946479902407e-06 + sys_9: 3.57067589851148e-05 + sys_10: -2.966100666689447e-05 + sys_11: 3.4964198563011166e-05 + sys_12: -2.2684805015223578e-05 + sys_13: -3.032608154689991e-05 + sys_14: -5.5233879079372146e-05 + sys_15: 2.2270607804600217e-05 + sys_16: 3.2515290246672375e-05 + sys_17: -7.756071707945256e-06 + sys_18: 4.2651447666987744e-05 + sys_19: -3.047839498620652e-05 + sys_20: -3.367839147235488e-05 + sys_21: 1.7381576302533522e-05 + sys_22: -3.532169362346268e-05 + sys_23: -1.1436595872990834e-05 + sys_24: -3.451208089838448e-05 + sys_25: 4.8459105804879416e-05 + sys_26: -1.451137030442272e-05 + sys_27: -2.1758173318396983e-06 + sys_28: -6.438201666149367e-05 + sys_29: 4.81632257425145e-05 + sys_30: 1.026541711689696e-05 + sys_31: -3.090118111584637e-05 + sys_32: 5.852609408234765e-05 + sys_33: 0.0031746781946461254 + sys_34: -0.0005850670630773213 + sys_35: 0.000423861500550018 + sys_36: 0.0005022848370662626 + sys_37: -0.00010810866931990289 + sys_38: 0.00019963943653497661 + sys_39: -7.89887339967635e-05 + sys_40: 3.0726522556663133e-06 + sys_41: -2.867580196827301e-05 + sys_42: -8.878358414157323e-06 + sys_43: -1.3588075368749703e-05 + sys_44: -1.4764568562391291e-05 + sys_45: -2.430769419049986e-05 + sys_46: -2.652699038064021e-05 + sys_47: -1.3266742417155449e-05 + sys_48: 7.192681181811588e-05 + sys_49: -4.5559589444234784e-05 + sys_50: -1.1910030940676182e-05 + sys_51: 4.6695810470530483e-05 + sys_52: -5.78944256300869e-05 + sys_53: 6.762506176550286e-05 + sys_54: 5.4002058232486205e-05 + sys_55: 2.3163622124108964e-07 +- lumi_ue: 0.00043 + pol: 0.0001914 + sys_0: -2.6868134268552403e-05 + sys_1: -0.00012028914346191802 + sys_2: 7.104362544365643e-06 + sys_3: 6.005944609656143e-05 + sys_4: 3.2202842669187874e-05 + sys_5: 4.255272440013024e-05 + sys_6: -5.242060715054587e-05 + sys_7: 3.874024759842747e-05 + sys_8: 5.651489102001908e-06 + sys_9: 4.499377951629146e-05 + sys_10: -3.647595786466872e-05 + sys_11: 4.703790680895871e-05 + sys_12: -2.9218917082870697e-05 + sys_13: -3.915490070408165e-05 + sys_14: -6.8611286546156e-05 + sys_15: 2.819727236317753e-05 + sys_16: 4.355584248247412e-05 + sys_17: -1.1942109059400406e-05 + sys_18: 5.5373305687680796e-05 + sys_19: -4.21949072312314e-05 + sys_20: -3.857592157925405e-05 + sys_21: 2.419695428508549e-05 + sys_22: -5.037347553133987e-05 + sys_23: -1.4272288300842538e-06 + sys_24: -1.5448479209795606e-05 + sys_25: 4.818261018831919e-05 + sys_26: -7.111709115159103e-06 + sys_27: 2.3536831213550473e-05 + sys_28: -0.00010835784626834168 + sys_29: 3.5503885241176846e-05 + sys_30: -4.655622478312385e-05 + sys_31: 1.2060283887611337e-05 + sys_32: 3.925130884772436e-05 + sys_33: -0.0007954945660321247 + sys_34: -0.0029953753483943435 + sys_35: 0.0011396733695416372 + sys_36: 0.0007650822467188183 + sys_37: -0.00016076248727933172 + sys_38: 0.0002860087548112817 + sys_39: -0.00010589546167657479 + sys_40: 3.873692538933127e-06 + sys_41: -3.614409195573011e-05 + sys_42: -1.097488899072661e-05 + sys_43: -2.1070028755499524e-05 + sys_44: -2.1395050833656523e-05 + sys_45: -3.594466245406019e-05 + sys_46: -3.309615433165035e-05 + sys_47: -2.146679763154302e-05 + sys_48: 8.62381197520356e-05 + sys_49: -6.443141716152016e-05 + sys_50: -2.1180285778780408e-05 + sys_51: 5.9819532493803565e-05 + sys_52: -8.670694161447391e-05 + sys_53: 8.99192514784058e-05 + sys_54: 6.681785106569744e-05 + sys_55: 4.4476088388437e-06 +- lumi_ue: 0.00035 + pol: 0.0004158 + sys_0: -3.146916369367761e-05 + sys_1: -0.00013152602564072574 + sys_2: 1.002332981231254e-05 + sys_3: 6.44103317707453e-05 + sys_4: 3.5781691295527646e-05 + sys_5: 4.686833016557759e-05 + sys_6: -5.9212180707533255e-05 + sys_7: 4.3258317126835336e-05 + sys_8: 6.840542615436817e-06 + sys_9: 4.812687732649776e-05 + sys_10: -3.835014513698797e-05 + sys_11: 4.981472777704831e-05 + sys_12: -3.390231416791449e-05 + sys_13: -4.564872097787553e-05 + sys_14: -8.046088531480471e-05 + sys_15: 3.1463974436098414e-05 + sys_16: 5.227064206662266e-05 + sys_17: -9.872864997213191e-06 + sys_18: 6.890154619281126e-05 + sys_19: -5.0693624476837005e-05 + sys_20: -4.8879913136013943e-05 + sys_21: 2.8037169237993688e-05 + sys_22: -6.26556958873012e-05 + sys_23: 1.6163636796588804e-06 + sys_24: -2.937357608318606e-06 + sys_25: 1.8225675658205307e-05 + sys_26: 2.381166737868249e-06 + sys_27: 2.616990703043371e-05 + sys_28: -9.593628382892183e-05 + sys_29: 1.4304540608881487e-05 + sys_30: -6.744200998313431e-05 + sys_31: 5.079375003714347e-05 + sys_32: -3.417716889713626e-05 + sys_33: -6.71962582078499e-05 + sys_34: 0.0001658208252682502 + sys_35: -0.00011429387899065237 + sys_36: -0.00033370220974283357 + sys_37: -0.0037794743930049594 + sys_38: 0.0012706988267081106 + sys_39: -0.00013317327672413473 + sys_40: 7.240454022274582e-06 + sys_41: -4.9863753871597065e-05 + sys_42: -1.3017327537571256e-05 + sys_43: -3.0039689296336458e-05 + sys_44: -2.3827529570238705e-05 + sys_45: -4.818785394003976e-05 + sys_46: -4.762144456975466e-05 + sys_47: -2.2707378603661508e-05 + sys_48: 0.00010523387048429387 + sys_49: -9.87235779143571e-05 + sys_50: -3.245492222500528e-05 + sys_51: 8.696530919408532e-05 + sys_52: -0.0001544521606742815 + sys_53: 0.00014551297302658412 + sys_54: 9.224907238193663e-05 + sys_55: 8.851574082841761e-06 +- lumi_ue: 0.00036 + pol: 0.000132 + sys_0: -4.638851738241806e-05 + sys_1: -0.00019112540354769848 + sys_2: 1.4498739142810215e-05 + sys_3: 9.306568790614331e-05 + sys_4: 5.083771818357061e-05 + sys_5: 6.685072527938489e-05 + sys_6: -8.692259315614893e-05 + sys_7: 6.688226420879367e-05 + sys_8: 6.241054221820374e-06 + sys_9: 6.829918010969073e-05 + sys_10: -6.103462713002867e-05 + sys_11: 7.43570579115376e-05 + sys_12: -4.985395939856702e-05 + sys_13: -7.329862519842332e-05 + sys_14: -0.00011705702107071732 + sys_15: 4.72400601613547e-05 + sys_16: 7.662057876477673e-05 + sys_17: -1.5094388262021566e-05 + sys_18: 0.00010298193948187723 + sys_19: -7.064187113073645e-05 + sys_20: -6.345326758118845e-05 + sys_21: 4.155226165361115e-05 + sys_22: -9.59852018166844e-05 + sys_23: 2.221622515325068e-06 + sys_24: 7.901304046509404e-07 + sys_25: 7.860395973328035e-06 + sys_26: 4.920956254692479e-06 + sys_27: 1.7545242163643358e-05 + sys_28: -8.87380635829207e-05 + sys_29: -1.3965910804533864e-05 + sys_30: -0.0001091330313626029 + sys_31: 0.0001019441624525807 + sys_32: -0.00010705626901419507 + sys_33: -6.729239462136574e-05 + sys_34: 0.00020254013820089845 + sys_35: 1.842232823113791e-05 + sys_36: -0.0002566484096554202 + sys_37: 0.001311895215772311 + sys_38: 0.003881867463657462 + sys_39: -0.00019615785883928707 + sys_40: 8.642421350314275e-06 + sys_41: -8.635770897690556e-05 + sys_42: -1.5406199373401453e-05 + sys_43: -4.907404001092232e-05 + sys_44: -3.178763301088242e-05 + sys_45: -6.400262252085319e-05 + sys_46: -6.240311053139189e-05 + sys_47: -2.613602507550813e-05 + sys_48: 0.00013999179136072717 + sys_49: -0.00013457719124015558 + sys_50: -4.512628657734718e-05 + sys_51: 0.00012944013767087932 + sys_52: -0.0002605875296010231 + sys_53: 0.000151652926494242 + sys_54: 9.612603348094014e-05 + sys_55: 3.9607873813037775e-06 +- lumi_ue: 0.0003 + pol: 0.0008448 + sys_0: -5.183660718448052e-05 + sys_1: -0.00023006788227953915 + sys_2: 1.5689952454244724e-05 + sys_3: 0.00011135690961012933 + sys_4: 6.074489751402766e-05 + sys_5: 8.557254293659225e-05 + sys_6: -0.00010569729561656225 + sys_7: 8.299788902283283e-05 + sys_8: 7.992279835438265e-06 + sys_9: 9.793535044657836e-05 + sys_10: -6.9616339593195e-05 + sys_11: 0.00010019453603858331 + sys_12: -6.748845366547604e-05 + sys_13: -9.803445495975316e-05 + sys_14: -0.00016640063399366763 + sys_15: 7.387633584623285e-05 + sys_16: 0.00010881412150404525 + sys_17: -2.0327639121604094e-05 + sys_18: 0.0001531894341501628 + sys_19: -9.33515497385915e-05 + sys_20: -4.217088577165028e-05 + sys_21: 7.302945907681256e-05 + sys_22: -0.00015541870366648857 + sys_23: 1.4815026075709556e-06 + sys_24: 1.5094199236147984e-06 + sys_25: 1.5856464327113192e-06 + sys_26: 3.1992547458811324e-06 + sys_27: 3.0814805297533927e-07 + sys_28: -4.113474408939066e-05 + sys_29: -7.395451975584419e-06 + sys_30: -8.27476725793594e-05 + sys_31: 0.00013058224024709437 + sys_32: -0.00015892237948139602 + sys_33: -2.7688636175115547e-05 + sys_34: 0.0001376633418725308 + sys_35: 0.00016011651807652027 + sys_36: -3.0626083731431234e-05 + sys_37: 8.684362909124114e-05 + sys_38: -0.0003869804568953357 + sys_39: -0.00033632997747406454 + sys_40: 1.756323613061286e-05 + sys_41: -0.0001739783759082287 + sys_42: -5.389398149306481e-06 + sys_43: -7.686539165976608e-05 + sys_44: -5.4755340682826554e-05 + sys_45: -0.00011953007979451648 + sys_46: -0.00010214357897948145 + sys_47: -5.145654422839815e-05 + sys_48: 0.00045647241528126904 + sys_49: -0.000587762756423175 + sys_50: -0.0002736969327242057 + sys_51: 0.0011761370688255573 + sys_52: -0.004697523485983041 + sys_53: 0.000735019052936583 + sys_54: -0.0005844483109360392 + sys_55: 1.6674046581841498e-07 +- lumi_ue: 0.00031 + pol: 0.0001452 + sys_0: -7.690335906649783e-05 + sys_1: -0.0003431269756041771 + sys_2: 1.9730800741735362e-05 + sys_3: 0.00016932207960146714 + sys_4: 9.87633966444492e-05 + sys_5: 0.00013067476919974874 + sys_6: -0.00016568086257604192 + sys_7: 0.00013756910145646463 + sys_8: 1.045241200120818e-05 + sys_9: 0.0001868619675493475 + sys_10: -6.822518968672986e-05 + sys_11: 0.00017362476301863972 + sys_12: -0.00011133199562202643 + sys_13: -0.00019342842961961014 + sys_14: -0.0003329363180877857 + sys_15: 0.0001865750288269762 + sys_16: 0.00021431509581689443 + sys_17: -5.0906209627177626e-05 + sys_18: 0.0003433117805184208 + sys_19: -0.0001678089189279003 + sys_20: 0.0002263015856048835 + sys_21: 0.00028190120339297676 + sys_22: -0.000740422538472076 + sys_23: 7.58861947564019e-07 + sys_24: 1.1498530231525713e-06 + sys_25: -5.514196021554693e-07 + sys_26: 1.4174204876381829e-06 + sys_27: -7.714749948618252e-06 + sys_28: -1.6037005999771273e-05 + sys_29: -2.441649715607529e-06 + sys_30: -3.303318566996576e-05 + sys_31: 7.942219172126599e-05 + sys_32: -0.0001968530380955259 + sys_33: -2.587351606240863e-05 + sys_34: 0.00013257945774272628 + sys_35: 0.00022809657087743336 + sys_36: 1.1030139501575696e-05 + sys_37: 3.1315806799135794e-05 + sys_38: -0.00016240340642014413 + sys_39: -0.003822381479019702 + sys_40: 0.00030810125707134313 + sys_41: -0.0048037262611431 + sys_42: 0.0012171527487384174 + sys_43: 0.001479805809247037 + sys_44: 0.00021203997148477692 + sys_45: 0.00034860242410442486 + sys_46: 0.00021590727189540795 + sys_47: 7.981892435827837e-05 + sys_48: -9.97196537177484e-05 + sys_49: 9.106463484421006e-05 + sys_50: 3.819590565581337e-05 + sys_51: -8.659106281303526e-05 + sys_52: 0.00034467886120977527 + sys_53: 0.00032161899995676314 + sys_54: 0.0001720101266746872 + sys_55: 4.202081529981001e-06 +- lumi_ue: 0.00028 + pol: 6.6e-05 + sys_0: -0.00010830036565284194 + sys_1: -0.00046158532546831244 + sys_2: 1.63234304045056e-05 + sys_3: 0.00024083057821001002 + sys_4: 0.0001682390425538004 + sys_5: 0.00021808972279365442 + sys_6: -0.0002705390479992354 + sys_7: 0.00025125677720830243 + sys_8: 2.0477825202956095e-05 + sys_9: 0.0005050464927237331 + sys_10: 0.00021700766364686757 + sys_11: 0.0003976688699745107 + sys_12: -0.0002781309821144815 + sys_13: -0.0007778394550957084 + sys_14: -0.004429482222680756 + sys_15: 0.008431954518138163 + sys_16: -0.00045238567703627077 + sys_17: 5.436157727195215e-05 + sys_18: -0.0003269136204794761 + sys_19: -4.3491259750458245e-05 + sys_20: -0.0009642296130428406 + sys_21: -0.00037719137185545265 + sys_22: 0.0001563832022088008 + sys_23: 2.7977449630640567e-07 + sys_24: 6.574964924842587e-07 + sys_25: -8.036754876905825e-07 + sys_26: 4.6073804868718623e-07 + sys_27: -6.645141629324895e-06 + sys_28: -4.635561661431421e-06 + sys_29: -4.1852239121450867e-07 + sys_30: -8.257250306232652e-06 + sys_31: 2.0618980931827476e-05 + sys_32: -8.44875523518812e-05 + sys_33: -2.389454264861868e-05 + sys_34: 0.00012002866510516857 + sys_35: 0.00023921613773104296 + sys_36: 2.706154874858223e-05 + sys_37: 1.116328730760508e-05 + sys_38: -6.79501843339593e-05 + sys_39: 0.00026216837975767313 + sys_40: -1.2857741588415468e-05 + sys_41: 0.0001753436122057131 + sys_42: -1.6842185566242286e-05 + sys_43: 2.1765773346557578e-05 + sys_44: 1.0775001472921124e-05 + sys_45: 2.7029415970584646e-05 + sys_46: 2.284534270085236e-05 + sys_47: 8.974974679228816e-06 + sys_48: -2.569627792969285e-06 + sys_49: -4.260395206300875e-06 + sys_50: 4.12574916382849e-06 + sys_51: -2.3512023269616617e-06 + sys_52: 0.00014253763721466277 + sys_53: 0.0003341167767806979 + sys_54: 0.00017721143872266059 + sys_55: 1.964734651286989e-06 +- lumi_ue: 0.00026 + pol: 0.001056 + sys_0: -0.00016677495160342707 + sys_1: -0.0008153614143477576 + sys_2: 1.4580174709754416e-05 + sys_3: 0.0004845344726404358 + sys_4: 0.0004234444121210454 + sys_5: 0.0005536682896418401 + sys_6: -0.00077405535167504 + sys_7: 0.0010125308605708195 + sys_8: 9.05955901295324e-05 + sys_9: 0.01358984519226675 + sys_10: -0.004264186632188474 + sys_11: -0.0010417524082603517 + sys_12: 0.00047632027284714567 + sys_13: 0.0003539354443003931 + sys_14: 0.00038076140395991426 + sys_15: -0.00034698068018529973 + sys_16: -5.675179899154153e-05 + sys_17: 3.1113630645574284e-06 + sys_18: -4.728759223658699e-05 + sys_19: -0.00011408379656307262 + sys_20: -0.0007733538451369094 + sys_21: -0.00023931949794576493 + sys_22: 6.365306310428644e-05 + sys_23: 6.054197873932917e-08 + sys_24: 3.2867635983133407e-07 + sys_25: -6.037652338776566e-07 + sys_26: 4.1468630094452896e-08 + sys_27: -5.071809055251676e-06 + sys_28: -1.5143889314388503e-06 + sys_29: 6.541216202716219e-08 + sys_30: -1.1746715213126177e-06 + sys_31: 2.5445813549031697e-06 + sys_32: -2.0469630686010585e-05 + sys_33: -1.2992077427583878e-05 + sys_34: 5.1621221362104414e-05 + sys_35: 8.700009773652752e-05 + sys_36: 2.5838217530499404e-06 + sys_37: 1.2077712321838433e-05 + sys_38: -4.340002241945305e-05 + sys_39: 0.00011091175228939813 + sys_40: -5.001170320392066e-06 + sys_41: 6.5010875417251e-05 + sys_42: -4.157333870211173e-06 + sys_43: 1.030792232647002e-05 + sys_44: 5.2617090821250895e-06 + sys_45: 1.024409919469864e-05 + sys_46: 6.134285883109986e-06 + sys_47: 1.943680555077846e-06 + sys_48: 1.0152172562154826e-05 + sys_49: -1.876966416738286e-05 + sys_50: -1.935620416378778e-06 + sys_51: 1.768149324665849e-05 + sys_52: 9.267601807812078e-05 + sys_53: 0.0003536972200246737 + sys_54: 0.0001785885290616871 + sys_55: 2.3870146229933876e-06 +- lumi_ue: 0.00026 + pol: 0.001353 + sys_0: -0.00033678431132152354 + sys_1: -0.002523670695184155 + sys_2: 7.022843477167536e-05 + sys_3: 0.002941216122292027 + sys_4: 0.023938218028915756 + sys_5: -0.0006857708214051645 + sys_6: 0.0005043725456326166 + sys_7: -0.0004371914509472468 + sys_8: -2.703499333781075e-05 + sys_9: -0.0010654089864628694 + sys_10: -0.0015071342671947503 + sys_11: -0.00016693064895259127 + sys_12: 0.00010290820287829267 + sys_13: 8.004256690985314e-05 + sys_14: 0.000111962310099725 + sys_15: -0.00010865509972290942 + sys_16: -1.2443730467349032e-05 + sys_17: -3.95117154466768e-06 + sys_18: 2.738643127889092e-06 + sys_19: -9.500074306655581e-05 + sys_20: -0.0005573533000873632 + sys_21: -0.0001654352708507948 + sys_22: 3.2087118376040015e-05 + sys_23: 1.0041559010569772e-08 + sys_24: 1.3562247246119487e-07 + sys_25: -2.751176883146805e-07 + sys_26: -1.5407564663637097e-08 + sys_27: -2.288912210299452e-06 + sys_28: -2.836292010038103e-07 + sys_29: 7.023135495017804e-08 + sys_30: 2.2060001015654764e-07 + sys_31: -7.804648679007234e-07 + sys_32: -2.0589798275247986e-06 + sys_33: -4.315572760382127e-06 + sys_34: 1.225254109541577e-05 + sys_35: 1.4283980219283094e-05 + sys_36: -3.0187309416312804e-06 + sys_37: 5.410816927291438e-06 + sys_38: -1.7305361541693747e-05 + sys_39: 4.031238179584204e-05 + sys_40: -2.5436070724597232e-06 + sys_41: 2.7761904383470476e-06 + sys_42: 7.864509074118273e-06 + sys_43: 1.2095608963273249e-05 + sys_44: 6.1769126990024e-06 + sys_45: 9.916669923839469e-06 + sys_46: 9.171355003610673e-06 + sys_47: 3.905145532960695e-06 + sys_48: -2.9751296113880195e-06 + sys_49: 1.4222083826092992e-06 + sys_50: 4.4363002260479723e-07 + sys_51: 5.355216135293117e-07 + sys_52: 2.6783883136333852e-05 + sys_53: 8.862616698716669e-05 + sys_54: 4.2062318472610274e-05 + sys_55: 1.615685814096234e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml new file mode 100644 index 0000000000..7d41c7e4a7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_C.yaml @@ -0,0 +1,814 @@ +definitions: + lumi_ue: + description: underlying event and relative luminosity uncertainty + treatment: ADD + type: STAR2012LUMIUE + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2012POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc55 +bins: +- lumi_ue: 0.00026 + pol: 0.0003828 + sys_0: -1.0152837883335671e-05 + sys_1: -6.401365200958545e-05 + sys_2: 6.050958610979661e-06 + sys_3: 2.7729514871357827e-05 + sys_4: 1.057154844739684e-05 + sys_5: 2.1400773763299003e-05 + sys_6: -3.089873711945446e-05 + sys_7: 2.7420994060287696e-05 + sys_8: -9.366267256311292e-07 + sys_9: 2.6039540126477757e-05 + sys_10: -2.259314941172682e-05 + sys_11: 4.2386582644682234e-05 + sys_12: -2.1767689617535626e-05 + sys_13: -4.017869524895418e-05 + sys_14: -0.00010967515780824019 + sys_15: 2.399017121918918e-05 + sys_16: 0.0003058367754900217 + sys_17: -0.008487809895745952 + sys_18: -0.00023708266182735578 + sys_19: 0.00020865888331487306 + sys_20: 9.556047814114716e-05 + sys_21: -0.00010467445294253024 + sys_22: 3.998880964436019e-05 + sys_23: -5.561719000921318e-06 + sys_24: -3.430151823163224e-06 + sys_25: -6.836109888945931e-07 + sys_26: -2.627603182662234e-06 + sys_27: -5.923855059039625e-06 + sys_28: -2.5760599150698546e-06 + sys_29: 3.630221943261399e-07 + sys_30: 3.6299178015012404e-07 + sys_31: -1.1553986622680641e-06 + sys_32: 1.235919500679438e-06 + sys_33: -1.2409988789615508e-06 + sys_34: 1.5716731395362178e-06 + sys_35: -3.335580715587673e-06 + sys_36: -4.9294027192362044e-06 + sys_37: 1.4212571475733675e-06 + sys_38: -4.7467619413589115e-06 + sys_39: 7.601441286618729e-05 + sys_40: 2.8294447702256826e-06 + sys_41: -5.811982444409558e-06 + sys_42: 1.7935508766208135e-05 + sys_43: 3.90430609278649e-06 + sys_44: 1.6335218482831133e-05 + sys_45: 1.0623368360464057e-05 + sys_46: 9.975554388651377e-06 + sys_47: 1.2212925523413466e-06 + sys_48: -8.860375721277963e-06 + sys_49: 1.0112152266891164e-05 + sys_50: 1.8081514575783671e-06 + sys_51: -6.075550235980924e-06 + sys_52: 3.868596743102143e-06 + sys_53: -7.340037791467812e-06 + sys_54: -7.867651899695185e-06 + sys_55: -1.8373881288755728e-06 +- lumi_ue: 0.00063 + pol: 3.96e-05 + sys_0: -4.495113347760055e-05 + sys_1: -0.00019723950108585354 + sys_2: 1.1571645759929633e-05 + sys_3: 9.113051998677181e-05 + sys_4: 4.4500282281509525e-05 + sys_5: 8.277593162849766e-05 + sys_6: -9.027332120632918e-05 + sys_7: 6.528945300357063e-05 + sys_8: 5.2776235464783785e-06 + sys_9: 7.264109751551721e-05 + sys_10: -6.553074958801674e-05 + sys_11: 0.00010916920164948725 + sys_12: -5.7041516464915686e-05 + sys_13: -8.734975822087886e-05 + sys_14: -0.0002042483109870186 + sys_15: 1.776979009616431e-05 + sys_16: 0.00011510791408295705 + sys_17: -7.019541516786383e-05 + sys_18: 0.00020945663129868407 + sys_19: -0.0002961357863148266 + sys_20: -0.00017437020998266247 + sys_21: 0.0002776954906966385 + sys_22: -0.0004023161847676019 + sys_23: -5.5123244001782e-06 + sys_24: -8.9753509709946e-06 + sys_25: 8.340301483509511e-06 + sys_26: -4.516667085225934e-06 + sys_27: -9.967193912031692e-06 + sys_28: -3.983957856469077e-06 + sys_29: 5.969676844870005e-06 + sys_30: 3.3509889121580786e-06 + sys_31: -6.584811787366473e-06 + sys_32: 1.0816672496248541e-05 + sys_33: -7.1323700633362255e-06 + sys_34: 5.955103120147233e-06 + sys_35: -2.9352523790801127e-05 + sys_36: -2.214985787961432e-05 + sys_37: 1.5913759175732832e-05 + sys_38: -4.339573452100435e-05 + sys_39: -0.0042147869941808885 + sys_40: -0.0019549037908285884 + sys_41: 0.003963239403309215 + sys_42: 0.002375172745585104 + sys_43: 0.00027779394185621235 + sys_44: 0.0005314956196176203 + sys_45: 0.0001236187665880655 + sys_46: 0.00010119995450967415 + sys_47: 5.3623205251718736e-05 + sys_48: -7.141822230539672e-05 + sys_49: 8.207419097469647e-05 + sys_50: 1.492833222549559e-05 + sys_51: -5.468782807896902e-05 + sys_52: 5.5573623995965194e-05 + sys_53: -7.85975839570097e-05 + sys_54: -6.750577321389893e-05 + sys_55: -4.261546175397375e-06 +- lumi_ue: 0.00074 + pol: 0.0002838 + sys_0: -2.8208423497214044e-05 + sys_1: -0.0001296214494998226 + sys_2: 1.106076359370503e-05 + sys_3: 6.011371832736453e-05 + sys_4: 2.904922696297081e-05 + sys_5: 5.586325629417675e-05 + sys_6: -5.79164937813366e-05 + sys_7: 4.448209388818208e-05 + sys_8: 5.578229179589497e-06 + sys_9: 4.6463676578901274e-05 + sys_10: -4.034650847939993e-05 + sys_11: 7.683853896225762e-05 + sys_12: -3.306467824838413e-05 + sys_13: -5.272382278705198e-05 + sys_14: -0.00014261992063575166 + sys_15: 9.28890429710147e-07 + sys_16: 7.559899960428745e-05 + sys_17: -4.4505637087405226e-05 + sys_18: 0.0001305551177643821 + sys_19: -0.00023178053794131918 + sys_20: -9.67850557070445e-05 + sys_21: 0.00021756038399333715 + sys_22: -0.00015738271863394968 + sys_23: -2.441109132887584e-06 + sys_24: -8.395625833192957e-06 + sys_25: 1.2701550840269684e-05 + sys_26: -3.638258142572431e-06 + sys_27: 4.117118291756392e-07 + sys_28: -1.7772827950742805e-05 + sys_29: 1.1171025853350348e-05 + sys_30: 1.1360687025107547e-06 + sys_31: -7.076142839114915e-06 + sys_32: 9.364685785291302e-06 + sys_33: -6.886945040875237e-06 + sys_34: 7.950200272153174e-06 + sys_35: -2.4678178050355384e-05 + sys_36: -1.90151458463938e-05 + sys_37: 1.4357207682140233e-05 + sys_38: -3.682305685895156e-05 + sys_39: -0.0008340815362974668 + sys_40: -0.00018340765483818795 + sys_41: 0.00026489978902202873 + sys_42: -0.0006394194285700728 + sys_43: -3.738922712209505e-05 + sys_44: -0.006055690203220315 + sys_45: 0.0006311207432568316 + sys_46: 0.00022931716128035267 + sys_47: 0.00012698635281516868 + sys_48: -5.489075674834433e-05 + sys_49: 8.893099458188388e-05 + sys_50: 1.5300372972038487e-05 + sys_51: -5.045941749138125e-05 + sys_52: 4.4204133415430185e-05 + sys_53: -6.291999267919037e-05 + sys_54: -6.514078312172478e-05 + sys_55: -1.2927391529448429e-06 +- lumi_ue: 0.00078 + pol: 0.0003234 + sys_0: -3.7245732577407096e-05 + sys_1: -0.00017688996836566 + sys_2: 1.4253649201988057e-05 + sys_3: 7.914405894696625e-05 + sys_4: 4.664856844953643e-05 + sys_5: 7.375864613808391e-05 + sys_6: -7.524290761288564e-05 + sys_7: 5.9670945950967415e-05 + sys_8: 5.541273549616841e-06 + sys_9: 6.769749200661809e-05 + sys_10: -5.785021192356905e-05 + sys_11: 0.00010893593641156462 + sys_12: -4.94036689658947e-05 + sys_13: -7.825856963811015e-05 + sys_14: -0.00020040676780821903 + sys_15: 9.609023581205882e-06 + sys_16: 0.00011864756608644415 + sys_17: -6.705161393443788e-05 + sys_18: 0.0001966943055857322 + sys_19: -0.0003149961552391067 + sys_20: -0.0001641718938563111 + sys_21: 0.00030166574214749445 + sys_22: -0.0003546968065238325 + sys_23: -1.4731279243305783e-07 + sys_24: -3.234218715169826e-06 + sys_25: 1.1122597126233594e-05 + sys_26: -1.2913568573429015e-06 + sys_27: 5.244694968448883e-06 + sys_28: -2.7044368650192923e-05 + sys_29: 9.37028470299983e-06 + sys_30: -1.1469166769392737e-05 + sys_31: 3.428004637200014e-06 + sys_32: 5.260891711948639e-06 + sys_33: -8.106727032489768e-06 + sys_34: 1.1369320580287e-05 + sys_35: -3.0298098624478566e-05 + sys_36: -2.0875091599194002e-05 + sys_37: 2.0626992196058087e-05 + sys_38: -5.6995344171434623e-05 + sys_39: -0.0023417283138067336 + sys_40: -0.0005191750716800504 + sys_41: 0.0006372918770128616 + sys_42: -0.005869178899793616 + sys_43: 0.000724517506639904 + sys_44: 0.000935699028670827 + sys_45: 0.00013305589411112266 + sys_46: 0.00014674317521564442 + sys_47: 6.717452165255498e-05 + sys_48: -5.9481189353097684e-05 + sys_49: 8.661514745695462e-05 + sys_50: 1.6239651181974897e-05 + sys_51: -5.5458481669323184e-05 + sys_52: 6.023605591727822e-05 + sys_53: -7.636754501750808e-05 + sys_54: -6.370996316790414e-05 + sys_55: -1.134058389151429e-06 +- lumi_ue: 0.00081 + pol: 0.0003036 + sys_0: -4.4726586672031056e-05 + sys_1: -0.0002232049836048126 + sys_2: 1.930965709267777e-05 + sys_3: 0.00010290587178072379 + sys_4: 5.5472378566763874e-05 + sys_5: 9.302606085895645e-05 + sys_6: -0.00010509424138886073 + sys_7: 8.448592848368345e-05 + sys_8: 6.681249469923321e-06 + sys_9: 8.748120209809356e-05 + sys_10: -8.104593924458233e-05 + sys_11: 0.00015016781480677266 + sys_12: -6.988422941957524e-05 + sys_13: -0.0001220176042869151 + sys_14: -0.0003343053167107251 + sys_15: 4.9829441943693725e-05 + sys_16: 0.0002790979397426868 + sys_17: -0.0001752282147043949 + sys_18: 0.0007972545576751394 + sys_19: -0.0017058534866454666 + sys_20: -0.0015932073068241149 + sys_21: 0.0072652903453138025 + sys_22: 0.0003451134191933124 + sys_23: 4.5324416453712426e-07 + sys_24: -3.146028072377875e-07 + sys_25: 3.7524967551103017e-06 + sys_26: 9.160440344990903e-07 + sys_27: 5.2035020203985726e-06 + sys_28: -2.395356118532009e-05 + sys_29: 1.632315423860819e-06 + sys_30: -1.6799444588823624e-05 + sys_31: 1.2268602954708336e-05 + sys_32: -6.169823146187268e-06 + sys_33: -5.07332947247747e-06 + sys_34: 1.2323832101718994e-05 + sys_35: -1.154307347310641e-05 + sys_36: -1.103728924609777e-05 + sys_37: 1.409950119821418e-05 + sys_38: -4.309680777393682e-05 + sys_39: 0.0005812536568989475 + sys_40: 6.329227579911895e-05 + sys_41: -4.479621113276065e-05 + sys_42: 0.0001827808607415231 + sys_43: 3.385297515458909e-05 + sys_44: 0.000156614889639542 + sys_45: 3.7020331130199915e-05 + sys_46: 4.3117150420162634e-05 + sys_47: 2.185789521918538e-05 + sys_48: -3.1663025407221416e-05 + sys_49: 4.7667126117050176e-05 + sys_50: 1.077222091398273e-05 + sys_51: -3.3807833940921354e-05 + sys_52: 4.886062987420653e-05 + sys_53: -4.4287020636003795e-05 + sys_54: -3.6385879460265136e-05 + sys_55: -4.43108938012244e-06 +- lumi_ue: 0.00052 + pol: 0.001023 + sys_0: -3.6851051832564245e-05 + sys_1: -0.00018315262229772047 + sys_2: 8.0475389742328e-06 + sys_3: 8.747458576762811e-05 + sys_4: 4.604382030010949e-05 + sys_5: 7.886868574250886e-05 + sys_6: -9.323578490732509e-05 + sys_7: 7.375594648142209e-05 + sys_8: 7.5359084570723e-06 + sys_9: 7.92409542307723e-05 + sys_10: -7.591651260195308e-05 + sys_11: 0.00012618803916217692 + sys_12: -7.129545877318187e-05 + sys_13: -0.00012344133286351893 + sys_14: -0.0003069188799293198 + sys_15: 5.051279960383146e-05 + sys_16: 0.00028037240016759045 + sys_17: -0.00017683354152860366 + sys_18: 0.001218209243814843 + sys_19: -0.007410783703376809 + sys_20: 0.0019344999026569502 + sys_21: -0.001442637388968034 + sys_22: 0.00023211272579884952 + sys_23: 5.574940428201582e-07 + sys_24: 2.901768648872038e-07 + sys_25: 1.7061436152833473e-06 + sys_26: 1.3155372545848695e-06 + sys_27: 3.997787115229357e-06 + sys_28: -2.0283234061487872e-05 + sys_29: -3.2587125083844783e-06 + sys_30: -2.951718138146688e-05 + sys_31: 2.631480632221876e-05 + sys_32: -2.5709121848081894e-05 + sys_33: -2.806091602457141e-06 + sys_34: 1.7361818416981875e-05 + sys_35: 9.266698093410079e-06 + sys_36: -3.873823483687513e-06 + sys_37: 1.1374213908359506e-05 + sys_38: -4.0733682499235415e-05 + sys_39: 0.00036730140765116906 + sys_40: 3.424113414049873e-05 + sys_41: 2.689042500845868e-05 + sys_42: 9.397623269863045e-05 + sys_43: 4.1095830477444774e-05 + sys_44: 9.33712456608814e-05 + sys_45: 3.28121718555375e-05 + sys_46: 3.2824560979177996e-05 + sys_47: 1.3752222689708274e-05 + sys_48: -2.5620558114711776e-05 + sys_49: 3.2323006494406015e-05 + sys_50: 1.1588531283972245e-05 + sys_51: -2.3778375707028997e-05 + sys_52: 5.2063357245076694e-05 + sys_53: -1.7597588331842666e-05 + sys_54: -1.185055537897645e-05 + sys_55: -9.56654039768393e-07 +- lumi_ue: 0.00053 + pol: 0.000297 + sys_0: -8.127487183620857e-05 + sys_1: -0.0003817356735135584 + sys_2: 2.1028038340830418e-05 + sys_3: 0.00018673122058425777 + sys_4: 0.00010170773515022082 + sys_5: 0.00016651804853377338 + sys_6: -0.00021419020818398604 + sys_7: 0.00017029952579432518 + sys_8: 2.4277265425752085e-05 + sys_9: 0.0002148079674111349 + sys_10: -0.00019903795691271766 + sys_11: 0.00035159399247598993 + sys_12: -0.00022247436613809278 + sys_13: -0.0006153914336301902 + sys_14: -0.008684383189447458 + sys_15: -0.004548153366345827 + sys_16: -0.0003883983927366731 + sys_17: 8.834479934176125e-05 + sys_18: -0.00033035923383176175 + sys_19: 0.00023989039451241447 + sys_20: 7.237830580567742e-05 + sys_21: -0.00015918690767662707 + sys_22: 0.00011363070983500269 + sys_23: 2.894132312130119e-07 + sys_24: 4.104267965409179e-07 + sys_25: 1.3682951907764356e-07 + sys_26: 7.285139226635775e-07 + sys_27: -1.8899185255832693e-06 + sys_28: -9.263669298431824e-06 + sys_29: -1.62666281983526e-06 + sys_30: -1.8295471301245582e-05 + sys_31: 3.358871861543445e-05 + sys_32: -3.7420379675327735e-05 + sys_33: -5.502109619500464e-06 + sys_34: 2.3608170499684587e-05 + sys_35: 2.761473315324306e-05 + sys_36: -1.2345586410347965e-06 + sys_37: 9.749743620811008e-06 + sys_38: -4.075575552979959e-05 + sys_39: 0.00022185541272550893 + sys_40: 5.885135981170623e-06 + sys_41: 4.6512116134963874e-05 + sys_42: 3.596688274238159e-05 + sys_43: 2.674325850147141e-05 + sys_44: 4.3023792761801346e-05 + sys_45: 2.6848840906865558e-05 + sys_46: 2.6280856903530737e-05 + sys_47: 9.607337554411997e-06 + sys_48: -2.088241362218893e-05 + sys_49: 3.006094624195415e-05 + sys_50: 8.433366446386961e-06 + sys_51: -2.750223556799361e-05 + sys_52: 5.602358153433155e-05 + sys_53: 6.0501697387151425e-06 + sys_54: -2.799317025098196e-06 + sys_55: -1.3376849160661675e-06 +- lumi_ue: 0.00041 + pol: 0.0006864 + sys_0: -0.00010998527336541484 + sys_1: -0.0005050281450117746 + sys_2: 3.352610635675113e-05 + sys_3: 0.00026639817387869166 + sys_4: 0.0001531260469073154 + sys_5: 0.0002717251362922981 + sys_6: -0.00037745603784729233 + sys_7: 0.00034004595459812995 + sys_8: 5.2436167737090274e-05 + sys_9: 0.0007453914385457638 + sys_10: -0.0006950184053420355 + sys_11: 0.01256556149356177 + sys_12: 0.00177513031712485 + sys_13: 0.0004454487326654859 + sys_14: 0.0004081991557363394 + sys_15: -0.0001723169344357186 + sys_16: -0.00010912211637180873 + sys_17: 2.6757645780517014e-05 + sys_18: -0.00011447801352126508 + sys_19: 6.402438361002494e-05 + sys_20: -5.9803446779911885e-05 + sys_21: -8.265005520112094e-05 + sys_22: 5.517613003674713e-05 + sys_23: 1.8366002413931164e-07 + sys_24: 2.687178398034736e-07 + sys_25: -3.1707189186484774e-07 + sys_26: 2.196816294541908e-07 + sys_27: -2.9810128128176725e-06 + sys_28: -3.631002683763918e-06 + sys_29: -5.002597688925614e-07 + sys_30: -7.008969584752121e-06 + sys_31: 1.6711440884501734e-05 + sys_32: -4.984944175872482e-05 + sys_33: -5.934151121897502e-06 + sys_34: 3.178142340494821e-05 + sys_35: 5.560946891282736e-05 + sys_36: 4.853802447760553e-06 + sys_37: 5.172137600821189e-06 + sys_38: -2.893363527646991e-05 + sys_39: 0.00011627647586798145 + sys_40: -2.6705842013357576e-06 + sys_41: 4.637143915840722e-05 + sys_42: 9.05472123567719e-06 + sys_43: 1.0706640869244046e-05 + sys_44: 1.5995694852388327e-05 + sys_45: 1.5533856005275626e-05 + sys_46: 1.4271533027693282e-05 + sys_47: 4.93732630045959e-06 + sys_48: -8.623467612206894e-06 + sys_49: 1.2046038193068147e-05 + sys_50: 3.949036001371848e-06 + sys_51: -1.0073681156321285e-05 + sys_52: 4.82119688446908e-05 + sys_53: 5.89529528940033e-05 + sys_54: 3.0304987280665183e-05 + sys_55: -3.127499092928875e-07 +- lumi_ue: 0.00041 + pol: 0.0022836 + sys_0: -0.00016618743571682312 + sys_1: -0.0009249049176775929 + sys_2: 2.7262323269291602e-05 + sys_3: 0.000582407635923527 + sys_4: 0.0005029021770657145 + sys_5: 0.019147024737072128 + sys_6: 0.0018012623239616091 + sys_7: -0.0007031967922943018 + sys_8: -2.65315713294099e-05 + sys_9: -0.0005328418069520835 + sys_10: -0.00012940874310710023 + sys_11: -0.00018508666321633544 + sys_12: 0.00010395462381360342 + sys_13: 0.00010463465659774447 + sys_14: 0.00013128870111458118 + sys_15: -9.040111510904033e-05 + sys_16: -3.130312477855062e-05 + sys_17: 5.158218786122131e-06 + sys_18: -3.576984117741604e-05 + sys_19: -6.680514543453011e-07 + sys_20: -0.0001359870080444968 + sys_21: -5.895928799765194e-05 + sys_22: 2.6514398224601e-05 + sys_23: 5.953028299980223e-08 + sys_24: 1.3786352742105116e-07 + sys_25: -2.8044347923403405e-07 + sys_26: 5.750588438287769e-08 + sys_27: -2.215491686034969e-06 + sys_28: -1.0835977720709046e-06 + sys_29: -1.1088089288370602e-07 + sys_30: -1.5753508350229252e-06 + sys_31: 3.746020159111672e-06 + sys_32: -1.7413662228742513e-05 + sys_33: -5.90713620299078e-06 + sys_34: 3.049874678587985e-05 + sys_35: 5.900391592847427e-05 + sys_36: 7.17549081188856e-06 + sys_37: 3.1253606423434375e-06 + sys_38: -1.6993638079785997e-05 + sys_39: 5.4364092564420575e-05 + sys_40: -8.191156661878228e-07 + sys_41: 2.5756208848249196e-05 + sys_42: 4.789711993580272e-07 + sys_43: 4.8957174920469035e-06 + sys_44: 5.967468367108113e-06 + sys_45: 6.115529416456012e-06 + sys_46: 5.583029698239167e-06 + sys_47: 1.3922624363607396e-06 + sys_48: -1.0326865513038552e-06 + sys_49: -2.1645112791275455e-07 + sys_50: 1.1630478545448002e-06 + sys_51: -1.2079626944336217e-06 + sys_52: 3.31535333462644e-05 + sys_53: 8.351813914768693e-05 + sys_54: 4.231503481566085e-05 + sys_55: 8.573807987173477e-07 +- lumi_ue: 0.00041 + pol: 0.0039138 + sys_0: -0.000892631264473606 + sys_1: -0.02874189420593264 + sys_2: 0.00762427273134666 + sys_3: -0.005355774714251392 + sys_4: -0.0016523081275802128 + sys_5: -0.0005870263850549635 + sys_6: 0.000562351146244618 + sys_7: -0.00039334102984092207 + sys_8: -2.5868067609434934e-05 + sys_9: -0.00045984363203346754 + sys_10: -0.0002038188210145172 + sys_11: -0.00019128540774674945 + sys_12: 0.0001116438629107219 + sys_13: 0.00011535421157420143 + sys_14: 0.00014947525600426427 + sys_15: -8.341168992129614e-05 + sys_16: -4.750703584180613e-05 + sys_17: 1.1660869369723163e-05 + sys_18: -4.975082025817086e-05 + sys_19: 1.3168690089512011e-06 + sys_20: -0.00016065045437935072 + sys_21: -7.574940023288951e-05 + sys_22: 3.8110444510502895e-05 + sys_23: -5.501731455975442e-08 + sys_24: 1.2265007137037905e-07 + sys_25: -4.0098610261221476e-07 + sys_26: -1.5293037476219988e-07 + sys_27: -3.4706504418882853e-06 + sys_28: -4.908787594824853e-07 + sys_29: 1.7326324295919352e-07 + sys_30: 6.172384178452741e-07 + sys_31: -1.8271604622212806e-06 + sys_32: -5.223587519882549e-07 + sys_33: -4.872990791971966e-06 + sys_34: 1.233986070906926e-05 + sys_35: 9.864580168029631e-06 + sys_36: -5.161445456347698e-06 + sys_37: 6.6757016644183745e-06 + sys_38: -2.1702989774034057e-05 + sys_39: 6.789738294598187e-05 + sys_40: -2.620808230207389e-06 + sys_41: 2.1233786915053252e-05 + sys_42: 4.795968014840895e-06 + sys_43: 1.2219633401163899e-05 + sys_44: 9.835317240684997e-06 + sys_45: 1.1942924486898598e-05 + sys_46: 1.107470474493067e-05 + sys_47: 5.805230576899354e-06 + sys_48: -6.755179406198972e-06 + sys_49: 8.339943444766866e-06 + sys_50: 1.2519038475118441e-06 + sys_51: -5.4846370247046285e-06 + sys_52: 3.153373460964659e-05 + sys_53: 7.338260329569087e-05 + sys_54: 3.1616748234373464e-05 + sys_55: 3.4029412750801136e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml new file mode 100644 index 0000000000..87fc6c8595 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2012_2JET_510GEV/uncertainties_D.yaml @@ -0,0 +1,872 @@ +definitions: + lumi_ue: + description: underlying event and relative luminosity uncertainty + treatment: ADD + type: STAR2012LUMIUE + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2012POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2012JETunc55 +bins: +- lumi_ue: 0.00131 + pol: 0.00035640000000000004 + sys_0: -2.0062120884862804e-05 + sys_1: -8.342783996468345e-05 + sys_2: -3.5351973334932125e-06 + sys_3: 4.0586484737603695e-05 + sys_4: 4.50454317595685e-05 + sys_5: 6.16399279411733e-05 + sys_6: -0.00024499387580902653 + sys_7: 0.0002989822117559423 + sys_8: 0.016095360786608188 + sys_9: -0.00011842466768549145 + sys_10: 2.868799330932109e-05 + sys_11: -5.766516721406417e-05 + sys_12: 5.941926144653167e-05 + sys_13: 1.1665963479959004e-05 + sys_14: 2.3370311079079263e-05 + sys_15: -4.793089869935928e-06 + sys_16: -3.32896731401081e-05 + sys_17: -8.502033148331557e-07 + sys_18: -3.939482775299507e-06 + sys_19: 5.420332577730775e-06 + sys_20: 5.135374720000157e-06 + sys_21: -1.885044302181326e-06 + sys_22: 1.990669560836701e-05 + sys_23: -1.6993339371484715e-06 + sys_24: -9.886388960773938e-08 + sys_25: -4.463317990119991e-07 + sys_26: -8.704986114731231e-07 + sys_27: -1.6053869432533879e-06 + sys_28: -4.4293888039365944e-07 + sys_29: 1.0423425862585665e-07 + sys_30: 3.0883570826348495e-07 + sys_31: -4.018132155078554e-07 + sys_32: 6.564515996955875e-07 + sys_33: 3.4501896528880987e-08 + sys_34: 1.3946364042165036e-07 + sys_35: -1.1555748796485615e-06 + sys_36: -8.323423288021316e-07 + sys_37: 8.508586380920373e-07 + sys_38: -9.234537273825932e-07 + sys_39: 4.65283342738723e-06 + sys_40: 6.365312371601071e-07 + sys_41: 1.3028726677772128e-06 + sys_42: 1.0010914040900601e-06 + sys_43: 1.5321779791597853e-06 + sys_44: 2.849451131158415e-06 + sys_45: 4.880660695732809e-06 + sys_46: 2.12296612621708e-05 + sys_47: 1.2719601923802805e-05 + sys_48: -3.1281757111685283e-06 + sys_49: 3.0487849119895314e-06 + sys_50: -3.9282823781696213e-07 + sys_51: -1.038529652867925e-05 + sys_52: 7.474055417062909e-09 + sys_53: 3.10360023176195e-06 + sys_54: -1.0883678971144967e-05 + sys_55: 1.3096393844500246e-05 +- lumi_ue: 0.00022 + pol: 0.0002772 + sys_0: -1.708740635058764e-05 + sys_1: -6.973179168523495e-05 + sys_2: 3.92238754822553e-07 + sys_3: 3.265093646026979e-05 + sys_4: 1.7362687065483883e-05 + sys_5: 2.8071446958028452e-05 + sys_6: -3.6359794509993205e-05 + sys_7: 2.6239435430057358e-05 + sys_8: 2.1766096325559404e-05 + sys_9: 2.2293550055041223e-05 + sys_10: -2.0208004935069487e-05 + sys_11: 2.7861914940388643e-05 + sys_12: -2.3190465493926818e-05 + sys_13: -2.3847337093479192e-05 + sys_14: -4.90466361949816e-05 + sys_15: 1.5845069913353557e-05 + sys_16: 4.332425827442046e-05 + sys_17: -7.393734212112634e-06 + sys_18: 3.795936734795497e-05 + sys_19: -2.604483801594007e-05 + sys_20: -3.083164796982167e-05 + sys_21: 1.637229511807178e-05 + sys_22: -6.73937054998053e-05 + sys_23: -1.0829636326317243e-05 + sys_24: -9.569083175176174e-06 + sys_25: 1.6957860239881433e-06 + sys_26: -5.719677228812506e-06 + sys_27: -1.381953052946475e-05 + sys_28: -4.930234895290332e-06 + sys_29: 1.6693600836797306e-06 + sys_30: 1.1567625829751785e-06 + sys_31: -4.222413593764469e-06 + sys_32: 8.28464377765964e-06 + sys_33: -8.33435961767945e-06 + sys_34: 5.576007799417005e-06 + sys_35: -2.421360963752023e-05 + sys_36: -2.585084106168251e-05 + sys_37: 1.4991882903581555e-05 + sys_38: -4.729360261647242e-05 + sys_39: -8.23605641410988e-05 + sys_40: 3.567667973424631e-07 + sys_41: -2.6119346886322074e-05 + sys_42: -1.1731479014364952e-05 + sys_43: -1.9073562193820955e-05 + sys_44: -2.7599950309431107e-05 + sys_45: -4.130153811002766e-05 + sys_46: -0.00012182701727078727 + sys_47: -7.482227735681107e-05 + sys_48: 0.0002086609945394041 + sys_49: -0.00030722793495695255 + sys_50: -4.5998299787060704e-05 + sys_51: 0.004763325924955433 + sys_52: 0.001339875051750666 + sys_53: -0.00020079419836831024 + sys_54: -0.0009985854263692973 + sys_55: 0.0005723924490538848 +- lumi_ue: 0.00072 + pol: 0.00033660000000000005 + sys_0: -2.2241172708636908e-05 + sys_1: -8.704677703659672e-05 + sys_2: -4.131599903335897e-07 + sys_3: 3.9620831277638355e-05 + sys_4: 1.9827460897202597e-05 + sys_5: 3.3670106108722016e-05 + sys_6: -5.1693374721908343e-05 + sys_7: 2.9355657681940507e-05 + sys_8: 6.54654687893309e-05 + sys_9: 2.8772256672866475e-05 + sys_10: -2.8866658711851786e-05 + sys_11: 3.332450593884094e-05 + sys_12: -3.849787716189028e-05 + sys_13: -2.8425444267564763e-05 + sys_14: -5.521766416638429e-05 + sys_15: 1.6848312671604027e-05 + sys_16: 7.906411657581217e-05 + sys_17: -6.019394118535338e-06 + sys_18: 4.3242058577537864e-05 + sys_19: -3.414906831072904e-05 + sys_20: -3.5109832126942735e-05 + sys_21: 2.120929228894311e-05 + sys_22: -0.00012713499642601507 + sys_23: -7.796873059841769e-06 + sys_24: -1.5035580221726397e-05 + sys_25: 1.5969004075164816e-05 + sys_26: -6.931768766195196e-06 + sys_27: -8.74581013418973e-06 + sys_28: -1.2202788701779131e-05 + sys_29: 1.320058480548737e-05 + sys_30: 4.843616176161299e-06 + sys_31: -6.822606618435482e-06 + sys_32: 1.0937742498135694e-05 + sys_33: -1.3618644824048599e-05 + sys_34: 1.1148877302532835e-05 + sys_35: -3.322718057007368e-05 + sys_36: -2.9954513293431073e-05 + sys_37: 2.074227106042614e-05 + sys_38: -6.746432719358674e-05 + sys_39: -9.476722601570102e-05 + sys_40: 7.952283377504568e-06 + sys_41: -2.5961702169703855e-05 + sys_42: -1.633688982148298e-05 + sys_43: -2.415466298570812e-05 + sys_44: -4.1579832642750866e-05 + sys_45: -6.73548001450653e-05 + sys_46: -0.0002527793087989981 + sys_47: -0.00016465517937011437 + sys_48: 0.00014545743146859567 + sys_49: -0.00026364128982952914 + sys_50: -1.3658755795893854e-05 + sys_51: 0.0010438224669549181 + sys_52: -0.00026968440126827757 + sys_53: -0.001478560948157724 + sys_54: 0.0027602370628038797 + sys_55: -0.0037230277905321548 +- lumi_ue: 0.00052 + pol: 0.0002046 + sys_0: -2.6169052111154472e-05 + sys_1: -9.574374051523042e-05 + sys_2: 3.823612462615256e-06 + sys_3: 4.8473936919886246e-05 + sys_4: 2.3805408131106022e-05 + sys_5: 3.3018578971611344e-05 + sys_6: -4.9544181368949365e-05 + sys_7: 3.058535606071931e-05 + sys_8: 4.665244321880903e-05 + sys_9: 3.1402234876988595e-05 + sys_10: -3.224779741728021e-05 + sys_11: 4.3087669327330454e-05 + sys_12: -4.292628754418676e-05 + sys_13: -3.834325360538817e-05 + sys_14: -6.836144224611383e-05 + sys_15: 2.7213956752578938e-05 + sys_16: 8.603613060567063e-05 + sys_17: -1.0168638264471594e-05 + sys_18: 7.302393441671095e-05 + sys_19: -5.9538045852193934e-05 + sys_20: -6.338153637520896e-05 + sys_21: 3.5743854462155226e-05 + sys_22: -0.00017752268796061336 + sys_23: -2.1918651121696444e-06 + sys_24: -8.819382605125269e-06 + sys_25: 1.712190746112919e-05 + sys_26: -3.555372533441427e-06 + sys_27: 5.263840897172198e-06 + sys_28: -2.918316679321204e-05 + sys_29: 1.2264559295882887e-05 + sys_30: -5.960019708475399e-06 + sys_31: -3.1775325570177334e-06 + sys_32: 9.118499365857694e-06 + sys_33: -7.7102008745559e-06 + sys_34: 1.3898925590141019e-05 + sys_35: -2.3376016787875267e-05 + sys_36: -1.864853520709811e-05 + sys_37: 1.9743220646591293e-05 + sys_38: -4.442919565373261e-05 + sys_39: -0.00022704970576168697 + sys_40: 1.691659886412869e-05 + sys_41: -5.7417042936743085e-05 + sys_42: -5.758943254165825e-05 + sys_43: -9.184496624139383e-05 + sys_44: -0.00017239489984552777 + sys_45: -0.00034365950479885095 + sys_46: -0.0014145240795937475 + sys_47: -0.005701442117750578 + sys_48: -9.250294028115187e-05 + sys_49: 0.00012790000088302542 + sys_50: 3.0410947196561286e-05 + sys_51: -0.0001549095363897971 + sys_52: 5.457283820490518e-05 + sys_53: -2.0414367883615655e-05 + sys_54: -0.00015132946197549176 + sys_55: 0.00010742503844174894 +- lumi_ue: 0.00054 + pol: 0.0001188 + sys_0: -2.723554218885103e-05 + sys_1: -0.00012110496214098216 + sys_2: 2.858155391710206e-06 + sys_3: 5.9654229231113985e-05 + sys_4: 3.453662073901853e-05 + sys_5: 4.761213814847069e-05 + sys_6: -6.355755976090404e-05 + sys_7: 4.260154904289967e-05 + sys_8: 4.731580847809901e-05 + sys_9: 4.2953789203621305e-05 + sys_10: -3.893190516041014e-05 + sys_11: 5.908766798690912e-05 + sys_12: -4.964687040135963e-05 + sys_13: -4.8886864360186743e-05 + sys_14: -9.461006835532142e-05 + sys_15: 3.3880943863470266e-05 + sys_16: 0.00011413517006611862 + sys_17: -2.1383905319431057e-05 + sys_18: 9.24046867684944e-05 + sys_19: -7.950916709738388e-05 + sys_20: -8.042887111418579e-05 + sys_21: 4.404197505809743e-05 + sys_22: -0.00024634752632276717 + sys_23: 1.5190881338748168e-07 + sys_24: -3.051712438227616e-06 + sys_25: 1.1111109822971668e-05 + sys_26: -6.62936649653942e-07 + sys_27: 9.282907716284602e-06 + sys_28: -3.514429593329216e-05 + sys_29: 9.520741581235556e-06 + sys_30: -1.878936887167448e-05 + sys_31: 1.0697939663689069e-05 + sys_32: -1.4020759221279039e-06 + sys_33: -8.194666870901135e-06 + sys_34: 1.4198933810230478e-05 + sys_35: -2.4376245030841163e-05 + sys_36: -1.6152984573878034e-05 + sys_37: 2.367941237795067e-05 + sys_38: -6.554501650304181e-05 + sys_39: -0.00031174334902809274 + sys_40: 1.2997567953583057e-05 + sys_41: -0.00011173025345599064 + sys_42: -7.332428762740866e-05 + sys_43: -0.00014383390137335335 + sys_44: -0.00021177295639422672 + sys_45: -0.0007626193641813341 + sys_46: -0.005743421765858607 + sys_47: 0.001468481423856459 + sys_48: -0.00010847172058821856 + sys_49: 0.00013840851459367507 + sys_50: 3.203134372196154e-05 + sys_51: -0.00015940695939703733 + sys_52: 8.011285754044964e-05 + sys_53: -4.0539290920253605e-05 + sys_54: -0.00014686224649498002 + sys_55: 9.784036458539493e-05 +- lumi_ue: 0.00044 + pol: 0.000264 + sys_0: -3.9512474152282606e-05 + sys_1: -0.00015905883236881621 + sys_2: 7.165790262825689e-06 + sys_3: 7.544521228637491e-05 + sys_4: 3.932957811750201e-05 + sys_5: 5.879145016872098e-05 + sys_6: -8.69243241678724e-05 + sys_7: 6.01932356803132e-05 + sys_8: 4.094410243822976e-05 + sys_9: 6.140666630017442e-05 + sys_10: -5.7593719847523734e-05 + sys_11: 7.78324034604904e-05 + sys_12: -6.682243493685864e-05 + sys_13: -8.4409161597616e-05 + sys_14: -0.0001622291321266659 + sys_15: 6.033960869028495e-05 + sys_16: 0.000182699687395172 + sys_17: -3.9982182725221026e-05 + sys_18: 0.00023217944578008226 + sys_19: -0.0002168729427327723 + sys_20: -0.0001969094280534231 + sys_21: 0.0001418187963464352 + sys_22: -0.006906265512607131 + sys_23: 7.469283299370963e-07 + sys_24: -4.84942654655994e-07 + sys_25: 5.048070124095764e-06 + sys_26: 1.4749024227663771e-06 + sys_27: 8.846324157849319e-06 + sys_28: -3.391844266755579e-05 + sys_29: -8.925896570212468e-07 + sys_30: -2.865217892772339e-05 + sys_31: 2.3392847721396432e-05 + sys_32: -1.747333152963245e-05 + sys_33: -4.12327496257388e-06 + sys_34: 1.8184148626653754e-05 + sys_35: -2.3531855231823927e-06 + sys_36: -8.304446746443814e-06 + sys_37: 1.5238958600440034e-05 + sys_38: -5.452294183360312e-05 + sys_39: 0.0010240053806222077 + sys_40: -1.2218016349734243e-05 + sys_41: 0.00029534702545411104 + sys_42: 8.377154446665279e-05 + sys_43: 0.00013855218261392058 + sys_44: 6.813291945944339e-05 + sys_45: 0.00011244788949801983 + sys_46: 0.00019636345822252383 + sys_47: 8.156821511939161e-05 + sys_48: -4.596405987688114e-05 + sys_49: 6.210033871639206e-05 + sys_50: 1.8616563661316985e-05 + sys_51: -7.20986799238213e-05 + sys_52: 6.98073692136299e-05 + sys_53: -2.8777037059289318e-05 + sys_54: -6.36233302355711e-05 + sys_55: 3.214092656537806e-05 +- lumi_ue: 0.00044 + pol: 0.0002244 + sys_0: -5.998137195723391e-05 + sys_1: -0.0002413607059407049 + sys_2: 7.218172899765515e-06 + sys_3: 0.00012320341424676035 + sys_4: 6.629112405322314e-05 + sys_5: 9.128763041251769e-05 + sys_6: -0.00013116696945752847 + sys_7: 9.615965927069613e-05 + sys_8: 5.788608759731685e-05 + sys_9: 0.00011728674987315034 + sys_10: -0.00011007362386709523 + sys_11: 0.00016024122342363383 + sys_12: -0.0001254153852371156 + sys_13: -0.00020407826390029572 + sys_14: -0.0005022894277051588 + sys_15: 0.00022748173434839416 + sys_16: 0.008657559213552659 + sys_17: 0.00034092160429044163 + sys_18: -0.0007043967843735397 + sys_19: 0.0002807327815280077 + sys_20: 0.00015898641901977118 + sys_21: -0.00014898460571336508 + sys_22: 0.00018028900223109268 + sys_23: 5.652473839258192e-07 + sys_24: 3.2462844932661294e-07 + sys_25: 1.3735867199477181e-06 + sys_26: 1.4376981781853896e-06 + sys_27: 2.914036319376347e-06 + sys_28: -1.9132026496045818e-05 + sys_29: -3.277641943608531e-06 + sys_30: -3.081365830413154e-05 + sys_31: 3.117541266059206e-05 + sys_32: -3.276981453435323e-05 + sys_33: -4.063397325044861e-06 + sys_34: 2.1553216191906247e-05 + sys_35: 1.768537661221505e-05 + sys_36: -2.1626784891278934e-06 + sys_37: 1.14614851686357e-05 + sys_38: -4.443392425736623e-05 + sys_39: 0.0002023990367838319 + sys_40: -1.215061970076034e-05 + sys_41: 8.730512995806484e-05 + sys_42: 1.6587564467883214e-05 + sys_43: 3.995630129858522e-05 + sys_44: 2.5320019275560597e-05 + sys_45: 4.4077304293765944e-05 + sys_46: 7.116290210495234e-05 + sys_47: 3.0804886800913625e-05 + sys_48: -2.3460345278826698e-05 + sys_49: 3.541915152284488e-05 + sys_50: 9.951878903649592e-06 + sys_51: -3.954114596307777e-05 + sys_52: 5.750952144968417e-05 + sys_53: -1.6531008780514713e-06 + sys_54: -1.8309588383717772e-05 + sys_55: 1.6996583223872403e-05 +- lumi_ue: 0.00036 + pol: 0.00033 + sys_0: -8.923253788311067e-05 + sys_1: -0.0003922599608418703 + sys_2: 1.3443350560973601e-05 + sys_3: 0.00019799505409572632 + sys_4: 0.00011454383958913211 + sys_5: 0.0002013067822156 + sys_6: -0.000274062069251488 + sys_7: 0.00025112120266627795 + sys_8: 7.836908309509426e-05 + sys_9: 0.0004154867743984239 + sys_10: -0.0006095970305518584 + sys_11: 0.001710620170292931 + sys_12: -0.012174555773709517 + sys_13: 0.00045360339675689054 + sys_14: 0.0003549492487615486 + sys_15: -0.00015324443040272645 + sys_16: -0.00011600660650962566 + sys_17: 1.8701996227041443e-05 + sys_18: -0.0001079503566809129 + sys_19: 5.423642072874875e-05 + sys_20: -8.228427274043676e-06 + sys_21: -4.325312366100033e-05 + sys_22: 5.954803312515442e-05 + sys_23: 3.000045877185643e-07 + sys_24: 3.797882619674676e-07 + sys_25: 1.5412402713916357e-07 + sys_26: 6.103255125876887e-07 + sys_27: -8.114657033523811e-07 + sys_28: -7.581369664272281e-06 + sys_29: -1.4025380202318204e-06 + sys_30: -1.5606238704900108e-05 + sys_31: 3.0769376147916684e-05 + sys_32: -4.381376715124389e-05 + sys_33: -3.875428720893137e-06 + sys_34: 2.4541170659844313e-05 + sys_35: 4.039737746207601e-05 + sys_36: 4.584172975592526e-06 + sys_37: 5.470864025352236e-06 + sys_38: -2.8393401510968496e-05 + sys_39: 9.153216819621863e-05 + sys_40: -4.602012100637527e-06 + sys_41: 4.6514130988555176e-05 + sys_42: 6.328849303657087e-07 + sys_43: 1.4500729297399488e-05 + sys_44: 8.84173874297558e-06 + sys_45: 2.0780367749259048e-05 + sys_46: 2.2230177095227845e-05 + sys_47: 1.1400549731906487e-05 + sys_48: -9.368519232374467e-06 + sys_49: 1.4335896534116256e-05 + sys_50: 4.531570643812265e-06 + sys_51: -1.5961012286250585e-05 + sys_52: 4.276912600562815e-05 + sys_53: 2.7548117383997512e-05 + sys_54: 9.512822868641437e-06 + sys_55: 3.699930447646068e-06 +- lumi_ue: 0.00036 + pol: 0.0003828 + sys_0: -0.00019358960006998533 + sys_1: -0.001065885164039789 + sys_2: 4.1335470238480604e-05 + sys_3: 0.0006295451375995111 + sys_4: 0.00042973492060122885 + sys_5: 0.0017092853342109003 + sys_6: -0.017681188321840277 + sys_7: -0.0021331394763445598 + sys_8: -0.0001982688285071767 + sys_9: -0.0007033756673041689 + sys_10: 6.046174605968485e-05 + sys_11: -0.0002927180847821344 + sys_12: 0.0001596227852744167 + sys_13: 0.00014835249844419144 + sys_14: 0.0001827507326031538 + sys_15: -9.678520171422783e-05 + sys_16: -6.254623994626394e-05 + sys_17: 1.2207232862936907e-05 + sys_18: -6.601205709610685e-05 + sys_19: 2.618500877311962e-05 + sys_20: -5.499581288676491e-05 + sys_21: -4.523998772669945e-05 + sys_22: 4.2771471899369286e-05 + sys_23: 7.902142322863001e-08 + sys_24: 2.1357831901126104e-07 + sys_25: -2.885755245379951e-07 + sys_26: 2.1732284511530886e-07 + sys_27: -2.6823088386195307e-06 + sys_28: -2.5236888550724323e-06 + sys_29: -3.0545736889297905e-07 + sys_30: -4.517543653941376e-06 + sys_31: 1.0926750546689786e-05 + sys_32: -3.571989877567485e-05 + sys_33: -5.69318819430648e-06 + sys_34: 2.8413748631595718e-05 + sys_35: 5.157255926837515e-05 + sys_36: 5.348983800345802e-06 + sys_37: 4.369282668403555e-06 + sys_38: -2.3628216975712582e-05 + sys_39: 7.251503227146751e-05 + sys_40: -2.9208593240791354e-06 + sys_41: 3.7672017304540126e-05 + sys_42: -2.021320706603775e-06 + sys_43: 9.954990604057341e-06 + sys_44: 7.731241699332125e-06 + sys_45: 1.3815478409383888e-05 + sys_46: 1.2691851461690994e-05 + sys_47: 5.739308576952841e-06 + sys_48: -6.945340205914182e-06 + sys_49: 8.694683778744106e-06 + sys_50: 2.2032104693284113e-06 + sys_51: -9.896368292436273e-06 + sys_52: 3.737666924777123e-05 + sys_53: 5.25842968216036e-05 + sys_54: 2.3130653749611704e-05 + sys_55: 2.253468064452661e-06 +- lumi_ue: 0.00036 + pol: 0.0019206000000000002 + sys_0: -0.00020162632878324504 + sys_1: -0.007685411945170324 + sys_2: -0.028586313792703648 + sys_3: -0.0012101014856085574 + sys_4: -0.00046235300502022966 + sys_5: -0.00016138007670260637 + sys_6: 0.00014276587407357222 + sys_7: -0.00011547317624555203 + sys_8: -9.018300972818905e-06 + sys_9: -0.00019780075341459082 + sys_10: -0.0001487515967746855 + sys_11: -4.8249737448138164e-05 + sys_12: 3.3300226352779446e-05 + sys_13: 3.9075906819437894e-05 + sys_14: 4.742330498588373e-05 + sys_15: -4.890792282588273e-05 + sys_16: -8.51671831586819e-06 + sys_17: -5.910182232449483e-07 + sys_18: -5.723675188902399e-06 + sys_19: -1.776361601827735e-05 + sys_20: -0.00011950326076120695 + sys_21: -3.449313922212753e-05 + sys_22: 1.036328040942694e-05 + sys_23: 5.956540836029673e-08 + sys_24: 1.0151033875881114e-07 + sys_25: -1.350129026052365e-07 + sys_26: 6.826941245006492e-08 + sys_27: -9.620296603234866e-07 + sys_28: -7.3784078539168e-07 + sys_29: -7.793563682393528e-08 + sys_30: -1.1453478594709625e-06 + sys_31: 2.988533490957429e-06 + sys_32: -1.2364478532728248e-05 + sys_33: -3.835511065535477e-06 + sys_34: 2.0172383774743046e-05 + sys_35: 4.152741673987578e-05 + sys_36: 5.656232865195085e-06 + sys_37: 1.2502072244100369e-06 + sys_38: -8.583968601089088e-06 + sys_39: 1.883060949201282e-05 + sys_40: -1.87440273277874e-06 + sys_41: 1.5695316603163596e-05 + sys_42: -3.4185995346978336e-06 + sys_43: -6.161898712435887e-07 + sys_44: -7.127700832206303e-07 + sys_45: -1.4866829827596918e-08 + sys_46: 8.224592714889552e-07 + sys_47: -1.5380556222962234e-07 + sys_48: 4.131249191201582e-06 + sys_49: -6.3954342411026975e-06 + sys_50: -8.440969066165075e-07 + sys_51: 4.0512130885923355e-06 + sys_52: 2.1150623474545767e-05 + sys_53: 7.998698264123691e-05 + sys_54: 4.103119725182124e-05 + sys_55: 9.013552457905208e-07 +- lumi_ue: 0.00029 + pol: 0.000363 + sys_0: -0.04617528060468052 + sys_1: 0.0007798226307564233 + sys_2: -6.77251567285892e-06 + sys_3: -0.0002847982951575236 + sys_4: -0.00023757066427368615 + sys_5: -8.851273565003443e-05 + sys_6: 7.702255838100885e-05 + sys_7: -7.487866853264413e-05 + sys_8: -4.253446346233636e-06 + sys_9: -0.00018881868362808754 + sys_10: -0.0002371988153343997 + sys_11: -3.805347603647465e-05 + sys_12: 2.3549729299375662e-05 + sys_13: 2.444478890872961e-05 + sys_14: 3.216310177537848e-05 + sys_15: -3.723142823712048e-05 + sys_16: -3.123378700805108e-06 + sys_17: -1.6895587210959601e-06 + sys_18: 9.528448984162635e-07 + sys_19: -2.840342337913127e-05 + sys_20: -0.00015712370027367185 + sys_21: -4.4985130267955274e-05 + sys_22: 9.12458171180185e-06 + sys_23: 9.008466211199461e-09 + sys_24: 3.588206086387636e-08 + sys_25: -9.214285619202929e-08 + sys_26: -7.980370722631796e-09 + sys_27: -7.600813279627728e-07 + sys_28: -1.7066040069720017e-07 + sys_29: 1.5058046769938824e-09 + sys_30: -1.4714133295059992e-07 + sys_31: 2.3222400863229263e-07 + sys_32: -2.276423916567558e-06 + sys_33: -1.6855775911152726e-06 + sys_34: 6.326221520548824e-06 + sys_35: 1.0445643432706564e-05 + sys_36: 6.31402410723901e-08 + sys_37: 1.7896595557125842e-06 + sys_38: -6.253365524562932e-06 + sys_39: 1.1914971235426746e-05 + sys_40: -5.958032802829342e-07 + sys_41: 4.084882989852301e-06 + sys_42: 3.0666212214045293e-07 + sys_43: 2.5713801311965486e-06 + sys_44: 9.808223463882108e-07 + sys_45: 1.284987809126998e-06 + sys_46: 1.3037533924412506e-06 + sys_47: 1.0729894999489885e-06 + sys_48: 1.947332071953631e-06 + sys_49: -2.7804275701445893e-06 + sys_50: -6.605960073625057e-07 + sys_51: 2.5895911737392207e-06 + sys_52: 1.1995123905200005e-05 + sys_53: 5.110122403018106e-05 + sys_54: 2.5550192779393124e-05 + sys_55: 6.295289324677969e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/data.yaml new file mode 100644 index 0000000000..1f9f10754d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/data.yaml @@ -0,0 +1,15 @@ +data_central: +- 0.00626 +- 0.00258 +- 0.00277 +- -0.00075 +- -0.00085 +- 0.00444 +- 0.00308 +- 0.00572 +- 0.01008 +- 0.01033 +- 0.01249 +- 0.01824 +- 0.02205 +- 0.04527 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py new file mode 100644 index 0000000000..bd8c787d1e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/filter.py @@ -0,0 +1,313 @@ +"""This script provides the common filer to the jet and dijet STAR 2013 datasets. +Files need to be parsed all together as there are correlations provided. +""" +import pathlib + +import numpy as np +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.correlations import ( + compute_covmat, + upper_triangular_to_symmetric, +) +from nnpdf_data.new_commondata.STAR_2012_1JET_510GEV.filter import TOPO_DEF + +# values from the paper https://arxiv.org/pdf/2110.11020.pdf +SQRTS = 510 +ETA_ABS = 0.9 +POL_UNC = 0.064 +LUMI_UNC = 0.00047 +YEAR = 2013 +TOPOPLOGY_LIST = ["I", "A", "B", "C", "D"] + +HERE = pathlib.Path(__file__).parent +RAWDATA_PATH = HERE / "rawdata/" + + +def read_1jet_data(): + data_table = pathlib.Path(RAWDATA_PATH / "Figure3.csv") + + with open(data_table, "r", encoding="utf-8") as file: + parton_jet_data = pd.read_csv( + file, delimiter=",", skiprows=lambda x: (x <= 21 or x >= 38) + ) + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=37) + + df = pd.DataFrame() + df["pT"] = parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + df["pT_min"] = ( + parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst -"] + ) + df["pT_max"] = ( + parton_jet_data[r"Parton Jet $p_{T}$ (GeV/$c$)"] + parton_jet_data["syst +"] + ) + df["eta"] = 0.0 + df["eta_min"] = -TOPO_DEF["I"]["abs_eta_max"] + df["eta_max"] = +TOPO_DEF["I"]["abs_eta_max"] + df["sqrts"] = SQRTS + df["ALL"] = all_data[r"Inclusive Jet $A_{LL}$"] + df["stat"] = all_data[r"stat +"] + df["syst"] = all_data[r"syst +"] + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi"] = LUMI_UNC + + print("1JET data loaded. Npoint: ", len(df)) + return df + + +def read_2jet_data(topology): + data_table = RAWDATA_PATH / f"Figure5topology{topology}.csv" + with open(data_table, "r", encoding="utf-8") as file: + mjj_data = pd.read_csv( + file, delimiter=",", skiprows=lambda x: (x <= 5 or x >= 20) + ) + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=20) + + df = pd.DataFrame() + df["mjj"] = mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + df["mjj_min"] = ( + mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst -"] + ) + df["mjj_max"] = ( + mjj_data[r"Parton Dijet $M_{inv}$ (GeV/$c^{2}$)"] + mjj_data["syst +"] + ) + + for p in ["1", "2"]: + df[f"abs_eta{p}_min"] = TOPO_DEF[topology][f"abs_eta{p}_min"] + df[f"abs_eta{p}_max"] = TOPO_DEF[topology][f"abs_eta{p}_max"] + df[f"abs_eta{p}"] = (df[f"abs_eta{p}_min"] + df[f"abs_eta{p}_max"]) / 2 + + df["sqrts"] = SQRTS + df["ALL"] = all_data[r"Dijet $A_{LL}$, topology " + topology] + df["stat"] = all_data[r"stat +"] + df["syst"] = all_data[r"syst +"] + df["pol"] = POL_UNC * abs(df["ALL"]) + df["lumi"] = LUMI_UNC + + print(f"2JET {topology} data loaded. Npoint: ", len(df)) + return df + + +def get_correlation_label(a): + if a == "I": + return "Inclusivejet" + return f"Dijettopology{a}" + + +def read_correlations(ndata_dict): + """Read the correlation files and build a big matix""" + corr_rows = [] + # loop on block rows + for a, ndata_a in ndata_dict.items(): + label_a = get_correlation_label(a) + la = [a for _ in range(ndata_a)] + corr_row = pd.DataFrame() + # loop on block columns + for b, ndata_b in ndata_dict.items(): + label_b = get_correlation_label(b) + lb = [b for _ in range(ndata_b)] + + # build the block + try: + with open( + RAWDATA_PATH / f"{label_a}-{label_b}correlation.csv", + encoding="utf-8", + ) as file: + corr_df = pd.read_csv(file, delimiter=",", skiprows=6) + if a == b: + corr = upper_triangular_to_symmetric(corr_df.values[:, 2], ndata_a) + else: + corr = corr_df.values[:, 2].reshape((ndata_a, ndata_b)) + except FileNotFoundError: + corr = pd.DataFrame(np.zeros((ndata_a, ndata_b)), index=la, columns=lb) + + corr = pd.DataFrame(corr, index=la, columns=lb) + corr_row = pd.concat([corr_row, corr], axis=1) + corr_rows.append(corr_row) + + tot_corr = pd.concat(corr_rows) + if not np.allclose(tot_corr, np.triu(tot_corr)): + raise ValueError("Correlation matrix not read correctly") + return tot_corr + tot_corr.T - np.eye(np.sum((*ndata_dict.values(),))) + + +def write_1jet_data(df, art_sys): + STORE_PATH = HERE + + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / "data.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "pT": { + "min": float(df.loc[i, "pT_min"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pT_max"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "eta": { + "min": float(df.loc[i, "eta_min"]), + "mid": float(df.loc[i, "eta"]), + "max": float(df.loc[i, "eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open(STORE_PATH / "kinematics.yaml", "w", encoding="utf-8") as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = {"pol": float(df.loc[i, "pol"]), "lumi": float(df.loc[i, "lumi"])} + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + error.append(e) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open(STORE_PATH / "uncertainties.yaml", "w", encoding="utf-8") as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +def write_2jet_data(df, topology, art_sys): + STORE_PATH = HERE / f"../STAR_{YEAR}_2JET_510GEV/" + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "m_jj": { + "min": float(df.loc[i, "mjj_min"]), + "mid": float(df.loc[i, "mjj"]), + "max": float(df.loc[i, "mjj_max"]), + }, + # "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta_1": { + "min": float(df.loc[i, "abs_eta1_min"]), + "mid": float(df.loc[i, "abs_eta1"]), + "max": float(df.loc[i, "abs_eta1_max"]), + }, + "abs_eta_2": { + "min": float(df.loc[i, "abs_eta2_min"]), + "mid": float(df.loc[i, "abs_eta2"]), + "max": float(df.loc[i, "abs_eta2_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = { + "pol": float(df.loc[i, "pol"]), + "lumi": float(df.loc[i, "lumi"]), + } + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # load all the data + dfs = {"I": read_1jet_data()} + for topo in TOPOPLOGY_LIST[1:]: + dfs[topo] = read_2jet_data(topo) + + # load correlations + ndata_dict = {a: len(b) for a, b in dfs.items()} + correlation_df = read_correlations(ndata_dict) + # sum stat and syst for both jet and dijets as recommended + # by E.Aschenauer, see https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 + correlated_unc = [] + for a in TOPOPLOGY_LIST: + correlated_unc.extend( + np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() + ) + ndata_points = np.sum((*ndata_dict.values(),)) + # decompose uncertainties + art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) + + # write data + cnt = 0 + for topo, df in dfs.items(): + ndata = ndata_dict[topo] + syst = art_sys[cnt : cnt + ndata, :].tolist() + if topo == "I": + write_1jet_data(df, syst) + else: + write_2jet_data(df, topo, syst) + cnt += ndata diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/kinematics.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/kinematics.yaml new file mode 100644 index 0000000000..dd7cb965e2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/kinematics.yaml @@ -0,0 +1,169 @@ +bins: +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 8.65 + mid: 7.79 + min: 6.93 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 10.209999999999999 + mid: 9.62 + min: 9.03 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 12.14 + mid: 11.67 + min: 11.2 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 14.1 + mid: 13.59 + min: 13.08 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 16.3 + mid: 15.76 + min: 15.219999999999999 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 20.62 + mid: 19.89 + min: 19.16 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 23.49 + mid: 22.68 + min: 21.87 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 26.830000000000002 + mid: 25.94 + min: 25.05 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 30.75 + mid: 29.75 + min: 28.75 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 35.5 + mid: 34.29 + min: 33.08 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 40.99 + mid: 39.59 + min: 38.190000000000005 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 47.28 + mid: 45.76 + min: 44.239999999999995 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 54.9 + mid: 53.17 + min: 51.440000000000005 + sqrts: + max: null + mid: 510.0 + min: null +- eta: + max: 0.9 + mid: 0.0 + min: -0.9 + pT: + max: 63.32 + mid: 61.37 + min: 59.419999999999995 + sqrts: + max: null + mid: 510.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/metadata.yaml new file mode 100644 index 0000000000..10cfd57013 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/metadata.yaml @@ -0,0 +1,54 @@ +setname: "STAR_2013_1JET_510GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/2110.11020 +iNSPIRE: + url: "https://inspirehep.net/literature/1949588" +hepdata: + url: "https://www.hepdata.net/record/ins1949588" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "$A_{LL}$ as function of $p_T$", label: "$A_{LL}$", units: "" } + observable_name: ALL + process_type: JET_POL + ndata: 14 + tables: [3] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + eta: { description: "pseudorapidity", label: '$\eta$', units: "" } + file: kinematics.yaml + data_central: data.yaml + data_uncertainties: + - uncertainties.yaml + kinematic_coverage: [pT, sqrts, eta] + plotting: + dataset_label: "STAR 510 GeV (2013) 1-JET $A_{LL}$" + kinematics_override: identity + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2013_1JET_510GEV_ALL-POL + - - STAR_2013_1JET_510GEV_ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyAcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyAcorrelation.csv new file mode 100644 index 0000000000..2f4590b1e3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyAcorrelation.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t11 +#: name: Dijet topology A correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) for forward-forward dijet measurements (topology A). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijA.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetA +15.74,15.74,1.0 +15.74,18.5,0.016 +15.74,21.96,0.019 +15.74,26.17,0.021 +15.74,31.63,0.019 +15.74,37.8,0.015 +15.74,44.75,0.014 +15.74,53.31,0.01 +15.74,63.64,0.007 +15.74,75.32,0.005 +15.74,89.66,0.003 +15.74,105.63,0.002 +18.5,18.5,1.0 +18.5,21.96,0.073 +18.5,26.17,0.079 +18.5,31.63,0.073 +18.5,37.8,0.058 +18.5,44.75,0.052 +18.5,53.31,0.039 +18.5,63.64,0.028 +18.5,75.32,0.017 +18.5,89.66,0.011 +18.5,105.63,0.006 +21.96,21.96,1.0 +21.96,26.17,0.042 +21.96,31.63,0.039 +21.96,37.8,0.031 +21.96,44.75,0.028 +21.96,53.31,0.021 +21.96,63.64,0.015 +21.96,75.32,0.009 +21.96,89.66,0.006 +21.96,105.63,0.003 +26.17,26.17,1.0 +26.17,31.63,0.052 +26.17,37.8,0.041 +26.17,44.75,0.037 +26.17,53.31,0.027 +26.17,63.64,0.02 +26.17,75.32,0.012 +26.17,89.66,0.008 +26.17,105.63,0.004 +31.63,31.63,1.0 +31.63,37.8,0.039 +31.63,44.75,0.035 +31.63,53.31,0.026 +31.63,63.64,0.019 +31.63,75.32,0.012 +31.63,89.66,0.008 +31.63,105.63,0.004 +37.8,37.8,1.0 +37.8,44.75,0.029 +37.8,53.31,0.022 +37.8,63.64,0.015 +37.8,75.32,0.01 +37.8,89.66,0.006 +37.8,105.63,0.004 +44.75,44.75,1.0 +44.75,53.31,0.021 +44.75,63.64,0.015 +44.75,75.32,0.009 +44.75,89.66,0.006 +44.75,105.63,0.003 +53.31,53.31,1.0 +53.31,63.64,0.013 +53.31,75.32,0.008 +53.31,89.66,0.005 +53.31,105.63,0.003 +63.64,63.64,1.0 +63.64,75.32,0.01 +63.64,89.66,0.006 +63.64,105.63,0.003 +75.32,75.32,1.0 +75.32,89.66,0.007 +75.32,105.63,0.004 +89.66,89.66,1.0 +89.66,105.63,0.004 +105.63,105.63,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyBcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyBcorrelation.csv new file mode 100644 index 0000000000..2a74b4f314 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyBcorrelation.csv @@ -0,0 +1,164 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t12 +#: name: Dijet topology A - Dijet topology B correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology A) with forward-central dijet measurements (topology B). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijA-B.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetA-DijetB +15.74,15.49,0.008 +15.74,18.48,0.018 +15.74,22.33,0.022 +15.74,26.67,0.024 +15.74,32.16,0.022 +15.74,38.59,0.018 +15.74,45.66,0.016 +15.74,54.49,0.012 +15.74,65.02,0.009 +15.74,77.16,0.006 +15.74,91.33,0.004 +15.74,109.2,0.002 +15.74,129.75,0.001 +18.5,15.49,0.024 +18.5,18.48,0.055 +18.5,22.33,0.065 +18.5,26.67,0.072 +18.5,32.16,0.068 +18.5,38.59,0.054 +18.5,45.66,0.049 +18.5,54.49,0.037 +18.5,65.02,0.027 +18.5,77.16,0.017 +18.5,91.33,0.011 +18.5,109.2,0.006 +18.5,129.75,0.003 +21.96,15.49,0.02 +21.96,18.48,0.044 +21.96,22.33,0.053 +21.96,26.67,0.059 +21.96,32.16,0.055 +21.96,38.59,0.044 +21.96,45.66,0.04 +21.96,54.49,0.03 +21.96,65.02,0.022 +21.96,77.16,0.014 +21.96,91.33,0.009 +21.96,109.2,0.005 +21.96,129.75,0.003 +26.17,15.49,0.024 +26.17,18.48,0.055 +26.17,22.33,0.066 +26.17,26.67,0.073 +26.17,32.16,0.068 +26.17,38.59,0.055 +26.17,45.66,0.049 +26.17,54.49,0.037 +26.17,65.02,0.027 +26.17,77.16,0.017 +26.17,91.33,0.011 +26.17,109.2,0.006 +26.17,129.75,0.003 +31.63,15.49,0.024 +31.63,18.48,0.054 +31.63,22.33,0.065 +31.63,26.67,0.072 +31.63,32.16,0.067 +31.63,38.59,0.054 +31.63,45.66,0.049 +31.63,54.49,0.036 +31.63,65.02,0.026 +31.63,77.16,0.017 +31.63,91.33,0.011 +31.63,109.2,0.006 +31.63,129.75,0.003 +37.8,15.49,0.02 +37.8,18.48,0.046 +37.8,22.33,0.055 +37.8,26.67,0.061 +37.8,32.16,0.057 +37.8,38.59,0.046 +37.8,45.66,0.041 +37.8,54.49,0.031 +37.8,65.02,0.023 +37.8,77.16,0.014 +37.8,91.33,0.009 +37.8,109.2,0.005 +37.8,129.75,0.003 +44.75,15.49,0.02 +44.75,18.48,0.045 +44.75,22.33,0.054 +44.75,26.67,0.06 +44.75,32.16,0.056 +44.75,38.59,0.045 +44.75,45.66,0.041 +44.75,54.49,0.03 +44.75,65.02,0.022 +44.75,77.16,0.014 +44.75,91.33,0.009 +44.75,109.2,0.005 +44.75,129.75,0.003 +53.31,15.49,0.019 +53.31,18.48,0.042 +53.31,22.33,0.051 +53.31,26.67,0.056 +53.31,32.16,0.052 +53.31,38.59,0.042 +53.31,45.66,0.038 +53.31,54.49,0.028 +53.31,65.02,0.021 +53.31,77.16,0.013 +53.31,91.33,0.009 +53.31,109.2,0.005 +53.31,129.75,0.003 +63.64,15.49,0.02 +63.64,18.48,0.045 +63.64,22.33,0.055 +63.64,26.67,0.06 +63.64,32.16,0.056 +63.64,38.59,0.045 +63.64,45.66,0.041 +63.64,54.49,0.031 +63.64,65.02,0.022 +63.64,77.16,0.014 +63.64,91.33,0.009 +63.64,109.2,0.005 +63.64,129.75,0.003 +75.32,15.49,0.023 +75.32,18.48,0.051 +75.32,22.33,0.062 +75.32,26.67,0.068 +75.32,32.16,0.064 +75.32,38.59,0.051 +75.32,45.66,0.046 +75.32,54.49,0.035 +75.32,65.02,0.025 +75.32,77.16,0.016 +75.32,91.33,0.01 +75.32,109.2,0.006 +75.32,129.75,0.003 +89.66,15.49,0.022 +89.66,18.48,0.049 +89.66,22.33,0.058 +89.66,26.67,0.064 +89.66,32.16,0.06 +89.66,38.59,0.048 +89.66,45.66,0.043 +89.66,54.49,0.033 +89.66,65.02,0.024 +89.66,77.16,0.015 +89.66,91.33,0.01 +89.66,109.2,0.006 +89.66,129.75,0.003 +105.63,15.49,0.019 +105.63,18.48,0.043 +105.63,22.33,0.052 +105.63,26.67,0.057 +105.63,32.16,0.053 +105.63,38.59,0.043 +105.63,45.66,0.039 +105.63,54.49,0.029 +105.63,65.02,0.021 +105.63,77.16,0.013 +105.63,91.33,0.009 +105.63,109.2,0.005 +105.63,129.75,0.003 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyCcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyCcorrelation.csv new file mode 100644 index 0000000000..1e6f4a26a6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyCcorrelation.csv @@ -0,0 +1,152 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t13 +#: name: Dijet topology A - Dijet topology C correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology A) with forward-central dijet measurements (topology C). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijA-C.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetA-DijetC +15.74,15.72,0.009 +15.74,18.9,0.018 +15.74,22.24,0.022 +15.74,27.14,0.023 +15.74,33.03,0.022 +15.74,39.35,0.017 +15.74,46.62,0.015 +15.74,55.74,0.012 +15.74,66.39,0.008 +15.74,78.97,0.005 +15.74,94.22,0.003 +15.74,111.48,0.002 +18.5,15.72,0.047 +18.5,18.9,0.096 +18.5,22.24,0.116 +18.5,27.14,0.125 +18.5,33.03,0.115 +18.5,39.35,0.092 +18.5,46.62,0.082 +18.5,55.74,0.061 +18.5,66.39,0.044 +18.5,78.97,0.028 +18.5,94.22,0.018 +18.5,111.48,0.011 +21.96,15.72,0.013 +21.96,18.9,0.027 +21.96,22.24,0.032 +21.96,27.14,0.035 +21.96,33.03,0.032 +21.96,39.35,0.025 +21.96,46.62,0.023 +21.96,55.74,0.017 +21.96,66.39,0.012 +21.96,78.97,0.008 +21.96,94.22,0.005 +21.96,111.48,0.003 +26.17,15.72,0.022 +26.17,18.9,0.046 +26.17,22.24,0.055 +26.17,27.14,0.059 +26.17,33.03,0.055 +26.17,39.35,0.044 +26.17,46.62,0.039 +26.17,55.74,0.029 +26.17,66.39,0.021 +26.17,78.97,0.013 +26.17,94.22,0.009 +26.17,111.48,0.005 +31.63,15.72,0.02 +31.63,18.9,0.041 +31.63,22.24,0.049 +31.63,27.14,0.053 +31.63,33.03,0.049 +31.63,39.35,0.039 +31.63,46.62,0.035 +31.63,55.74,0.026 +31.63,66.39,0.019 +31.63,78.97,0.012 +31.63,94.22,0.008 +31.63,111.48,0.004 +37.8,15.72,0.016 +37.8,18.9,0.033 +37.8,22.24,0.039 +37.8,27.14,0.042 +37.8,33.03,0.039 +37.8,39.35,0.031 +37.8,46.62,0.028 +37.8,55.74,0.021 +37.8,66.39,0.015 +37.8,78.97,0.01 +37.8,94.22,0.006 +37.8,111.48,0.004 +44.75,15.72,0.015 +44.75,18.9,0.031 +44.75,22.24,0.038 +44.75,27.14,0.041 +44.75,33.03,0.038 +44.75,39.35,0.03 +44.75,46.62,0.027 +44.75,55.74,0.02 +44.75,66.39,0.014 +44.75,78.97,0.009 +44.75,94.22,0.006 +44.75,111.48,0.003 +53.31,15.72,0.014 +53.31,18.9,0.029 +53.31,22.24,0.035 +53.31,27.14,0.038 +53.31,33.03,0.035 +53.31,39.35,0.028 +53.31,46.62,0.025 +53.31,55.74,0.019 +53.31,66.39,0.013 +53.31,78.97,0.009 +53.31,94.22,0.006 +53.31,111.48,0.003 +63.64,15.72,0.016 +63.64,18.9,0.034 +63.64,22.24,0.04 +63.64,27.14,0.044 +63.64,33.03,0.04 +63.64,39.35,0.032 +63.64,46.62,0.029 +63.64,55.74,0.021 +63.64,66.39,0.015 +63.64,78.97,0.01 +63.64,94.22,0.006 +63.64,111.48,0.004 +75.32,15.72,0.021 +75.32,18.9,0.043 +75.32,22.24,0.052 +75.32,27.14,0.056 +75.32,33.03,0.051 +75.32,39.35,0.041 +75.32,46.62,0.037 +75.32,55.74,0.027 +75.32,66.39,0.02 +75.32,78.97,0.013 +75.32,94.22,0.008 +75.32,111.48,0.005 +89.66,15.72,0.02 +89.66,18.9,0.04 +89.66,22.24,0.049 +89.66,27.14,0.052 +89.66,33.03,0.048 +89.66,39.35,0.039 +89.66,46.62,0.035 +89.66,55.74,0.026 +89.66,66.39,0.019 +89.66,78.97,0.012 +89.66,94.22,0.008 +89.66,111.48,0.004 +105.63,15.72,0.021 +105.63,18.9,0.044 +105.63,22.24,0.053 +105.63,27.14,0.057 +105.63,33.03,0.052 +105.63,39.35,0.042 +105.63,46.62,0.037 +105.63,55.74,0.028 +105.63,66.39,0.02 +105.63,78.97,0.013 +105.63,94.22,0.008 +105.63,111.48,0.005 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyDcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyDcorrelation.csv new file mode 100644 index 0000000000..ba66cb31db --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyA-DijettopologyDcorrelation.csv @@ -0,0 +1,152 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t14 +#: name: Dijet topology A - Dijet topology D correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology A) with forward-central dijet measurements (topology D). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijA-D.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetA-DijetD +15.74,18.2,0.029 +15.74,21.67,0.039 +15.74,26.12,0.044 +15.74,31.42,0.043 +15.74,37.33,0.036 +15.74,44.6,0.033 +15.74,53.61,0.025 +15.74,63.38,0.019 +15.74,75.52,0.012 +15.74,89.6,0.008 +15.74,106.63,0.005 +15.74,127.17,0.003 +18.5,18.2,0.062 +18.5,21.67,0.084 +18.5,26.12,0.096 +18.5,31.42,0.094 +18.5,37.33,0.078 +18.5,44.6,0.071 +18.5,53.61,0.054 +18.5,63.38,0.04 +18.5,75.52,0.026 +18.5,89.6,0.017 +18.5,106.63,0.01 +18.5,127.17,0.005 +21.96,18.2,0.026 +21.96,21.67,0.035 +21.96,26.12,0.041 +21.96,31.42,0.04 +21.96,37.33,0.033 +21.96,44.6,0.03 +21.96,53.61,0.023 +21.96,63.38,0.017 +21.96,75.52,0.011 +21.96,89.6,0.007 +21.96,106.63,0.004 +21.96,127.17,0.002 +26.17,18.2,0.067 +26.17,21.67,0.092 +26.17,26.12,0.105 +26.17,31.42,0.103 +26.17,37.33,0.084 +26.17,44.6,0.077 +26.17,53.61,0.059 +26.17,63.38,0.044 +26.17,75.52,0.029 +26.17,89.6,0.019 +26.17,106.63,0.011 +26.17,127.17,0.006 +31.63,18.2,0.058 +31.63,21.67,0.078 +31.63,26.12,0.09 +31.63,31.42,0.088 +31.63,37.33,0.072 +31.63,44.6,0.066 +31.63,53.61,0.051 +31.63,63.38,0.038 +31.63,75.52,0.025 +31.63,89.6,0.016 +31.63,106.63,0.01 +31.63,127.17,0.005 +37.8,18.2,0.043 +37.8,21.67,0.058 +37.8,26.12,0.067 +37.8,31.42,0.065 +37.8,37.33,0.054 +37.8,44.6,0.049 +37.8,53.61,0.038 +37.8,63.38,0.028 +37.8,75.52,0.018 +37.8,89.6,0.012 +37.8,106.63,0.007 +37.8,127.17,0.004 +44.75,18.2,0.038 +44.75,21.67,0.052 +44.75,26.12,0.059 +44.75,31.42,0.058 +44.75,37.33,0.048 +44.75,44.6,0.044 +44.75,53.61,0.034 +44.75,63.38,0.025 +44.75,75.52,0.016 +44.75,89.6,0.011 +44.75,106.63,0.006 +44.75,127.17,0.003 +53.31,18.2,0.032 +53.31,21.67,0.044 +53.31,26.12,0.05 +53.31,31.42,0.049 +53.31,37.33,0.041 +53.31,44.6,0.037 +53.31,53.61,0.028 +53.31,63.38,0.021 +53.31,75.52,0.014 +53.31,89.6,0.009 +53.31,106.63,0.005 +53.31,127.17,0.003 +63.64,18.2,0.031 +63.64,21.67,0.042 +63.64,26.12,0.048 +63.64,31.42,0.047 +63.64,37.33,0.038 +63.64,44.6,0.035 +63.64,53.61,0.027 +63.64,63.38,0.02 +63.64,75.52,0.013 +63.64,89.6,0.009 +63.64,106.63,0.005 +63.64,127.17,0.003 +75.32,18.2,0.032 +75.32,21.67,0.043 +75.32,26.12,0.049 +75.32,31.42,0.048 +75.32,37.33,0.04 +75.32,44.6,0.036 +75.32,53.61,0.028 +75.32,63.38,0.021 +75.32,75.52,0.014 +75.32,89.6,0.009 +75.32,106.63,0.005 +75.32,127.17,0.003 +89.66,18.2,0.03 +89.66,21.67,0.041 +89.66,26.12,0.047 +89.66,31.42,0.046 +89.66,37.33,0.038 +89.66,44.6,0.034 +89.66,53.61,0.026 +89.66,63.38,0.02 +89.66,75.52,0.013 +89.66,89.6,0.008 +89.66,106.63,0.005 +89.66,127.17,0.003 +105.63,18.2,0.028 +105.63,21.67,0.038 +105.63,26.12,0.044 +105.63,31.42,0.043 +105.63,37.33,0.035 +105.63,44.6,0.032 +105.63,53.61,0.025 +105.63,63.38,0.018 +105.63,75.52,0.012 +105.63,89.6,0.008 +105.63,106.63,0.005 +105.63,127.17,0.002 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyBcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyBcorrelation.csv new file mode 100644 index 0000000000..b01d7a8276 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyBcorrelation.csv @@ -0,0 +1,99 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t15 +#: name: Dijet topology B correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) for forward-forward dijet measurements (topology B). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijB.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetB +15.49,15.49,1.0 +15.49,18.48,0.02 +15.49,22.33,0.024 +15.49,26.67,0.027 +15.49,32.16,0.025 +15.49,38.59,0.021 +15.49,45.66,0.019 +15.49,54.49,0.014 +15.49,65.02,0.01 +15.49,77.16,0.007 +15.49,91.33,0.004 +15.49,109.2,0.003 +15.49,129.75,0.001 +18.48,18.48,1.0 +18.48,22.33,0.059 +18.48,26.67,0.066 +18.48,32.16,0.062 +18.48,38.59,0.051 +18.48,45.66,0.046 +18.48,54.49,0.035 +18.48,65.02,0.026 +18.48,77.16,0.017 +18.48,91.33,0.011 +18.48,109.2,0.007 +18.48,129.75,0.004 +22.33,22.33,1.0 +22.33,26.67,0.08 +22.33,32.16,0.076 +22.33,38.59,0.061 +22.33,45.66,0.056 +22.33,54.49,0.042 +22.33,65.02,0.031 +22.33,77.16,0.02 +22.33,91.33,0.013 +22.33,109.2,0.008 +22.33,129.75,0.004 +26.67,26.67,1.0 +26.67,32.16,0.089 +26.67,38.59,0.072 +26.67,45.66,0.065 +26.67,54.49,0.05 +26.67,65.02,0.036 +26.67,77.16,0.024 +26.67,91.33,0.016 +26.67,109.2,0.009 +26.67,129.75,0.005 +32.16,32.16,1.0 +32.16,38.59,0.074 +32.16,45.66,0.067 +32.16,54.49,0.051 +32.16,65.02,0.037 +32.16,77.16,0.024 +32.16,91.33,0.016 +32.16,109.2,0.01 +32.16,129.75,0.005 +38.59,38.59,1.0 +38.59,45.66,0.058 +38.59,54.49,0.044 +38.59,65.02,0.033 +38.59,77.16,0.021 +38.59,91.33,0.014 +38.59,109.2,0.008 +38.59,129.75,0.004 +45.66,45.66,1.0 +45.66,54.49,0.043 +45.66,65.02,0.032 +45.66,77.16,0.021 +45.66,91.33,0.014 +45.66,109.2,0.008 +45.66,129.75,0.004 +54.49,54.49,1.0 +54.49,65.02,0.03 +54.49,77.16,0.019 +54.49,91.33,0.013 +54.49,109.2,0.008 +54.49,129.75,0.004 +65.02,65.02,1.0 +65.02,77.16,0.021 +65.02,91.33,0.014 +65.02,109.2,0.008 +65.02,129.75,0.004 +77.16,77.16,1.0 +77.16,91.33,0.014 +77.16,109.2,0.009 +77.16,129.75,0.005 +91.33,91.33,1.0 +91.33,109.2,0.008 +91.33,129.75,0.004 +109.2,109.2,1.0 +109.2,129.75,0.003 +129.75,129.75,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyCcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyCcorrelation.csv new file mode 100644 index 0000000000..3002182748 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyCcorrelation.csv @@ -0,0 +1,164 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t16 +#: name: Dijet topology B - Dijet topology C correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology B) with forward-central dijet measurements (topology C). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijB-C.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetB-DijetC +15.49,15.72,0.009 +15.49,18.9,0.02 +15.49,22.24,0.024 +15.49,27.14,0.027 +15.49,33.03,0.025 +15.49,39.35,0.02 +15.49,46.62,0.018 +15.49,55.74,0.014 +15.49,66.39,0.01 +15.49,78.97,0.006 +15.49,94.22,0.004 +15.49,111.48,0.003 +18.48,15.72,0.039 +18.48,18.9,0.086 +18.48,22.24,0.105 +18.48,27.14,0.115 +18.48,33.03,0.107 +18.48,39.35,0.086 +18.48,46.62,0.078 +18.48,55.74,0.059 +18.48,66.39,0.043 +18.48,78.97,0.028 +18.48,94.22,0.018 +18.48,111.48,0.011 +22.33,15.72,0.016 +22.33,18.9,0.036 +22.33,22.24,0.044 +22.33,27.14,0.048 +22.33,33.03,0.045 +22.33,39.35,0.036 +22.33,46.62,0.032 +22.33,55.74,0.024 +22.33,66.39,0.018 +22.33,78.97,0.011 +22.33,94.22,0.008 +22.33,111.48,0.004 +26.67,15.72,0.026 +26.67,18.9,0.057 +26.67,22.24,0.07 +26.67,27.14,0.077 +26.67,33.03,0.072 +26.67,39.35,0.058 +26.67,46.62,0.052 +26.67,55.74,0.039 +26.67,66.39,0.029 +26.67,78.97,0.018 +26.67,94.22,0.012 +26.67,111.48,0.007 +32.16,15.72,0.024 +32.16,18.9,0.053 +32.16,22.24,0.065 +32.16,27.14,0.071 +32.16,33.03,0.066 +32.16,39.35,0.053 +32.16,46.62,0.048 +32.16,55.74,0.036 +32.16,66.39,0.026 +32.16,78.97,0.017 +32.16,94.22,0.011 +32.16,111.48,0.007 +38.59,15.72,0.02 +38.59,18.9,0.044 +38.59,22.24,0.053 +38.59,27.14,0.058 +38.59,33.03,0.055 +38.59,39.35,0.044 +38.59,46.62,0.039 +38.59,55.74,0.03 +38.59,66.39,0.022 +38.59,78.97,0.014 +38.59,94.22,0.009 +38.59,111.48,0.005 +45.66,15.72,0.019 +45.66,18.9,0.043 +45.66,22.24,0.053 +45.66,27.14,0.058 +45.66,33.03,0.054 +45.66,39.35,0.044 +45.66,46.62,0.039 +45.66,55.74,0.029 +45.66,66.39,0.022 +45.66,78.97,0.014 +45.66,94.22,0.009 +45.66,111.48,0.005 +54.49,15.72,0.018 +54.49,18.9,0.041 +54.49,22.24,0.049 +54.49,27.14,0.054 +54.49,33.03,0.051 +54.49,39.35,0.041 +54.49,46.62,0.037 +54.49,55.74,0.028 +54.49,66.39,0.02 +54.49,78.97,0.013 +54.49,94.22,0.009 +54.49,111.48,0.005 +65.02,15.72,0.02 +65.02,18.9,0.045 +65.02,22.24,0.055 +65.02,27.14,0.06 +65.02,33.03,0.057 +65.02,39.35,0.045 +65.02,46.62,0.041 +65.02,55.74,0.031 +65.02,66.39,0.022 +65.02,78.97,0.015 +65.02,94.22,0.01 +65.02,111.48,0.006 +77.16,15.72,0.024 +77.16,18.9,0.053 +77.16,22.24,0.065 +77.16,27.14,0.071 +77.16,33.03,0.067 +77.16,39.35,0.054 +77.16,46.62,0.048 +77.16,55.74,0.036 +77.16,66.39,0.027 +77.16,78.97,0.017 +77.16,94.22,0.011 +77.16,111.48,0.007 +91.33,15.72,0.021 +91.33,18.9,0.046 +91.33,22.24,0.057 +91.33,27.14,0.062 +91.33,33.03,0.058 +91.33,39.35,0.047 +91.33,46.62,0.042 +91.33,55.74,0.032 +91.33,66.39,0.023 +91.33,78.97,0.015 +91.33,94.22,0.01 +91.33,111.48,0.006 +109.2,15.72,0.019 +109.2,18.9,0.042 +109.2,22.24,0.051 +109.2,27.14,0.056 +109.2,33.03,0.053 +109.2,39.35,0.042 +109.2,46.62,0.038 +109.2,55.74,0.029 +109.2,66.39,0.021 +109.2,78.97,0.014 +109.2,94.22,0.009 +109.2,111.48,0.005 +129.75,15.72,0.057 +129.75,18.9,0.126 +129.75,22.24,0.154 +129.75,27.14,0.169 +129.75,33.03,0.158 +129.75,39.35,0.127 +129.75,46.62,0.114 +129.75,55.74,0.086 +129.75,66.39,0.063 +129.75,78.97,0.041 +129.75,94.22,0.027 +129.75,111.48,0.016 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyDcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyDcorrelation.csv new file mode 100644 index 0000000000..9312d55d2b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyB-DijettopologyDcorrelation.csv @@ -0,0 +1,164 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t17 +#: name: Dijet topology B - Dijet topology D correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology B) with forward-central dijet measurements (topology D). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijB-D.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology D - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetB-DijetD +15.49,18.2,0.031 +15.49,21.67,0.043 +15.49,26.12,0.05 +15.49,31.42,0.05 +15.49,37.33,0.041 +15.49,44.6,0.038 +15.49,53.61,0.03 +15.49,63.38,0.022 +15.49,75.52,0.015 +15.49,89.6,0.01 +15.49,106.63,0.006 +15.49,127.17,0.003 +18.48,18.2,0.055 +18.48,21.67,0.076 +18.48,26.12,0.088 +18.48,31.42,0.087 +18.48,37.33,0.072 +18.48,44.6,0.066 +18.48,53.61,0.052 +18.48,63.38,0.039 +18.48,75.52,0.026 +18.48,89.6,0.017 +18.48,106.63,0.01 +18.48,127.17,0.006 +22.33,18.2,0.035 +22.33,21.67,0.048 +22.33,26.12,0.055 +22.33,31.42,0.055 +22.33,37.33,0.046 +22.33,44.6,0.042 +22.33,53.61,0.033 +22.33,63.38,0.025 +22.33,75.52,0.016 +22.33,89.6,0.011 +22.33,106.63,0.007 +22.33,127.17,0.004 +26.67,18.2,0.084 +26.67,21.67,0.116 +26.67,26.12,0.134 +26.67,31.42,0.133 +26.67,37.33,0.111 +26.67,44.6,0.102 +26.67,53.61,0.079 +26.67,63.38,0.06 +26.67,75.52,0.039 +26.67,89.6,0.027 +26.67,106.63,0.016 +26.67,127.17,0.009 +32.16,18.2,0.075 +32.16,21.67,0.103 +32.16,26.12,0.119 +32.16,31.42,0.118 +32.16,37.33,0.098 +32.16,44.6,0.09 +32.16,53.61,0.07 +32.16,63.38,0.053 +32.16,75.52,0.035 +32.16,89.6,0.024 +32.16,106.63,0.014 +32.16,127.17,0.008 +38.59,18.2,0.057 +38.59,21.67,0.079 +38.59,26.12,0.091 +38.59,31.42,0.09 +38.59,37.33,0.075 +38.59,44.6,0.069 +38.59,53.61,0.054 +38.59,63.38,0.04 +38.59,75.52,0.027 +38.59,89.6,0.018 +38.59,106.63,0.011 +38.59,127.17,0.006 +45.66,18.2,0.052 +45.66,21.67,0.072 +45.66,26.12,0.083 +45.66,31.42,0.083 +45.66,37.33,0.069 +45.66,44.6,0.063 +45.66,53.61,0.049 +45.66,63.38,0.037 +45.66,75.52,0.024 +45.66,89.6,0.016 +45.66,106.63,0.01 +45.66,127.17,0.005 +54.49,18.2,0.044 +54.49,21.67,0.062 +54.49,26.12,0.071 +54.49,31.42,0.07 +54.49,37.33,0.058 +54.49,44.6,0.054 +54.49,53.61,0.042 +54.49,63.38,0.032 +54.49,75.52,0.021 +54.49,89.6,0.014 +54.49,106.63,0.008 +54.49,127.17,0.005 +65.02,18.2,0.041 +65.02,21.67,0.057 +65.02,26.12,0.065 +65.02,31.42,0.065 +65.02,37.33,0.054 +65.02,44.6,0.05 +65.02,53.61,0.039 +65.02,63.38,0.029 +65.02,75.52,0.019 +65.02,89.6,0.013 +65.02,106.63,0.008 +65.02,127.17,0.004 +77.16,18.2,0.039 +77.16,21.67,0.055 +77.16,26.12,0.063 +77.16,31.42,0.062 +77.16,37.33,0.052 +77.16,44.6,0.048 +77.16,53.61,0.037 +77.16,63.38,0.028 +77.16,75.52,0.018 +77.16,89.6,0.012 +77.16,106.63,0.007 +77.16,127.17,0.004 +91.33,18.2,0.034 +91.33,21.67,0.048 +91.33,26.12,0.055 +91.33,31.42,0.055 +91.33,37.33,0.045 +91.33,44.6,0.042 +91.33,53.61,0.032 +91.33,63.38,0.024 +91.33,75.52,0.016 +91.33,89.6,0.011 +91.33,106.63,0.007 +91.33,127.17,0.004 +109.2,18.2,0.027 +109.2,21.67,0.037 +109.2,26.12,0.043 +109.2,31.42,0.043 +109.2,37.33,0.035 +109.2,44.6,0.033 +109.2,53.61,0.025 +109.2,63.38,0.019 +109.2,75.52,0.013 +109.2,89.6,0.008 +109.2,106.63,0.005 +109.2,127.17,0.003 +129.75,18.2,0.063 +129.75,21.67,0.087 +129.75,26.12,0.1 +129.75,31.42,0.099 +129.75,37.33,0.082 +129.75,44.6,0.076 +129.75,53.61,0.059 +129.75,63.38,0.044 +129.75,75.52,0.029 +129.75,89.6,0.02 +129.75,106.63,0.012 +129.75,127.17,0.007 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyCcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyCcorrelation.csv new file mode 100644 index 0000000000..91b0628ba6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyCcorrelation.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t18 +#: name: Dijet topology C correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) for forward-forward dijet measurements (topology C). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijC.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetC +15.72,15.72,1.0 +15.72,18.9,0.02 +15.72,22.24,0.025 +15.72,27.14,0.026 +15.72,33.03,0.024 +15.72,39.35,0.019 +15.72,46.62,0.017 +15.72,55.74,0.013 +15.72,66.39,0.009 +15.72,78.97,0.006 +15.72,94.22,0.004 +15.72,111.48,0.002 +18.9,18.9,1.0 +18.9,22.24,0.183 +18.9,27.14,0.196 +18.9,33.03,0.181 +18.9,39.35,0.145 +18.9,46.62,0.13 +18.9,55.74,0.097 +18.9,66.39,0.07 +18.9,78.97,0.045 +18.9,94.22,0.03 +18.9,111.48,0.018 +22.24,22.24,1.0 +22.24,27.14,0.028 +22.24,33.03,0.026 +22.24,39.35,0.021 +22.24,46.62,0.019 +22.24,55.74,0.014 +22.24,66.39,0.01 +22.24,78.97,0.006 +22.24,94.22,0.004 +22.24,111.48,0.003 +27.14,27.14,1.0 +27.14,33.03,0.058 +27.14,39.35,0.046 +27.14,46.62,0.041 +27.14,55.74,0.031 +27.14,66.39,0.022 +27.14,78.97,0.014 +27.14,94.22,0.009 +27.14,111.48,0.006 +33.03,33.03,1.0 +33.03,39.35,0.038 +33.03,46.62,0.034 +33.03,55.74,0.025 +33.03,66.39,0.018 +33.03,78.97,0.012 +33.03,94.22,0.008 +33.03,111.48,0.005 +39.35,39.35,1.0 +39.35,46.62,0.027 +39.35,55.74,0.02 +39.35,66.39,0.014 +39.35,78.97,0.009 +39.35,94.22,0.006 +39.35,111.48,0.004 +46.62,46.62,1.0 +46.62,55.74,0.019 +46.62,66.39,0.014 +46.62,78.97,0.009 +46.62,94.22,0.006 +46.62,111.48,0.004 +55.74,55.74,1.0 +55.74,66.39,0.013 +55.74,78.97,0.008 +55.74,94.22,0.006 +55.74,111.48,0.003 +66.39,66.39,1.0 +66.39,78.97,0.01 +66.39,94.22,0.007 +66.39,111.48,0.004 +78.97,78.97,1.0 +78.97,94.22,0.009 +78.97,111.48,0.005 +94.22,94.22,1.0 +94.22,111.48,0.005 +111.48,111.48,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyDcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyDcorrelation.csv new file mode 100644 index 0000000000..2ae48ee0d0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyC-DijettopologyDcorrelation.csv @@ -0,0 +1,152 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t19 +#: name: Dijet topology C - Dijet topology D correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) coupling forward-forward dijet measurements (topology C) with forward-central dijet measurements (topology D). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijC-D.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology D - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetC-DijetD +15.72,18.2,0.032 +15.72,21.67,0.044 +15.72,26.12,0.05 +15.72,31.42,0.049 +15.72,37.33,0.04 +15.72,44.6,0.037 +15.72,53.61,0.028 +15.72,63.38,0.021 +15.72,75.52,0.014 +15.72,89.6,0.009 +15.72,106.63,0.006 +15.72,127.17,0.003 +18.9,18.2,0.097 +18.9,21.67,0.134 +18.9,26.12,0.152 +18.9,31.42,0.15 +18.9,37.33,0.123 +18.9,44.6,0.113 +18.9,53.61,0.087 +18.9,63.38,0.065 +18.9,75.52,0.043 +18.9,89.6,0.029 +18.9,106.63,0.017 +18.9,127.17,0.01 +22.24,18.2,0.021 +22.24,21.67,0.029 +22.24,26.12,0.033 +22.24,31.42,0.032 +22.24,37.33,0.027 +22.24,44.6,0.024 +22.24,53.61,0.019 +22.24,63.38,0.014 +22.24,75.52,0.009 +22.24,89.6,0.006 +22.24,106.63,0.004 +22.24,127.17,0.002 +27.14,18.2,0.07 +27.14,21.67,0.097 +27.14,26.12,0.11 +27.14,31.42,0.108 +27.14,37.33,0.089 +27.14,44.6,0.082 +27.14,53.61,0.063 +27.14,63.38,0.047 +27.14,75.52,0.031 +27.14,89.6,0.021 +27.14,106.63,0.012 +27.14,127.17,0.007 +33.03,18.2,0.056 +33.03,21.67,0.078 +33.03,26.12,0.088 +33.03,31.42,0.087 +33.03,37.33,0.071 +33.03,44.6,0.065 +33.03,53.61,0.05 +33.03,63.38,0.037 +33.03,75.52,0.025 +33.03,89.6,0.017 +33.03,106.63,0.01 +33.03,127.17,0.006 +39.35,18.2,0.04 +39.35,21.67,0.056 +39.35,26.12,0.063 +39.35,31.42,0.062 +39.35,37.33,0.051 +39.35,44.6,0.047 +39.35,53.61,0.036 +39.35,63.38,0.027 +39.35,75.52,0.018 +39.35,89.6,0.012 +39.35,106.63,0.007 +39.35,127.17,0.004 +46.62,18.2,0.036 +46.62,21.67,0.05 +46.62,26.12,0.057 +46.62,31.42,0.056 +46.62,37.33,0.046 +46.62,44.6,0.042 +46.62,53.61,0.032 +46.62,63.38,0.024 +46.62,75.52,0.016 +46.62,89.6,0.011 +46.62,106.63,0.006 +46.62,127.17,0.004 +55.74,18.2,0.031 +55.74,21.67,0.043 +55.74,26.12,0.049 +55.74,31.42,0.048 +55.74,37.33,0.039 +55.74,44.6,0.036 +55.74,53.61,0.028 +55.74,63.38,0.021 +55.74,75.52,0.014 +55.74,89.6,0.009 +55.74,106.63,0.006 +55.74,127.17,0.003 +66.39,18.2,0.03 +66.39,21.67,0.042 +66.39,26.12,0.048 +66.39,31.42,0.047 +66.39,37.33,0.039 +66.39,44.6,0.035 +66.39,53.61,0.027 +66.39,63.38,0.02 +66.39,75.52,0.013 +66.39,89.6,0.009 +66.39,106.63,0.005 +66.39,127.17,0.003 +78.97,18.2,0.033 +78.97,21.67,0.046 +78.97,26.12,0.052 +78.97,31.42,0.051 +78.97,37.33,0.042 +78.97,44.6,0.038 +78.97,53.61,0.029 +78.97,63.38,0.022 +78.97,75.52,0.014 +78.97,89.6,0.01 +78.97,106.63,0.006 +78.97,127.17,0.003 +94.22,18.2,0.029 +94.22,21.67,0.04 +94.22,26.12,0.045 +94.22,31.42,0.044 +94.22,37.33,0.036 +94.22,44.6,0.033 +94.22,53.61,0.026 +94.22,63.38,0.019 +94.22,75.52,0.013 +94.22,89.6,0.008 +94.22,106.63,0.005 +94.22,127.17,0.003 +111.48,18.2,0.027 +111.48,21.67,0.038 +111.48,26.12,0.043 +111.48,31.42,0.042 +111.48,37.33,0.035 +111.48,44.6,0.032 +111.48,53.61,0.024 +111.48,63.38,0.018 +111.48,75.52,0.012 +111.48,89.6,0.008 +111.48,106.63,0.005 +111.48,127.17,0.003 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyD-DijettopologyDcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyD-DijettopologyDcorrelation.csv new file mode 100644 index 0000000000..aca0dc39f5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/DijettopologyD-DijettopologyDcorrelation.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t20 +#: name: Dijet topology D correlation +#: description: The correlation matrix for the point-to-point uncertainties (systematics only) for forward-forward dijet measurements (topology D). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: DijD.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +Topology D - Parton Dijet $M_{inv}$ (GeV/$c^2$),Topology D - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation DijetD +18.2,18.2,1.0 +18.2,21.67,0.097 +18.2,26.12,0.115 +18.2,31.42,0.12 +18.2,37.33,0.103 +18.2,44.6,0.096 +18.2,53.61,0.077 +18.2,63.38,0.059 +18.2,75.52,0.04 +18.2,89.6,0.027 +18.2,106.63,0.017 +18.2,127.17,0.009 +21.67,21.67,1.0 +21.67,26.12,0.038 +21.67,31.42,0.04 +21.67,37.33,0.034 +21.67,44.6,0.032 +21.67,53.61,0.025 +21.67,63.38,0.019 +21.67,75.52,0.013 +21.67,89.6,0.009 +21.67,106.63,0.005 +21.67,127.17,0.003 +26.12,26.12,1.0 +26.12,31.42,0.197 +26.12,37.33,0.168 +26.12,44.6,0.158 +26.12,53.61,0.125 +26.12,63.38,0.097 +26.12,75.52,0.065 +26.12,89.6,0.045 +26.12,106.63,0.027 +26.12,127.17,0.015 +31.42,31.42,1.0 +31.42,37.33,0.13 +31.42,44.6,0.122 +31.42,53.61,0.097 +31.42,63.38,0.075 +31.42,75.52,0.05 +31.42,89.6,0.034 +31.42,106.63,0.021 +31.42,127.17,0.012 +37.33,37.33,1.0 +37.33,44.6,0.082 +37.33,53.61,0.065 +37.33,63.38,0.05 +37.33,75.52,0.034 +37.33,89.6,0.023 +37.33,106.63,0.014 +37.33,127.17,0.008 +44.6,44.6,1.0 +44.6,53.61,0.054 +44.6,63.38,0.042 +44.6,75.52,0.028 +44.6,89.6,0.019 +44.6,106.63,0.012 +44.6,127.17,0.007 +53.61,53.61,1.0 +53.61,63.38,0.032 +53.61,75.52,0.022 +53.61,89.6,0.015 +53.61,106.63,0.009 +53.61,127.17,0.005 +63.38,63.38,1.0 +63.38,75.52,0.018 +63.38,89.6,0.012 +63.38,106.63,0.007 +63.38,127.17,0.004 +75.52,75.52,1.0 +75.52,89.6,0.011 +75.52,106.63,0.007 +75.52,127.17,0.004 +89.6,89.6,1.0 +89.6,106.63,0.006 +89.6,127.17,0.003 +106.63,106.63,1.0 +106.63,127.17,0.003 +127.17,127.17,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure3.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure3.csv new file mode 100644 index 0000000000..a2811b10a3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure3.csv @@ -0,0 +1,54 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t1 +#: name: Figure 3 +#: description: Parton jet $p_T$ vs $A_{LL}$ values with associated uncertainties. +#: data_file: InclusiveJet.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET X +Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range LOW,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range HIGH,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$,syst +,syst - +0.03055,0.02719,0.03391,0.03055,0.00336,-0.00336 +0.037725,0.03542,0.04003,0.03773,0.0023,-0.0023 +0.045759999999999995,0.04391,0.04761,0.04576,0.00185,-0.00185 +0.053290000000000004,0.05129,0.05529,0.05329,0.002,-0.002 +0.061805,0.05969,0.06392,0.0618,0.00211,-0.00211 +0.078,0.07516,0.08084,0.078,0.00284,-0.00284 +0.088945,0.08577,0.09212,0.08894,0.00318,-0.00318 +0.10172500000000001,0.09822,0.10523,0.10173,0.0035,-0.0035 +0.11667,0.11273,0.12061,0.11667,0.00394,-0.00394 +0.13446999999999998,0.12971,0.13923,0.13447,0.00476,-0.00476 +0.155255,0.14978,0.16073,0.15525,0.00548,-0.00548 +0.179455,0.17348,0.18543,0.17945,0.00597,-0.00597 +0.20851,0.20173,0.21529,0.20851,0.00678,-0.00678 +0.24066500000000002,0.23302,0.24831,0.24067,0.00765,-0.00765 + +Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range LOW,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range HIGH,Parton Jet $p_{T}$ (GeV/$c$),syst +,syst - +0.03055,0.02719,0.03391,7.79,0.86,-0.86 +0.037725,0.03542,0.04003,9.62,0.59,-0.59 +0.045759999999999995,0.04391,0.04761,11.67,0.47,-0.47 +0.053290000000000004,0.05129,0.05529,13.59,0.51,-0.51 +0.061805,0.05969,0.06392,15.76,0.54,-0.54 +0.078,0.07516,0.08084,19.89,0.73,-0.73 +0.088945,0.08577,0.09212,22.68,0.81,-0.81 +0.10172500000000001,0.09822,0.10523,25.94,0.89,-0.89 +0.11667,0.11273,0.12061,29.75,1.0,-1.0 +0.13446999999999998,0.12971,0.13923,34.29,1.21,-1.21 +0.155255,0.14978,0.16073,39.59,1.4,-1.4 +0.179455,0.17348,0.18543,45.76,1.52,-1.52 +0.20851,0.20173,0.21529,53.17,1.73,-1.73 +0.24066500000000002,0.23302,0.24831,61.37,1.95,-1.95 + +Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range LOW,Parton Jet $x_{T} (=2p_{T}/\sqrt{s})$ range HIGH,Inclusive Jet $A_{LL}$,stat +,stat -,syst +,syst - +0.03055,0.02719,0.03391,0.00626,0.00241,-0.00241,0.0006,-0.0006 +0.037725,0.03542,0.04003,0.00258,0.00249,-0.00249,0.00056,-0.00056 +0.045759999999999995,0.04391,0.04761,0.00277,0.00176,-0.00176,0.00054,-0.00054 +0.053290000000000004,0.05129,0.05529,-0.00075,0.00187,-0.00187,0.00054,-0.00054 +0.061805,0.05969,0.06392,-0.00085,0.00216,-0.00216,0.00051,-0.00051 +0.078,0.07516,0.08084,0.00444,0.00112,-0.00112,0.0005,-0.0005 +0.088945,0.08577,0.09212,0.00308,0.00114,-0.00114,0.0005,-0.0005 +0.10172500000000001,0.09822,0.10523,0.00572,0.00128,-0.00128,0.00051,-0.00051 +0.11667,0.11273,0.12061,0.01008,0.00161,-0.00161,0.00054,-0.00054 +0.13446999999999998,0.12971,0.13923,0.01033,0.00217,-0.00217,0.00059,-0.00059 +0.155255,0.14978,0.16073,0.01249,0.00312,-0.00312,0.00064,-0.00064 +0.179455,0.17348,0.18543,0.01824,0.00478,-0.00478,0.00068,-0.00068 +0.20851,0.20173,0.21529,0.02205,0.00788,-0.00788,0.00092,-0.00092 +0.24066500000000002,0.23302,0.24831,0.04527,0.01388,-0.01388,0.00212,-0.00212 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyA.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyA.csv new file mode 100644 index 0000000000..7efc331aa9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyA.csv @@ -0,0 +1,34 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t2 +#: name: Figure 5 topology A +#: description: Parton dijet $M_{inv}$ vs $A_{LL}$ values with associated uncertainties, for topology A. +#: data_file: DijetA.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,Parton Dijet $M_{inv}$ (GeV/$c^{2}$),syst +,syst - +15.74,14.32,17.16,15.74,1.42,-1.42 +18.5,17.36,19.64,18.5,1.14,-1.14 +21.96,21.01,22.91,21.96,0.95,-0.95 +26.17,25.23,27.11,26.17,0.94,-0.94 +31.630000000000003,30.59,32.67,31.63,1.04,-1.04 +37.8,36.44,39.16,37.8,1.36,-1.36 +44.75,43.4,46.1,44.75,1.35,-1.35 +53.31,51.81,54.81,53.31,1.5,-1.5 +63.64,61.91,65.37,63.64,1.73,-1.73 +75.32,73.26,77.38,75.32,2.06,-2.06 +89.66,87.15,92.17,89.66,2.51,-2.51 +105.63,102.73,108.53,105.63,2.9,-2.9 + +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,"Dijet $A_{LL}$, topology A",stat +,stat -,syst +,syst - +15.74,14.32,17.16,-0.00548,0.00619,-0.00619,0.00055,-0.00055 +18.5,17.36,19.64,-0.00011,0.00289,-0.00289,0.00074,-0.00074 +21.96,21.01,22.91,0.00165,0.00248,-0.00248,0.0005,-0.0005 +26.17,25.23,27.11,0.00129,0.00226,-0.00226,0.00055,-0.00055 +31.630000000000003,30.59,32.67,0.00248,0.00246,-0.00246,0.00056,-0.00056 +37.8,36.44,39.16,0.00581,0.00311,-0.00311,0.00057,-0.00057 +44.75,43.4,46.1,0.00666,0.00349,-0.00349,0.00059,-0.00059 +53.31,51.81,54.81,0.0114,0.00472,-0.00472,0.00066,-0.00066 +63.64,61.91,65.37,0.01826,0.00659,-0.00659,0.00082,-0.00082 +75.32,73.26,77.38,0.02431,0.01045,-0.01045,0.00114,-0.00114 +89.66,87.15,92.17,0.03638,0.01633,-0.01633,0.00144,-0.00144 +105.63,102.73,108.53,-0.00789,0.02919,-0.02919,0.00198,-0.00198 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyB.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyB.csv new file mode 100644 index 0000000000..98b3cb8c59 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyB.csv @@ -0,0 +1,36 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t3 +#: name: Figure 5 topology B +#: description: Parton dijet $M_{inv}$ vs $A_{LL}$ values with associated uncertainties, for topology B. +#: data_file: DijetB.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,Parton Dijet $M_{inv}$ (GeV/$c^{2}$),syst +,syst - +15.49,14.02,16.96,15.49,1.47,-1.47 +18.479999999999997,17.65,19.31,18.48,0.83,-0.83 +22.33,21.58,23.08,22.33,0.75,-0.75 +26.67,25.76,27.58,26.67,0.91,-0.91 +32.16,31.17,33.15,32.16,0.99,-0.99 +38.59,37.42,39.76,38.59,1.17,-1.17 +45.66,44.25,47.07,45.66,1.41,-1.41 +54.489999999999995,52.98,56.0,54.49,1.51,-1.51 +65.02,63.27,66.77,65.02,1.75,-1.75 +77.16,75.09,79.23,77.16,2.07,-2.07 +91.33000000000001,88.76,93.9,91.33,2.57,-2.57 +109.2,106.15,112.25,109.2,3.05,-3.05 +129.75,126.3,133.2,129.75,3.45,-3.45 + +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,"Dijet $A_{LL}$, topology B",stat +,stat -,syst +,syst - +15.49,14.02,16.96,0.00381,0.00533,-0.00533,0.00048,-0.00048 +18.479999999999997,17.65,19.31,0.00299,0.00213,-0.00213,0.00048,-0.00048 +22.33,21.58,23.08,-0.00116,0.00173,-0.00173,0.00048,-0.00048 +26.67,25.76,27.58,0.00336,0.00152,-0.00152,0.00049,-0.00049 +32.16,31.17,33.15,-0.0006,0.00161,-0.00161,0.00051,-0.00051 +38.59,37.42,39.76,0.00154,0.00202,-0.00202,0.00053,-0.00053 +45.66,44.25,47.07,0.0062,0.00224,-0.00224,0.00056,-0.00056 +54.489999999999995,52.98,56.0,0.00865,0.00297,-0.00297,0.00062,-0.00062 +65.02,63.27,66.77,0.00806,0.00406,-0.00406,0.00074,-0.00074 +77.16,75.09,79.23,0.02428,0.00629,-0.00629,0.00094,-0.00094 +91.33000000000001,88.76,93.9,0.01063,0.00953,-0.00953,0.00108,-0.00108 +109.2,106.15,112.25,0.01248,0.01613,-0.01613,0.00121,-0.00121 +129.75,126.3,133.2,0.05037,0.02978,-0.02978,0.0028,-0.0028 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyC.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyC.csv new file mode 100644 index 0000000000..abc0f66560 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyC.csv @@ -0,0 +1,34 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t4 +#: name: Figure 5 topology C +#: description: Parton dijet $M_{inv}$ vs $A_{LL}$ values with associated uncertainties, for topology C. +#: data_file: DijetC.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,Parton Dijet $M_{inv}$ (GeV/$c^{2}$),syst +,syst - +15.72,14.18,17.26,15.72,1.54,-1.54 +18.9,17.91,19.89,18.9,0.99,-0.99 +22.240000000000002,21.22,23.26,22.24,1.02,-1.02 +27.14,26.16,28.12,27.14,0.98,-0.98 +33.03,31.94,34.12,33.03,1.09,-1.09 +39.35,37.92,40.78,39.35,1.43,-1.43 +46.62,45.08,48.16,46.62,1.54,-1.54 +55.74,54.03,57.45,55.74,1.71,-1.71 +66.38999999999999,64.46,68.32,66.39,1.93,-1.93 +78.97,76.71,81.23,78.97,2.26,-2.26 +94.22,91.37,97.07,94.22,2.85,-2.85 +111.48,108.26,114.7,111.48,3.22,-3.22 + +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,"Dijet $A_{LL}$, topology C",stat +,stat -,syst +,syst - +15.72,14.18,17.26,-0.01155,0.00785,-0.00785,0.00079,-0.00079 +18.9,17.91,19.89,0.00075,0.00367,-0.00367,0.00153,-0.00153 +22.240000000000002,21.22,23.26,-0.00293,0.00317,-0.00317,0.00052,-0.00052 +27.14,26.16,28.12,0.00018,0.00291,-0.00291,0.00075,-0.00075 +33.03,31.94,34.12,0.00655,0.00317,-0.00317,0.00071,-0.00071 +39.35,37.92,40.78,0.00969,0.004,-0.004,0.0007,-0.0007 +46.62,45.08,48.16,0.00817,0.00448,-0.00448,0.00073,-0.00073 +55.74,54.03,57.45,0.01317,0.00603,-0.00603,0.00082,-0.00082 +66.38999999999999,64.46,68.32,0.01866,0.00833,-0.00833,0.00105,-0.00105 +78.97,76.71,81.23,0.01712,0.01292,-0.01292,0.00151,-0.00151 +94.22,91.37,97.07,0.01357,0.01964,-0.01964,0.00173,-0.00173 +111.48,108.26,114.7,-0.00575,0.03322,-0.03322,0.00236,-0.00236 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyD.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyD.csv new file mode 100644 index 0000000000..a24a5f4ff1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Figure5topologyD.csv @@ -0,0 +1,34 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t5 +#: name: Figure 5 topology D +#: description: Parton dijet $M_{inv}$ vs $A_{LL}$ values with associated uncertainties, for topology D. +#: data_file: DijetD.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,Parton Dijet $M_{inv}$ (GeV/$c^{2}$),syst +,syst - +18.200000000000003,17.05,19.35,18.2,1.15,-1.15 +21.67,20.63,22.71,21.67,1.04,-1.04 +26.119999999999997,25.08,27.16,26.12,1.04,-1.04 +31.419999999999998,30.4,32.44,31.42,1.02,-1.02 +37.33,36.08,38.58,37.33,1.25,-1.25 +44.6,43.09,46.11,44.6,1.51,-1.51 +53.61,51.92,55.3,53.61,1.69,-1.69 +63.38,61.45,65.31,63.38,1.93,-1.93 +75.52000000000001,73.25,77.79,75.52,2.27,-2.27 +89.6,86.9,92.3,89.6,2.7,-2.7 +106.63,103.43,109.83,106.63,3.2,-3.2 +127.17,123.35,130.99,127.17,3.82,-3.82 + +Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range LOW,Parton Dijet $M_{inv}$ (GeV/$c^{2}$) range HIGH,"Dijet $A_{LL}$, topology D",stat +,stat -,syst +,syst - +18.200000000000003,17.05,19.35,0.01048,0.00466,-0.00466,0.0012,-0.0012 +21.67,20.63,22.71,0.00296,0.00302,-0.00302,0.00055,-0.00055 +26.119999999999997,25.08,27.16,0.00307,0.00235,-0.00235,0.00113,-0.00113 +31.419999999999998,30.4,32.44,-0.00072,0.00229,-0.00229,0.00097,-0.00097 +37.33,36.08,38.58,0.00169,0.00278,-0.00278,0.00086,-0.00086 +44.6,43.09,46.11,0.00501,0.003,-0.003,0.00081,-0.00081 +53.61,51.92,55.3,0.00443,0.00382,-0.00382,0.0008,-0.0008 +63.38,61.45,65.31,0.00887,0.005,-0.005,0.00082,-0.00082 +75.52000000000001,73.25,77.79,0.00985,0.00747,-0.00747,0.00094,-0.00094 +89.6,86.9,92.3,0.00351,0.01095,-0.01095,0.00106,-0.00106 +106.63,103.43,109.83,0.03141,0.01797,-0.01797,0.00123,-0.00123 +127.17,123.35,130.99,0.01114,0.03187,-0.03187,0.00224,-0.00224 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyAcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyAcorrelation.csv new file mode 100644 index 0000000000..7b7b2f6b4a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyAcorrelation.csv @@ -0,0 +1,176 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t7 +#: name: Inclusive jet - Dijet topology A correlation +#: description: The correlation matrix for the point-to-point uncertainties (statistical and systematics) for the inclusive jet measurements coupling with the forward-forward dijet measurements (topology A). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: IncDijA.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +Parton Jet $p_{T}$ (GeV/$c$),Topology A - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation Inclusive-DijetA +7.79,15.74,0.021 +7.79,18.5,0.012 +7.79,21.96,0.005 +7.79,26.17,0.002 +7.79,31.63,0.0 +7.79,37.8,0.0 +7.79,44.75,0.0 +7.79,53.31,0.0 +7.79,63.64,0.0 +7.79,75.32,0.0 +7.79,89.66,0.0 +7.79,105.63,0.0 +9.62,15.74,0.008 +9.62,18.5,0.017 +9.62,21.96,0.009 +9.62,26.17,0.005 +9.62,31.63,0.002 +9.62,37.8,0.0 +9.62,44.75,0.0 +9.62,53.31,0.0 +9.62,63.64,0.0 +9.62,75.32,0.0 +9.62,89.66,0.0 +9.62,105.63,0.0 +11.67,15.74,0.001 +11.67,18.5,0.022 +11.67,21.96,0.019 +11.67,26.17,0.014 +11.67,31.63,0.007 +11.67,37.8,0.002 +11.67,44.75,0.0 +11.67,53.31,0.0 +11.67,63.64,0.0 +11.67,75.32,0.0 +11.67,89.66,0.0 +11.67,105.63,0.0 +13.59,15.74,0.0 +13.59,18.5,0.01 +13.59,21.96,0.021 +13.59,26.17,0.02 +13.59,31.63,0.015 +13.59,37.8,0.006 +13.59,44.75,0.002 +13.59,53.31,0.0 +13.59,63.64,0.0 +13.59,75.32,0.0 +13.59,89.66,0.0 +13.59,105.63,0.0 +15.76,15.74,0.0 +15.76,18.5,0.001 +15.76,21.96,0.016 +15.76,26.17,0.02 +15.76,31.63,0.02 +15.76,37.8,0.014 +15.76,44.75,0.006 +15.76,53.31,0.001 +15.76,63.64,0.0 +15.76,75.32,0.0 +15.76,89.66,0.0 +15.76,105.63,0.0 +19.89,15.74,0.0 +19.89,18.5,0.0 +19.89,21.96,0.013 +19.89,26.17,0.033 +19.89,31.63,0.047 +19.89,37.8,0.049 +19.89,44.75,0.041 +19.89,53.31,0.017 +19.89,63.64,0.004 +19.89,75.32,0.0 +19.89,89.66,0.0 +19.89,105.63,0.0 +22.68,15.74,0.0 +22.68,18.5,0.0 +22.68,21.96,0.002 +22.68,26.17,0.023 +22.68,31.63,0.041 +22.68,37.8,0.055 +22.68,44.75,0.066 +22.68,53.31,0.045 +22.68,63.64,0.015 +22.68,75.32,0.002 +22.68,89.66,0.0 +22.68,105.63,0.0 +25.94,15.74,0.0 +25.94,18.5,0.0 +25.94,21.96,0.0 +25.94,26.17,0.01 +25.94,31.63,0.027 +25.94,37.8,0.043 +25.94,44.75,0.071 +25.94,53.31,0.077 +25.94,63.64,0.047 +25.94,75.32,0.012 +25.94,89.66,0.001 +25.94,105.63,0.0 +29.75,15.74,0.0 +29.75,18.5,0.0 +29.75,21.96,0.0 +29.75,26.17,0.002 +29.75,31.63,0.014 +29.75,37.8,0.025 +29.75,44.75,0.051 +29.75,53.31,0.081 +29.75,63.64,0.088 +29.75,75.32,0.043 +29.75,89.66,0.009 +29.75,105.63,0.001 +34.29,15.74,0.0 +34.29,18.5,0.0 +34.29,21.96,0.0 +34.29,26.17,0.0 +34.29,31.63,0.004 +34.29,37.8,0.011 +34.29,44.75,0.026 +34.29,53.31,0.055 +34.29,63.64,0.094 +34.29,75.32,0.09 +34.29,89.66,0.039 +34.29,105.63,0.006 +39.59,15.74,0.0 +39.59,18.5,0.0 +39.59,21.96,0.0 +39.59,26.17,0.0 +39.59,31.63,0.0 +39.59,37.8,0.003 +39.59,44.75,0.011 +39.59,53.31,0.027 +39.59,63.64,0.062 +39.59,75.32,0.101 +39.59,89.66,0.094 +39.59,105.63,0.03 +45.76,15.74,0.0 +45.76,18.5,0.0 +45.76,21.96,0.0 +45.76,26.17,0.0 +45.76,31.63,0.0 +45.76,37.8,0.0 +45.76,44.75,0.003 +45.76,53.31,0.01 +45.76,63.64,0.029 +45.76,75.32,0.066 +45.76,89.66,0.114 +45.76,105.63,0.091 +53.17,15.74,0.0 +53.17,18.5,0.0 +53.17,21.96,0.0 +53.17,26.17,0.0 +53.17,31.63,0.0 +53.17,37.8,0.0 +53.17,44.75,0.0 +53.17,53.31,0.002 +53.17,63.64,0.01 +53.17,75.32,0.028 +53.17,89.66,0.071 +53.17,105.63,0.116 +61.37,15.74,0.0 +61.37,18.5,0.0 +61.37,21.96,0.0 +61.37,26.17,0.0 +61.37,31.63,0.0 +61.37,37.8,0.0 +61.37,44.75,0.0 +61.37,53.31,0.0 +61.37,63.64,0.002 +61.37,75.32,0.009 +61.37,89.66,0.028 +61.37,105.63,0.076 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyBcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyBcorrelation.csv new file mode 100644 index 0000000000..6f991bec44 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyBcorrelation.csv @@ -0,0 +1,190 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t8 +#: name: Inclusive jet - Dijet topology B correlation +#: description: The correlation matrix for the point-to-point uncertainties (statistical and systematics) for the inclusive jet measurements coupling with the forward-forward dijet measurements (topology B). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: IncDijB.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +Parton Jet $p_{T}$ (GeV/$c$),Topology B - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation Inclusive-DijetB +7.79,15.49,0.026 +7.79,18.48,0.022 +7.79,22.33,0.009 +7.79,26.67,0.004 +7.79,32.16,0.001 +7.79,38.59,0.0 +7.79,45.66,0.0 +7.79,54.49,0.0 +7.79,65.02,0.0 +7.79,77.16,0.0 +7.79,91.33,0.0 +7.79,109.2,0.0 +7.79,129.75,0.0 +9.62,15.49,0.007 +9.62,18.48,0.025 +9.62,22.33,0.015 +9.62,26.67,0.008 +9.62,32.16,0.003 +9.62,38.59,0.001 +9.62,45.66,0.0 +9.62,54.49,0.0 +9.62,65.02,0.0 +9.62,77.16,0.0 +9.62,91.33,0.0 +9.62,109.2,0.0 +9.62,129.75,0.0 +11.67,15.49,0.001 +11.67,18.48,0.025 +11.67,22.33,0.029 +11.67,26.67,0.022 +11.67,32.16,0.013 +11.67,38.59,0.005 +11.67,45.66,0.001 +11.67,54.49,0.0 +11.67,65.02,0.0 +11.67,77.16,0.0 +11.67,91.33,0.0 +11.67,109.2,0.0 +11.67,129.75,0.0 +13.59,15.49,0.0 +13.59,18.48,0.009 +13.59,22.33,0.029 +13.59,26.67,0.029 +13.59,32.16,0.023 +13.59,38.59,0.012 +13.59,45.66,0.004 +13.59,54.49,0.001 +13.59,65.02,0.0 +13.59,77.16,0.0 +13.59,91.33,0.0 +13.59,109.2,0.0 +13.59,129.75,0.0 +15.76,15.49,0.0 +15.76,18.48,0.001 +15.76,22.33,0.017 +15.76,26.67,0.027 +15.76,32.16,0.029 +15.76,38.59,0.022 +15.76,45.66,0.012 +15.76,54.49,0.003 +15.76,65.02,0.0 +15.76,77.16,0.0 +15.76,91.33,0.0 +15.76,109.2,0.0 +15.76,129.75,0.0 +19.89,15.49,0.0 +19.89,18.48,0.0 +19.89,22.33,0.01 +19.89,26.67,0.041 +19.89,32.16,0.061 +19.89,38.59,0.068 +19.89,45.66,0.065 +19.89,54.49,0.033 +19.89,65.02,0.009 +19.89,77.16,0.001 +19.89,91.33,0.0 +19.89,109.2,0.0 +19.89,129.75,0.0 +22.68,15.49,0.0 +22.68,18.48,0.0 +22.68,22.33,0.001 +22.68,26.67,0.025 +22.68,32.16,0.052 +22.68,38.59,0.073 +22.68,45.66,0.095 +22.68,54.49,0.075 +22.68,65.02,0.033 +22.68,77.16,0.007 +22.68,91.33,0.001 +22.68,109.2,0.0 +22.68,129.75,0.0 +25.94,15.49,0.0 +25.94,18.48,0.0 +25.94,22.33,0.0 +25.94,26.67,0.008 +25.94,32.16,0.033 +25.94,38.59,0.055 +25.94,45.66,0.093 +25.94,54.49,0.112 +25.94,65.02,0.082 +25.94,77.16,0.028 +25.94,91.33,0.005 +25.94,109.2,0.0 +25.94,129.75,0.0 +29.75,15.49,0.0 +29.75,18.48,0.0 +29.75,22.33,0.0 +29.75,26.67,0.001 +29.75,32.16,0.015 +29.75,38.59,0.031 +29.75,45.66,0.063 +29.75,54.49,0.105 +29.75,65.02,0.129 +29.75,77.16,0.08 +29.75,91.33,0.025 +29.75,109.2,0.003 +29.75,129.75,0.0 +34.29,15.49,0.0 +34.29,18.48,0.0 +34.29,22.33,0.0 +34.29,26.67,0.0 +34.29,32.16,0.003 +34.29,38.59,0.013 +34.29,45.66,0.033 +34.29,54.49,0.069 +34.29,65.02,0.124 +34.29,77.16,0.136 +34.29,91.33,0.079 +34.29,109.2,0.018 +34.29,129.75,0.001 +39.59,15.49,0.0 +39.59,18.48,0.0 +39.59,22.33,0.0 +39.59,26.67,0.0 +39.59,32.16,0.0 +39.59,38.59,0.003 +39.59,45.66,0.013 +39.59,54.49,0.033 +39.59,65.02,0.079 +39.59,77.16,0.136 +39.59,91.33,0.149 +39.59,109.2,0.069 +39.59,129.75,0.011 +45.76,15.49,0.0 +45.76,18.48,0.0 +45.76,22.33,0.0 +45.76,26.67,0.0 +45.76,32.16,0.0 +45.76,38.59,0.0 +45.76,45.66,0.003 +45.76,54.49,0.012 +45.76,65.02,0.037 +45.76,77.16,0.085 +45.76,91.33,0.156 +45.76,109.2,0.152 +45.76,129.75,0.053 +53.17,15.49,0.0 +53.17,18.48,0.0 +53.17,22.33,0.0 +53.17,26.67,0.0 +53.17,32.16,0.0 +53.17,38.59,0.0 +53.17,45.66,0.0 +53.17,54.49,0.002 +53.17,65.02,0.012 +53.17,77.16,0.038 +53.17,91.33,0.096 +53.17,109.2,0.173 +53.17,129.75,0.144 +61.37,15.49,0.0 +61.37,18.48,0.0 +61.37,22.33,0.0 +61.37,26.67,0.0 +61.37,32.16,0.0 +61.37,38.59,0.0 +61.37,45.66,0.0 +61.37,54.49,0.0 +61.37,65.02,0.002 +61.37,77.16,0.012 +61.37,91.33,0.04 +61.37,109.2,0.11 +61.37,129.75,0.182 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyCcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyCcorrelation.csv new file mode 100644 index 0000000000..8483014b7e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyCcorrelation.csv @@ -0,0 +1,176 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t9 +#: name: Inclusive jet - Dijet topology C correlation +#: description: The correlation matrix for the point-to-point uncertainties (statistical and systematics) for the inclusive jet measurements coupling with the forward-forward dijet measurements (topology C). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: IncDijC.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +Parton Jet $p_{T}$ (GeV/$c$),Topology C - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation Inclusive-DijetC +7.79,15.72,0.015 +7.79,18.9,0.009 +7.79,22.24,0.004 +7.79,27.14,0.002 +7.79,33.03,0.0 +7.79,39.35,0.0 +7.79,46.62,0.0 +7.79,55.74,0.0 +7.79,66.39,0.0 +7.79,78.97,0.0 +7.79,94.22,0.0 +7.79,111.48,0.0 +9.62,15.72,0.006 +9.62,18.9,0.012 +9.62,22.24,0.007 +9.62,27.14,0.004 +9.62,33.03,0.001 +9.62,39.35,0.0 +9.62,46.62,0.0 +9.62,55.74,0.0 +9.62,66.39,0.0 +9.62,78.97,0.0 +9.62,94.22,0.0 +9.62,111.48,0.0 +11.67,15.72,0.001 +11.67,18.9,0.015 +11.67,22.24,0.014 +11.67,27.14,0.011 +11.67,33.03,0.006 +11.67,39.35,0.002 +11.67,46.62,0.0 +11.67,55.74,0.0 +11.67,66.39,0.0 +11.67,78.97,0.0 +11.67,94.22,0.0 +11.67,111.48,0.0 +13.59,15.72,0.0 +13.59,18.9,0.007 +13.59,22.24,0.016 +13.59,27.14,0.015 +13.59,33.03,0.012 +13.59,39.35,0.005 +13.59,46.62,0.002 +13.59,55.74,0.0 +13.59,66.39,0.0 +13.59,78.97,0.0 +13.59,94.22,0.0 +13.59,111.48,0.0 +15.76,15.72,0.0 +15.76,18.9,0.001 +15.76,22.24,0.011 +15.76,27.14,0.015 +15.76,33.03,0.016 +15.76,39.35,0.011 +15.76,46.62,0.005 +15.76,55.74,0.001 +15.76,66.39,0.0 +15.76,78.97,0.0 +15.76,94.22,0.0 +15.76,111.48,0.0 +19.89,15.72,0.0 +19.89,18.9,0.0 +19.89,22.24,0.008 +19.89,27.14,0.023 +19.89,33.03,0.033 +19.89,39.35,0.035 +19.89,46.62,0.03 +19.89,55.74,0.013 +19.89,66.39,0.003 +19.89,78.97,0.0 +19.89,94.22,0.0 +19.89,111.48,0.0 +22.68,15.72,0.0 +22.68,18.9,0.0 +22.68,22.24,0.001 +22.68,27.14,0.016 +22.68,33.03,0.03 +22.68,39.35,0.041 +22.68,46.62,0.051 +22.68,55.74,0.034 +22.68,66.39,0.013 +22.68,78.97,0.002 +22.68,94.22,0.0 +22.68,111.48,0.0 +25.94,15.72,0.0 +25.94,18.9,0.0 +25.94,22.24,0.0 +25.94,27.14,0.007 +25.94,33.03,0.02 +25.94,39.35,0.033 +25.94,46.62,0.054 +25.94,55.74,0.059 +25.94,66.39,0.036 +25.94,78.97,0.011 +25.94,94.22,0.002 +25.94,111.48,0.0 +29.75,15.72,0.0 +29.75,18.9,0.0 +29.75,22.24,0.0 +29.75,27.14,0.001 +29.75,33.03,0.009 +29.75,39.35,0.018 +29.75,46.62,0.038 +29.75,55.74,0.061 +29.75,66.39,0.067 +29.75,78.97,0.034 +29.75,94.22,0.009 +29.75,111.48,0.001 +34.29,15.72,0.0 +34.29,18.9,0.0 +34.29,22.24,0.0 +34.29,27.14,0.0 +34.29,33.03,0.003 +34.29,39.35,0.008 +34.29,46.62,0.02 +34.29,55.74,0.042 +34.29,66.39,0.072 +34.29,78.97,0.07 +34.29,94.22,0.033 +34.29,111.48,0.006 +39.59,15.72,0.0 +39.59,18.9,0.0 +39.59,22.24,0.0 +39.59,27.14,0.0 +39.59,33.03,0.0 +39.59,39.35,0.002 +39.59,46.62,0.008 +39.59,55.74,0.021 +39.59,66.39,0.049 +39.59,78.97,0.079 +39.59,94.22,0.075 +39.59,111.48,0.027 +45.76,15.72,0.0 +45.76,18.9,0.0 +45.76,22.24,0.0 +45.76,27.14,0.0 +45.76,33.03,0.0 +45.76,39.35,0.0 +45.76,46.62,0.002 +45.76,55.74,0.008 +45.76,66.39,0.024 +45.76,78.97,0.054 +45.76,94.22,0.09 +45.76,111.48,0.074 +53.17,15.72,0.0 +53.17,18.9,0.0 +53.17,22.24,0.0 +53.17,27.14,0.0 +53.17,33.03,0.0 +53.17,39.35,0.0 +53.17,46.62,0.0 +53.17,55.74,0.002 +53.17,66.39,0.009 +53.17,78.97,0.025 +53.17,94.22,0.062 +53.17,111.48,0.097 +61.37,15.72,0.0 +61.37,18.9,0.0 +61.37,22.24,0.0 +61.37,27.14,0.0 +61.37,33.03,0.0 +61.37,39.35,0.0 +61.37,46.62,0.0 +61.37,55.74,0.0 +61.37,66.39,0.002 +61.37,78.97,0.008 +61.37,94.22,0.028 +61.37,111.48,0.073 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyDcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyDcorrelation.csv new file mode 100644 index 0000000000..32ff709efc --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-DijettopologyDcorrelation.csv @@ -0,0 +1,176 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t10 +#: name: Inclusive jet - Dijet topology D correlation +#: description: The correlation matrix for the point-to-point uncertainties (statistical and systematics) for the inclusive jet measurements coupling with the forward-forward dijet measurements (topology D). The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: IncDijD.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +Parton Jet $p_{T}$ (GeV/$c$),Topology D - Parton Dijet $M_{inv}$ (GeV/$c^2$),Correlation Inclusive-DijetD +7.79,18.2,0.019 +7.79,21.67,0.01 +7.79,26.12,0.004 +7.79,31.42,0.002 +7.79,37.33,0.0 +7.79,44.6,0.0 +7.79,53.61,0.0 +7.79,63.38,0.0 +7.79,75.52,0.0 +7.79,89.6,0.0 +7.79,106.63,0.0 +7.79,127.17,0.0 +9.62,18.2,0.013 +9.62,21.67,0.014 +9.62,26.12,0.008 +9.62,31.42,0.004 +9.62,37.33,0.001 +9.62,44.6,0.0 +9.62,53.61,0.0 +9.62,63.38,0.0 +9.62,75.52,0.0 +9.62,89.6,0.0 +9.62,106.63,0.0 +9.62,127.17,0.0 +11.67,18.2,0.006 +11.67,21.67,0.021 +11.67,26.12,0.017 +11.67,31.42,0.012 +11.67,37.33,0.006 +11.67,44.6,0.002 +11.67,53.61,0.0 +11.67,63.38,0.0 +11.67,75.52,0.0 +11.67,89.6,0.0 +11.67,106.63,0.0 +11.67,127.17,0.0 +13.59,18.2,0.001 +13.59,21.67,0.013 +13.59,26.12,0.019 +13.59,31.42,0.017 +13.59,37.33,0.012 +13.59,44.6,0.006 +13.59,53.61,0.001 +13.59,63.38,0.0 +13.59,75.52,0.0 +13.59,89.6,0.0 +13.59,106.63,0.0 +13.59,127.17,0.0 +15.76,18.2,0.0 +15.76,21.67,0.004 +15.76,26.12,0.015 +15.76,31.42,0.019 +15.76,37.33,0.017 +15.76,44.6,0.013 +15.76,53.61,0.005 +15.76,63.38,0.001 +15.76,75.52,0.0 +15.76,89.6,0.0 +15.76,106.63,0.0 +15.76,127.17,0.0 +19.89,18.2,0.0 +19.89,21.67,0.001 +19.89,26.12,0.016 +19.89,31.42,0.033 +19.89,37.33,0.042 +19.89,44.6,0.05 +19.89,53.61,0.036 +19.89,63.38,0.015 +19.89,75.52,0.003 +19.89,89.6,0.0 +19.89,106.63,0.0 +19.89,127.17,0.0 +22.68,18.2,0.0 +22.68,21.67,0.0 +22.68,26.12,0.006 +22.68,31.42,0.025 +22.68,37.33,0.038 +22.68,44.6,0.058 +22.68,53.61,0.06 +22.68,63.38,0.039 +22.68,75.52,0.013 +22.68,89.6,0.002 +22.68,106.63,0.0 +22.68,127.17,0.0 +25.94,18.2,0.0 +25.94,21.67,0.0 +25.94,26.12,0.001 +25.94,31.42,0.013 +25.94,37.33,0.026 +25.94,44.6,0.048 +25.94,53.61,0.069 +25.94,63.38,0.071 +25.94,75.52,0.038 +25.94,89.6,0.011 +25.94,106.63,0.001 +25.94,127.17,0.0 +29.75,18.2,0.0 +29.75,21.67,0.0 +29.75,26.12,0.0 +29.75,31.42,0.004 +29.75,37.33,0.014 +29.75,44.6,0.029 +29.75,53.61,0.053 +29.75,63.38,0.081 +29.75,75.52,0.076 +29.75,89.6,0.038 +29.75,106.63,0.008 +29.75,127.17,0.0 +34.29,18.2,0.0 +34.29,21.67,0.0 +34.29,26.12,0.0 +34.29,31.42,0.0 +34.29,37.33,0.005 +34.29,44.6,0.014 +34.29,53.61,0.03 +34.29,63.38,0.061 +34.29,75.52,0.089 +34.29,89.6,0.082 +34.29,106.63,0.031 +34.29,127.17,0.005 +39.59,18.2,0.0 +39.59,21.67,0.0 +39.59,26.12,0.0 +39.59,31.42,0.0 +39.59,37.33,0.0 +39.59,44.6,0.004 +39.59,53.61,0.013 +39.59,63.38,0.033 +39.59,75.52,0.066 +39.59,89.6,0.103 +39.59,106.63,0.08 +39.59,127.17,0.025 +45.76,18.2,0.0 +45.76,21.67,0.0 +45.76,26.12,0.0 +45.76,31.42,0.0 +45.76,37.33,0.0 +45.76,44.6,0.001 +45.76,53.61,0.004 +45.76,63.38,0.013 +45.76,75.52,0.035 +45.76,89.6,0.076 +45.76,106.63,0.111 +45.76,127.17,0.073 +53.17,18.2,0.0 +53.17,21.67,0.0 +53.17,26.12,0.0 +53.17,31.42,0.0 +53.17,37.33,0.0 +53.17,44.6,0.0 +53.17,53.61,0.0 +53.17,63.38,0.004 +53.17,75.52,0.013 +53.17,89.6,0.038 +53.17,106.63,0.088 +53.17,127.17,0.114 +61.37,18.2,0.0 +61.37,21.67,0.0 +61.37,26.12,0.0 +61.37,31.42,0.0 +61.37,37.33,0.0 +61.37,44.6,0.0 +61.37,53.61,0.0 +61.37,63.38,0.0 +61.37,75.52,0.003 +61.37,89.6,0.013 +61.37,106.63,0.04 +61.37,127.17,0.096 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-Inclusivejetcorrelation.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-Inclusivejetcorrelation.csv new file mode 100644 index 0000000000..d86b9d37d2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/rawdata/Inclusivejet-Inclusivejetcorrelation.csv @@ -0,0 +1,113 @@ +#: table_doi: 10.17182/hepdata.114778.v1/t6 +#: name: Inclusive jet - Inclusive jet correlation +#: description: The correlation matrix for the point-to-point uncertainties (statistical and systematics) for the inclusive jet measurements.The relative luminosity and beam polarization uncertainties are not included because they are the same for all points. +#: data_file: IncInc.yaml +#: keyword reactions: P P --> JET X +#: keyword observables: CORR +Parton Jet $p_{T}$ (GeV/$c$),Parton Jet $p_{T}$ (GeV/$c$),Correlation Inclusive-Inclusive jet +7.79,7.79,1.0 +7.79,9.62,0.007 +7.79,11.67,0.004 +7.79,13.59,0.004 +7.79,15.76,0.003 +7.79,19.89,0.001 +7.79,22.68,0.001 +7.79,25.94,0.0 +7.79,29.75,0.0 +7.79,34.29,0.0 +7.79,39.59,0.0 +7.79,45.76,0.0 +7.79,53.17,0.0 +7.79,61.37,0.0 +9.62,9.62,1.0 +9.62,11.67,0.005 +9.62,13.59,0.005 +9.62,15.76,0.005 +9.62,19.89,0.002 +9.62,22.68,0.001 +9.62,25.94,0.001 +9.62,29.75,0.0 +9.62,34.29,0.0 +9.62,39.59,0.0 +9.62,45.76,0.0 +9.62,53.17,0.0 +9.62,61.37,0.0 +11.67,11.67,1.0 +11.67,13.59,0.008 +11.67,15.76,0.009 +11.67,19.89,0.004 +11.67,22.68,0.002 +11.67,25.94,0.002 +11.67,29.75,0.001 +11.67,34.29,0.001 +11.67,39.59,0.0 +11.67,45.76,0.0 +11.67,53.17,0.0 +11.67,61.37,0.0 +13.59,13.59,1.0 +13.59,15.76,0.012 +13.59,19.89,0.005 +13.59,22.68,0.004 +13.59,25.94,0.002 +13.59,29.75,0.002 +13.59,34.29,0.001 +13.59,39.59,0.0 +13.59,45.76,0.0 +13.59,53.17,0.0 +13.59,61.37,0.0 +15.76,15.76,1.0 +15.76,19.89,0.007 +15.76,22.68,0.005 +15.76,25.94,0.004 +15.76,29.75,0.003 +15.76,34.29,0.002 +15.76,39.59,0.001 +15.76,45.76,0.0 +15.76,53.17,0.0 +15.76,61.37,0.0 +19.89,19.89,1.0 +19.89,22.68,0.009 +19.89,25.94,0.01 +19.89,29.75,0.009 +19.89,34.29,0.007 +19.89,39.59,0.005 +19.89,45.76,0.003 +19.89,53.17,0.002 +19.89,61.37,0.001 +22.68,22.68,1.0 +22.68,25.94,0.013 +22.68,29.75,0.013 +22.68,34.29,0.011 +22.68,39.59,0.009 +22.68,45.76,0.005 +22.68,53.17,0.003 +22.68,61.37,0.001 +25.94,25.94,1.0 +25.94,29.75,0.019 +25.94,34.29,0.018 +25.94,39.59,0.014 +25.94,45.76,0.01 +25.94,53.17,0.006 +25.94,61.37,0.003 +29.75,29.75,1.0 +29.75,34.29,0.024 +29.75,39.59,0.022 +29.75,45.76,0.016 +29.75,53.17,0.01 +29.75,61.37,0.005 +34.29,34.29,1.0 +34.29,39.59,0.029 +34.29,45.76,0.025 +34.29,53.17,0.017 +34.29,61.37,0.01 +39.59,39.59,1.0 +39.59,45.76,0.033 +39.59,53.17,0.026 +39.59,61.37,0.017 +45.76,45.76,1.0 +45.76,53.17,0.036 +45.76,61.37,0.027 +53.17,53.17,1.0 +53.17,61.37,0.037 +61.37,61.37,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml new file mode 100644 index 0000000000..919b3d048e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_1JET_510GEV/uncertainties.yaml @@ -0,0 +1,1172 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2013POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2013LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc55 + sys_56: + description: 56 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc56 + sys_57: + description: 57 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc57 + sys_58: + description: 58 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc58 + sys_59: + description: 59 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc59 + sys_60: + description: 60 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc60 + sys_61: + description: 61 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc61 + sys_62: + description: 62 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc62 +bins: +- pol: 0.00040064 + lumi: 0.00047 + sys_0: 1.0149923084516743e-07 + sys_1: -6.454483537845352e-08 + sys_2: -3.7370452534985803e-07 + sys_3: -1.5019582663777696e-07 + sys_4: -2.3772247602000877e-07 + sys_5: -2.482362587154836e-07 + sys_6: 7.964502531992199e-07 + sys_7: 3.211867265109659e-07 + sys_8: 1.2963151798808326e-06 + sys_9: -5.797893252262223e-07 + sys_10: 1.8072024158514894e-06 + sys_11: 3.0811145495903898e-06 + sys_12: -2.6211246797808175e-06 + sys_13: 6.010605794044629e-06 + sys_14: 4.4166169041409875e-05 + sys_15: -4.00360379560693e-06 + sys_16: 4.758356756372296e-06 + sys_17: 1.1775405116954534e-05 + sys_18: 1.2487308763838132e-05 + sys_19: 6.441360649715692e-05 + sys_20: -5.573898247556415e-06 + sys_21: 7.355039484210815e-05 + sys_22: 3.251957320836221e-05 + sys_23: 1.693996738813632e-05 + sys_24: -2.6264104039935492e-05 + sys_25: -3.5441128177341443e-05 + sys_26: -1.1094566746460911e-05 + sys_27: 7.673299817379724e-06 + sys_28: -1.2381460688983786e-05 + sys_29: 1.1284038703798095e-05 + sys_30: -3.2045686688105394e-05 + sys_31: -1.4406514339407576e-05 + sys_32: -1.8066105412081285e-05 + sys_33: -2.6216181475871857e-05 + sys_34: -4.153713271486989e-05 + sys_35: 9.134760961842234e-07 + sys_36: -3.5172542918426675e-05 + sys_37: 1.0635573314362287e-05 + sys_38: 6.206664046903237e-05 + sys_39: -2.11952180680009e-05 + sys_40: 4.808617421860469e-06 + sys_41: -9.044689150376892e-07 + sys_42: 2.9784156972337737e-06 + sys_43: 5.669240305130016e-06 + sys_44: -2.5537601300292476e-06 + sys_45: 4.875098031558584e-06 + sys_46: 3.5457462945946254e-06 + sys_47: 1.024445411078779e-05 + sys_48: -5.747136463657907e-06 + sys_49: -7.886387107555893e-05 + sys_50: -0.00030905852550123483 + sys_51: 9.486838476612525e-05 + sys_52: 0.0022612541892199894 + sys_53: -0.0009447924882363002 + sys_54: -9.404536909875018e-05 + sys_55: 2.3939044487721476e-05 + sys_56: 6.209089655880807e-05 + sys_57: 4.917937155457821e-05 + sys_58: -8.648456365675207e-05 + sys_59: -3.837601125357958e-05 + sys_60: -1.2533216835062074e-05 + sys_61: -3.0264472901784857e-05 + sys_62: 1.363011333053269e-05 +- pol: 0.00016512 + lumi: 0.00047 + sys_0: 9.284993022524225e-08 + sys_1: -5.113976349509601e-08 + sys_2: -3.2144071155762147e-07 + sys_3: -1.153614242723779e-07 + sys_4: -2.2075455823055586e-07 + sys_5: -1.798302185429716e-07 + sys_6: 6.317886243913832e-07 + sys_7: 2.2786525571123385e-07 + sys_8: 1.0474684594044233e-06 + sys_9: -5.419035022578107e-07 + sys_10: 1.2712034638377158e-06 + sys_11: 2.2010705861277904e-06 + sys_12: -1.915852250158063e-06 + sys_13: 4.134408378857604e-06 + sys_14: 2.0299144250703694e-05 + sys_15: 1.877633008121132e-07 + sys_16: -1.5025672994999515e-08 + sys_17: 9.19126119906736e-06 + sys_18: 8.480238082146973e-06 + sys_19: 2.7950813957197604e-05 + sys_20: 2.403525044291454e-07 + sys_21: 3.561643322730864e-05 + sys_22: -9.24268090361943e-06 + sys_23: 2.6772575799240587e-05 + sys_24: -2.1529781050715372e-05 + sys_25: -1.8028041049271127e-05 + sys_26: -8.699747727383786e-06 + sys_27: -1.226208336422242e-05 + sys_28: -2.513685550356694e-05 + sys_29: -5.779704813908669e-06 + sys_30: -4.895036712174846e-05 + sys_31: -1.6031558858457073e-06 + sys_32: 1.0774661267194304e-05 + sys_33: -4.563180029306037e-05 + sys_34: -5.2603592169519316e-05 + sys_35: -1.1297786393880092e-05 + sys_36: -7.479700500130042e-05 + sys_37: 3.038578475689793e-05 + sys_38: 0.00010847320762788882 + sys_39: -3.7084416998231416e-05 + sys_40: 5.393769548395722e-06 + sys_41: -9.225684271018882e-07 + sys_42: 4.787640970174121e-06 + sys_43: -5.296246932072725e-05 + sys_44: -4.868112399802929e-06 + sys_45: 7.021767403291601e-06 + sys_46: 4.934651844643563e-06 + sys_47: 2.075011471484965e-05 + sys_48: -8.57944500510206e-06 + sys_49: -6.706430330313977e-05 + sys_50: -0.002431807018535961 + sys_51: -0.0006618126162738568 + sys_52: -0.0002159587055912548 + sys_53: 0.00022186709914247588 + sys_54: -9.802118819522435e-05 + sys_55: 2.3814655837376824e-05 + sys_56: 5.5260543150959176e-05 + sys_57: 4.453126768624856e-05 + sys_58: -8.47759854320255e-05 + sys_59: -4.344148947984669e-05 + sys_60: -2.2372196749849013e-05 + sys_61: -3.3173411613654465e-05 + sys_62: 5.498693086714365e-06 +- pol: 0.00017728 + lumi: 0.00047 + sys_0: 8.483931485976663e-08 + sys_1: -4.47160764362248e-08 + sys_2: -3.028752219229754e-07 + sys_3: -1.0419206348777361e-07 + sys_4: -1.9295871932511167e-07 + sys_5: -1.4065087779168634e-07 + sys_6: 5.631035813035702e-07 + sys_7: 1.924705987721115e-07 + sys_8: 8.911815149102759e-07 + sys_9: -4.5597254865109374e-07 + sys_10: 9.462717732520295e-07 + sys_11: 1.7330878624940072e-06 + sys_12: -1.442975177429172e-06 + sys_13: 2.6626002718022854e-06 + sys_14: 5.144483406144298e-06 + sys_15: 2.706751398610368e-06 + sys_16: -2.848018265242471e-06 + sys_17: 7.378863124100361e-06 + sys_18: 5.399937433445482e-06 + sys_19: 5.551956926439302e-06 + sys_20: 2.9050284759022982e-06 + sys_21: 1.823908726672018e-05 + sys_22: -1.7138540358310398e-05 + sys_23: 2.0110877481830106e-05 + sys_24: -8.646413806697385e-06 + sys_25: 3.7644135013083057e-06 + sys_26: -1.4685400966927526e-06 + sys_27: -2.4383542478147798e-05 + sys_28: -2.3160061479323584e-05 + sys_29: -1.3934256717260506e-05 + sys_30: -3.6443365690634414e-05 + sys_31: 1.0850295202983777e-05 + sys_32: 3.170714286108924e-05 + sys_33: -2.7170538260711765e-05 + sys_34: -2.0170127436826684e-05 + sys_35: -1.154048769537782e-05 + sys_36: -3.9177346200613005e-05 + sys_37: 1.874869571121406e-05 + sys_38: 4.554978489555418e-05 + sys_39: -9.57265045767811e-06 + sys_40: 1.1831688663508393e-05 + sys_41: -3.913711680658175e-06 + sys_42: 1.819069032117441e-05 + sys_43: -3.401630095555514e-05 + sys_44: -4.5658748884996823e-05 + sys_45: 6.233984578003957e-05 + sys_46: 9.463278121587478e-06 + sys_47: 0.000408704922484011 + sys_48: 0.0017749689156440604 + sys_49: 3.283269626669331e-05 + sys_50: -3.244782837820753e-05 + sys_51: 4.956502895400242e-05 + sys_52: 6.13340319773005e-06 + sys_53: -1.777585781639283e-05 + sys_54: 4.229231515727725e-05 + sys_55: -0.000140308561834506 + sys_56: -7.476779511489566e-05 + sys_57: -4.412640313165956e-05 + sys_58: 0.0001296365495997296 + sys_59: 2.210839134928844e-05 + sys_60: 3.1665231731642755e-05 + sys_61: 3.223002928487794e-05 + sys_62: 1.560850300249896e-05 +- pol: 4.8e-05 + lumi: 0.00047 + sys_0: 8.57504313322275e-08 + sys_1: -4.907053833203223e-08 + sys_2: -3.405189689330274e-07 + sys_3: -1.1357497762943665e-07 + sys_4: -1.7608954534334295e-07 + sys_5: -1.4646797793873748e-07 + sys_6: 6.175627363534867e-07 + sys_7: 2.028333942081264e-07 + sys_8: 9.39478573141636e-07 + sys_9: -3.819590398083667e-07 + sys_10: 9.74872934025652e-07 + sys_11: 1.8391332715624102e-06 + sys_12: -1.5209851485089163e-06 + sys_13: 2.285993399282469e-06 + sys_14: 3.3383457852478713e-06 + sys_15: 3.288478622554836e-06 + sys_16: -3.508780945164803e-06 + sys_17: 7.718910012631034e-06 + sys_18: 5.3694988454493204e-06 + sys_19: 3.579532478429065e-06 + sys_20: 2.0569520517524395e-06 + sys_21: 1.6715647578874352e-05 + sys_22: -1.7121983542773857e-05 + sys_23: 1.8194432722423922e-05 + sys_24: -4.24325347162374e-06 + sys_25: 1.1822535702930605e-05 + sys_26: -3.5734503617698524e-08 + sys_27: -2.8686405727035257e-05 + sys_28: -2.069697363088428e-05 + sys_29: -1.729937977587867e-05 + sys_30: -2.437845222557734e-05 + sys_31: 2.7007586850325954e-05 + sys_32: 5.686361675140545e-05 + sys_33: -2.5268088125035802e-05 + sys_34: -4.562855666316441e-06 + sys_35: -2.093809083464838e-05 + sys_36: -2.1274502613266667e-05 + sys_37: 1.4923398805077545e-05 + sys_38: 3.2073955783334384e-05 + sys_39: 4.387603590784007e-06 + sys_40: 4.453200100472395e-06 + sys_41: -4.5713656074363035e-06 + sys_42: 1.252707807375956e-05 + sys_43: -4.812637672422741e-05 + sys_44: -4.832325607671321e-05 + sys_45: 5.3419650030111265e-05 + sys_46: -2.115267625886423e-05 + sys_47: 0.00018913990208242903 + sys_48: -0.00018643000014697481 + sys_49: 0.00011016598863017784 + sys_50: -3.7964234919827194e-05 + sys_51: 5.3783112419247715e-05 + sys_52: 9.843472893067396e-06 + sys_53: -1.786385921751356e-05 + sys_54: 4.2332339002429996e-05 + sys_55: -0.0018975072703512844 + sys_56: 0.0001953209043144012 + sys_57: 0.00017132786305043638 + sys_58: 6.282699127751539e-05 + sys_59: -1.6587094091822832e-06 + sys_60: 5.179844846149559e-05 + sys_61: 3.8677206693080216e-05 + sys_62: 6.951070811136612e-05 +- pol: 5.44e-05 + lumi: 0.00047 + sys_0: 1.0148504411809979e-07 + sys_1: -6.153273408962956e-08 + sys_2: -4.2257531202857265e-07 + sys_3: -1.381478787721893e-07 + sys_4: -2.0129278792920327e-07 + sys_5: -1.885104311677381e-07 + sys_6: 7.723540565768651e-07 + sys_7: 2.433909375904491e-07 + sys_8: 1.1544379823122848e-06 + sys_9: -4.161919783179876e-07 + sys_10: 1.2476233091405923e-06 + sys_11: 2.303400641019601e-06 + sys_12: -1.9681387232201094e-06 + sys_13: 2.5949323907346765e-06 + sys_14: 4.1167318144072826e-06 + sys_15: 4.3032840340004644e-06 + sys_16: -4.505582228857201e-06 + sys_17: 1.011471848533099e-05 + sys_18: 7.367838258267066e-06 + sys_19: 4.5580994612714996e-06 + sys_20: 3.982806725712734e-06 + sys_21: 2.1552578682217904e-05 + sys_22: -2.2857785278142688e-05 + sys_23: 2.0967376981187587e-05 + sys_24: -1.1486515743728745e-06 + sys_25: 1.8541959654173832e-05 + sys_26: -2.18462751532296e-06 + sys_27: -3.675179008882494e-05 + sys_28: -2.515873989150442e-05 + sys_29: -1.9347680297234625e-05 + sys_30: 5.038869067194356e-06 + sys_31: 5.327387043884073e-05 + sys_32: 9.806916943144184e-05 + sys_33: -1.619447578470214e-05 + sys_34: 1.9044984191195642e-05 + sys_35: -1.833994694083224e-05 + sys_36: 1.9578134590714466e-05 + sys_37: 1.0703456954394042e-07 + sys_38: 1.7518498569874852e-05 + sys_39: 1.5024521613230377e-05 + sys_40: -2.5608673898332505e-06 + sys_41: -1.2961159259533382e-06 + sys_42: 5.393090866728315e-06 + sys_43: -6.93770120037406e-05 + sys_44: -2.7640559381180346e-05 + sys_45: 2.5742018119610425e-05 + sys_46: -3.1547496432733234e-05 + sys_47: 3.588300732449199e-05 + sys_48: -5.2178326300869e-05 + sys_49: 0.0002597574664879327 + sys_50: -5.535846242738061e-05 + sys_51: 3.503288649133751e-05 + sys_52: 2.147903405669294e-05 + sys_53: -2.2434216548048365e-05 + sys_54: 3.507928797689686e-05 + sys_55: 5.9610463458998094e-05 + sys_56: -9.8367166424966e-05 + sys_57: -0.00027484255937606746 + sys_58: 3.369690525339032e-05 + sys_59: -0.00027921550913343867 + sys_60: 0.00010186575595570822 + sys_61: 0.0017662429448398237 + sys_62: 0.0012344388150931239 +- pol: 0.00028416000000000004 + lumi: 0.00047 + sys_0: 2.1712992839983623e-07 + sys_1: -1.5703482575909113e-07 + sys_2: -7.607527746881251e-07 + sys_3: -2.621156437052819e-07 + sys_4: -4.289287024697409e-07 + sys_5: -4.799442109592178e-07 + sys_6: 1.6474140787634735e-06 + sys_7: 1.8981865602988566e-07 + sys_8: 8.321366873002236e-07 + sys_9: -1.0065813631638614e-06 + sys_10: 2.3268952012672105e-06 + sys_11: 4.0240509029360274e-06 + sys_12: -4.039133844965665e-06 + sys_13: 8.164605952259488e-06 + sys_14: 6.46600934996834e-06 + sys_15: 1.016924904921065e-05 + sys_16: -3.5646346650559423e-06 + sys_17: 2.177106670796821e-05 + sys_18: 1.2782149506374509e-05 + sys_19: 7.167104962750591e-06 + sys_20: 1.781016634600204e-05 + sys_21: 3.3052459317887186e-05 + sys_22: -4.1414495011096336e-05 + sys_23: 2.1819551377698398e-05 + sys_24: 1.7080173766763886e-05 + sys_25: 2.92803702921818e-05 + sys_26: -2.1659755443967118e-05 + sys_27: -3.9180493418839737e-05 + sys_28: -2.01637949261234e-05 + sys_29: -2.792916038061714e-05 + sys_30: 4.7832304471756013e-05 + sys_31: 7.346920027689283e-05 + sys_32: 7.111032831682453e-05 + sys_33: -2.4815826062987535e-06 + sys_34: 2.603629030037713e-05 + sys_35: 2.1584280253054535e-06 + sys_36: 2.9893102535493408e-05 + sys_37: -3.595824923155736e-05 + sys_38: -1.2697439493481002e-05 + sys_39: -4.086245118736718e-06 + sys_40: -0.000811241075562596 + sys_41: -0.0008810840425737854 + sys_42: 8.809565502696099e-05 + sys_43: -2.278570460063592e-05 + sys_44: 5.6434740888779996e-05 + sys_45: -1.1782746036679768e-05 + sys_46: 9.429578581706987e-05 + sys_47: 4.392507149547453e-06 + sys_48: 1.2545638868150622e-05 + sys_49: 8.159299787895583e-05 + sys_50: 4.691271265756479e-06 + sys_51: -2.6582131918052773e-05 + sys_52: 2.9421303575565706e-06 + sys_53: -3.2220106419279472e-06 + sys_54: -1.7386051926227023e-05 + sys_55: 5.8223147778990415e-06 + sys_56: 7.69570437120214e-07 + sys_57: 9.46397360713024e-05 + sys_58: -2.773593895782639e-05 + sys_59: -6.414380882543347e-05 + sys_60: -4.852751671019646e-05 + sys_61: -1.650847107838652e-05 + sys_62: 2.0094045122084835e-05 +- pol: 0.00019711999999999998 + lumi: 0.00047 + sys_0: 3.234835103153129e-07 + sys_1: -2.2987713746911245e-07 + sys_2: -1.142728572378688e-06 + sys_3: -3.8965661870991083e-07 + sys_4: -7.060478303793895e-07 + sys_5: -7.66082469774055e-07 + sys_6: 2.579359654999617e-06 + sys_7: 3.3178353754744617e-07 + sys_8: 2.4078890583371337e-06 + sys_9: -4.1663058173895865e-06 + sys_10: 6.643457445245671e-06 + sys_11: 8.566266603862507e-06 + sys_12: -7.806431250628647e-06 + sys_13: 2.3729787373455856e-05 + sys_14: 1.0321682568212526e-05 + sys_15: 2.5104304790135624e-05 + sys_16: -1.6597485402548564e-06 + sys_17: 4.37952298790107e-05 + sys_18: 2.1677979005341746e-05 + sys_19: 8.590602392157185e-06 + sys_20: 4.214283090869497e-05 + sys_21: 4.545959547510759e-05 + sys_22: -6.831221063272191e-05 + sys_23: 1.5947574707585905e-05 + sys_24: 5.279919248713953e-05 + sys_25: 4.2383515652513247e-05 + sys_26: -4.194342570126972e-05 + sys_27: -4.4410656796580525e-05 + sys_28: 2.253118887228675e-06 + sys_29: -3.522069769848687e-05 + sys_30: 8.506553796602219e-05 + sys_31: 9.437326931733028e-05 + sys_32: 5.370195883995857e-05 + sys_33: -1.3939925083676547e-06 + sys_34: 2.4325105778326082e-05 + sys_35: 4.061363760446542e-06 + sys_36: 2.174924966501983e-05 + sys_37: -8.210051203702284e-05 + sys_38: -4.316813661529654e-05 + sys_39: -9.581035745961176e-06 + sys_40: -0.0008055918258813003 + sys_41: 0.0008338374682771821 + sys_42: 0.00032925069770993156 + sys_43: 4.472965253372659e-06 + sys_44: -6.900216363695902e-06 + sys_45: 6.427803527026429e-05 + sys_46: 8.911184653690749e-05 + sys_47: 3.378910575824636e-05 + sys_48: 5.257710737155359e-06 + sys_49: 5.4172441204510435e-05 + sys_50: 1.1223877898816357e-05 + sys_51: -5.0282159099565686e-05 + sys_52: 2.215631410012966e-06 + sys_53: -9.161291843349643e-06 + sys_54: -2.7989992456379268e-05 + sys_55: 1.1963856721922828e-06 + sys_56: -2.5045448316454193e-05 + sys_57: 7.861575515821139e-05 + sys_58: -5.498247369386297e-05 + sys_59: -8.437460950105129e-05 + sys_60: -9.238020521055901e-05 + sys_61: -1.736365080237292e-05 + sys_62: 1.6362288472149678e-05 +- pol: 0.00036608 + lumi: 0.00047 + sys_0: 6.405405382234568e-07 + sys_1: -4.851736721206465e-07 + sys_2: -2.069010295737338e-06 + sys_3: -6.970780086606731e-07 + sys_4: -4.2952107943376485e-06 + sys_5: -2.9596497676315404e-06 + sys_6: 5.831600152464812e-06 + sys_7: 1.231690496871617e-06 + sys_8: 4.0769523926702235e-06 + sys_9: -1.9078599414057597e-05 + sys_10: 2.3917902252996594e-05 + sys_11: 2.458879975166139e-05 + sys_12: -1.6224440552190434e-05 + sys_13: 6.244501504868436e-05 + sys_14: 1.65165392986059e-05 + sys_15: 6.29322266136613e-05 + sys_16: 1.0552852764020914e-05 + sys_17: 9.786629975386137e-05 + sys_18: 3.390642871646396e-05 + sys_19: 1.4907970809681038e-06 + sys_20: 7.024415217663455e-05 + sys_21: 4.8756229370652096e-05 + sys_22: -9.728923334379372e-05 + sys_23: -1.158350757507549e-05 + sys_24: 0.00010839109106304991 + sys_25: 4.365936689843641e-05 + sys_26: -5.453318345590932e-05 + sys_27: -5.94361766543598e-05 + sys_28: 7.044123212756661e-05 + sys_29: -3.0129283995810154e-05 + sys_30: 0.00010811556502541028 + sys_31: 9.125421111758827e-05 + sys_32: 2.0070620313358418e-05 + sys_33: -6.173511073640891e-06 + sys_34: 1.610818213299576e-05 + sys_35: -7.47866158315835e-06 + sys_36: -4.614835347437251e-06 + sys_37: -0.00012540952718094302 + sys_38: -8.96109402513112e-05 + sys_39: -3.0416500913347817e-06 + sys_40: -0.00023980537089795002 + sys_41: 0.00013653588199920346 + sys_42: -0.0012534567115362783 + sys_43: 4.4003939590608624e-05 + sys_44: -0.0001420131091109946 + sys_45: 0.00025722179696305406 + sys_46: 9.903638913792016e-05 + sys_47: 5.807377186768374e-05 + sys_48: 5.8060570734161894e-06 + sys_49: 8.78776591805069e-06 + sys_50: 9.592650867521238e-06 + sys_51: -5.6237682637023735e-05 + sys_52: -4.4417952750570005e-06 + sys_53: -2.17034055228764e-05 + sys_54: -4.159600161484138e-05 + sys_55: -9.627653283073211e-06 + sys_56: -5.7768705669235367e-05 + sys_57: 2.60373640673025e-05 + sys_58: -0.00011148176429636495 + sys_59: -8.083637677725502e-05 + sys_60: -0.00011196109546133086 + sys_61: -9.670915674564383e-06 + sys_62: 9.933349366541959e-06 +- pol: 0.00064512 + lumi: 0.00047 + sys_0: 3.1021753570940113e-06 + sys_1: -9.396296623754884e-07 + sys_2: -4.104990857792829e-06 + sys_3: -3.0277405963070813e-06 + sys_4: -1.9505525328897594e-05 + sys_5: -1.7442554618896456e-05 + sys_6: 2.2059302883745564e-05 + sys_7: 8.27111045713096e-06 + sys_8: 1.3622296263821512e-05 + sys_9: -6.639186214410817e-05 + sys_10: 8.592927670850435e-05 + sys_11: 7.932772913168996e-05 + sys_12: -4.70572809608919e-05 + sys_13: 0.00013168295908404183 + sys_14: 2.3960049064725933e-05 + sys_15: 0.00013858518325362898 + sys_16: 3.380028916090155e-05 + sys_17: 0.0001889060634663044 + sys_18: 7.053238398706786e-05 + sys_19: -3.4083879794406665e-05 + sys_20: 5.526789411297709e-05 + sys_21: 1.9942494632999673e-05 + sys_22: -9.736891372503152e-05 + sys_23: -5.316329698579392e-05 + sys_24: 0.00014947864527291172 + sys_25: 4.1260519230555844e-05 + sys_26: -3.548776495935429e-05 + sys_27: -7.774631810176502e-05 + sys_28: 0.00019583603237832473 + sys_29: 2.7292399328063276e-06 + sys_30: 0.00010973263383637981 + sys_31: 5.812237139794235e-05 + sys_32: -2.0415962955485767e-05 + sys_33: -8.672644060904479e-06 + sys_34: 8.595139257854595e-06 + sys_35: -2.3021031430382086e-05 + sys_36: -3.0599592648489606e-05 + sys_37: -0.00011647876501908578 + sys_38: -0.00016475193313640675 + sys_39: 1.634903200729017e-05 + sys_40: -6.700488607074137e-05 + sys_41: 5.127334154418284e-05 + sys_42: -0.00017218000808571035 + sys_43: 9.957332839095674e-05 + sys_44: 0.00016916135822633163 + sys_45: -0.0014519237512463606 + sys_46: -0.00035796220925725543 + sys_47: 0.00035585219512718446 + sys_48: 8.820662551894108e-07 + sys_49: -7.414390106539829e-05 + sys_50: 2.648287986845461e-06 + sys_51: -4.149339201271573e-05 + sys_52: -1.1416581095201597e-05 + sys_53: -3.676815295672555e-05 + sys_54: -8.142484057666941e-05 + sys_55: -6.980197187489938e-05 + sys_56: -0.000215495493204872 + sys_57: -0.00012093862747726145 + sys_58: -0.0003213631493970247 + sys_59: -6.639163440179522e-05 + sys_60: -0.00010407878390522833 + sys_61: 3.6853822215861643e-06 + sys_62: 2.6516238075191925e-06 +- pol: 0.0006611200000000001 + lumi: 0.00047 + sys_0: 1.811710714602599e-05 + sys_1: -1.3059181757779837e-05 + sys_2: -1.0316751377375079e-05 + sys_3: -1.5639832483457244e-05 + sys_4: -8.685238651338384e-05 + sys_5: -8.012840679125505e-05 + sys_6: 9.586824837154663e-05 + sys_7: 3.93668599783516e-05 + sys_8: 4.1220253248632475e-05 + sys_9: -0.00017206115116409932 + sys_10: 0.00023150499238046925 + sys_11: 0.00019795993514493132 + sys_12: -0.00015313813661255545 + sys_13: 0.00016879698088948243 + sys_14: 2.23508308394163e-05 + sys_15: 0.00020790945356527553 + sys_16: 2.6547645925291293e-05 + sys_17: 0.0002611774713495985 + sys_18: 0.0001619432139868469 + sys_19: -0.0001036407629172811 + sys_20: -2.869485266734e-05 + sys_21: -5.618546078860592e-05 + sys_22: -3.925160363733337e-05 + sys_23: -9.163710672560553e-05 + sys_24: 0.00014188260839904956 + sys_25: 5.772576062800113e-05 + sys_26: 6.03508635208995e-05 + sys_27: -4.5481286071906764e-05 + sys_28: 0.0003493643397549365 + sys_29: 6.023438483556884e-05 + sys_30: 0.00010818427319070745 + sys_31: 8.668178859009777e-06 + sys_32: -7.11682295873518e-05 + sys_33: -5.768877472094036e-06 + sys_34: 5.591168735694529e-06 + sys_35: -5.742601266828994e-05 + sys_36: -6.217136229021219e-05 + sys_37: 3.5889214631126855e-06 + sys_38: -0.0003857399674757568 + sys_39: 6.650020958536023e-05 + sys_40: -1.3743435100953453e-05 + sys_41: 2.1607071786219247e-05 + sys_42: -6.3960433535036e-05 + sys_43: 0.0002716682852908359 + sys_44: 3.395962977609981e-05 + sys_45: -0.0002164550797307946 + sys_46: -3.855963866903099e-05 + sys_47: -7.740846614735473e-05 + sys_48: 4.0204183623727224e-06 + sys_49: -0.00041644455602051064 + sys_50: -4.016293410949085e-05 + sys_51: 4.5993158859175744e-05 + sys_52: -5.029786291571935e-05 + sys_53: -0.00011242129480643156 + sys_54: -0.00042626392330589357 + sys_55: 0.00011477245649835826 + sys_56: 0.000576124315519797 + sys_57: 0.0006173240384276745 + sys_58: 0.001586409130561033 + sys_59: -0.00020518966552357756 + sys_60: -0.00020333822516926158 + sys_61: -0.0002932095213722739 + sys_62: 0.0006628387034527291 +- pol: 0.0007993599999999999 + lumi: 0.00047 + sys_0: 0.00010505248159787118 + sys_1: -8.276688131604682e-05 + sys_2: -4.827239036304887e-05 + sys_3: -9.304553600619055e-05 + sys_4: -0.0002730297516487757 + sys_5: -0.00028386607902136706 + sys_6: 0.0003419427867339581 + sys_7: 8.441952901619083e-05 + sys_8: 0.00012943769334761686 + sys_9: -0.0002504515046951962 + sys_10: 0.0004057424637655803 + sys_11: 0.0003103616599468913 + sys_12: -0.00041236561348510683 + sys_13: 0.00011798667124613381 + sys_14: 4.629495557584697e-06 + sys_15: 0.00022572948911424556 + sys_16: -0.00011724760431420078 + sys_17: 0.00023426485544292768 + sys_18: 0.00025149702459159454 + sys_19: -0.00018838620477611262 + sys_20: -0.00016827377687938583 + sys_21: -0.00018983882236743699 + sys_22: 8.588029075267852e-05 + sys_23: -0.00013088502532773632 + sys_24: 9.668824009327082e-05 + sys_25: 0.0001531519311182078 + sys_26: 0.0004207187089726896 + sys_27: 0.000178699754895646 + sys_28: 0.00075137100028526 + sys_29: 0.00021115360694138788 + sys_30: 0.00018675311772707492 + sys_31: -7.158740264106592e-05 + sys_32: -0.0006391715838791277 + sys_33: 1.8329071120642534e-05 + sys_34: -0.0001813912080696496 + sys_35: 0.0008343920594465885 + sys_36: 0.0004910812519313244 + sys_37: -0.0015765278884734611 + sys_38: 0.001855834907095022 + sys_39: -0.000306644470890637 + sys_40: 3.699218698933427e-06 + sys_41: 7.758103111302417e-06 + sys_42: -2.2649603241853713e-05 + sys_43: -0.0005908572275288319 + sys_44: 7.653077576464391e-06 + sys_45: -8.383581397171242e-05 + sys_46: -2.099336103596304e-05 + sys_47: -3.4944180681932e-05 + sys_48: 4.351351928352993e-06 + sys_49: 0.00044826247588758677 + sys_50: 5.8817233444542196e-05 + sys_51: -0.00013317732218373716 + sys_52: 2.6076439188691758e-05 + sys_53: 4.060474726177789e-05 + sys_54: 0.00017979831721449924 + sys_55: 3.631286055299096e-05 + sys_56: 0.00016142180310473956 + sys_57: 0.00014123422514172895 + sys_58: 0.00021300616520924877 + sys_59: 9.717205018655992e-06 + sys_60: -3.509388020002517e-05 + sys_61: 1.4838698142249067e-05 + sys_62: -3.489525229693062e-05 +- pol: 0.0011673599999999999 + lumi: 0.00047 + sys_0: 0.00043717161584928545 + sys_1: -0.0003663771373233839 + sys_2: -0.0002691672823332076 + sys_3: -0.0003999261324244517 + sys_4: -0.00049853529666139 + sys_5: -0.0006128390852800031 + sys_6: 0.0008383677797617835 + sys_7: -6.145317117704533e-05 + sys_8: 0.0003886503779809238 + sys_9: -0.00017121638256528045 + sys_10: 0.0004597289338409924 + sys_11: 0.0003186247280903773 + sys_12: -0.0007361698430586141 + sys_13: -1.3949633925602034e-05 + sys_14: -3.0488921130046096e-05 + sys_15: 0.00023772636961073366 + sys_16: -0.0006162985732188103 + sys_17: 7.247524675888572e-05 + sys_18: 0.00026136895442957107 + sys_19: -0.00037777306002198784 + sys_20: -0.0005648658317314272 + sys_21: -0.0008754463010697105 + sys_22: 0.0009604178602847174 + sys_23: -0.0011644826017431712 + sys_24: 0.0011021309137968535 + sys_25: -0.002009961946505033 + sys_26: -0.0029691129126865642 + sys_27: -0.0009967422874494363 + sys_28: -0.0010482699221215778 + sys_29: -0.00022114983393185754 + sys_30: -0.00011134366300755857 + sys_31: 2.2189699055995043e-05 + sys_32: 8.187118677644438e-05 + sys_33: -4.167789868576286e-06 + sys_34: -7.942458649089005e-06 + sys_35: 1.6012058525302404e-05 + sys_36: 1.618700283054088e-05 + sys_37: -0.0001587297250120716 + sys_38: 0.00020514944882886897 + sys_39: -4.624520715441101e-05 + sys_40: 5.847023607469354e-06 + sys_41: 2.4742699684910496e-06 + sys_42: -5.781950517674544e-06 + sys_43: -0.00010332695537576456 + sys_44: -1.4980999403070565e-06 + sys_45: -3.24568885220114e-05 + sys_46: -1.3554145144157634e-05 + sys_47: -1.8944366990717346e-05 + sys_48: 2.7002949802521645e-06 + sys_49: 0.00015733538303152833 + sys_50: 2.4603668734067692e-05 + sys_51: -6.794149246008541e-05 + sys_52: 9.268819138686455e-06 + sys_53: 9.927939707825778e-06 + sys_54: 8.178772120126916e-05 + sys_55: 1.919479062232579e-05 + sys_56: 8.72017296103736e-05 + sys_57: 6.353155008786691e-05 + sys_58: 7.438174831317749e-05 + sys_59: 7.71236660087194e-06 + sys_60: -1.8578990518122243e-05 + sys_61: 1.6664704487363487e-05 + sys_62: -3.002162511408659e-05 +- pol: 0.0014112 + lumi: 0.00047 + sys_0: 0.0010334196535290462 + sys_1: -0.0010160478295447779 + sys_2: -0.0011667437735360365 + sys_3: -0.000757104817750977 + sys_4: -0.0005696815616150391 + sys_5: -0.0008845066079519098 + sys_6: 0.0014163291214270041 + sys_7: -0.0005651242405939099 + sys_8: 0.000993303360405739 + sys_9: 0.00011843678252377706 + sys_10: 0.00045204088705448836 + sys_11: 0.000272166042901361 + sys_12: -0.001395523783005285 + sys_13: -0.0010007847044199373 + sys_14: -0.0017847400736663713 + sys_15: -0.001412484045533067 + sys_16: 0.006723225004133488 + sys_17: 0.0003946677647411717 + sys_18: 4.91899605324475e-05 + sys_19: 0.0003029527234895039 + sys_20: 0.0005032192804172655 + sys_21: 0.00030218393520533286 + sys_22: -0.000236785549607658 + sys_23: 8.03112393412389e-05 + sys_24: 8.45943728861435e-06 + sys_25: -6.316218367949187e-05 + sys_26: -0.0003239356177165097 + sys_27: -0.0001876868117825334 + sys_28: -0.00019505136217248402 + sys_29: -4.5170526937550413e-05 + sys_30: -2.9591980415174554e-05 + sys_31: -3.7455458862870804e-06 + sys_32: 2.633008919443024e-05 + sys_33: -6.870226314595115e-07 + sys_34: -5.816369871576808e-06 + sys_35: -8.945930467391758e-06 + sys_36: 1.1949896262885486e-06 + sys_37: -4.783641382783677e-05 + sys_38: 5.9174707824535834e-05 + sys_39: -1.4808686127473796e-05 + sys_40: 3.8708690243449295e-06 + sys_41: 5.398379998623333e-07 + sys_42: -6.509398543074114e-07 + sys_43: -2.9590577620665565e-05 + sys_44: -4.393134538694975e-06 + sys_45: -1.0607260572507771e-05 + sys_46: -8.56630925351904e-06 + sys_47: -7.812965569778696e-06 + sys_48: 1.360055184848511e-06 + sys_49: 7.433975041721804e-05 + sys_50: 1.3159900275223438e-05 + sys_51: -3.945628402556754e-05 + sys_52: 3.8384576874785415e-06 + sys_53: 2.3090327248483e-06 + sys_54: 4.0784181480534384e-05 + sys_55: 1.0005289449787072e-05 + sys_56: 4.8071837807650764e-05 + sys_57: 2.7471512388293316e-05 + sys_58: 2.2134593893175393e-05 + sys_59: 7.4869885302495174e-06 + sys_60: -5.872122935370367e-06 + sys_61: 1.1777771776695572e-05 + sys_62: -2.0294120687003928e-05 +- pol: 0.00289728 + lumi: 0.00047 + sys_0: 0.0016876982554332558 + sys_1: -0.0018354248647584116 + sys_2: -0.0030334095929484698 + sys_3: -0.0007763094803207819 + sys_4: -0.00056052607589726 + sys_5: -0.0012893182838419632 + sys_6: 0.003396902591166231 + sys_7: -0.0022807938100493272 + sys_8: -0.012527532393627338 + sys_9: -0.0022823995782644954 + sys_10: -7.14742322577146e-05 + sys_11: -1.6211767140030812e-05 + sys_12: 0.0002838459840671494 + sys_13: 0.00016582805923476244 + sys_14: 7.320144684565628e-05 + sys_15: -5.332824989181306e-06 + sys_16: 0.00030719532089372534 + sys_17: 7.797750923151457e-05 + sys_18: 4.28681546552238e-05 + sys_19: 4.227101667338671e-05 + sys_20: 0.00010388463430430462 + sys_21: 7.292441121927229e-05 + sys_22: -7.170783247902023e-05 + sys_23: 2.842311639479694e-05 + sys_24: -5.358659688111717e-06 + sys_25: 6.724952508668602e-07 + sys_26: -8.356380389739514e-05 + sys_27: -5.684878529561089e-05 + sys_28: -5.9364107014550124e-05 + sys_29: -1.0594585399999708e-05 + sys_30: -1.131384919879631e-05 + sys_31: -4.974930681499503e-06 + sys_32: 8.838720450542644e-06 + sys_33: -3.4521966795829875e-09 + sys_34: -3.1973594393447865e-06 + sys_35: -7.96119362150196e-06 + sys_36: -3.7327410330586123e-07 + sys_37: -9.289591695053409e-06 + sys_38: 1.3450868403895251e-05 + sys_39: -3.756172787455739e-06 + sys_40: 1.476281063701641e-06 + sys_41: 9.469625226741054e-08 + sys_42: 2.0977365521598139e-07 + sys_43: -5.997996769742387e-06 + sys_44: -2.9404245487695188e-06 + sys_45: -2.6921200700491273e-06 + sys_46: -4.025306210242501e-06 + sys_47: -2.05996369261086e-06 + sys_48: 4.811815903941377e-07 + sys_49: 2.8510803005345743e-05 + sys_50: 5.506163993686876e-06 + sys_51: -1.7189357460720116e-05 + sys_52: 1.229155031718389e-06 + sys_53: 8.934858393247168e-08 + sys_54: 1.5617429310357212e-05 + sys_55: 4.032861694713025e-06 + sys_56: 2.0182878345212536e-05 + sys_57: 9.454324561970696e-06 + sys_58: 4.060126910711864e-06 + sys_59: 4.189152322580647e-06 + sys_60: -7.781355886210458e-07 + sys_61: 5.4733593833104085e-06 + sys_62: -9.12847231881253e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_A.yaml new file mode 100644 index 0000000000..fb4b465e2b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_A.yaml @@ -0,0 +1,13 @@ +data_central: +- -0.00548 +- -0.00011 +- 0.00165 +- 0.00129 +- 0.00248 +- 0.00581 +- 0.00666 +- 0.0114 +- 0.01826 +- 0.02431 +- 0.03638 +- -0.00789 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_B.yaml new file mode 100644 index 0000000000..f3d32215b3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_B.yaml @@ -0,0 +1,14 @@ +data_central: +- 0.00381 +- 0.00299 +- -0.00116 +- 0.00336 +- -0.0006 +- 0.00154 +- 0.0062 +- 0.00865 +- 0.00806 +- 0.02428 +- 0.01063 +- 0.01248 +- 0.05037 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_C.yaml new file mode 100644 index 0000000000..2c50c63a16 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_C.yaml @@ -0,0 +1,13 @@ +data_central: +- -0.01155 +- 0.00075 +- -0.00293 +- 0.00018 +- 0.00655 +- 0.00969 +- 0.00817 +- 0.01317 +- 0.01866 +- 0.01712 +- 0.01357 +- -0.00575 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_D.yaml new file mode 100644 index 0000000000..6c7101a8a8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/data_D.yaml @@ -0,0 +1,13 @@ +data_central: +- 0.01048 +- 0.00296 +- 0.00307 +- -0.00072 +- 0.00169 +- 0.00501 +- 0.00443 +- 0.00887 +- 0.00985 +- 0.00351 +- 0.03141 +- 0.01114 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_A.yaml new file mode 100644 index 0000000000..d9f1292209 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_A.yaml @@ -0,0 +1,145 @@ +bins: +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 17.16 + mid: 15.74 + min: 14.32 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 19.64 + mid: 18.5 + min: 17.36 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 22.91 + mid: 21.96 + min: 21.01 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.110000000000003 + mid: 26.17 + min: 25.23 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 32.67 + mid: 31.63 + min: 30.59 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 39.16 + mid: 37.8 + min: 36.44 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 46.1 + mid: 44.75 + min: 43.4 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 54.81 + mid: 53.31 + min: 51.81 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 65.37 + mid: 63.64 + min: 61.910000000000004 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 77.38 + mid: 75.32 + min: 73.25999999999999 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 92.17 + mid: 89.66 + min: 87.14999999999999 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 108.53 + mid: 105.63 + min: 102.72999999999999 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_B.yaml new file mode 100644 index 0000000000..d38da4d369 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_B.yaml @@ -0,0 +1,157 @@ +bins: +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 16.96 + mid: 15.49 + min: 14.02 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 19.31 + mid: 18.48 + min: 17.650000000000002 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 23.08 + mid: 22.33 + min: 21.58 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.580000000000002 + mid: 26.67 + min: 25.76 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 33.15 + mid: 32.16 + min: 31.169999999999998 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 39.760000000000005 + mid: 38.59 + min: 37.42 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 47.06999999999999 + mid: 45.66 + min: 44.25 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 56.0 + mid: 54.49 + min: 52.980000000000004 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 66.77 + mid: 65.02 + min: 63.269999999999996 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 79.22999999999999 + mid: 77.16 + min: 75.09 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 93.89999999999999 + mid: 91.33 + min: 88.76 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 112.25 + mid: 109.2 + min: 106.15 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 133.2 + mid: 129.75 + min: 126.3 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_C.yaml new file mode 100644 index 0000000000..c62299f9ff --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_C.yaml @@ -0,0 +1,145 @@ +bins: +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 17.26 + mid: 15.72 + min: 14.18 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 19.889999999999997 + mid: 18.9 + min: 17.91 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 23.259999999999998 + mid: 22.24 + min: 21.22 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 28.12 + mid: 27.14 + min: 26.16 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 34.120000000000005 + mid: 33.03 + min: 31.94 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 40.78 + mid: 39.35 + min: 37.92 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 48.16 + mid: 46.62 + min: 45.08 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 57.45 + mid: 55.74 + min: 54.03 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 68.32000000000001 + mid: 66.39 + min: 64.46 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 81.23 + mid: 78.97 + min: 76.71 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 97.07 + mid: 94.22 + min: 91.37 +- abs_eta_1: + max: 0.3 + mid: 0.15 + min: 0.0 + abs_eta_2: + max: 0.3 + mid: 0.15 + min: 0.0 + m_jj: + max: 114.7 + mid: 111.48 + min: 108.26 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_D.yaml new file mode 100644 index 0000000000..fed9c68a44 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/kinematics_D.yaml @@ -0,0 +1,145 @@ +bins: +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 19.349999999999998 + mid: 18.2 + min: 17.05 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 22.71 + mid: 21.67 + min: 20.630000000000003 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 27.16 + mid: 26.12 + min: 25.080000000000002 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 32.440000000000005 + mid: 31.42 + min: 30.400000000000002 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 38.58 + mid: 37.33 + min: 36.08 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 46.11 + mid: 44.6 + min: 43.09 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 55.3 + mid: 53.61 + min: 51.92 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 65.31 + mid: 63.38 + min: 61.45 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 77.78999999999999 + mid: 75.52 + min: 73.25 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 92.3 + mid: 89.6 + min: 86.89999999999999 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 109.83 + mid: 106.63 + min: 103.42999999999999 +- abs_eta_1: + max: 0.9 + mid: 0.6 + min: 0.3 + abs_eta_2: + max: 0.9 + mid: 0.6 + min: 0.3 + m_jj: + max: 130.99 + mid: 127.17 + min: 123.35000000000001 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/metadata.yaml new file mode 100644 index 0000000000..3381f9db6e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/metadata.yaml @@ -0,0 +1,166 @@ +setname: "STAR_2013_2JET_510GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "DIJET" + +arXiv: + url: https://arxiv.org/abs/2110.11020 +iNSPIRE: + url: "https://inspirehep.net/literature/1949588" +hepdata: + url: "https://www.hepdata.net/record/ins1949588" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: + { + description: "ALL as function of $M_{inv}$, topology A", + label: "$A_{LL}$", + units: "", + } + observable_name: A-ALL + process_type: DIJET_POL + ndata: 12 + tables: [5] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_A.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_A.yaml + data_uncertainties: + - uncertainties_A.yaml + plotting: + dataset_label: "STAR 510 GeV (2013) DIJET $A_{LL}$, topology A" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2013_2JET_510GEV_A-ALL-POL + - - STAR_2013_2JET_510GEV_A-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology B", + label: "$A_{LL}$", + units: "", + } + observable_name: B-ALL + process_type: DIJET_POL + ndata: 13 + tables: [5] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_B.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_B.yaml + data_uncertainties: + - uncertainties_B.yaml + plotting: + dataset_label: "STAR 510 GeV (2013) DIJET $A_{LL}$, topology B" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2013_2JET_510GEV_B-ALL-POL + - - STAR_2013_2JET_510GEV_B-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology C", + label: "$A_{LL}$", + units: "", + } + observable_name: C-ALL + process_type: DIJET_POL + ndata: 12 + tables: [5] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_C.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_C.yaml + data_uncertainties: + - uncertainties_C.yaml + plotting: + dataset_label: "STAR 510 GeV (2013) DIJET $A_{LL}$, topology C" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2013_2JET_510GEV_C-ALL-POL + - - STAR_2013_2JET_510GEV_C-ALL-UNPOL + operation: "ratio" + - observable: + { + description: "ALL as function of $M_{inv}$, topology D", + label: "$A_{LL}$", + units: "", + } + observable_name: D-ALL + process_type: DIJET_POL + ndata: 12 + tables: [5] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_D.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_D.yaml + data_uncertainties: + - uncertainties_D.yaml + plotting: + dataset_label: "STAR 510 GeV (2013) DIJET $A_{LL}$, topology D" + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2013_2JET_510GEV_D-ALL-POL + - - STAR_2013_2JET_510GEV_D-ALL-UNPOL + operation: "ratio" diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml new file mode 100644 index 0000000000..13aa42700b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_A.yaml @@ -0,0 +1,1042 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2013POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2013LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc55 + sys_56: + description: 56 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc56 + sys_57: + description: 57 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc57 + sys_58: + description: 58 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc58 + sys_59: + description: 59 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc59 + sys_60: + description: 60 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc60 + sys_61: + description: 61 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc61 + sys_62: + description: 62 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc62 +bins: +- pol: 0.00035072 + lumi: 0.00047 + sys_0: 1.6714867251519865e-05 + sys_1: -1.9697169024554937e-05 + sys_2: -1.010421365609237e-05 + sys_3: -1.2746064055786e-05 + sys_4: -2.5049610259423067e-05 + sys_5: -3.724270341159478e-05 + sys_6: 2.705942449995741e-05 + sys_7: 1.0808096731863009e-05 + sys_8: 3.707063728361056e-05 + sys_9: -4.349709208213046e-05 + sys_10: 9.276971501891272e-05 + sys_11: 6.549168043003301e-05 + sys_12: -5.831229768869864e-05 + sys_13: 0.0001678954740481609 + sys_14: 0.0002454681768632849 + sys_15: 0.00027573462638399 + sys_16: -7.709443879718861e-05 + sys_17: 0.0007131344932908932 + sys_18: 0.0009731350465146249 + sys_19: 0.0059205083848353586 + sys_20: -0.0011109324008875727 + sys_21: -0.0006590246446946086 + sys_22: 0.0004349251890638587 + sys_23: -0.00017285854432127942 + sys_24: 5.7018045800379496e-05 + sys_25: 6.030328832497679e-07 + sys_26: 3.46387176871164e-05 + sys_27: 8.30427145710141e-05 + sys_28: 4.655866316754729e-05 + sys_29: 6.146214426295914e-05 + sys_30: -6.309088493879222e-06 + sys_31: -5.0130153321971705e-05 + sys_32: -6.550932695901168e-05 + sys_33: 1.1919418866231785e-05 + sys_34: -1.1083988795952688e-05 + sys_35: 1.1583711141542408e-05 + sys_36: 2.2341218586974057e-05 + sys_37: -8.135718470478857e-06 + sys_38: -2.778933418211516e-06 + sys_39: 1.690200577917589e-05 + sys_40: -2.7915793127757107e-06 + sys_41: 3.3646777912297996e-08 + sys_42: -8.63749689699702e-07 + sys_43: 3.971090337384388e-05 + sys_44: 2.232490696002846e-06 + sys_45: 1.5236463348986408e-06 + sys_46: 3.4417480744521e-06 + sys_47: 6.309876669181764e-06 + sys_48: -5.677996062425343e-07 + sys_49: -2.7620384760634184e-05 + sys_50: 1.1437928188748471e-05 + sys_51: -7.394939009901356e-07 + sys_52: -2.2012945497202025e-05 + sys_53: 7.894977373153833e-06 + sys_54: -1.8472210047783703e-05 + sys_55: -4.771632139803858e-06 + sys_56: -1.5798002287522338e-05 + sys_57: -6.825820682241323e-06 + sys_58: -2.47026795744354e-06 + sys_59: -2.0421249979394873e-06 + sys_60: -2.8202391438234803e-06 + sys_61: -2.9844175809627592e-06 + sys_62: 1.2707923563053382e-05 +- pol: 7.04e-06 + lumi: 0.00047 + sys_0: 3.7536047074729424e-05 + sys_1: -1.4537478153461237e-05 + sys_2: -1.6419587478047247e-05 + sys_3: -1.806054776449194e-05 + sys_4: -5.9896043010497606e-05 + sys_5: -3.260556348840372e-05 + sys_6: 4.199119761188298e-05 + sys_7: 1.8373390653307427e-05 + sys_8: 5.539711380926878e-05 + sys_9: -8.855337160752001e-05 + sys_10: 7.701893174732944e-05 + sys_11: 8.253201507729048e-05 + sys_12: -5.980365707200398e-05 + sys_13: 0.00019378741157360314 + sys_14: 0.00021222363443035324 + sys_15: 0.00010137437128763463 + sys_16: -4.2889369944502944e-05 + sys_17: 0.00022622240852291533 + sys_18: 0.00013226324029748802 + sys_19: 0.00010908732138341787 + sys_20: 0.0002130904079194211 + sys_21: 0.00036116408638769433 + sys_22: -0.0003551236962588125 + sys_23: 0.00032377837089966796 + sys_24: -2.684753617755315e-05 + sys_25: 0.00025195683521422565 + sys_26: -0.00016438852546139115 + sys_27: -0.0003857417670154586 + sys_28: -0.00039888114667257656 + sys_29: -0.00012701186388056602 + sys_30: -0.0001613808369666566 + sys_31: 0.0004146551685299103 + sys_32: 0.0007993545734745145 + sys_33: -0.0005403424741244033 + sys_34: -0.0005331556603171377 + sys_35: -0.0008603255769397597 + sys_36: -0.0002659763874593031 + sys_37: 0.0004160417887856855 + sys_38: 0.0017618610727783682 + sys_39: 0.00015532209726488273 + sys_40: -2.7779810901818546e-05 + sys_41: 8.885441823708301e-07 + sys_42: -1.0346811031639502e-05 + sys_43: 0.00026808795087723055 + sys_44: 1.3843571286476268e-05 + sys_45: 9.094741858160394e-06 + sys_46: 2.2281281910080392e-05 + sys_47: 4.4454870997705456e-05 + sys_48: -4.458606094070057e-05 + sys_49: -0.0014367270763027296 + sys_50: 8.444828765139943e-05 + sys_51: 0.00021169417915041925 + sys_52: -1.426763703404778e-05 + sys_53: 0.00017418247270576263 + sys_54: -0.00021022065955213047 + sys_55: -3.298115648495603e-05 + sys_56: -0.00021351761243413307 + sys_57: -0.00011174447610214944 + sys_58: 2.5230858738366034e-05 + sys_59: -5.505647992196469e-05 + sys_60: -6.642439229064435e-05 + sys_61: 3.729101771245988e-05 + sys_62: 6.109889171632902e-05 +- pol: 0.0001056 + lumi: 0.00047 + sys_0: 9.639113621522696e-06 + sys_1: -5.646454025019674e-06 + sys_2: -9.929843572624319e-06 + sys_3: -6.984035232448086e-06 + sys_4: -1.4815800007165661e-05 + sys_5: -1.1919944504017224e-05 + sys_6: 2.1276886501058594e-05 + sys_7: 5.0545403664977595e-06 + sys_8: 1.8709816292800257e-05 + sys_9: -2.1552120767875792e-05 + sys_10: 2.8405203524526086e-05 + sys_11: 3.402328880952409e-05 + sys_12: -2.909461402777679e-05 + sys_13: 4.92584097943828e-05 + sys_14: 5.960072423206318e-05 + sys_15: 4.346408658763269e-05 + sys_16: -1.894232965932391e-05 + sys_17: 9.419553029434767e-05 + sys_18: 5.602831570076377e-05 + sys_19: 6.611196278189435e-05 + sys_20: 3.625382411363953e-05 + sys_21: 0.00014139168457814256 + sys_22: -9.35738995660201e-05 + sys_23: 9.394145427541232e-05 + sys_24: 1.1691521959679753e-05 + sys_25: 4.5014781125108314e-05 + sys_26: -3.185017996541694e-05 + sys_27: -0.00011931734027537099 + sys_28: -4.726533600847381e-05 + sys_29: -6.097688851046237e-05 + sys_30: -2.2175473918041045e-05 + sys_31: 0.00018871326956568837 + sys_32: 0.00028013570612497765 + sys_33: -0.00015445242653340798 + sys_34: -7.663444268220304e-05 + sys_35: -0.0001522699885892203 + sys_36: -0.00011772496507775529 + sys_37: 2.9311436576363973e-05 + sys_38: 0.0002565526272737746 + sys_39: 1.9160128234901477e-05 + sys_40: -9.681771169178912e-06 + sys_41: 7.21939843105648e-06 + sys_42: -8.696964063596126e-06 + sys_43: -0.00011303764468135811 + sys_44: -3.715516382933626e-05 + sys_45: -3.6457261205986824e-06 + sys_46: -3.6156617715932114e-05 + sys_47: 6.98144383868348e-05 + sys_48: -5.32849156115735e-05 + sys_49: 0.0005280496560940362 + sys_50: -0.0004709705546297933 + sys_51: 0.0014480276448114548 + sys_52: -0.0008047347635497021 + sys_53: -0.0016439797573630371 + sys_54: -0.0001873117510559543 + sys_55: 8.363489909483666e-05 + sys_56: 0.00011041387577852491 + sys_57: -2.6482217825553664e-05 + sys_58: -2.73776107804536e-05 + sys_59: 0.00014127147669184493 + sys_60: 5.642886196762529e-05 + sys_61: -3.509793046327679e-05 + sys_62: -9.586040075920934e-05 +- pol: 8.256e-05 + lumi: 0.00047 + sys_0: 1.4953282761121896e-05 + sys_1: -1.4422700023694666e-05 + sys_2: -1.0312106505168746e-05 + sys_3: -9.083996259682079e-06 + sys_4: -2.4930409958458667e-05 + sys_5: -2.7875834844155615e-05 + sys_6: 2.5034569364032952e-05 + sys_7: 8.101219529032166e-06 + sys_8: 2.8459271482158307e-05 + sys_9: -3.3489964741334336e-05 + sys_10: 5.9886055502507066e-05 + sys_11: 4.2023490637351724e-05 + sys_12: -3.6958839475955886e-05 + sys_13: 8.047409720267228e-05 + sys_14: 9.6295272558938e-05 + sys_15: 9.150048809893963e-05 + sys_16: -2.4497104750314643e-05 + sys_17: 0.00012434331355083437 + sys_18: 7.734389946566098e-05 + sys_19: 8.040217636425242e-05 + sys_20: 6.624148367902254e-05 + sys_21: 0.0002258748350041645 + sys_22: -0.0002056343600165607 + sys_23: 0.00013128547130282026 + sys_24: -3.642858652541481e-05 + sys_25: 1.9952393767061964e-05 + sys_26: -4.775248479541841e-05 + sys_27: -0.0001462059458828352 + sys_28: -8.650202212396117e-05 + sys_29: -0.00012782245824191616 + sys_30: 9.13723281298503e-06 + sys_31: 0.00018828241080392054 + sys_32: 0.0003394546759746133 + sys_33: -0.0001024255053583162 + sys_34: 2.401759928096464e-05 + sys_35: -0.0001239835259074185 + sys_36: -0.00016200927013633695 + sys_37: 5.561443557731075e-05 + sys_38: 0.00013316657581945849 + sys_39: -0.00010132007981337318 + sys_40: 9.422629483214684e-06 + sys_41: 6.810201742785199e-06 + sys_42: -6.605300606599919e-06 + sys_43: -0.0003466439244553776 + sys_44: -1.2840600750436705e-06 + sys_45: 1.415823327126711e-05 + sys_46: 7.244772046633626e-06 + sys_47: 0.00011514355348341969 + sys_48: -5.377236698076797e-05 + sys_49: 0.0003782711742069658 + sys_50: -1.727970212795254e-05 + sys_51: 8.488925055718781e-05 + sys_52: 5.8543821414864456e-05 + sys_53: 0.00012562426624058602 + sys_54: 0.0007196867086935033 + sys_55: 5.2331162220538486e-05 + sys_56: -0.00022499275134530387 + sys_57: -0.00018915105935645254 + sys_58: -0.00017926618161557016 + sys_59: -0.0003816740531011671 + sys_60: 0.0008854026609531293 + sys_61: -0.0011483997622566513 + sys_62: 0.0013240958320458339 +- pol: 0.00015872 + lumi: 0.00047 + sys_0: 1.3368369591930755e-05 + sys_1: -1.3304380652413266e-05 + sys_2: -1.116661107517637e-05 + sys_3: -9.817592579630511e-06 + sys_4: -2.4196733303497704e-05 + sys_5: -2.7772832678651546e-05 + sys_6: 2.6947755966533348e-05 + sys_7: 8.477039536031708e-06 + sys_8: 2.8457653836476554e-05 + sys_9: -3.344000030606242e-05 + sys_10: 5.667258469431558e-05 + sys_11: 4.5253725247147204e-05 + sys_12: -3.876795172745671e-05 + sys_13: 7.962683488504443e-05 + sys_14: 9.542466386368992e-05 + sys_15: 8.83359839701173e-05 + sys_16: -2.522627141096362e-05 + sys_17: 0.0001285273299431934 + sys_18: 7.959169738685924e-05 + sys_19: 7.901267656821514e-05 + sys_20: 6.505213132873715e-05 + sys_21: 0.0002309534224243988 + sys_22: -0.00020017565018645272 + sys_23: 0.0001353398817333499 + sys_24: -2.7264800118065778e-05 + sys_25: 2.5961526824985137e-05 + sys_26: -4.8689140538882006e-05 + sys_27: -0.00015628089328706735 + sys_28: -8.282833993885936e-05 + sys_29: -0.000132807061948554 + sys_30: 1.0210506473098856e-05 + sys_31: 0.00022406670517244998 + sys_32: 0.00039817062051119233 + sys_33: -0.00013570124103760517 + sys_34: 1.8002054556171458e-05 + sys_35: -0.00015725296761773724 + sys_36: -0.0001967790656672508 + sys_37: 5.311321744415872e-05 + sys_38: 0.00016652183613907731 + sys_39: -0.00011215072350610805 + sys_40: 3.0276388548440627e-05 + sys_41: 1.4937605695158297e-06 + sys_42: 8.976136206212264e-06 + sys_43: -0.000459103283733681 + sys_44: -1.4795930222691473e-05 + sys_45: 2.6130704587918228e-05 + sys_46: -7.202073429346237e-06 + sys_47: 8.737137963468382e-05 + sys_48: -2.090801082353996e-05 + sys_49: 0.0009690669043740591 + sys_50: 1.541973221106287e-05 + sys_51: 0.0004592306910212479 + sys_52: 0.0003058018515167258 + sys_53: 0.0009132192530106274 + sys_54: -0.0018481775152794167 + sys_55: 2.5742748637080224e-05 + sys_56: -5.6136869707966654e-05 + sys_57: -9.333982835985858e-05 + sys_58: -7.39570047017589e-05 + sys_59: 0.00011800978872188209 + sys_60: 5.775284416297774e-05 + sys_61: -0.00018985343087139152 + sys_62: 0.00011131540388971722 +- pol: 0.00037184 + lumi: 0.00047 + sys_0: 1.61541657732654e-05 + sys_1: -1.3341384769805093e-05 + sys_2: -1.3013951530442625e-05 + sys_3: -1.2019720968968013e-05 + sys_4: -2.281509292828417e-05 + sys_5: -2.4840853063155687e-05 + sys_6: 2.707446348140496e-05 + sys_7: 7.273791092938999e-06 + sys_8: 2.978006775036237e-05 + sys_9: -3.532503286453526e-05 + sys_10: 5.610552447011036e-05 + sys_11: 4.868309008069325e-05 + sys_12: -4.078857305119192e-05 + sys_13: 8.308471205677202e-05 + sys_14: 0.00010020067130018826 + sys_15: 8.825190269217785e-05 + sys_16: -2.8865235821550942e-05 + sys_17: 0.00014240344138666215 + sys_18: 9.017761792773749e-05 + sys_19: 8.622484446863687e-05 + sys_20: 7.450258960862254e-05 + sys_21: 0.000267562169506235 + sys_22: -0.00022864900797114077 + sys_23: 0.00017061914354565803 + sys_24: -1.7453369719680862e-05 + sys_25: 4.7315284619809244e-05 + sys_26: -6.677041458246649e-05 + sys_27: -0.00023535436235578132 + sys_28: -0.00010384015303960694 + sys_29: -0.00020263199028318747 + sys_30: 1.4843640627781241e-05 + sys_31: 0.0005115670542192288 + sys_32: 0.0015512633301570822 + sys_33: -0.0011029855469693246 + sys_34: -0.00042989502987693547 + sys_35: 0.0018791192346620878 + sys_36: 0.0012878421485856 + sys_37: -4.029466636111223e-05 + sys_38: -0.00040639378443765547 + sys_39: 0.00015598717164408006 + sys_40: 3.268834320071925e-05 + sys_41: -5.449147043863403e-06 + sys_42: 1.7383557093405447e-05 + sys_43: 0.0003771702928360972 + sys_44: -1.415011262614824e-05 + sys_45: 2.55584238023991e-05 + sys_46: -8.63126200755489e-06 + sys_47: 4.2609583598381783e-05 + sys_48: -5.744494239225637e-06 + sys_49: -0.00019463110580058115 + sys_50: -1.1211560125108789e-05 + sys_51: -3.6058712753191136e-05 + sys_52: -5.865468791701774e-06 + sys_53: -2.4402051054083115e-05 + sys_54: -9.131554587294693e-05 + sys_55: 9.161361157683161e-07 + sys_56: -2.9929107421215517e-06 + sys_57: -3.906436482709335e-05 + sys_58: -3.1623448556509636e-05 + sys_59: 3.246814823451995e-05 + sys_60: 2.8436910923267518e-05 + sys_61: -3.225933463080627e-05 + sys_62: 1.4713857513552744e-05 +- pol: 0.00042624000000000004 + lumi: 0.00047 + sys_0: 1.4143134172742818e-05 + sys_1: -1.1655545717020729e-05 + sys_2: -1.457783521279098e-05 + sys_3: -1.0038301910620669e-05 + sys_4: -2.5647712178311777e-05 + sys_5: -2.462153511262681e-05 + sys_6: 3.109237399238289e-05 + sys_7: 7.864866743547085e-06 + sys_8: 3.12560649026819e-05 + sys_9: -3.655069090027138e-05 + sys_10: 6.018360329512638e-05 + sys_11: 5.2253647927986555e-05 + sys_12: -4.784708216781956e-05 + sys_13: 9.119345418007843e-05 + sys_14: 0.0001096298731218391 + sys_15: 9.61125399989381e-05 + sys_16: -3.306265438307501e-05 + sys_17: 0.0001692532123256027 + sys_18: 0.00010649793516673465 + sys_19: 9.433387769227597e-05 + sys_20: 8.445488025952376e-05 + sys_21: 0.0003155418019942237 + sys_22: -0.0002634277254012014 + sys_23: 0.00020817261823893562 + sys_24: -1.05131514085391e-07 + sys_25: 7.216227285986489e-05 + sys_26: -0.00011052183096565588 + sys_27: -0.0003712691158300237 + sys_28: -0.00014713498014370377 + sys_29: -0.00036054244397729996 + sys_30: 4.688227320698731e-05 + sys_31: 0.0031352317070968026 + sys_32: -0.0013527348352928498 + sys_33: 0.00032271190571610893 + sys_34: 2.4341432207771596e-05 + sys_35: 0.00017651625762463776 + sys_36: 0.00018975062414603719 + sys_37: 6.613291522211937e-05 + sys_38: -0.00013647821245892978 + sys_39: 5.2430504118536836e-05 + sys_40: 3.340582027224634e-05 + sys_41: -1.4137067926331283e-05 + sys_42: 3.364415914275193e-05 + sys_43: 0.00014292977371920164 + sys_44: -1.5624597673790557e-05 + sys_45: 4.448558074430841e-05 + sys_46: -4.8231800460691e-06 + sys_47: 3.135127282749496e-05 + sys_48: -4.1268779438546905e-06 + sys_49: -0.00012019514475400767 + sys_50: -9.224726636826627e-06 + sys_51: -6.3008536346923125e-06 + sys_52: -1.6872309603933197e-06 + sys_53: -7.400530201014921e-06 + sys_54: -5.0016272190753894e-05 + sys_55: -3.985805532635657e-06 + sys_56: -2.2598237108139307e-06 + sys_57: -4.135951675584257e-05 + sys_58: -4.038806440208043e-05 + sys_59: 3.1185112815337896e-05 + sys_60: 3.6464479778014235e-05 + sys_61: -3.3242868119876415e-06 + sys_62: 8.576634439945138e-06 +- pol: 0.0007296000000000001 + lumi: 0.00047 + sys_0: 1.9170140530546954e-05 + sys_1: -1.589878363851462e-05 + sys_2: -1.9409570871456e-05 + sys_3: -1.366297796739295e-05 + sys_4: -3.529149526578305e-05 + sys_5: -2.945493468683086e-05 + sys_6: 4.089126513169209e-05 + sys_7: 6.702082665164922e-06 + sys_8: 4.3521776356382114e-05 + sys_9: -5.246719324063426e-05 + sys_10: 7.783085109204918e-05 + sys_11: 7.352022983835641e-05 + sys_12: -7.683195004689173e-05 + sys_13: 0.00013509184747786382 + sys_14: 0.0001630167059190744 + sys_15: 0.0001470156864984478 + sys_16: -4.2067614740399714e-05 + sys_17: 0.00029658072029691224 + sys_18: 0.00020616915564261354 + sys_19: 0.00014389706615775295 + sys_20: 0.00018206728733205873 + sys_21: 0.0008641004777775052 + sys_22: -0.0009196073389449016 + sys_23: 0.001559232231715012 + sys_24: 0.004170862451926454 + sys_25: -0.0005465463735475185 + sys_26: 0.00048266741421869384 + sys_27: 0.0006120889169081248 + sys_28: 7.951606686139664e-05 + sys_29: 0.00013909868932254326 + sys_30: -1.4418085564781968e-05 + sys_31: -0.00017378179230114965 + sys_32: -0.00015315742032656453 + sys_33: 5.538345313154529e-05 + sys_34: 8.963272544465063e-06 + sys_35: 3.351316236883148e-05 + sys_36: 4.510008781457596e-05 + sys_37: 6.154263944397519e-05 + sys_38: -5.291378016683292e-05 + sys_39: 1.675428967495011e-05 + sys_40: 1.5049706218138772e-05 + sys_41: -1.2061700210999617e-05 + sys_42: 3.164348550746129e-05 + sys_43: 4.654142739473439e-05 + sys_44: -1.3589700079918344e-05 + sys_45: 5.1761347131422925e-05 + sys_46: 2.2712230930995986e-06 + sys_47: 1.8391498387709284e-05 + sys_48: -3.955160560223235e-06 + sys_49: -5.59994223716833e-05 + sys_50: -5.482378899313561e-06 + sys_51: 9.224643104507022e-06 + sys_52: -6.25976229394586e-07 + sys_53: 6.412766797861079e-07 + sys_54: -2.165693894658652e-05 + sys_55: -4.236601503633784e-06 + sys_56: -9.514185638554207e-06 + sys_57: -3.664127542362982e-05 + sys_58: -5.0283723529371845e-05 + sys_59: 1.9230971654674926e-05 + sys_60: 3.008229957797699e-05 + sys_61: 4.283672670633928e-06 + sys_62: -3.586467040772061e-07 +- pol: 0.0011686399999999999 + lumi: 0.00047 + sys_0: 3.515227648081494e-05 + sys_1: -2.3127635721676036e-05 + sys_2: -2.8975928611231973e-05 + sys_3: -2.0517252225770865e-05 + sys_4: -5.490746838020992e-05 + sys_5: -4.888153572326461e-05 + sys_6: 7.72058977277205e-05 + sys_7: 1.3569176118260109e-05 + sys_8: 6.251588340005293e-05 + sys_9: -9.97300099403318e-05 + sys_10: 0.00015182244963307843 + sys_11: 0.0001672155335514184 + sys_12: -0.00017801021516977028 + sys_13: 0.000358560654650896 + sys_14: 0.00046792944654972137 + sys_15: 0.0004694964646394464 + sys_16: 3.6973760842538745e-05 + sys_17: 0.005900875614496157 + sys_18: -0.0027583076339894323 + sys_19: -0.0004578553316186798 + sys_20: -0.0005046378368812108 + sys_21: -0.0005787891648180864 + sys_22: 0.0002912744198068367 + sys_23: -0.00014216069964234575 + sys_24: -2.683351656633947e-05 + sys_25: -2.246582563682784e-05 + sys_26: 0.0001545063996199251 + sys_27: 0.00017765390086334578 + sys_28: 2.9709445280093487e-05 + sys_29: 3.603776914615114e-05 + sys_30: -3.732152084860622e-07 + sys_31: -4.837327889246176e-05 + sys_32: -4.77417369704087e-05 + sys_33: 2.2234291467915607e-05 + sys_34: 1.0139078125652646e-05 + sys_35: 6.476349540121031e-06 + sys_36: 1.7260827046583478e-05 + sys_37: 7.575427174725005e-05 + sys_38: -5.615077901421696e-05 + sys_39: 1.2897057165819577e-05 + sys_40: 1.9884635132763544e-06 + sys_41: -5.364758833535915e-06 + sys_42: 1.7454541590709623e-05 + sys_43: 2.7555931659322277e-05 + sys_44: -1.2512646657477713e-05 + sys_45: 4.557899167963177e-05 + sys_46: 3.5987074392957745e-06 + sys_47: 1.7651383641125186e-05 + sys_48: -3.9095739832995684e-06 + sys_49: -5.0188851061098115e-05 + sys_50: -5.751841953113852e-06 + sys_51: 1.8439404559430807e-05 + sys_52: -1.3355144224446463e-06 + sys_53: 1.778173486228838e-06 + sys_54: -1.8992848439051675e-05 + sys_55: -4.911724417346492e-06 + sys_56: -2.0373548785295157e-05 + sys_57: -3.904963097150592e-05 + sys_58: -6.212201623034487e-05 + sys_59: 1.3499278403652309e-05 + sys_60: 2.642144455154748e-05 + sys_61: 3.5022740798834994e-06 + sys_62: -4.371540606764203e-06 +- pol: 0.00155584 + lumi: 0.00047 + sys_0: 7.593374120114409e-05 + sys_1: -4.3502998777358546e-05 + sys_2: -6.035682723971167e-05 + sys_3: -5.1551158368676464e-05 + sys_4: -0.00014718036214627714 + sys_5: -0.00012062415030206451 + sys_6: 0.00024396997965702615 + sys_7: 1.3303722998578083e-05 + sys_8: 8.215996767748001e-05 + sys_9: -0.00046063240596189327 + sys_10: 0.0016919581157183777 + sys_11: 0.010254757581879836 + sys_12: 0.0012643269054403924 + sys_13: -0.000458662555633693 + sys_14: -0.0003124066324611215 + sys_15: -0.0001594696780978095 + sys_16: -0.00017223686246808733 + sys_17: -0.00025326257814429354 + sys_18: -0.00018181743872354106 + sys_19: -3.3992834111271334e-05 + sys_20: -0.00010129836262156463 + sys_21: -0.0001561228173549439 + sys_22: 7.504292288411416e-05 + sys_23: -3.1271510657081175e-05 + sys_24: -1.755461937438174e-05 + sys_25: 1.317082744482733e-05 + sys_26: 0.00013484006173787233 + sys_27: 0.00011061976549523978 + sys_28: 3.782779063890293e-05 + sys_29: 1.3389646184888316e-05 + sys_30: 7.078844583247836e-06 + sys_31: -9.86445518982242e-06 + sys_32: -1.471786623804066e-05 + sys_33: 1.059452617764336e-05 + sys_34: 9.924713481026254e-06 + sys_35: -2.428110922451253e-06 + sys_36: 3.1254553948339443e-06 + sys_37: 6.737830318046117e-05 + sys_38: -5.527369557278383e-05 + sys_39: 1.0222374995728003e-05 + sys_40: -2.689981431073657e-06 + sys_41: -1.5711920996425273e-06 + sys_42: 4.465102358478968e-06 + sys_43: 2.1886908268741214e-05 + sys_44: -8.119883335232407e-06 + sys_45: 2.0447353063015546e-05 + sys_46: -7.381188537734224e-08 + sys_47: 1.7474979235561903e-05 + sys_48: -3.392246432693824e-06 + sys_49: -5.0569368351836205e-05 + sys_50: -6.5502453565225645e-06 + sys_51: 2.327527264401531e-05 + sys_52: -1.999065015725542e-06 + sys_53: 1.1865673416200146e-06 + sys_54: -2.2364595527844497e-05 + sys_55: -4.3811512743518445e-06 + sys_56: -2.01091506152675e-05 + sys_57: -3.0176688658340237e-05 + sys_58: -4.320544448583647e-05 + sys_59: 5.765616383292254e-06 + sys_60: 1.8064542780515624e-05 + sys_61: -2.0966816541106677e-06 + sys_62: 3.5216327119030176e-06 +- pol: 0.00232832 + lumi: 0.00047 + sys_0: 0.00013606621997905156 + sys_1: -0.00010358840884830201 + sys_2: -0.00015049917907913098 + sys_3: -0.00011702420200316881 + sys_4: -0.0005814684615487417 + sys_5: -0.0008968593946696037 + sys_6: 0.011199604949980202 + sys_7: 0.011890042229853598 + sys_8: 0.0004574819491622494 + sys_9: 0.0004990460412426384 + sys_10: -0.00022466943163361433 + sys_11: -0.00017914451699653974 + sys_12: 0.00022815588895920802 + sys_13: -0.00010552716237190463 + sys_14: -5.479032810522832e-05 + sys_15: -1.950380167793091e-05 + sys_16: -0.00024268529734221945 + sys_17: -0.0001072470722858828 + sys_18: -8.950228109723525e-05 + sys_19: -1.4170111100282846e-05 + sys_20: -5.4317073646174366e-05 + sys_21: -7.135681504874913e-05 + sys_22: 2.6697705855874644e-05 + sys_23: 2.2661432116068855e-06 + sys_24: -2.294712116686054e-05 + sys_25: 4.227777862463662e-05 + sys_26: 0.00013109665023134436 + sys_27: 8.103722643831378e-05 + sys_28: 4.571181580750188e-05 + sys_29: 1.1575520659692925e-05 + sys_30: 7.4584839326312864e-06 + sys_31: -3.0122910843475853e-06 + sys_32: -1.000484244486501e-05 + sys_33: 4.870248883685925e-06 + sys_34: 5.224100553474899e-06 + sys_35: -1.0038819359274459e-06 + sys_36: 1.689437316325103e-06 + sys_37: 4.206668896951811e-05 + sys_38: -3.765901591334297e-05 + sys_39: 7.752969426695524e-06 + sys_40: -2.3887520709285636e-06 + sys_41: -4.630933651212942e-07 + sys_42: 8.032355515599146e-07 + sys_43: 1.7699880141815902e-05 + sys_44: -4.0393443569083395e-06 + sys_45: 7.124119297390771e-06 + sys_46: -8.508621435051176e-07 + sys_47: 1.1762369354180179e-05 + sys_48: -2.1186929862074573e-06 + sys_49: -3.757711130743457e-05 + sys_50: -4.866702472340349e-06 + sys_51: 1.6743405740473743e-05 + sys_52: -2.031755175287682e-06 + sys_53: -5.122704136623013e-07 + sys_54: -1.980435608054836e-05 + sys_55: -2.669143100603791e-06 + sys_56: -1.1963566866054472e-05 + sys_57: -1.6207412498854528e-05 + sys_58: -1.8588119877258503e-05 + sys_59: 1.238748917436844e-06 + sys_60: 9.635613495356792e-06 + sys_61: -4.470882691950806e-06 + sys_62: 8.356574432746217e-06 +- pol: 0.0005049599999999999 + lumi: 0.00047 + sys_0: 0.001058774878499026 + sys_1: -0.0008859452713964245 + sys_2: -0.0045337302258725565 + sys_3: -0.028859666920578182 + sys_4: 0.0002997362788414544 + sys_5: 0.00023460214448150547 + sys_6: -0.0003664940249242148 + sys_7: 0.0001400498017037601 + sys_8: 0.0004630592632493331 + sys_9: 0.0001953858763270021 + sys_10: -7.537410423254493e-05 + sys_11: -5.268483374424175e-05 + sys_12: 9.634371309374674e-05 + sys_13: -3.908400180803621e-05 + sys_14: -4.223138979867601e-06 + sys_15: 1.633692224046892e-05 + sys_16: -0.00021497770865932308 + sys_17: -5.1333583927763704e-05 + sys_18: -4.272160915391721e-05 + sys_19: -1.4481767049481258e-05 + sys_20: -4.3258819290748096e-05 + sys_21: -4.3538969185462614e-05 + sys_22: 2.257421826997548e-05 + sys_23: -6.891178081555541e-06 + sys_24: -5.600052385100225e-06 + sys_25: 1.4200216409729381e-05 + sys_26: 6.801487811772879e-05 + sys_27: 4.455198172701395e-05 + sys_28: 3.336325974519788e-05 + sys_29: 6.987074598615453e-06 + sys_30: 7.048940502158961e-06 + sys_31: 6.869935990444412e-07 + sys_32: -8.435317509954351e-06 + sys_33: 2.303303070248854e-06 + sys_34: 2.2961781382249248e-06 + sys_35: 5.529532562947885e-06 + sys_36: 3.191845224160519e-06 + sys_37: 1.1853509086621586e-05 + sys_38: -8.823718662377756e-06 + sys_39: 2.0608947618669475e-06 + sys_40: -1.3649285575662824e-06 + sys_41: -1.2712853604147707e-07 + sys_42: 1.9712940849002944e-08 + sys_43: 4.806545959354742e-06 + sys_44: -1.4822670533695802e-06 + sys_45: 2.3270246092243677e-06 + sys_46: -2.4942627252593785e-07 + sys_47: 5.8560344711089985e-06 + sys_48: -1.1497635552241307e-06 + sys_49: -2.066862732875207e-05 + sys_50: -2.9323436285469492e-06 + sys_51: 1.044982498515011e-05 + sys_52: -1.0744044575320705e-06 + sys_53: -1.9773533550355107e-08 + sys_54: -1.1569421973907702e-05 + sys_55: -1.325780113836204e-06 + sys_56: -6.368155622460508e-06 + sys_57: -7.191915284787222e-06 + sys_58: -4.712862381586785e-06 + sys_59: -3.376779277465413e-07 + sys_60: 4.458953030043626e-06 + sys_61: -3.5566692965380952e-06 + sys_62: 6.464743605381797e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml new file mode 100644 index 0000000000..f91b9050ba --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_B.yaml @@ -0,0 +1,1107 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2013POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2013LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc55 + sys_56: + description: 56 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc56 + sys_57: + description: 57 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc57 + sys_58: + description: 58 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc58 + sys_59: + description: 59 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc59 + sys_60: + description: 60 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc60 + sys_61: + description: 61 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc61 + sys_62: + description: 62 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc62 +bins: +- pol: 0.00024384 + lumi: 0.00047 + sys_0: 2.281088562554162e-05 + sys_1: -1.9009016467633217e-05 + sys_2: -2.290860702617328e-05 + sys_3: -0.00010391962674272997 + sys_4: -2.8440360506706964e-05 + sys_5: -4.0548400470768674e-05 + sys_6: 9.941057349868706e-05 + sys_7: 9.058659586486452e-05 + sys_8: 4.974577595521049e-05 + sys_9: -3.533291822229874e-05 + sys_10: 9.93947533910935e-05 + sys_11: 0.000171185897728405 + sys_12: -1.7002555931538828e-05 + sys_13: 0.0001214647744790949 + sys_14: 0.00015620762336058584 + sys_15: 0.00019517879139180206 + sys_16: -8.955356424854852e-05 + sys_17: 0.00040623807156525227 + sys_18: 0.00010073883799032127 + sys_19: 0.00022527741668392843 + sys_20: 0.00023768994350902375 + sys_21: 0.004281259986743967 + sys_22: 0.0030758600582467648 + sys_23: -0.0005883267522291179 + sys_24: 1.4101473966382434e-05 + sys_25: -3.311557582712359e-05 + sys_26: -1.993537842402271e-06 + sys_27: 0.0001150269919761873 + sys_28: 7.161039098940901e-05 + sys_29: 0.00010803177246686055 + sys_30: -2.2936823605091786e-05 + sys_31: -9.552932115525954e-05 + sys_32: -9.970483579118694e-05 + sys_33: 1.791644215449036e-05 + sys_34: -1.7345229203087354e-05 + sys_35: 1.560490774724806e-05 + sys_36: 2.862360764591612e-05 + sys_37: -2.5294427418424234e-05 + sys_38: -2.2207022164474563e-06 + sys_39: 2.0279883701976684e-05 + sys_40: -3.841052149454382e-06 + sys_41: 4.45432862963229e-07 + sys_42: -2.22763293622085e-06 + sys_43: 4.961085453873298e-05 + sys_44: 4.210092916140238e-06 + sys_45: -1.1647539521706427e-06 + sys_46: 4.5201675636219955e-06 + sys_47: 5.1103148304682e-06 + sys_48: 5.7366360249210256e-08 + sys_49: -2.4850029682737765e-05 + sys_50: 1.4020236882862722e-05 + sys_51: -6.018363316227946e-06 + sys_52: -3.5263215453625573e-05 + sys_53: 8.96891536825347e-06 + sys_54: -1.8249475385666512e-05 + sys_55: -5.9232720673049455e-06 + sys_56: -1.8268545328056893e-05 + sys_57: -5.003770196168688e-06 + sys_58: 2.5397199255845177e-06 + sys_59: -2.127526043984521e-06 + sys_60: -6.357995523590569e-06 + sys_61: -3.2607330199499665e-06 + sys_62: 1.611577428462294e-05 +- pol: 0.00019136 + lumi: 0.00047 + sys_0: 3.0137940757252064e-05 + sys_1: -1.5120549745651372e-05 + sys_2: -2.557964310222899e-05 + sys_3: -9.285397279651371e-05 + sys_4: -4.3683529125285215e-05 + sys_5: -2.5829337568213863e-05 + sys_6: 8.479975895061869e-05 + sys_7: 7.487832016048138e-05 + sys_8: 5.009150576113278e-05 + sys_9: -5.785226337953304e-05 + sys_10: 6.058431637989494e-05 + sys_11: 0.0001276471126152765 + sys_12: -2.2804440901547975e-05 + sys_13: 0.00012006258355411111 + sys_14: 0.00012067297943446249 + sys_15: 7.01434092614238e-05 + sys_16: -4.94800925425859e-05 + sys_17: 0.00016778459091957746 + sys_18: 5.301333538150836e-05 + sys_19: 6.578261566427233e-05 + sys_20: 0.00011623308884420307 + sys_21: 0.00017910466573517093 + sys_22: -0.00019007221639564113 + sys_23: 0.00016836541920500344 + sys_24: -7.662335127729685e-07 + sys_25: 0.00014130084134789862 + sys_26: -4.585905739260147e-05 + sys_27: -0.0001483031027192513 + sys_28: -0.00015840440982937455 + sys_29: -4.4169089734708735e-05 + sys_30: -4.9041544426414155e-05 + sys_31: 0.00012620119418906567 + sys_32: 0.00018381032120012297 + sys_33: -9.321096031597881e-05 + sys_34: -8.279188336135335e-05 + sys_35: -0.000139232700945743 + sys_36: -3.3760739812799227e-05 + sys_37: 8.088130170141419e-05 + sys_38: 3.8739526536058606e-05 + sys_39: 1.1043852185195639e-05 + sys_40: -3.982637554875127e-05 + sys_41: 4.02188311252687e-06 + sys_42: -2.3326102257303363e-05 + sys_43: 1.3143084769334348e-05 + sys_44: 3.2937043747190766e-05 + sys_45: -1.1709824598176675e-05 + sys_46: 4.2970440339067005e-05 + sys_47: 8.270270613009508e-05 + sys_48: -0.00016364909376344818 + sys_49: 0.0006207983618269635 + sys_50: -0.00010533907448114406 + sys_51: -0.00026278617548179857 + sys_52: 0.00013148229489972675 + sys_53: -0.00010382845231467441 + sys_54: 0.00028304673646174734 + sys_55: -9.840267007223592e-05 + sys_56: -0.0011470635481528953 + sys_57: -0.0007904985782111398 + sys_58: 0.0012064959869821264 + sys_59: 0.00017242272455991647 + sys_60: 0.00016488463150961802 + sys_61: 5.406373074491427e-05 + sys_62: -0.0005361766479740627 +- pol: 7.424000000000001e-05 + lumi: 0.00047 + sys_0: 1.1988805227337153e-05 + sys_1: -1.0122811180152982e-05 + sys_2: -2.225709094995496e-05 + sys_3: -9.200738156652825e-05 + sys_4: -1.720874178964973e-05 + sys_5: -1.6879612958820445e-05 + sys_6: 7.937037015496161e-05 + sys_7: 7.12410575006495e-05 + sys_8: 2.998590263007994e-05 + sys_9: -1.58776873000345e-05 + sys_10: 3.8978440508921974e-05 + sys_11: 0.00011748547577655996 + sys_12: -9.800050301701956e-06 + sys_13: 4.0445563747606495e-05 + sys_14: 4.87101477049762e-05 + sys_15: 4.3501319587868765e-05 + sys_16: -3.9008530946502404e-05 + sys_17: 0.0001303105058083275 + sys_18: 1.0980702587438305e-05 + sys_19: 4.380651481331928e-05 + sys_20: 1.942402350115072e-05 + sys_21: 0.00010130872285487363 + sys_22: -8.04910220473541e-05 + sys_23: 8.497698662956298e-05 + sys_24: 4.67381339046043e-05 + sys_25: 3.640065744251648e-05 + sys_26: 1.633105823603584e-05 + sys_27: -5.7438780082538165e-05 + sys_28: -1.4962074298932341e-05 + sys_29: -3.945878867597524e-05 + sys_30: -4.310759251067119e-06 + sys_31: 0.00014725416135456096 + sys_32: 0.00013488905896865403 + sys_33: -7.220803998572832e-05 + sys_34: -2.5355377311818003e-05 + sys_35: -2.891840213064606e-05 + sys_36: -2.946559770008359e-05 + sys_37: 3.528879680480221e-05 + sys_38: 1.5802229847890773e-05 + sys_39: 8.710504180168306e-06 + sys_40: -4.57981660395756e-05 + sys_41: 2.057418266120918e-05 + sys_42: -5.178882382625821e-05 + sys_43: -3.095238630145861e-05 + sys_44: -0.00014600919892497865 + sys_45: -0.0002147829696480405 + sys_46: -0.00032132992109166456 + sys_47: -0.0016072854733851641 + sys_48: 0.00038762771350971874 + sys_49: 0.00010270844567618074 + sys_50: -6.85723512542674e-05 + sys_51: 9.112623557609716e-05 + sys_52: 1.0362276062998926e-05 + sys_53: -1.6003934064822328e-05 + sys_54: -2.815447467533789e-05 + sys_55: -0.00025429294518088656 + sys_56: -0.00024519969880633813 + sys_57: -2.5965979753819693e-05 + sys_58: -7.498319042747137e-05 + sys_59: -4.970900450449527e-05 + sys_60: 2.383231473757752e-05 + sys_61: -3.46742695200303e-05 + sys_62: 7.984266041481395e-05 +- pol: 0.00021504 + lumi: 0.00047 + sys_0: 1.6980791646538596e-05 + sys_1: -1.7109036972399746e-05 + sys_2: -2.3080843436824126e-05 + sys_3: -8.968532766930664e-05 + sys_4: -2.324883529149849e-05 + sys_5: -2.9915140725999797e-05 + sys_6: 7.830834321021618e-05 + sys_7: 7.065886566605766e-05 + sys_8: 3.716627084069595e-05 + sys_9: -2.640345031306556e-05 + sys_10: 6.452790050231657e-05 + sys_11: 0.00011570402039971252 + sys_12: -1.6719404856793778e-05 + sys_13: 6.33847631886473e-05 + sys_14: 7.464412483594288e-05 + sys_15: 8.114614294772787e-05 + sys_16: -4.168324366921127e-05 + sys_17: 0.00014191742416220203 + sys_18: 3.077585024322328e-05 + sys_19: 5.3474619937518926e-05 + sys_20: 4.238172232093275e-05 + sys_21: 0.00015910980944704514 + sys_22: -0.0001617903709525906 + sys_23: 0.00010341713047828779 + sys_24: 3.673391294560449e-06 + sys_25: 1.9102534713103342e-05 + sys_26: 1.852716310179595e-06 + sys_27: -7.412095984564886e-05 + sys_28: -4.132652672152357e-05 + sys_29: -8.585549689698303e-05 + sys_30: 1.8928705109809146e-05 + sys_31: 0.0001353970578675398 + sys_32: 0.00018139355567593229 + sys_33: -4.572113933320987e-05 + sys_34: 2.9190111943478155e-05 + sys_35: -4.0225814137865836e-05 + sys_36: -6.676529954286033e-05 + sys_37: 4.757561805738058e-05 + sys_38: -2.5619171620702607e-06 + sys_39: -4.325000210102794e-05 + sys_40: 1.0062440257151244e-05 + sys_41: 4.7225792505811216e-05 + sys_42: -0.00010726275521546072 + sys_43: -0.00014140861018299553 + sys_44: 0.001471917400421051 + sys_45: 0.00017320020895239405 + sys_46: -3.8437468555331665e-05 + sys_47: -0.000162223585420007 + sys_48: 8.510937354571548e-05 + sys_49: 0.00012745514958644008 + sys_50: -1.866629878211839e-05 + sys_51: 3.756992124606338e-05 + sys_52: 1.1658062218501663e-05 + sys_53: 1.5140223511868958e-05 + sys_54: 9.665081055338634e-05 + sys_55: -5.7133646608962185e-05 + sys_56: 0.0001202469665335926 + sys_57: 4.7077735986504356e-05 + sys_58: -1.686476789753164e-05 + sys_59: -8.232148541659906e-06 + sys_60: 2.9371047200178286e-05 + sys_61: 7.859657328328348e-05 + sys_62: -5.357062958052398e-05 +- pol: 3.84e-05 + lumi: 0.00047 + sys_0: 1.750924451669883e-05 + sys_1: -1.617755634165256e-05 + sys_2: -2.317084078012487e-05 + sys_3: -8.81173129702084e-05 + sys_4: -2.258746487701988e-05 + sys_5: -2.817381972070911e-05 + sys_6: 7.960566166503321e-05 + sys_7: 6.830291732147555e-05 + sys_8: 3.7291267077170146e-05 + sys_9: -2.6109619025804723e-05 + sys_10: 6.183989159427434e-05 + sys_11: 0.00011559448551938996 + sys_12: -1.7808095178925982e-05 + sys_13: 6.042821118908999e-05 + sys_14: 7.284862734313037e-05 + sys_15: 7.825467467977471e-05 + sys_16: -4.2080378974718926e-05 + sys_17: 0.00014124377862542357 + sys_18: 3.188048357851204e-05 + sys_19: 5.079060403743773e-05 + sys_20: 4.06996387996997e-05 + sys_21: 0.0001537486747274063 + sys_22: -0.00015577108454248214 + sys_23: 0.00010345724052218065 + sys_24: 7.2631835368674e-06 + sys_25: 2.312234126992752e-05 + sys_26: 1.7498002730535727e-06 + sys_27: -7.783616454144802e-05 + sys_28: -3.343765241906546e-05 + sys_29: -8.177795546736996e-05 + sys_30: 1.7256028927060605e-05 + sys_31: 0.00014001947699926812 + sys_32: 0.00018274107493845094 + sys_33: -5.159802411901986e-05 + sys_34: 2.4898788945069272e-05 + sys_35: -4.334332203943152e-05 + sys_36: -6.92365463965009e-05 + sys_37: 3.8099539377266106e-05 + sys_38: -8.947076967409882e-06 + sys_39: -3.681367491762464e-05 + sys_40: 9.021681071496416e-05 + sys_41: 1.8197312917909902e-05 + sys_42: -5.45512432153564e-06 + sys_43: -0.0001306925482077911 + sys_44: 1.7618732491543735e-05 + sys_45: -0.00043392041532587213 + sys_46: 0.001512763548566355 + sys_47: -0.00026179336081912563 + sys_48: 6.940478373466225e-05 + sys_49: 0.0001338323583990458 + sys_50: -8.328379950287208e-06 + sys_51: 4.5915642013377265e-05 + sys_52: 4.6589961643494086e-06 + sys_53: 1.4956532380819988e-05 + sys_54: 9.222135439521491e-05 + sys_55: -5.681292776334477e-05 + sys_56: 7.957929980908127e-05 + sys_57: 7.036517587635446e-05 + sys_58: -3.5317339797824556e-05 + sys_59: -2.9849151072024758e-05 + sys_60: 4.001036950814897e-06 + sys_61: 8.690885261703858e-05 + sys_62: -3.391197290104236e-05 +- pol: 9.855999999999999e-05 + lumi: 0.00047 + sys_0: 1.6067577762474497e-05 + sys_1: -1.5357098560717597e-05 + sys_2: -2.3410022719246187e-05 + sys_3: -8.861865680388318e-05 + sys_4: -2.28354472991793e-05 + sys_5: -2.7612399796742894e-05 + sys_6: 7.934601102286091e-05 + sys_7: 6.796930221888335e-05 + sys_8: 3.725279006594692e-05 + sys_9: -2.695301032375375e-05 + sys_10: 5.977744796231624e-05 + sys_11: 0.00011661158695191768 + sys_12: -2.107810985306159e-05 + sys_13: 6.394716308774421e-05 + sys_14: 7.493167604829327e-05 + sys_15: 7.752282425148536e-05 + sys_16: -4.289228876395666e-05 + sys_17: 0.00014753390765327525 + sys_18: 3.680310449504511e-05 + sys_19: 5.159110969003508e-05 + sys_20: 4.360666625607369e-05 + sys_21: 0.00015852943144484074 + sys_22: -0.00015780902226735841 + sys_23: 0.00011162860767022135 + sys_24: 1.3402957195105382e-05 + sys_25: 3.310955645998031e-05 + sys_26: 1.3181163354913653e-06 + sys_27: -9.441831629838113e-05 + sys_28: -2.89559671745813e-05 + sys_29: -8.503522978769667e-05 + sys_30: 1.902969664455846e-05 + sys_31: 0.00016395116682093344 + sys_32: 0.00021518969637552245 + sys_33: -6.49554193012957e-05 + sys_34: 2.1569370489270444e-05 + sys_35: -5.609614295090738e-05 + sys_36: -8.380851625267098e-05 + sys_37: 2.7390422020387644e-05 + sys_38: -1.8760137101697843e-05 + sys_39: -4.0369289659803094e-05 + sys_40: 8.607368565228408e-05 + sys_41: -7.44781592149743e-06 + sys_42: 3.335444328099609e-05 + sys_43: -0.00015512482425063828 + sys_44: -7.402210685985129e-06 + sys_45: 4.6989444611719966e-05 + sys_46: -3.187727023970042e-05 + sys_47: 0.00011113469809396922 + sys_48: -3.659555108587721e-05 + sys_49: 0.0002169294731782842 + sys_50: -3.9868637900727585e-06 + sys_51: 6.628739386949036e-05 + sys_52: 8.033055463426064e-08 + sys_53: 1.5918659393926413e-05 + sys_54: 0.00013958545308137457 + sys_55: 6.501625806318791e-05 + sys_56: -0.001091452097803664 + sys_57: 0.0016491224248438338 + sys_58: -0.0001247195391448342 + sys_59: -0.00011374126059099385 + sys_60: -6.505122360427317e-05 + sys_61: 0.00018422255263655514 + sys_62: -2.770064173191701e-05 +- pol: 0.0003968 + lumi: 0.00047 + sys_0: 1.7262416045985232e-05 + sys_1: -1.4426774920439588e-05 + sys_2: -2.4601232269485177e-05 + sys_3: -8.89052555276196e-05 + sys_4: -2.5068828776474154e-05 + sys_5: -2.798865797021059e-05 + sys_6: 8.063469154534603e-05 + sys_7: 6.645641551374384e-05 + sys_8: 3.931960866477371e-05 + sys_9: -3.042576765919702e-05 + sys_10: 6.065810700046609e-05 + sys_11: 0.00011913538521447642 + sys_12: -2.6230719373863082e-05 + sys_13: 7.13004916436832e-05 + sys_14: 7.878858784216479e-05 + sys_15: 7.964835543948928e-05 + sys_16: -4.6131065545990947e-05 + sys_17: 0.00015760811985524452 + sys_18: 4.563668861360809e-05 + sys_19: 5.068313347733516e-05 + sys_20: 4.76841612129893e-05 + sys_21: 0.00016650300904212103 + sys_22: -0.0001696866941868952 + sys_23: 0.00011846171665546969 + sys_24: 1.804540440056027e-05 + sys_25: 4.3573423766369324e-05 + sys_26: -8.288195850307024e-06 + sys_27: -0.00011413329740820264 + sys_28: -2.6764208290543667e-05 + sys_29: -8.631837047335518e-05 + sys_30: 2.3536648361202447e-05 + sys_31: 0.00018557897695735935 + sys_32: 0.0002406179253439728 + sys_33: -8.089559952690581e-05 + sys_34: 1.947278782650351e-05 + sys_35: -6.967590460171291e-05 + sys_36: -0.00010109642807395313 + sys_37: -1.494482376086708e-05 + sys_38: -1.0002773567677261e-05 + sys_39: -4.550036067615091e-05 + sys_40: 9.475649771369747e-05 + sys_41: -3.042971647201877e-05 + sys_42: 7.65008608683993e-05 + sys_43: -0.00018582832633484922 + sys_44: -5.599511790127481e-06 + sys_45: 0.00010593758807977612 + sys_46: -2.8013639062068756e-06 + sys_47: 4.177197814675644e-05 + sys_48: -7.189533610734083e-06 + sys_49: 0.0003713721126791239 + sys_50: 1.6001054519980884e-05 + sys_51: 5.9202653773308825e-05 + sys_52: -6.03625741471746e-06 + sys_53: 5.186615454201347e-06 + sys_54: 0.00026189733509764525 + sys_55: -3.926489867289322e-05 + sys_56: -0.00013652651883572594 + sys_57: -0.0002996079266957716 + sys_58: -0.00010641924855964166 + sys_59: -0.0009675673996598356 + sys_60: -0.0018773687760410282 + sys_61: -0.00033288495340539655 + sys_62: 0.00024394712251612537 +- pol: 0.0005536 + lumi: 0.00047 + sys_0: 2.175313028375433e-05 + sys_1: -1.8197088078271366e-05 + sys_2: -2.7441203294125204e-05 + sys_3: -8.699397414790321e-05 + sys_4: -3.283387838381589e-05 + sys_5: -3.042064163679978e-05 + sys_6: 8.796740154114706e-05 + sys_7: 6.45600304954123e-05 + sys_8: 4.716492376631363e-05 + sys_9: -3.9040955607817946e-05 + sys_10: 7.21630121977661e-05 + sys_11: 0.00012777301639210745 + sys_12: -4.0999956994731316e-05 + sys_13: 9.103177012742085e-05 + sys_14: 9.924490404087222e-05 + sys_15: 9.854967840363989e-05 + sys_16: -4.996842167126018e-05 + sys_17: 0.0001904298408644186 + sys_18: 7.533410297922e-05 + sys_19: 5.435363672024717e-05 + sys_20: 7.121708472254264e-05 + sys_21: 0.00020659394787006673 + sys_22: -0.00023161418734883582 + sys_23: 0.00014986813145263276 + sys_24: 2.4730922030664508e-05 + sys_25: 6.700727744214446e-05 + sys_26: -6.143286510480495e-05 + sys_27: -0.00021899506457521918 + sys_28: -2.7219793446766282e-05 + sys_29: -0.0001352886001489845 + sys_30: 4.784144006826326e-05 + sys_31: 0.0003406246102928922 + sys_32: 0.0006537046351273337 + sys_33: -0.00028957453468358513 + sys_34: 3.759619428339987e-05 + sys_35: -0.00044805485420866434 + sys_36: -0.0011061618798362996 + sys_37: -0.002360753245526796 + sys_38: -0.0007762612943847487 + sys_39: 0.00048062779592209073 + sys_40: 4.7907207842206045e-05 + sys_41: -2.9190662012547097e-05 + sys_42: 7.55783588863325e-05 + sys_43: 0.0004972776501498306 + sys_44: -2.5973773970905266e-06 + sys_45: 0.00011572611788334741 + sys_46: 2.234667257161624e-05 + sys_47: -2.6699880872908537e-07 + sys_48: -2.2894077733066973e-06 + sys_49: -0.0003175262578105047 + sys_50: -3.087164985313073e-05 + sys_51: 4.118512025433221e-05 + sys_52: 5.128668099921814e-06 + sys_53: 1.4508318364952969e-05 + sys_54: -6.944508987419615e-05 + sys_55: -2.354299213853218e-05 + sys_56: -9.065074949246068e-05 + sys_57: -0.00010528369452931876 + sys_58: -0.00010334060395954604 + sys_59: 5.562993042235829e-05 + sys_60: 7.612522594561342e-05 + sys_61: 1.384785723798516e-05 + sys_62: -1.1447908500008258e-05 +- pol: 0.0005158399999999999 + lumi: 0.00047 + sys_0: 3.331957024905108e-05 + sys_1: -2.0269934304715875e-05 + sys_2: -3.397381868516456e-05 + sys_3: -8.683560660622106e-05 + sys_4: -5.122703844008558e-05 + sys_5: -4.395853545554561e-05 + sys_6: 0.00010356307367101305 + sys_7: 5.907963915384921e-05 + sys_8: 5.887818842103822e-05 + sys_9: -6.935380820120347e-05 + sys_10: 0.0001013011226242847 + sys_11: 0.00014819834927283967 + sys_12: -9.048007823160823e-05 + sys_13: 0.00014964903606475144 + sys_14: 0.00014972052852848207 + sys_15: 0.00013750472709222637 + sys_16: -2.2271335146026932e-05 + sys_17: 0.0002952472226912479 + sys_18: 0.00019113098167177698 + sys_19: 6.416738022172399e-05 + sys_20: 0.00014760240188694626 + sys_21: 0.0003566562968767753 + sys_22: -0.00048450593354619557 + sys_23: 0.0003109825173007432 + sys_24: 0.00011112671012976312 + sys_25: 0.00014190155106012138 + sys_26: -0.0008575000809477245 + sys_27: -0.0024766211939857698 + sys_28: 0.002965683472188613 + sys_29: 0.0005513387477058759 + sys_30: -9.855191733053331e-05 + sys_31: -0.00027537245711825494 + sys_32: -0.00016518675021696136 + sys_33: 5.967010292335178e-05 + sys_34: 2.7203866518706672e-05 + sys_35: -3.64337069188075e-06 + sys_36: 1.790355210245155e-05 + sys_37: 0.00023053998733058462 + sys_38: -0.0001561955292160523 + sys_39: 5.1317408771917414e-05 + sys_40: 1.3835919397559587e-05 + sys_41: -1.495839769910551e-05 + sys_42: 4.6780800815638414e-05 + sys_43: 8.103231804117721e-05 + sys_44: 2.476245088911094e-07 + sys_45: 0.00010728947688930197 + sys_46: 3.200724574182246e-05 + sys_47: -3.5069720199720638e-06 + sys_48: -1.9551707595947157e-06 + sys_49: -0.0001268554672598896 + sys_50: -2.15599240940132e-05 + sys_51: 5.881491370319988e-05 + sys_52: 1.7426084362134597e-06 + sys_53: 1.2139859026649362e-05 + sys_54: -3.124472069365521e-05 + sys_55: -2.329420057195408e-05 + sys_56: -0.0001071432132281899 + sys_57: -9.172211561423325e-05 + sys_58: -0.00013004021041491246 + sys_59: 2.0525669533600546e-05 + sys_60: 3.920569136202932e-05 + sys_61: 1.1904562939188916e-05 + sys_62: -1.9841967455950074e-05 +- pol: 0.00155392 + lumi: 0.00047 + sys_0: 6.139011568272416e-05 + sys_1: -3.418548621139498e-05 + sys_2: -5.802934059401736e-05 + sys_3: -8.663360256961601e-05 + sys_4: -9.646623094033136e-05 + sys_5: -7.60616683157227e-05 + sys_6: 0.00016575779103327243 + sys_7: 3.2821744751943306e-05 + sys_8: 4.054007020388547e-05 + sys_9: -0.0001612517285052394 + sys_10: 0.00020025574055512204 + sys_11: 0.00023775755593678414 + sys_12: -0.0002811573668744074 + sys_13: 0.00044295658824763197 + sys_14: 0.0004089821991368056 + sys_15: 0.0003594961822586568 + sys_16: 0.0004759908449872856 + sys_17: 0.0021264960307410393 + sys_18: 0.005379055352518797 + sys_19: -0.0015642683770978117 + sys_20: -0.0016150987588570817 + sys_21: -0.0005432745511484977 + sys_22: 0.0004955923953678203 + sys_23: -0.00011102124234994861 + sys_24: -9.441289014443512e-05 + sys_25: 4.91844072288384e-05 + sys_26: 0.00043400957149476293 + sys_27: 0.0003038492314444544 + sys_28: 0.00013107813504309733 + sys_29: 3.4075638684123805e-05 + sys_30: 4.688911661391012e-06 + sys_31: -1.482900162269388e-05 + sys_32: -5.06132810038025e-06 + sys_33: 9.59366981885725e-06 + sys_34: 2.4212526457128493e-05 + sys_35: -2.583061487685198e-05 + sys_36: -2.1784148183654543e-05 + sys_37: 0.00014590181210275046 + sys_38: -0.00014793170815362042 + sys_39: 3.3855496221392895e-05 + sys_40: -4.934353313049171e-07 + sys_41: -4.381940990905706e-06 + sys_42: 1.4308805980679447e-05 + sys_43: 5.186720793358371e-05 + sys_44: 4.697173728999191e-06 + sys_45: 5.2887650954336086e-05 + sys_46: 2.2418326141194937e-05 + sys_47: 3.4146225622030234e-06 + sys_48: -1.5209260353603615e-06 + sys_49: -9.941853399784592e-05 + sys_50: -1.8833517997927633e-05 + sys_51: 5.623992674187013e-05 + sys_52: -1.3303523908476006e-06 + sys_53: 5.21991412089482e-06 + sys_54: -3.397677990192499e-05 + sys_55: -1.9496967635660422e-05 + sys_56: -9.531087793688814e-05 + sys_57: -6.636098407181183e-05 + sys_58: -9.507827427535118e-05 + sys_59: 9.279264333899613e-07 + sys_60: 1.772712201089439e-05 + sys_61: 7.770488021443016e-08 + sys_62: -4.936707933949782e-06 +- pol: 0.0006803200000000001 + lumi: 0.00047 + sys_0: 9.608542661026518e-05 + sys_1: -6.643215982495098e-05 + sys_2: -9.62373902965967e-05 + sys_3: -0.00010804939063241255 + sys_4: -0.00017717268964448525 + sys_5: -0.00018225386444830147 + sys_6: 0.0003777774222383493 + sys_7: -4.7532964458115014e-05 + sys_8: -0.00041790778358552873 + sys_9: -0.00047349284212273054 + sys_10: 0.0008170279142312218 + sys_11: 0.0010037323631447099 + sys_12: -0.009353639810785618 + sys_13: -0.0006460541145013808 + sys_14: -0.00013757884068625205 + sys_15: -6.202290310356274e-05 + sys_16: -0.0011296728797818797 + sys_17: -0.0003526254263955163 + sys_18: -0.0002568240635315559 + sys_19: -3.360820780054439e-05 + sys_20: -0.00015265329853261146 + sys_21: -8.00956101682278e-05 + sys_22: 9.391537588894506e-05 + sys_23: 2.7176408375105872e-05 + sys_24: -8.367470579952611e-05 + sys_25: 0.0001306850954495544 + sys_26: 0.00034165963201746437 + sys_27: 0.00017734109474647452 + sys_28: 0.00012609508164140252 + sys_29: 2.6657079091704254e-05 + sys_30: 1.0361347665310448e-05 + sys_31: 7.584757415135803e-07 + sys_32: 1.391458257825126e-06 + sys_33: 2.578953822470121e-06 + sys_34: 1.3565673369322691e-05 + sys_35: -2.2701612295110926e-05 + sys_36: -1.845952973330845e-05 + sys_37: 9.82203167051638e-05 + sys_38: -0.0001137123192139906 + sys_39: 2.5546137304643298e-05 + sys_40: -2.5020145154184086e-06 + sys_41: -1.2752823705756263e-06 + sys_42: 3.421793347247303e-06 + sys_43: 4.379070386114919e-05 + sys_44: 5.301075769651111e-06 + sys_45: 1.951603788886846e-05 + sys_46: 1.2082416060686341e-05 + sys_47: 5.0816591119917456e-06 + sys_48: -9.832979228622669e-07 + sys_49: -7.422147827772583e-05 + sys_50: -1.3494053526098511e-05 + sys_51: 3.9157639186773685e-05 + sys_52: -2.69508654380729e-06 + sys_53: -2.6704751953205173e-07 + sys_54: -3.3440915614686695e-05 + sys_55: -1.2507990012323256e-05 + sys_56: -6.062182294228577e-05 + sys_57: -3.752695578168646e-05 + sys_58: -4.606468177940913e-05 + sys_59: -4.21706220911378e-06 + sys_60: 6.988389415647689e-06 + sys_61: -6.1917684819949665e-06 + sys_62: 8.793249882931091e-06 +- pol: 0.00079872 + lumi: 0.00047 + sys_0: 0.00020828164634531122 + sys_1: -0.0001629983691797878 + sys_2: -0.00026097907674231476 + sys_3: -0.00017728187348294057 + sys_4: -0.0007318139604624365 + sys_5: -0.001336016870607783 + sys_6: 0.01134189719437687 + sys_7: -0.010893887160835296 + sys_8: 0.003160160573561051 + sys_9: 0.00102591166104331 + sys_10: -0.00025764655533844997 + sys_11: -0.0001836286092021784 + sys_12: 0.0003026309557545637 + sys_13: -5.805309156867345e-05 + sys_14: 6.976800013811649e-05 + sys_15: 7.739527738736168e-05 + sys_16: -0.000696857002163877 + sys_17: -0.00011896926818818736 + sys_18: -8.330615024466177e-05 + sys_19: -2.9873549296650933e-05 + sys_20: -9.4128064317411e-05 + sys_21: -4.5513278807872734e-05 + sys_22: 4.5548108696744685e-05 + sys_23: 1.082908677231852e-05 + sys_24: -3.658549282056457e-05 + sys_25: 6.894012452826903e-05 + sys_26: 0.00019455047640814485 + sys_27: 9.716096546629991e-05 + sys_28: 9.311411457146626e-05 + sys_29: 1.6954902994759347e-05 + sys_30: 1.3063807580547813e-05 + sys_31: 3.8689771445204025e-06 + sys_32: -6.816058351542274e-06 + sys_33: 4.181735918039542e-07 + sys_34: 6.307534345072219e-06 + sys_35: 4.4571378100121733e-07 + sys_36: -5.260693974904883e-06 + sys_37: 3.122279097331664e-05 + sys_38: -4.010112712457814e-05 + sys_39: 9.405993291975583e-06 + sys_40: -1.7469072258645172e-06 + sys_41: -2.746906041109967e-07 + sys_42: 4.1116292790491104e-07 + sys_43: 1.5652508785805724e-05 + sys_44: 4.0038681713131495e-06 + sys_45: 5.625627435295245e-06 + sys_46: 5.8736518278642676e-06 + sys_47: 2.6406083421706633e-06 + sys_48: -5.811778751843545e-07 + sys_49: -4.150449167021335e-05 + sys_50: -7.713000919091103e-06 + sys_51: 2.3165476173916093e-05 + sys_52: -1.6357571627470196e-06 + sys_53: -2.139330273682871e-07 + sys_54: -2.0878274272225315e-05 + sys_55: -6.051742935503965e-06 + sys_56: -2.9823423334172603e-05 + sys_57: -1.5329588714044787e-05 + sys_58: -1.1344355075453654e-05 + sys_59: -4.8012311165938155e-06 + sys_60: 1.5328014661219598e-06 + sys_61: -6.214037774518113e-06 + sys_62: 1.0322582318219684e-05 +- pol: 0.00322368 + lumi: 0.00047 + sys_0: 0.003392490010581309 + sys_1: -0.0028028988787755474 + sys_2: -0.02915139875708489 + sys_3: 0.00474549156642259 + sys_4: 0.0007869933756340196 + sys_5: 0.00043386169626665925 + sys_6: -0.0005899715224549985 + sys_7: 0.000282861297266332 + sys_8: 0.0011340102775581418 + sys_9: 0.0005184520047096162 + sys_10: -0.00012999578902164172 + sys_11: -6.201448659967672e-05 + sys_12: 9.334636087758384e-05 + sys_13: -0.0001669580929215138 + sys_14: -8.448031918754116e-05 + sys_15: 4.374439585731023e-06 + sys_16: -0.00027510299019308773 + sys_17: -7.910356449242874e-05 + sys_18: -6.597560721570609e-05 + sys_19: -3.7134906518373985e-05 + sys_20: -0.00012869074452446494 + sys_21: -7.701098320069479e-05 + sys_22: 9.280021270892215e-05 + sys_23: -4.914444960446145e-05 + sys_24: 2.2308769976330576e-05 + sys_25: -3.718039682970419e-05 + sys_26: 7.678924082452895e-05 + sys_27: 6.099559903098233e-05 + sys_28: 7.825087442627804e-05 + sys_29: 5.116497921899863e-06 + sys_30: 1.6894466728065387e-05 + sys_31: 1.3031895449970823e-05 + sys_32: -7.145079583873466e-06 + sys_33: -1.2917789718719038e-07 + sys_34: 8.519897129217208e-06 + sys_35: 1.7188860268738155e-05 + sys_36: -1.214448255356214e-06 + sys_37: 6.052003214005025e-07 + sys_38: -8.451580206093124e-06 + sys_39: 2.244707727740091e-06 + sys_40: -1.5038476361208787e-06 + sys_41: -7.142748733255603e-08 + sys_42: -1.1980789982891567e-07 + sys_43: -2.021771021198976e-06 + sys_44: 6.489165299676987e-06 + sys_45: 3.0998064690588608e-06 + sys_46: 7.605833129393273e-06 + sys_47: 1.3309105204630003e-07 + sys_48: -5.393777959814655e-07 + sys_49: -4.102499093238052e-05 + sys_50: -8.874819823685077e-06 + sys_51: 2.889011600747734e-05 + sys_52: -9.367763922632645e-07 + sys_53: 2.1121176873118165e-06 + sys_54: -2.0002495422165178e-05 + sys_55: -6.268854935306376e-06 + sys_56: -3.3140127259812115e-05 + sys_57: -1.2663278438857749e-05 + sys_58: -6.315720022839993e-07 + sys_59: -7.844151169494287e-06 + sys_60: -1.3178086868407508e-06 + sys_61: -8.182821651827098e-06 + sys_62: 1.2705398803363081e-05 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml new file mode 100644 index 0000000000..9d1e2d6d24 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_C.yaml @@ -0,0 +1,1042 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2013POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2013LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc55 + sys_56: + description: 56 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc56 + sys_57: + description: 57 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc57 + sys_58: + description: 58 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc58 + sys_59: + description: 59 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc59 + sys_60: + description: 60 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc60 + sys_61: + description: 61 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc61 + sys_62: + description: 62 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc62 +bins: +- pol: 0.0007392 + lumi: 0.00047 + sys_0: 7.001606375227786e-05 + sys_1: -6.90928071457631e-05 + sys_2: -0.0004953053378852825 + sys_3: -9.841261829746412e-05 + sys_4: -1.911387044186005e-05 + sys_5: -5.582293966839415e-05 + sys_6: 0.0002300294333676665 + sys_7: 4.985216371584429e-05 + sys_8: 0.00027307829893532566 + sys_9: 8.416549674254495e-06 + sys_10: 0.00019070318634097026 + sys_11: 0.0003964533543386842 + sys_12: -0.0003797411506518969 + sys_13: 0.0004925070153427741 + sys_14: 0.0074678861374904305 + sys_15: -0.0017317404403193485 + sys_16: 0.0014217567592267144 + sys_17: -0.0005549960885445198 + sys_18: -0.0002854136241417549 + sys_19: -8.335951976509057e-05 + sys_20: 3.032422964594624e-05 + sys_21: -0.00019145263482989896 + sys_22: 0.00015360939724363767 + sys_23: -8.613534611894422e-05 + sys_24: 2.2545649396131286e-05 + sys_25: -7.2074972006758815e-06 + sys_26: -4.2087592809184484e-05 + sys_27: 3.1148499600688796e-05 + sys_28: -2.262782707791944e-05 + sys_29: 3.607165760527488e-05 + sys_30: -8.446337864467791e-06 + sys_31: -4.288555756311902e-05 + sys_32: -5.673156947572965e-05 + sys_33: 1.5715308883129663e-05 + sys_34: -6.559213587377876e-06 + sys_35: 1.8279144825331885e-05 + sys_36: 2.4635802355406318e-05 + sys_37: -2.0145797143350776e-05 + sys_38: -8.548076286542155e-06 + sys_39: 7.299561606073626e-06 + sys_40: -1.4681957338210795e-06 + sys_41: 4.3433405580871867e-07 + sys_42: -1.595668677911695e-06 + sys_43: 2.2413448895055083e-05 + sys_44: 2.6935845196657875e-07 + sys_45: -3.3449157362233383e-06 + sys_46: -7.120787229247288e-07 + sys_47: -3.310476395265106e-07 + sys_48: 2.125842007509318e-06 + sys_49: 1.428811895324184e-05 + sys_50: 7.772899951808402e-06 + sys_51: -1.002110423635762e-05 + sys_52: -1.3995949274471143e-05 + sys_53: -3.2910658149625204e-06 + sys_54: -6.951957115464396e-06 + sys_55: -6.085161415647947e-07 + sys_56: 9.109542961034444e-06 + sys_57: 8.285583767299743e-06 + sys_58: -3.449151151981131e-06 + sys_59: -7.729892262484226e-08 + sys_60: -3.166273144746046e-06 + sys_61: -1.585032502481047e-06 + sys_62: 9.587184177680817e-06 +- pol: 4.8e-05 + lumi: 0.00047 + sys_0: 0.00013143172933847568 + sys_1: -8.281985671880959e-05 + sys_2: -0.0005250547965538259 + sys_3: -9.46968171119548e-05 + sys_4: -0.00010770368041230176 + sys_5: -6.450352918349286e-05 + sys_6: 0.00020456916721175848 + sys_7: 3.618925396029782e-05 + sys_8: 0.0002705651614929608 + sys_9: -0.0001283220354159711 + sys_10: 0.00016340076024127308 + sys_11: 0.00023364378402806164 + sys_12: -0.00020597405115164346 + sys_13: 0.00035818821108478334 + sys_14: 0.0001937872766478362 + sys_15: 0.0003044712317943815 + sys_16: -0.0003395320455626883 + sys_17: 0.000461558460367321 + sys_18: 0.0004084814479272697 + sys_19: 0.0001507973664177428 + sys_20: 0.00038297791493495896 + sys_21: 0.0007016071587140237 + sys_22: -0.0008810606501881292 + sys_23: 0.0007973144931928592 + sys_24: -0.00037333187160304556 + sys_25: 0.000902871120465164 + sys_26: -0.00019031954928143614 + sys_27: -0.0012348440907418545 + sys_28: -0.0015031528536107101 + sys_29: -0.0006041515146746228 + sys_30: -0.0019469657770161148 + sys_31: -0.001031045350900805 + sys_32: -0.0011081386420956638 + sys_33: 0.0003390949705626013 + sys_34: 0.000252702280936504 + sys_35: 0.0006799332225195856 + sys_36: 0.0002337141394557324 + sys_37: -0.00032246835499424246 + sys_38: -0.00013747124654966625 + sys_39: 4.5960513854626686e-07 + sys_40: -1.724584353725813e-05 + sys_41: 2.287886271335036e-06 + sys_42: -1.058269188837442e-05 + sys_43: -3.1391400356283714e-05 + sys_44: 4.170072206094199e-05 + sys_45: -3.836440592800812e-06 + sys_46: 4.2992943463214574e-05 + sys_47: -7.89902897006935e-06 + sys_48: -8.792590939306876e-06 + sys_49: -0.00039097537575358526 + sys_50: -4.99468734013866e-05 + sys_51: 0.0002749530135765607 + sys_52: -4.528805491006844e-05 + sys_53: -8.632300816890473e-07 + sys_54: -0.00021752747336918808 + sys_55: -3.6793560196027524e-05 + sys_56: -0.00019253229828759816 + sys_57: -4.5599138773183464e-05 + sys_58: -1.4109038480203988e-06 + sys_59: -7.425875842101122e-05 + sys_60: -3.396881238360739e-05 + sys_61: -7.048671922539977e-05 + sys_62: 0.0001526004491510443 +- pol: 0.00018752 + lumi: 0.00047 + sys_0: 6.258816803452525e-05 + sys_1: -5.2350254375657235e-05 + sys_2: -0.0005106609744399051 + sys_3: -8.920342220415298e-05 + sys_4: 7.811430781169459e-06 + sys_5: -1.0881194427765859e-05 + sys_6: 0.00019285831673104017 + sys_7: 2.9141746077335194e-05 + sys_8: 0.00018539211355771335 + sys_9: 4.225713249881108e-05 + sys_10: 4.3686805440057594e-05 + sys_11: 0.00019751142310154294 + sys_12: -0.00015608004142468162 + sys_13: 1.1158334653853439e-05 + sys_14: 0.00011242974087338891 + sys_15: 6.999470506332433e-05 + sys_16: -0.00022392757666138508 + sys_17: 0.00023602838533316547 + sys_18: 0.00016842569692892588 + sys_19: 2.651878347286638e-05 + sys_20: -0.0001024312051573141 + sys_21: 0.00017197261236627203 + sys_22: -0.00010357967421803214 + sys_23: 0.00023910032230968544 + sys_24: 4.160043124924832e-05 + sys_25: 0.00025506902212958833 + sys_26: 0.00023514573651720077 + sys_27: -0.0003993700244680658 + sys_28: -7.140832948277627e-05 + sys_29: -0.00028523896178932483 + sys_30: -0.0009380511500879831 + sys_31: 7.196898734372329e-05 + sys_32: -0.0005621080353053443 + sys_33: -0.0023840682573135464 + sys_34: -0.0002693161745794363 + sys_35: -0.0010974040291017232 + sys_36: 0.00026466168558893986 + sys_37: 2.684723245833295e-05 + sys_38: -0.00015877277241536678 + sys_39: -0.0002691698222654167 + sys_40: -1.700689232888407e-06 + sys_41: 6.310594251033206e-06 + sys_42: -1.1853049360263523e-05 + sys_43: -9.103154427900293e-05 + sys_44: -6.376469660391199e-05 + sys_45: -4.5469662819116604e-05 + sys_46: -8.027004788956218e-05 + sys_47: 8.189603588393727e-06 + sys_48: 2.1414148123342213e-06 + sys_49: 0.0006265828031488786 + sys_50: 0.0001506158830125649 + sys_51: -0.0004580108344053774 + sys_52: 9.166914552741015e-06 + sys_53: -4.431994975436612e-05 + sys_54: 0.0002549572153316357 + sys_55: 8.343670522767983e-05 + sys_56: 0.0004004159458674971 + sys_57: 0.00016225705630741916 + sys_58: -1.2970848013378371e-05 + sys_59: 0.00010557948584019075 + sys_60: 1.5271801496368417e-05 + sys_61: 8.973505877771678e-05 + sys_62: -0.0001381275304524508 +- pol: 1.1520000000000002e-05 + lumi: 0.00047 + sys_0: 7.418936223885843e-05 + sys_1: -6.763828877847142e-05 + sys_2: -0.0005234115566064432 + sys_3: -8.822246852368859e-05 + sys_4: -8.45085836484142e-06 + sys_5: -3.423502534835969e-05 + sys_6: 0.0001937942822456403 + sys_7: 2.7546682636806596e-05 + sys_8: 0.00020349318386983452 + sys_9: 1.691376363989759e-05 + sys_10: 9.387091031350457e-05 + sys_11: 0.00019804704809747346 + sys_12: -0.00016410358110724034 + sys_13: 6.47291346043537e-05 + sys_14: 0.0001359331217962008 + sys_15: 0.0001576840939711945 + sys_16: -0.00023387241375634308 + sys_17: 0.0002690465548209305 + sys_18: 0.00020283282760982053 + sys_19: 5.072262485481399e-05 + sys_20: -3.368801582746112e-05 + sys_21: 0.000308378638079432 + sys_22: -0.00030039475786320307 + sys_23: 0.0002737480427972201 + sys_24: -7.159792175352847e-05 + sys_25: 0.0001686319455488528 + sys_26: 0.0001569640371282437 + sys_27: -0.0003588970647009643 + sys_28: -0.0001212005691028456 + sys_29: -0.00034855979145875945 + sys_30: -0.0004824012851068021 + sys_31: 9.277638733254206e-05 + sys_32: 0.00038424998363060343 + sys_33: 0.0002456110213311881 + sys_34: 0.0005877830973147748 + sys_35: 0.0006101750557216591 + sys_36: -0.001146315902583387 + sys_37: 0.000543684245123575 + sys_38: 0.0008560826816330921 + sys_39: 0.0009324494589830698 + sys_40: 8.427975253091433e-06 + sys_41: 7.112025673564607e-06 + sys_42: -1.277951346580667e-05 + sys_43: 0.0013515502630616692 + sys_44: -3.580339868377465e-05 + sys_45: -4.603598033561961e-05 + sys_46: -5.332481556896442e-05 + sys_47: 3.6165700693300574e-06 + sys_48: 1.3511713497046759e-05 + sys_49: 0.0009603581686240861 + sys_50: 0.00017396524547785264 + sys_51: -0.0006420036090434317 + sys_52: -2.2778813077740957e-05 + sys_53: -0.0001573441318573025 + sys_54: 0.00010623666126012672 + sys_55: 6.897731178989958e-05 + sys_56: 0.0003418268782324093 + sys_57: 0.00017889995573545385 + sys_58: -5.339705827426779e-05 + sys_59: 9.407513773916737e-05 + sys_60: -6.986732421353581e-06 + sys_61: 4.26235534548101e-06 + sys_62: -2.2219442598080644e-05 +- pol: 0.00041920000000000005 + lumi: 0.00047 + sys_0: 7.266269256871031e-05 + sys_1: -6.668752863730982e-05 + sys_2: -0.0005290635403767682 + sys_3: -8.507247074800801e-05 + sys_4: -6.796434200300843e-06 + sys_5: -3.0729964760595736e-05 + sys_6: 0.00019684857723024278 + sys_7: 2.4614416068670536e-05 + sys_8: 0.00020480291997240492 + sys_9: 2.174142815973174e-05 + sys_10: 8.531712383071524e-05 + sys_11: 0.0001978964263651952 + sys_12: -0.00016777896057665808 + sys_13: 5.4210368516177525e-05 + sys_14: 0.00013439830767632895 + sys_15: 0.00014664228818819333 + sys_16: -0.00024155336974717508 + sys_17: 0.0002726645412126165 + sys_18: 0.00021045361315293092 + sys_19: 4.842598631429288e-05 + sys_20: -5.5332329206155004e-05 + sys_21: 0.0003017538893579784 + sys_22: -0.00028203086806765276 + sys_23: 0.00029465962123008903 + sys_24: -5.5161995180079954e-05 + sys_25: 0.0002075964723238678 + sys_26: 0.00019788882368530368 + sys_27: -0.0004328110355681543 + sys_28: -0.00011590124390913201 + sys_29: -0.00042398608928927373 + sys_30: -0.0007213678992483857 + sys_31: 0.0001498682362296946 + sys_32: 0.0008439934258460834 + sys_33: 0.001531485333350271 + sys_34: -0.0016684275715622466 + sys_35: -0.001006642577702211 + sys_36: 0.0010216689494093358 + sys_37: -0.0002700641892668676 + sys_38: -0.00011391011484362006 + sys_39: -6.580331094721269e-05 + sys_40: 1.9454963244178712e-05 + sys_41: 3.299760551612971e-06 + sys_42: -2.9515786860960843e-06 + sys_43: 0.0002463674800042051 + sys_44: -3.709492758261781e-05 + sys_45: -3.145162117352933e-05 + sys_46: -5.022559623058626e-05 + sys_47: 3.931322004769909e-06 + sys_48: 1.5785304320549902e-05 + sys_49: 0.0005186515652460012 + sys_50: 8.452637006809171e-05 + sys_51: -0.0003822017253553532 + sys_52: -4.804844208748412e-07 + sys_53: -8.513521603697567e-05 + sys_54: 0.00010524967650997966 + sys_55: 5.319208418878956e-05 + sys_56: 0.00028599106819133326 + sys_57: 0.00013294024358649753 + sys_58: -3.4018930155434574e-05 + sys_59: 7.908848077159286e-05 + sys_60: 4.370532277440167e-06 + sys_61: 1.577984302699058e-05 + sys_62: -4.724021431847364e-05 +- pol: 0.00062016 + lumi: 0.00047 + sys_0: 7.297252897007149e-05 + sys_1: -6.401858779153265e-05 + sys_2: -0.000535302223353814 + sys_3: -8.688549026655087e-05 + sys_4: -4.732419036869361e-06 + sys_5: -2.70220776917287e-05 + sys_6: 0.0002020551876086632 + sys_7: 2.808446774859432e-05 + sys_8: 0.00021063444161512713 + sys_9: 2.563278168806982e-05 + sys_10: 8.280294267497223e-05 + sys_11: 0.00021198510714174484 + sys_12: -0.00018295432012624735 + sys_13: 5.568474741631039e-05 + sys_14: 0.00014608224464204606 + sys_15: 0.00015606862018563238 + sys_16: -0.0002786746775355743 + sys_17: 0.0003259989550701255 + sys_18: 0.000258298120514405 + sys_19: 5.185681526339024e-05 + sys_20: -7.354725844115943e-05 + sys_21: 0.00040564952652236423 + sys_22: -0.00039675586029557837 + sys_23: 0.0004988140521713081 + sys_24: -6.96293712304527e-05 + sys_25: 0.0004988959085724767 + sys_26: 0.0005467443934972696 + sys_27: -0.0017957080950213875 + sys_28: -0.0017364122135015347 + sys_29: 0.0022420475376156357 + sys_30: 0.0017788210781796915 + sys_31: -0.00011650677698652559 + sys_32: -0.00010433186766659575 + sys_33: -3.6543516708684004e-05 + sys_34: -8.193995869177321e-05 + sys_35: -9.797705656938043e-05 + sys_36: 0.00010955103507907676 + sys_37: -2.0783803577374835e-05 + sys_38: -2.433778804169778e-05 + sys_39: -2.4730710253048763e-05 + sys_40: 2.0569401777718374e-05 + sys_41: -1.6176845303957001e-06 + sys_42: 5.528055882567409e-06 + sys_43: 4.079914505711156e-05 + sys_44: -2.4242630237281307e-05 + sys_45: -1.1170616563451854e-05 + sys_46: -3.0261857039517073e-05 + sys_47: 1.5594575328040907e-06 + sys_48: 1.0200032845527038e-05 + sys_49: 0.0001891930804315544 + sys_50: 2.9102743887367917e-05 + sys_51: -0.00014424937177043239 + sys_52: 1.4508022064078994e-06 + sys_53: -2.9011115746800437e-05 + sys_54: 5.618862156072359e-05 + sys_55: 2.3123278080200358e-05 + sys_56: 0.0001521426764014539 + sys_57: 6.44079478118753e-05 + sys_58: -1.7989523421891553e-05 + sys_59: 4.046051128745909e-05 + sys_60: 8.67975911339031e-06 + sys_61: 1.6647413205691914e-05 + sys_62: -3.072385035821356e-05 +- pol: 0.00052288 + lumi: 0.00047 + sys_0: 7.546837473361099e-05 + sys_1: -6.615372118783776e-05 + sys_2: -0.0005388539375312818 + sys_3: -8.438776023374818e-05 + sys_4: -7.95384585453406e-06 + sys_5: -2.6323783754122934e-05 + sys_6: 0.00020747926006464427 + sys_7: 2.7706832710603127e-05 + sys_8: 0.00021863309129712728 + sys_9: 2.14563950076666e-05 + sys_10: 8.857645871788631e-05 + sys_11: 0.00022398244551281114 + sys_12: -0.00019403785753487328 + sys_13: 7.048752550239047e-05 + sys_14: 0.0001593897832763441 + sys_15: 0.00017462759087633327 + sys_16: -0.00031394112723781434 + sys_17: 0.0003855953594007185 + sys_18: 0.0003089420049386446 + sys_19: 5.998642555113908e-05 + sys_20: -8.211171639482252e-05 + sys_21: 0.0005745503253848043 + sys_22: -0.0006350772385115232 + sys_23: 0.0010102460383303795 + sys_24: -0.00014910124623325287 + sys_25: 0.0026357812921172755 + sys_26: -0.0028485189939411147 + sys_27: 0.0015317867768089057 + sys_28: 0.00014267291012354648 + sys_29: 0.00038904721137594686 + sys_30: 0.0005199321195880493 + sys_31: -5.5682339379330194e-05 + sys_32: -5.0708805573918556e-05 + sys_33: -2.051799193158439e-05 + sys_34: -4.9376001125278394e-05 + sys_35: -6.621039858870347e-05 + sys_36: 6.404150602079221e-05 + sys_37: 4.895737047341309e-06 + sys_38: -2.0328687430545456e-05 + sys_39: -1.5849616857136914e-05 + sys_40: 2.1857670882421307e-05 + sys_41: -7.0139820189505555e-06 + sys_42: 1.548061285302676e-05 + sys_43: 2.687529577194421e-05 + sys_44: -1.9431124785134836e-05 + sys_45: 5.108425709429291e-06 + sys_46: -2.1014411465382656e-05 + sys_47: -1.6294627039082907e-06 + sys_48: 8.856276313702612e-06 + sys_49: 0.00013285211389147035 + sys_50: 2.0291811709687044e-05 + sys_51: -0.00010002211203854061 + sys_52: 1.6672489508630146e-06 + sys_53: -1.8658880673170853e-05 + sys_54: 4.417421733375295e-05 + sys_55: 1.4460789101883387e-05 + sys_56: 0.00011042902329575296 + sys_57: 4.262718141169575e-05 + sys_58: -2.331930135634375e-05 + sys_59: 3.130485670131023e-05 + sys_60: 1.1031841493880021e-05 + sys_61: 1.990463808671819e-05 + sys_62: -2.2863187622002852e-05 +- pol: 0.00084288 + lumi: 0.00047 + sys_0: 7.780187677349443e-05 + sys_1: -6.824939709806967e-05 + sys_2: -0.0005562701942240219 + sys_3: -8.798465384492074e-05 + sys_4: -1.9700750627500177e-05 + sys_5: -3.8888648133953094e-05 + sys_6: 0.000224732417815669 + sys_7: 2.6808007441549748e-05 + sys_8: 0.0002526907170244442 + sys_9: 1.3827104734727676e-05 + sys_10: 0.00011649243296396651 + sys_11: 0.00027265154300838565 + sys_12: -0.00026640453359394516 + sys_13: 0.00014188540876097365 + sys_14: 0.0002647620377759727 + sys_15: 0.0003548682694982934 + sys_16: -0.0005719813358456604 + sys_17: 0.0011392362345072021 + sys_18: 0.0014497831282711726 + sys_19: 0.0005542580286439554 + sys_20: 0.005571930566314314 + sys_21: -0.0008434783578743104 + sys_22: 0.00048576549530597097 + sys_23: -0.00029277990496972205 + sys_24: 1.4060432278698183e-05 + sys_25: -0.00012590840041870616 + sys_26: -7.629037708364671e-05 + sys_27: 0.00019144904761182985 + sys_28: 1.2984629950248918e-05 + sys_29: 0.0001007028789555127 + sys_30: 0.00012318371605143905 + sys_31: -1.7775095842067923e-05 + sys_32: -1.664765749671126e-05 + sys_33: -9.628598664598799e-06 + sys_34: -2.353906632956423e-05 + sys_35: -3.509382591663827e-05 + sys_36: 2.6652277446780023e-05 + sys_37: 1.9884991449437947e-05 + sys_38: -1.9504303782925723e-05 + sys_39: 3.437704744911334e-07 + sys_40: 1.1086810926465059e-05 + sys_41: -6.161144493816785e-06 + sys_42: 1.6849264948597466e-05 + sys_43: 2.13225995434595e-05 + sys_44: -1.034203298516137e-05 + sys_45: 1.9401986793935647e-05 + sys_46: -5.641989699801435e-06 + sys_47: -3.418908716526605e-06 + sys_48: 4.389803064173044e-06 + sys_49: 6.165053905238303e-05 + sys_50: 8.65708215613762e-06 + sys_51: -4.381825404485817e-05 + sys_52: 4.6126560978860187e-07 + sys_53: -8.849244789682115e-06 + sys_54: 2.03770429315502e-05 + sys_55: 4.691990268989719e-06 + sys_56: 4.5939937410298184e-05 + sys_57: 1.2814172321047995e-05 + sys_58: -2.9343262018199364e-05 + sys_59: 1.6708164239202242e-05 + sys_60: 9.074357501619122e-06 + sys_61: 1.2494299545530818e-05 + sys_62: -1.3269064697206618e-05 +- pol: 0.00119424 + lumi: 0.00047 + sys_0: 9.927344527115915e-05 + sys_1: -7.84721266430744e-05 + sys_2: -0.0005847193644162433 + sys_3: -8.919994203837462e-05 + sys_4: -5.2999727578709885e-05 + sys_5: -5.54754064234616e-05 + sys_6: 0.0002738173047757328 + sys_7: 3.047564478469944e-05 + sys_8: 0.0003320381856872334 + sys_9: -5.1034613707598446e-05 + sys_10: 0.0002599830454957503 + sys_11: 0.0005130978711355152 + sys_12: -0.0006936450110524884 + sys_13: 0.008197470338109789 + sys_14: -0.0009052657708895067 + sys_15: -0.0006795032891182772 + sys_16: 0.0005343188294279319 + sys_17: -0.00045261254014250003 + sys_18: -0.0002912990884946348 + sys_19: -3.121466355676114e-05 + sys_20: 2.685768672433055e-05 + sys_21: -0.00015409604948562883 + sys_22: 0.00012827212910886403 + sys_23: -6.0830458079968026e-05 + sys_24: -1.2862641061822945e-06 + sys_25: 1.7141387874142247e-06 + sys_26: 1.2051125522011088e-05 + sys_27: 7.996689121613546e-05 + sys_28: 2.5176769612072467e-06 + sys_29: 5.0147328389436364e-05 + sys_30: 3.968575330120885e-05 + sys_31: -7.523267873940047e-06 + sys_32: -6.204096087965133e-06 + sys_33: -7.055084387983401e-06 + sys_34: -1.5087052434721968e-05 + sys_35: -2.743736483952948e-05 + sys_36: 1.0543781553077788e-05 + sys_37: 3.2151313009557914e-05 + sys_38: -3.144428515830136e-05 + sys_39: 9.450883561143745e-06 + sys_40: 3.5439313032134106e-06 + sys_41: -3.0162239011695796e-06 + sys_42: 9.82154785086775e-06 + sys_43: 2.8620363355248003e-05 + sys_44: -5.110823492037954e-06 + sys_45: 2.1668181085394848e-05 + sys_46: 2.053597997685508e-06 + sys_47: -1.7497365632821457e-06 + sys_48: 2.2103589722798303e-06 + sys_49: 2.6950170636830784e-05 + sys_50: 3.094296793228843e-06 + sys_51: -1.836097249870102e-05 + sys_52: -6.760275606415222e-07 + sys_53: -5.539468943855355e-06 + sys_54: 6.277916583967389e-06 + sys_55: -3.3111592672528325e-07 + sys_56: 8.656526426387877e-06 + sys_57: -3.622504822476011e-06 + sys_58: -3.731982185961949e-05 + sys_59: 9.439524185352687e-06 + sys_60: 7.582323320710928e-06 + sys_61: 6.700197678791394e-06 + sys_62: -8.865578016702357e-06 +- pol: 0.00109568 + lumi: 0.00047 + sys_0: 0.00015507225321138233 + sys_1: -0.00010768041577368561 + sys_2: -0.0006753671991897017 + sys_3: -0.00010774731037322416 + sys_4: -0.00019956854307787446 + sys_5: -0.00019216819766159038 + sys_6: 0.0006067655233311541 + sys_7: 1.2835525110871779e-05 + sys_8: 0.0025983564007616357 + sys_9: -0.012685926488874408 + sys_10: -0.0005038230592798053 + sys_11: -0.0004117250150679948 + sys_12: 0.0003031910733029825 + sys_13: -8.263681745530165e-05 + sys_14: -4.4364690961220935e-05 + sys_15: -0.00010424822273473862 + sys_16: -3.0897814863248904e-05 + sys_17: -0.00011051023977466034 + sys_18: -7.93825821998114e-05 + sys_19: -7.877173710862136e-06 + sys_20: 1.0175275917104577e-05 + sys_21: -5.5915824243069816e-05 + sys_22: 5.672075792961514e-05 + sys_23: -3.028975482039845e-06 + sys_24: -9.02884040827144e-06 + sys_25: 4.619690288367423e-05 + sys_26: 5.0732329081263665e-05 + sys_27: 4.40496878384387e-05 + sys_28: 8.84769319304085e-06 + sys_29: 2.9587636210169758e-05 + sys_30: 7.889164499677699e-06 + sys_31: -2.964238771492622e-06 + sys_32: -3.738978197620175e-06 + sys_33: -5.8835581396566426e-06 + sys_34: -1.0155587975838275e-05 + sys_35: -2.1352635341076744e-05 + sys_36: 2.95799612104856e-06 + sys_37: 3.200834498930927e-05 + sys_38: -3.5303441710761464e-05 + sys_39: 1.3703130804562942e-05 + sys_40: 3.07335969727789e-07 + sys_41: -8.695365442231751e-07 + sys_42: 3.0187044001073655e-06 + sys_43: 3.103872380714448e-05 + sys_44: -2.158920364406891e-07 + sys_45: 1.0307561375431304e-05 + sys_46: 3.1694925931362813e-06 + sys_47: 4.5552465000056425e-07 + sys_48: 1.0550781884483654e-06 + sys_49: 4.6093007207522255e-06 + sys_50: -9.923434723544198e-08 + sys_51: -4.5608097578512556e-06 + sys_52: -1.498373586588525e-06 + sys_53: -4.349101970695783e-06 + sys_54: -5.227717181287994e-06 + sys_55: -2.5643075536725763e-06 + sys_56: -8.273256602774685e-06 + sys_57: -7.574954871866692e-06 + sys_58: -2.7558791978009364e-05 + sys_59: 2.7323629154864003e-06 + sys_60: 3.476295603121486e-06 + sys_61: 2.0923155335238018e-07 + sys_62: -4.0690784856998066e-07 +- pol: 0.00086848 + lumi: 0.00047 + sys_0: 0.00028325323699535495 + sys_1: -0.00020388067978942216 + sys_2: -0.0010037758497481602 + sys_3: -0.00016332015453421718 + sys_4: -0.01964057284522567 + sys_5: 0.0009150003803185267 + sys_6: -0.0009025775531571916 + sys_7: 0.0001304887702478878 + sys_8: 0.00018392537230776265 + sys_9: 0.00018090463462041597 + sys_10: -0.00012064762183523288 + sys_11: -9.340368089487508e-05 + sys_12: 0.0001210991176089667 + sys_13: -1.0803339507235145e-05 + sys_14: 1.8916144760720673e-05 + sys_15: -2.2512831807999396e-05 + sys_16: -0.00015017398604343408 + sys_17: -5.1382518855666125e-05 + sys_18: -3.775960469629559e-05 + sys_19: -5.281593098239448e-06 + sys_20: -1.7286097460947896e-06 + sys_21: -2.3400183825633727e-05 + sys_22: 2.3169685755979875e-05 + sys_23: 1.2180506817956398e-05 + sys_24: -1.534405141758897e-05 + sys_25: 5.225392632616624e-05 + sys_26: 6.862036488087572e-05 + sys_27: 3.570563030702719e-05 + sys_28: 2.1140144524752288e-05 + sys_29: 1.9455265260927802e-05 + sys_30: 2.885018193819927e-06 + sys_31: -1.1142060697980647e-06 + sys_32: -3.2031068303048013e-06 + sys_33: -3.4555416759106945e-06 + sys_34: -5.523551279581707e-06 + sys_35: -1.219567321336262e-05 + sys_36: 8.237605911730014e-07 + sys_37: 2.1983084608842382e-05 + sys_38: -2.614238299776938e-05 + sys_39: 1.0064686450519507e-05 + sys_40: -3.0314457202984236e-07 + sys_41: -2.4016309765315914e-07 + sys_42: 7.516037930957858e-07 + sys_43: 2.1836241280475524e-05 + sys_44: 8.363182985187765e-07 + sys_45: 3.647442861854006e-06 + sys_46: 2.1069919220732697e-06 + sys_47: 1.100029853702005e-06 + sys_48: 4.1231969677576586e-07 + sys_49: -4.190174397986653e-06 + sys_50: -1.1038805363386713e-06 + sys_51: 5.251947940482387e-07 + sys_52: -1.3873701610668268e-06 + sys_53: -3.1336422368496857e-06 + sys_54: -7.582732192312832e-06 + sys_55: -1.970144341639809e-06 + sys_56: -7.705577878040142e-06 + sys_57: -4.684916012534866e-06 + sys_58: -1.246214956786393e-05 + sys_59: -2.9171318517118537e-08 + sys_60: 1.1618520569798318e-06 + sys_61: -1.8679202925641441e-06 + sys_62: 3.30860385008075e-06 +- pol: 0.000368 + lumi: 0.00047 + sys_0: 0.033018783750192536 + sys_1: 0.0029349858900298096 + sys_2: 0.003122246184336124 + sys_3: 0.00047696223086798797 + sys_4: 0.00014161052708152908 + sys_5: 0.00016097342631690405 + sys_6: -0.0002489506620618423 + sys_7: 0.00010346151143934386 + sys_8: 0.0003766011724140741 + sys_9: 0.0001038559379453614 + sys_10: -5.3019159930390195e-05 + sys_11: -3.073049775783103e-05 + sys_12: 5.199129602277413e-05 + sys_13: 6.424567023080478e-06 + sys_14: 2.8407010211208975e-05 + sys_15: 5.032566573989782e-06 + sys_16: -0.00015442252175829847 + sys_17: -2.6724244540244516e-05 + sys_18: -1.6175612364554494e-05 + sys_19: -8.096278717092947e-06 + sys_20: -8.921534611332832e-06 + sys_21: -1.8550205962827333e-05 + sys_22: 1.755909909476713e-05 + sys_23: 4.5870695777030295e-06 + sys_24: -4.721562617887551e-06 + sys_25: 2.820656233508153e-05 + sys_26: 3.990896934924981e-05 + sys_27: 1.9743472379805774e-05 + sys_28: 1.658958677748677e-05 + sys_29: 1.1578514101374176e-05 + sys_30: 9.955843384620827e-07 + sys_31: -5.747962467488144e-07 + sys_32: -5.5890092171772044e-06 + sys_33: -1.8063581141828586e-06 + sys_34: -4.2000655875730996e-06 + sys_35: -2.7302865613265623e-06 + sys_36: 2.378002751383783e-06 + sys_37: 5.552046434887016e-06 + sys_38: -7.69791014970238e-06 + sys_39: 5.057037602091257e-06 + sys_40: -2.3238011852610378e-07 + sys_41: -6.185467361319085e-08 + sys_42: 1.1897995841423019e-07 + sys_43: 1.1155402417394154e-05 + sys_44: 1.0623638406849107e-06 + sys_45: 1.1077130116191306e-06 + sys_46: 1.3856355832148223e-06 + sys_47: 3.9460506562297823e-07 + sys_48: 2.0209659567343635e-07 + sys_49: -2.977994387650777e-06 + sys_50: -8.339982316837605e-07 + sys_51: 1.2802816436820543e-06 + sys_52: -8.546640953504998e-07 + sys_53: -1.7004315513531944e-06 + sys_54: -5.615850678723531e-06 + sys_55: -1.1430167637107104e-06 + sys_56: -4.9375259565777666e-06 + sys_57: -1.830050724670695e-06 + sys_58: -3.7267780570781337e-06 + sys_59: -8.22095051043793e-07 + sys_60: 4.0338177486284964e-08 + sys_61: -2.1574866014211737e-06 + sys_62: 3.7034753431279577e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml new file mode 100644 index 0000000000..d549887942 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2013_2JET_510GEV/uncertainties_D.yaml @@ -0,0 +1,1042 @@ +definitions: + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2013POL + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2013LUMI + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc35 + sys_36: + description: 36 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc36 + sys_37: + description: 37 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc37 + sys_38: + description: 38 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc38 + sys_39: + description: 39 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc39 + sys_40: + description: 40 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc40 + sys_41: + description: 41 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc41 + sys_42: + description: 42 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc42 + sys_43: + description: 43 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc43 + sys_44: + description: 44 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc44 + sys_45: + description: 45 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc45 + sys_46: + description: 46 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc46 + sys_47: + description: 47 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc47 + sys_48: + description: 48 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc48 + sys_49: + description: 49 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc49 + sys_50: + description: 50 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc50 + sys_51: + description: 51 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc51 + sys_52: + description: 52 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc52 + sys_53: + description: 53 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc53 + sys_54: + description: 54 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc54 + sys_55: + description: 55 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc55 + sys_56: + description: 56 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc56 + sys_57: + description: 57 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc57 + sys_58: + description: 58 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc58 + sys_59: + description: 59 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc59 + sys_60: + description: 60 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc60 + sys_61: + description: 61 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc61 + sys_62: + description: 62 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2013JETunc62 +bins: +- pol: 0.00067072 + lumi: 0.00047 + sys_0: 0.00017110498195707633 + sys_1: -6.31137316409518e-05 + sys_2: -0.00031536737656073273 + sys_3: -8.636027741102324e-05 + sys_4: -0.000142625520009252 + sys_5: -8.386188817700521e-05 + sys_6: 0.0001746881074822652 + sys_7: 4.568592743266376e-05 + sys_8: 0.0002136587536891256 + sys_9: -0.00013812464666268577 + sys_10: 0.00019083514383716853 + sys_11: 0.00020999855267816436 + sys_12: -0.00018526109292796614 + sys_13: 0.00025062306421833204 + sys_14: 0.00035107962006441194 + sys_15: 0.00035728221080362147 + sys_16: -0.0002553008630885732 + sys_17: 0.0005077658780434085 + sys_18: 0.0003738790921184507 + sys_19: 0.0003267321797589437 + sys_20: 0.0001264790068965217 + sys_21: 0.0014532266196154043 + sys_22: -0.0017398040376328339 + sys_23: 0.0017885285953075385 + sys_24: -0.0018154578436014655 + sys_25: -0.0028811660454171684 + sys_26: -0.0005359253468315105 + sys_27: 0.0010219009930926564 + sys_28: 0.00020743973985512315 + sys_29: 0.00059723065034007 + sys_30: 7.915056471603815e-05 + sys_31: -0.00019976074993633284 + sys_32: -0.000306105023572804 + sys_33: -7.56416561349597e-05 + sys_34: -0.0001325521060697066 + sys_35: -3.12645663748003e-05 + sys_36: 0.00012044137880464746 + sys_37: -5.158366328890924e-05 + sys_38: 1.9938990332707338e-05 + sys_39: 3.3652883516743e-05 + sys_40: -1.1531652352514728e-05 + sys_41: 1.6440741913335975e-06 + sys_42: -7.477716783249689e-06 + sys_43: 0.00014222363266394347 + sys_44: -1.1261960249233709e-05 + sys_45: -1.1581695568809498e-05 + sys_46: -1.2419403715527926e-05 + sys_47: 4.054092128356503e-06 + sys_48: 2.8773256515478827e-07 + sys_49: 4.2959315181507134e-06 + sys_50: 3.0126868217646563e-05 + sys_51: -3.745677543770492e-05 + sys_52: -4.1636428989494324e-05 + sys_53: -2.822418178495236e-05 + sys_54: -2.8066671079364704e-05 + sys_55: -5.288087696866014e-06 + sys_56: 1.0811759310022261e-05 + sys_57: 4.10719529112524e-06 + sys_58: 9.129828459492153e-06 + sys_59: 2.096404647072975e-05 + sys_60: -1.4761367660565102e-05 + sys_61: 6.603609794740931e-06 + sys_62: 2.2376145654093245e-05 +- pol: 0.00018944 + lumi: 0.00047 + sys_0: 0.00014776189463653022 + sys_1: -2.531422342544853e-05 + sys_2: -0.0002738845698831271 + sys_3: -7.264038944317661e-05 + sys_4: -0.00011701860177737767 + sys_5: -1.2313334220880256e-05 + sys_6: 0.00014846297697447149 + sys_7: 3.4811311201079686e-05 + sys_8: 0.0001601292288236512 + sys_9: -0.00010864109721717937 + sys_10: 5.136525477217763e-05 + sys_11: 0.0001649624377068792 + sys_12: -0.00013947266345208453 + sys_13: 0.0001537850169656863 + sys_14: 0.00018887848542510814 + sys_15: 6.738785315520027e-05 + sys_16: -0.00016575896483856503 + sys_17: 0.00026886034279675035 + sys_18: 0.00018120128404503264 + sys_19: 0.00013500932997744978 + sys_20: 4.9338492806941455e-05 + sys_21: 0.0003305323155705419 + sys_22: -0.0002005428515083698 + sys_23: 0.00038385183856702533 + sys_24: -7.811462977171011e-05 + sys_25: 5.9831229557941704e-05 + sys_26: 2.974150474985051e-05 + sys_27: -0.00023522666983763016 + sys_28: -7.68957124666506e-05 + sys_29: 2.860913763268396e-05 + sys_30: -0.00039586841712268894 + sys_31: 0.00031400795544267625 + sys_32: 0.00042215329230922406 + sys_33: 7.34861788318005e-05 + sys_34: -0.001116954131810247 + sys_35: 0.0008988678481571643 + sys_36: -0.0017731404978629714 + sys_37: 0.0003358696729246801 + sys_38: -0.00024428920713869294 + sys_39: -0.0012839964812854034 + sys_40: -2.3976689944116313e-05 + sys_41: 4.296969307178023e-06 + sys_42: -1.757051776748346e-05 + sys_43: -0.0009218880776214799 + sys_44: -8.97219667454304e-05 + sys_45: -4.395921635013693e-05 + sys_46: -9.879566213506672e-05 + sys_47: 1.7060149547597243e-05 + sys_48: -2.8423517750551557e-05 + sys_49: -0.0001149465197005369 + sys_50: 0.00013250080365771839 + sys_51: -0.00019110071994682068 + sys_52: -1.78892936171868e-05 + sys_53: -2.4869164136451083e-05 + sys_54: 0.0002258894981187947 + sys_55: 5.486661973819755e-05 + sys_56: 0.00026071807461442733 + sys_57: 3.666897390504842e-05 + sys_58: 9.26406624170277e-05 + sys_59: 0.00011634586729413317 + sys_60: 7.3128274548986075e-06 + sys_61: 0.00016607825794308335 + sys_62: -0.0001926967022516663 +- pol: 0.00019648 + lumi: 0.00047 + sys_0: 0.00014542150293966714 + sys_1: -5.5192426895075865e-05 + sys_2: -0.00026572774013565984 + sys_3: -7.162698150688663e-05 + sys_4: -0.00011462194906994936 + sys_5: -6.86782118569878e-05 + sys_6: 0.00014024789519000407 + sys_7: 3.531656812576341e-05 + sys_8: 0.0001659508817890195 + sys_9: -0.00010588638724016247 + sys_10: 0.00014668567251617404 + sys_11: 0.0001467555727696756 + sys_12: -0.0001325400954163333 + sys_13: 0.0001618815214343547 + sys_14: 0.00021336607070801013 + sys_15: 0.00021560087944470297 + sys_16: -0.00014560167393865432 + sys_17: 0.0002527228381820644 + sys_18: 0.00017741601984981147 + sys_19: 0.00013637048544031874 + sys_20: 5.100301222894913e-05 + sys_21: 0.0004156808109852264 + sys_22: -0.00037267156249826307 + sys_23: 0.0001808238942294088 + sys_24: -8.125762262662346e-05 + sys_25: 6.633248113869925e-05 + sys_26: 6.612975239229727e-05 + sys_27: -0.00023984301526847827 + sys_28: -7.365124551595409e-05 + sys_29: -0.00035504903885767383 + sys_30: -2.0027852109466203e-06 + sys_31: 0.0001692334672244219 + sys_32: 0.000469660925183765 + sys_33: 0.00014839957311239886 + sys_34: 0.0006148057919701915 + sys_35: -0.00014510251844252367 + sys_36: 0.00010556734394729479 + sys_37: 5.861630563523188e-05 + sys_38: -1.6786243761140885e-05 + sys_39: 0.00027618009490790397 + sys_40: -3.999795760028644e-05 + sys_41: 1.522138314994862e-05 + sys_42: -4.031229149646045e-05 + sys_43: -0.0003929151051144806 + sys_44: -7.93669300798492e-05 + sys_45: -8.060298463236497e-05 + sys_46: -9.715925824289455e-05 + sys_47: 1.905578445803266e-05 + sys_48: -3.11582054236684e-05 + sys_49: 9.9161337315632e-05 + sys_50: -0.0002669111516275123 + sys_51: 0.0008716473700958715 + sys_52: 0.0003419914775781818 + sys_53: 0.0008127730978595721 + sys_54: 0.0009022874790462263 + sys_55: 7.88754219997394e-05 + sys_56: 0.0002555882907020172 + sys_57: 7.663978736637168e-05 + sys_58: 0.00014950101671734747 + sys_59: 0.0014010377377339778 + sys_60: -0.0005383585339182892 + sys_61: 7.75209702077278e-05 + sys_62: 0.00015076270108817656 +- pol: 4.6080000000000006e-05 + lumi: 0.00047 + sys_0: 0.00013504495145453738 + sys_1: -4.504759924650933e-05 + sys_2: -0.0002509490866681178 + sys_3: -6.622173915409793e-05 + sys_4: -0.00010586939209480758 + sys_5: -5.042692252154293e-05 + sys_6: 0.00013324705449066352 + sys_7: 3.085664386016492e-05 + sys_8: 0.00015314072243314238 + sys_9: -9.764029995095053e-05 + sys_10: 0.00011034170796955468 + sys_11: 0.00014003647696080994 + sys_12: -0.00012644696012349495 + sys_13: 0.0001462725255330015 + sys_14: 0.00018963310896638423 + sys_15: 0.0001630702652839237 + sys_16: -0.0001397901714981224 + sys_17: 0.00023478402652087508 + sys_18: 0.0001631808659553108 + sys_19: 0.00012299238933549745 + sys_20: 4.577120655887936e-05 + sys_21: 0.0003636558242390098 + sys_22: -0.0003037109484782767 + sys_23: 0.0002097211150190688 + sys_24: -8.123346950800347e-05 + sys_25: 4.012126350619712e-05 + sys_26: 4.7263188727337074e-05 + sys_27: -0.00020149726381438695 + sys_28: -5.745991822358377e-05 + sys_29: -0.0002370840717758925 + sys_30: -5.586963740455414e-05 + sys_31: 0.00015551858599027377 + sys_32: 0.0003604677314638072 + sys_33: 0.00011149108476751781 + sys_34: 0.00039485190682832786 + sys_35: -8.459294538999862e-05 + sys_36: 5.611490131770955e-05 + sys_37: 3.651113780917014e-05 + sys_38: -1.2764429921277581e-05 + sys_39: 0.0002669098551561781 + sys_40: -7.211528268868583e-06 + sys_41: 1.1052606023359622e-05 + sys_42: -2.625737863484512e-05 + sys_43: -0.00017745916237736834 + sys_44: -0.00010511406854458138 + sys_45: -7.230564479291027e-05 + sys_46: -0.0001274352783718062 + sys_47: 2.830615506752173e-05 + sys_48: -1.264831304299457e-05 + sys_49: 0.0001402969098303433 + sys_50: -0.0001976044130879136 + sys_51: 0.0008416260208751006 + sys_52: 0.00024530722965137035 + sys_53: 0.0007042362489058175 + sys_54: 0.0005234422589486579 + sys_55: 9.228980595961308e-05 + sys_56: 0.0004380039752888158 + sys_57: 8.776783716431683e-05 + sys_58: 0.00021436136691887795 + sys_59: -0.0013736378628989945 + sys_60: 0.0006055673213174911 + sys_61: 0.0003184945209905262 + sys_62: -0.0008496935078666786 +- pol: 0.00010816000000000001 + lumi: 0.00047 + sys_0: 0.00013116395294354748 + sys_1: -3.796892293027854e-05 + sys_2: -0.0002437983710344843 + sys_3: -6.257617969003865e-05 + sys_4: -0.00010136671077975137 + sys_5: -3.916066400360581e-05 + sys_6: 0.00012988722431861416 + sys_7: 3.070179159639615e-05 + sys_8: 0.00014781248353337053 + sys_9: -9.522667829618587e-05 + sys_10: 9.337329125839317e-05 + sys_11: 0.0001415894302707631 + sys_12: -0.0001247612695141649 + sys_13: 0.0001453330363470862 + sys_14: 0.00018442196072814405 + sys_15: 0.00014166880508778028 + sys_16: -0.0001433423785426233 + sys_17: 0.000241405828667445 + sys_18: 0.0001722334161056634 + sys_19: 0.00012751847927896246 + sys_20: 4.458447869337478e-05 + sys_21: 0.00037528568005810287 + sys_22: -0.00030462931557091966 + sys_23: 0.0002696834833643494 + sys_24: -9.356414573420396e-05 + sys_25: 2.8504142821501828e-05 + sys_26: 4.536601187181947e-05 + sys_27: -0.00022922313802363798 + sys_28: -6.085639546267376e-05 + sys_29: -0.00023391851631056725 + sys_30: -0.00012198178741218919 + sys_31: 0.00024050467821687524 + sys_32: 0.000581571013667317 + sys_33: 0.00017727040047006048 + sys_34: 0.000695260809782036 + sys_35: -0.00014466976804903842 + sys_36: 9.026570250190829e-05 + sys_37: 7.179948747085647e-05 + sys_38: -6.12669755300972e-05 + sys_39: 0.0013966670341302384 + sys_40: 1.6306254191634127e-05 + sys_41: 2.503647322444841e-06 + sys_42: -1.2077838708907661e-06 + sys_43: -0.0018507890736842374 + sys_44: -6.134991471085591e-05 + sys_45: -1.8460245634776062e-05 + sys_46: -6.574762785757702e-05 + sys_47: 1.1956311795469469e-05 + sys_48: 3.3085554002328235e-06 + sys_49: -0.00023989220483077223 + sys_50: 0.0002333089746185773 + sys_51: -0.0008722263304545565 + sys_52: -0.00016531400090625384 + sys_53: -0.0005650716114053148 + sys_54: -0.00021015495173122366 + sys_55: 2.6393258688656924e-05 + sys_56: 0.0001453687369898643 + sys_57: 1.2653911941373938e-05 + sys_58: 3.557166793905786e-05 + sys_59: -9.985500061009931e-06 + sys_60: 5.569449810069275e-05 + sys_61: 3.690651875347644e-05 + sys_62: -0.00010078081521474983 +- pol: 0.00032063999999999997 + lumi: 0.00047 + sys_0: 0.00012841212567495398 + sys_1: -3.64077590499717e-05 + sys_2: -0.0002415229052577814 + sys_3: -6.067447006852465e-05 + sys_4: -9.933497923600457e-05 + sys_5: -3.588422443679668e-05 + sys_6: 0.00012807653476298053 + sys_7: 2.6276685056655087e-05 + sys_8: 0.00014625598817316832 + sys_9: -9.196939857268394e-05 + sys_10: 8.574179639443623e-05 + sys_11: 0.000139771632948515 + sys_12: -0.00012739031196052283 + sys_13: 0.00014237193921262228 + sys_14: 0.00018458563169164408 + sys_15: 0.00013260127117335858 + sys_16: -0.000147588276565297 + sys_17: 0.00024860958255113293 + sys_18: 0.00017778630456209167 + sys_19: 0.00012896203498822303 + sys_20: 4.5672873682328394e-05 + sys_21: 0.0003866018787029061 + sys_22: -0.00030960128284761524 + sys_23: 0.00029828852242476216 + sys_24: -0.00010208940855092469 + sys_25: 2.3012028260007262e-05 + sys_26: 4.369771909626935e-05 + sys_27: -0.0002578918930702364 + sys_28: -5.73096672976106e-05 + sys_29: -0.00024404579046295507 + sys_30: -0.00016707370612662164 + sys_31: 0.00033147859880477217 + sys_32: 0.0009416582914190337 + sys_33: 0.00036906477393517224 + sys_34: 0.0018731782186001695 + sys_35: -0.00042249206574002584 + sys_36: 0.0004341550034328551 + sys_37: -0.00020825310326651818 + sys_38: 0.0001365915579100725 + sys_39: -0.001802748974176075 + sys_40: 3.247394059731105e-05 + sys_41: -5.9104466692071775e-06 + sys_42: 1.6281948627488457e-05 + sys_43: 0.00021161706723384823 + sys_44: -5.0347206573834384e-05 + sys_45: 5.118835721795455e-06 + sys_46: -4.988129375354834e-05 + sys_47: 5.922617067718872e-06 + sys_48: 7.683128127596436e-06 + sys_49: -0.00010635255007234979 + sys_50: 0.0001092956929616614 + sys_51: -0.0004691025173128989 + sys_52: -9.72120287136773e-05 + sys_53: -0.00032309178719736503 + sys_54: -0.00012739254414245087 + sys_55: 6.8463599859931845e-06 + sys_56: 0.00010140191123513969 + sys_57: -3.91318949375576e-06 + sys_58: 6.801612084409448e-06 + sys_59: -2.0054376161295698e-06 + sys_60: 5.187590218522541e-05 + sys_61: 3.713699847700828e-05 + sys_62: -7.176861305763742e-05 +- pol: 0.00028352 + lumi: 0.00047 + sys_0: 0.0001224854415855291 + sys_1: -3.435794227036676e-05 + sys_2: -0.0002376588011628856 + sys_3: -6.030156452073243e-05 + sys_4: -9.995524578494101e-05 + sys_5: -3.4364906732319014e-05 + sys_6: 0.00012534956536635307 + sys_7: 2.6676032025229884e-05 + sys_8: 0.0001461995275757881 + sys_9: -9.186852784178806e-05 + sys_10: 9.055865662040071e-05 + sys_11: 0.00014535523205283052 + sys_12: -0.0001321838324523914 + sys_13: 0.00015362867292192426 + sys_14: 0.0001981314975109816 + sys_15: 0.00015160241081862107 + sys_16: -0.0001636005333130092 + sys_17: 0.0002910339933829564 + sys_18: 0.0002129335778511491 + sys_19: 0.00014968918858470254 + sys_20: 5.666922213994015e-05 + sys_21: 0.0005201202044566108 + sys_22: -0.0004397428173820367 + sys_23: 0.00046152738105857514 + sys_24: -0.00016889098317486538 + sys_25: 1.936622400876648e-06 + sys_26: 5.756616184509765e-05 + sys_27: -0.0006992701775183005 + sys_28: -0.0001304956875514935 + sys_29: -0.0027882205075597036 + sys_30: 0.0022399975026018587 + sys_31: -0.0006535648670677172 + sys_32: -0.00044192308444771666 + sys_33: -9.877537863197144e-05 + sys_34: -0.00025861542297746703 + sys_35: 1.7840225074292888e-05 + sys_36: -2.951228941032711e-05 + sys_37: 5.197485688944462e-05 + sys_38: -9.403025217213908e-06 + sys_39: -0.00016557506994736797 + sys_40: 2.618657571112604e-05 + sys_41: -1.1859117526537934e-05 + sys_42: 2.7891598480274397e-05 + sys_43: 4.332134770735595e-05 + sys_44: -2.7576179475250577e-05 + sys_45: 2.7976070007300095e-05 + sys_46: -2.04222268547157e-05 + sys_47: -1.3550366065554801e-06 + sys_48: 4.613702544252015e-06 + sys_49: -2.8883338015850052e-05 + sys_50: 3.215337901097707e-05 + sys_51: -0.0001440649166288883 + sys_52: -3.2288249087615226e-05 + sys_53: -0.0001052465608099468 + sys_54: -4.090375959635011e-05 + sys_55: -2.7222406676809135e-06 + sys_56: 3.897810611603847e-05 + sys_57: -1.385044170171715e-05 + sys_58: -1.9346878460292607e-05 + sys_59: 4.257450955669296e-06 + sys_60: 3.1018937478035e-05 + sys_61: 2.6361006245701175e-05 + sys_62: -3.129260361837072e-05 +- pol: 0.00056768 + lumi: 0.00047 + sys_0: 0.00012060344512765474 + sys_1: -3.5183805700364714e-05 + sys_2: -0.0002325245829025897 + sys_3: -5.6127042593326035e-05 + sys_4: -9.882198147047523e-05 + sys_5: -3.7990546626812845e-05 + sys_6: 0.00013280623916606406 + sys_7: 2.7952038564605732e-05 + sys_8: 0.00015477239956304456 + sys_9: -9.91920012085065e-05 + sys_10: 0.00010745945450041724 + sys_11: 0.0001621533593228277 + sys_12: -0.0001575045576617839 + sys_13: 0.00018347731392150362 + sys_14: 0.00024223273542036555 + sys_15: 0.00021163613369098818 + sys_16: -0.00018201429359366038 + sys_17: 0.0004459159975498254 + sys_18: 0.0003614939517424964 + sys_19: 0.0002477217261997762 + sys_20: 9.606683284571211e-05 + sys_21: 0.0016192179229095693 + sys_22: -0.0029435127427043226 + sys_23: -0.003646267975050373 + sys_24: 0.0003423915885436471 + sys_25: 0.00011780209473006588 + sys_26: 5.90853422539216e-05 + sys_27: 0.0003402424233113583 + sys_28: 4.83178314087445e-07 + sys_29: 0.00014008973127934546 + sys_30: 5.342511557567144e-05 + sys_31: -9.606196102382888e-05 + sys_32: -9.813380829842779e-05 + sys_33: -2.9706069912592883e-05 + sys_34: -8.280763847916458e-05 + sys_35: -1.0467499760866998e-05 + sys_36: -1.8194079524310204e-05 + sys_37: 6.141677462494367e-05 + sys_38: -3.3484029708072983e-05 + sys_39: -5.402335157359794e-05 + sys_40: 1.2882477862924122e-05 + sys_41: -1.0011272758565052e-05 + sys_42: 2.7355379419018473e-05 + sys_43: 2.485796437637832e-05 + sys_44: -1.6880555479929284e-05 + sys_45: 4.232753470266345e-05 + sys_46: -3.612489114138119e-06 + sys_47: -3.9191243442960495e-06 + sys_48: 1.9387812381034328e-06 + sys_49: -1.1728697947381554e-05 + sys_50: 1.3256952353926231e-05 + sys_51: -5.9478062745615055e-05 + sys_52: -1.4118366235862949e-05 + sys_53: -4.513240244573233e-05 + sys_54: -1.4341076855325383e-05 + sys_55: -4.141952892280753e-06 + sys_56: 5.123427540823842e-06 + sys_57: -2.0926381307912334e-05 + sys_58: -4.230097836652726e-05 + sys_59: 6.072533779221164e-06 + sys_60: 2.270011321926601e-05 + sys_61: 1.983703985039926e-05 + sys_62: -2.4610015835100314e-05 +- pol: 0.0006303999999999999 + lumi: 0.00047 + sys_0: 0.00012524497467057203 + sys_1: -4.8015397058165176e-05 + sys_2: -0.00023754394824966382 + sys_3: -5.9567357928944764e-05 + sys_4: -0.00011492471086616565 + sys_5: -6.98423169024891e-05 + sys_6: 0.00016180711349157945 + sys_7: 2.331713913806593e-05 + sys_8: 0.0001711940191287703 + sys_9: -0.00012877114389683015 + sys_10: 0.00021733609964711821 + sys_11: 0.00025952405361505496 + sys_12: -0.0003308710533589687 + sys_13: 0.0005387495223513149 + sys_14: 0.0012024961988339655 + sys_15: 0.0070715556940923055 + sys_16: 0.0018496576301853522 + sys_17: -0.0008856890747542066 + sys_18: -0.00043458435763206113 + sys_19: -0.00016300480527956616 + sys_20: -3.880580283978109e-05 + sys_21: -0.0002514762260463716 + sys_22: 0.00015644698239879328 + sys_23: -7.377917329102422e-05 + sys_24: -1.0385595503442852e-05 + sys_25: 6.442620376734457e-05 + sys_26: 7.76637425436441e-05 + sys_27: 8.548048508768286e-05 + sys_28: 2.3330211925610869e-07 + sys_29: 3.308485583537096e-05 + sys_30: 8.046865875849096e-06 + sys_31: -2.3718844002167013e-05 + sys_32: -1.5738393250698926e-05 + sys_33: -1.077572986519204e-05 + sys_34: -2.2502837116819852e-05 + sys_35: -2.0753728813462823e-05 + sys_36: -1.5895585549970988e-05 + sys_37: 5.955664081250632e-05 + sys_38: -4.958954875715103e-05 + sys_39: -1.1891171731642284e-05 + sys_40: 2.6905074200392665e-06 + sys_41: -3.997978755678579e-06 + sys_42: 1.2619401554534768e-05 + sys_43: 1.9875918793367877e-05 + sys_44: -8.362063841115066e-06 + sys_45: 3.15490287447072e-05 + sys_46: 2.3786569482052516e-06 + sys_47: -1.247701696212038e-06 + sys_48: 6.563858718829505e-07 + sys_49: -1.0418627816019142e-05 + sys_50: 3.532937979055286e-06 + sys_51: -1.755168573848319e-05 + sys_52: -5.182435653269649e-06 + sys_53: -1.5823792006555897e-05 + sys_54: -4.3691014029130965e-06 + sys_55: -4.387732543393388e-06 + sys_56: -1.1726622184269758e-05 + sys_57: -2.183261844808709e-05 + sys_58: -4.6540653954909604e-05 + sys_59: 4.633614972467971e-06 + sys_60: 1.3043473495884425e-05 + sys_61: 1.1589314247329402e-05 + sys_62: -1.7937886153852928e-05 +- pol: 0.00022464000000000002 + lumi: 0.00047 + sys_0: 0.00013797818090967548 + sys_1: -6.253508756556351e-05 + sys_2: -0.0002694990888720989 + sys_3: -6.780898983950574e-05 + sys_4: -0.0001442228018152258 + sys_5: -0.00014414274125749716 + sys_6: 0.0002839245120341925 + sys_7: -3.30784111945282e-06 + sys_8: 5.7720957101302634e-05 + sys_9: -0.0004123695679652298 + sys_10: 0.010800293076634162 + sys_11: -0.001823717565465047 + sys_12: 0.0007181163532439707 + sys_13: -0.00011919863115660462 + sys_14: -5.821784844838156e-05 + sys_15: -9.039745708611505e-05 + sys_16: -0.00021622423625029162 + sys_17: -0.00014885696818257561 + sys_18: -9.583605560780349e-05 + sys_19: -2.5022007929591847e-05 + sys_20: -9.641516930689712e-07 + sys_21: -4.9668028691924446e-05 + sys_22: 2.4879421294017244e-05 + sys_23: 9.992878298831074e-06 + sys_24: -3.6072488093724735e-05 + sys_25: 7.679435871770902e-05 + sys_26: 0.00011069036364125201 + sys_27: 6.054878516142296e-05 + sys_28: 1.7536028030694197e-05 + sys_29: 1.5651088031251088e-05 + sys_30: 3.293019363177002e-06 + sys_31: -8.193321492196157e-06 + sys_32: 3.3320507101314015e-06 + sys_33: -5.038633265838798e-06 + sys_34: -5.7197023567615564e-06 + sys_35: -2.4010219633949166e-05 + sys_36: -1.584440321613537e-05 + sys_37: 5.833272947884413e-05 + sys_38: -5.9866427109669e-05 + sys_39: 1.9454928131892423e-06 + sys_40: -4.2078538783099935e-07 + sys_41: -1.3084020138104045e-06 + sys_42: 4.108092216978269e-06 + sys_43: 2.159851976280965e-05 + sys_44: -3.881243483446274e-06 + sys_45: 1.511092153611614e-05 + sys_46: 1.658318388868519e-06 + sys_47: 2.1239107780569795e-06 + sys_48: 5.1415140478256745e-08 + sys_49: -1.652165082584585e-05 + sys_50: -2.778470974867268e-07 + sys_51: -2.75645543507734e-06 + sys_52: -2.9290144784962157e-06 + sys_53: -7.599476653717472e-06 + sys_54: -7.140793353352964e-06 + sys_55: -4.019952395573519e-06 + sys_56: -1.5101912799861564e-05 + sys_57: -1.7504171365872624e-05 + sys_58: -3.4857297854943104e-05 + sys_59: 1.656204678541041e-06 + sys_60: 7.493554122870287e-06 + sys_61: 5.133246062037758e-06 + sys_62: -8.765238452691044e-06 +- pol: 0.00201024 + lumi: 0.00047 + sys_0: 0.00021070369155553166 + sys_1: -0.00014799060488164187 + sys_2: -0.0004174024247700332 + sys_3: -0.00012642523781635273 + sys_4: -0.000794699162592124 + sys_5: -0.017870389456176066 + sys_6: -0.0018550535328726895 + sys_7: 0.00042603327869722863 + sys_8: 0.000596664728496441 + sys_9: 0.0002472102161127621 + sys_10: -0.00013208430337978256 + sys_11: -8.8459605142422e-05 + sys_12: 0.00014852348179902539 + sys_13: 1.1076291365991774e-05 + sys_14: 4.6688762073671594e-05 + sys_15: 2.2350827392850632e-05 + sys_16: -0.00027987944437208917 + sys_17: -5.4681850419138545e-05 + sys_18: -3.487614313195926e-05 + sys_19: -1.0928250682934854e-05 + sys_20: -8.974232209960965e-06 + sys_21: -8.757515034958139e-06 + sys_22: -2.2132673047422143e-06 + sys_23: 2.202241253720323e-05 + sys_24: -3.12512176727658e-05 + sys_25: 6.516080622780092e-05 + sys_26: 0.00010184423555507495 + sys_27: 4.461500061402335e-05 + sys_28: 3.081164154287244e-05 + sys_29: 1.0248935229576571e-05 + sys_30: 4.124942157792971e-06 + sys_31: -2.197273453273716e-06 + sys_32: 5.03886785508928e-07 + sys_33: -1.5067079734055572e-06 + sys_34: -1.2361466638974728e-06 + sys_35: -1.0741631903409709e-05 + sys_36: -7.903810852582425e-06 + sys_37: 2.9645975648252653e-05 + sys_38: -3.385852416185882e-05 + sys_39: 3.4175365722682803e-06 + sys_40: -7.054438721630587e-07 + sys_41: -3.117580843300394e-07 + sys_42: 7.757375079855973e-07 + sys_43: 1.3350328014090188e-05 + sys_44: -8.990038325014469e-07 + sys_45: 4.2300116559206195e-06 + sys_46: 7.927931231610627e-07 + sys_47: 1.9002829563846985e-06 + sys_48: -1.0283742217240064e-07 + sys_49: -1.4129992894860344e-05 + sys_50: -1.3526588590626465e-06 + sys_51: 2.2769051754178447e-06 + sys_52: -1.5934731915517313e-06 + sys_53: -3.488051461364192e-06 + sys_54: -7.183521651839205e-06 + sys_55: -2.118386890171846e-06 + sys_56: -8.37966247443933e-06 + sys_57: -7.643518688908406e-06 + sys_58: -1.2008737531920659e-05 + sys_59: -3.4950666816699524e-07 + sys_60: 2.720507290801974e-06 + sys_61: 2.560011815777984e-07 + sys_62: 1.5353520352043207e-08 +- pol: 0.00071296 + lumi: 0.00047 + sys_0: 0.0025851905702851626 + sys_1: -0.031665608226896735 + sys_2: 0.00324020582758914 + sys_3: 0.0005126219912550078 + sys_4: 0.00013203207180924936 + sys_5: 0.00017163699167319505 + sys_6: -0.0003045268160283499 + sys_7: 0.000144435471731364 + sys_8: 0.000573918175102801 + sys_9: 0.00012787127099239443 + sys_10: -3.336466005524335e-05 + sys_11: -2.555253772991945e-05 + sys_12: 5.1666046650555316e-05 + sys_13: 1.4540162447785898e-05 + sys_14: 4.15350124476721e-05 + sys_15: 3.0402055135402667e-05 + sys_16: -0.00020114142668918185 + sys_17: -2.4368027323647987e-05 + sys_18: -1.1934358396073508e-05 + sys_19: -9.611888394608268e-06 + sys_20: -1.3332753847871317e-05 + sys_21: -8.71349413439239e-06 + sys_22: 4.327255980732517e-06 + sys_23: 5.8673441414624695e-06 + sys_24: -1.102842560327959e-05 + sys_25: 2.380835837804678e-05 + sys_26: 4.471703421863622e-05 + sys_27: 2.0249370295485107e-05 + sys_28: 1.8370763882968028e-05 + sys_29: 5.106475223636994e-06 + sys_30: 2.8909895801030003e-06 + sys_31: -4.5176469149223497e-07 + sys_32: -2.1331885649507036e-06 + sys_33: -5.861813631934522e-07 + sys_34: -5.680693746222383e-07 + sys_35: -1.4129079568064149e-06 + sys_36: -1.5232920209646311e-06 + sys_37: 7.474502324711622e-06 + sys_38: -8.732740289118672e-06 + sys_39: 9.51041208678353e-07 + sys_40: -3.6693484150779514e-07 + sys_41: -6.439305399227776e-08 + sys_42: 8.605320767016857e-08 + sys_43: 4.024341687956793e-06 + sys_44: -3.3075036580189784e-08 + sys_45: 9.500328563702148e-07 + sys_46: 3.70810071290933e-07 + sys_47: 7.88385370953907e-07 + sys_48: -6.617750026291332e-08 + sys_49: -6.279665560139236e-06 + sys_50: -7.745577303761618e-07 + sys_51: 1.8784142519920598e-06 + sys_52: -6.10510110992285e-07 + sys_53: -1.1228199344917284e-06 + sys_54: -3.6508076465715218e-06 + sys_55: -8.270562802482827e-07 + sys_56: -3.4320316637608945e-06 + sys_57: -2.438266732148096e-06 + sys_58: -2.665392448752788e-06 + sys_59: -5.654915820305557e-07 + sys_60: 6.253765161472477e-07 + sys_61: -5.82714158106794e-07 + sys_62: 1.2561227554127553e-06 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CC.yaml new file mode 100644 index 0000000000..35a7dd4ccc --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CC.yaml @@ -0,0 +1,12 @@ +data_central: +- 0.0002 +- 0.0006 +- 0.0034 +- 0.0041 +- 0.007 +- 0.0045 +- 0.0182 +- 0.022 +- 0.0196 +- 0.0348 +- 0.0515 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CF.yaml new file mode 100644 index 0000000000..163cd055e9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/data_CF.yaml @@ -0,0 +1,12 @@ +data_central: +- -0.00021 +- 0.00091 +- 0.00084 +- 0.00333 +- 0.00238 +- 0.00214 +- 0.01141 +- 0.01228 +- 0.02057 +- 0.05314 +- 0.02316 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/filter.py b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/filter.py new file mode 100644 index 0000000000..bf90362675 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/filter.py @@ -0,0 +1,338 @@ +"""This script provides the common filer to the jet and dijet STAR 2015 datasets. +Files need to be parsed all together as there are correlations provided. +""" + +import pathlib + +import numpy as np +import pandas as pd +import yaml + +from nnpdf_data.filter_utils.correlations import ( + compute_covmat, + upper_triangular_to_symmetric, +) + +# values from the paper +SQRTS = 200 +YEAR = 2015 +# mapping between topologies, tables and abs_eta values +TOPOPLOGY_LIST = { + "CC": "bottom", + "CF": "top", + "OS": "bottom", + "SS": "top", +} + +# mapping between correlations blocks and tables +MAP_CORR_TABLE = { + ("CC", "CC"): 2, + ("CC", "CF"): 4, + ("CC", "OS"): 8, + ("CC", "SS"): 7, + ("CF", "CF"): 1, + ("CF", "OS"): 6, + ("CF", "SS"): 5, + ("OS", "OS"): 12, + ("OS", "SS"): 13, + ("SS", "SS"): 11, +} + +# NOTE: this is not the full relevant as the observable is symmetric +# for jet1 and jet2, so 1 and 2 are not ordered in pT and the +# information about the sign in missing. +TOPO_DEF = { + "SS": {"abs_eta_min": 0, "abs_eta_max": 0.8}, + "OS": {"abs_eta_min": 0, "abs_eta_max": 0.8}, + "CC": {"abs_eta_min": 0, "abs_eta_max": 0.5}, + "CF": {"abs_eta_min": 0.5, "abs_eta_max": 1.0}, +} + + +HERE = pathlib.Path(__file__).parent +RAWDATA_PATH = HERE / "rawdata/" + + +def read_1jet_data(topology): + table_label = TOPOPLOGY_LIST[topology] + max_eta = TOPO_DEF[topology]["abs_eta_max"] + min_eta = TOPO_DEF[topology]["abs_eta_min"] + data_table = pathlib.Path(RAWDATA_PATH / f"Table1{table_label}.csv") + + with open(data_table, "r", encoding="utf-8") as file: + parton_jet_data = pd.read_csv( + file, delimiter=",", skiprows=lambda x: (x <= 6 or x >= 20) + ) + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=21) + + df = pd.DataFrame() + df["pT"] = parton_jet_data[ + r"Inclusive jet transverse momentum $p_T$ at the parton level [GeV/$c$]" + ] + df["pT_min"] = df["pT"] + parton_jet_data["Syst -"] + df["pT_max"] = df["pT"] + parton_jet_data["Syst +"] + df["abs_eta"] = (max_eta + min_eta) / 2 + df["abs_eta_min"] = min_eta + df["abs_eta_max"] = max_eta + df["sqrts"] = SQRTS + df["ALL"] = all_data[r"Double spin asymmetry $A_{LL}$"] + df["stat"] = all_data["Stat +"] + df["syst"] = all_data["Syst +"] + df["lumi"] = all_data["Lumi +"] + df["pol"] = [float(a[:-1]) for a in all_data["Pol +"]] * abs(df["ALL"]) / 100 + + print(f"1JET {topology} data loaded. Npoint: ", len(df)) + return df + + +def read_2jet_data(topology): + table_label = TOPOPLOGY_LIST[topology] + data_table = RAWDATA_PATH / f"Table2{table_label}.csv" + with open(data_table, "r", encoding="utf-8") as file: + mjj_data = pd.read_csv( + file, delimiter=",", skiprows=lambda x: (x <= 6 or x >= 16) + ) + with open(data_table, "r", encoding="utf-8") as file: + all_data = pd.read_csv(file, delimiter=",", skiprows=27) + + df = pd.DataFrame() + df["mjj"] = mjj_data["Dijet invariant mass $M_{inv}$ at the parton level [GeV/$c$]"] + df["mjj_min"] = df["mjj"] + mjj_data["Syst -"] + df["mjj_max"] = df["mjj"] + mjj_data["Syst +"] + + df["abs_eta_min"] = TOPO_DEF[topology]["abs_eta_min"] + df["abs_eta_max"] = TOPO_DEF[topology]["abs_eta_max"] + df["abs_eta"] = (df["abs_eta_min"] + df["abs_eta_max"]) / 2 + + df["sqrts"] = SQRTS + df["ALL"] = all_data[r"Double spin asymmetry $A_{LL}$"] + df["stat"] = all_data["Stat +"] + df["syst"] = all_data["Syst +"] + df["lumi"] = all_data["Lumi +"] + df["pol"] = [float(a[:-1]) for a in all_data["Pol +"]] * abs(df["ALL"]) / 100 + + print(f"2JET {topology} data loaded. Npoint: ", len(df)) + return df + + +def read_correlations(ndata_dict): + """Read the correlation files and build a big matix""" + corr_rows = [] + + # loop on block rows + for a, ndata_a in ndata_dict.items(): + la = [a for _ in range(ndata_a)] + corr_row = pd.DataFrame() + + # loop on block columns + for b, ndata_b in ndata_dict.items(): + lb = [b for _ in range(ndata_b)] + + # build the block + try: + idx = MAP_CORR_TABLE[(a, b)] + with open( + RAWDATA_PATH / f"Table{idx}SupplementalMaterial.csv", + encoding="utf-8", + ) as file: + corr_df = pd.read_csv(file, delimiter=",", skiprows=7) + + if a == b: + corr = upper_triangular_to_symmetric(corr_df.values[:, 2], ndata_a) + else: + corr = corr_df.values[:, 2].reshape((ndata_a, ndata_b)) + except (FileNotFoundError, KeyError) as _: + corr = pd.DataFrame(np.zeros((ndata_a, ndata_b)), index=la, columns=lb) + + corr = pd.DataFrame(corr, index=la, columns=lb) + corr_row = pd.concat([corr_row, corr], axis=1) + corr_rows.append(corr_row) + + tot_corr = pd.concat(corr_rows) + if not np.allclose(tot_corr, np.triu(tot_corr)): + raise ValueError("Correlation matrix not read correctly") + return tot_corr + tot_corr.T - np.eye(np.sum((*ndata_dict.values(),))) + + +def write_1jet_data(df, topology, art_sys): + STORE_PATH = HERE + + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "pT": { + "min": float(df.loc[i, "pT_min"]), + "mid": float(df.loc[i, "pT"]), + "max": float(df.loc[i, "pT_max"]), + }, + "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = {"lumi": float(df.loc[i, "lumi"]), "pol": float(df.loc[i, "pol"])} + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + error.append(e) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +def write_2jet_data(df, topology, art_sys): + STORE_PATH = HERE / f"../STAR_{YEAR}_2JET_MIDRAP_{SQRTS}GEV/" + # Write central data + data_central_yaml = {"data_central": list(df["ALL"])} + with open(STORE_PATH / f"data_{topology}.yaml", "w", encoding="utf-8") as file: + yaml.dump(data_central_yaml, file) + + # Write kin file + kin = [] + for i in range(len(df)): + kin_value = { + "m_jj": { + "min": float(df.loc[i, "mjj_min"]), + "mid": float(df.loc[i, "mjj"]), + "max": float(df.loc[i, "mjj_max"]), + }, + # "sqrts": {"min": None, "mid": float(df.loc[i, "sqrts"]), "max": None}, + "abs_eta_1": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + "abs_eta_2": { + "min": float(df.loc[i, "abs_eta_min"]), + "mid": float(df.loc[i, "abs_eta"]), + "max": float(df.loc[i, "abs_eta_max"]), + }, + } + kin.append(kin_value) + kinematics_yaml = {"bins": kin} + with open( + STORE_PATH / f"kinematics_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(kinematics_yaml, file) + + # Write unc file + error = [] + error_definition = { + "lumi": { + "description": "luminosity uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}LUMI", + }, + "pol": { + "description": "beam polarization uncertainty", + "treatment": "MULT", + "type": f"STAR{YEAR}POL", + }, + } + # loop on data points + for i, sys_i in enumerate(art_sys): + e = { + "lumi": float(df.loc[i, "lumi"]), + "pol": float(df.loc[i, "pol"]), + } + # loop on art sys + for j, val in enumerate(sys_i): + e[f"sys_{j}"] = val + error.append(e) + + if i == 0: + error_definition.update( + { + f"sys_{j}": { + "description": f"{j} artificial correlated statistical + systematics uncertainty", + "treatment": "ADD", + "type": f"STAR{YEAR}JETunc{j}", + } + for j in range(len(sys_i)) + } + ) + + uncertainties_yaml = {"definitions": error_definition, "bins": error} + with open( + STORE_PATH / f"uncertainties_{topology}.yaml", "w", encoding="utf-8" + ) as file: + yaml.dump(uncertainties_yaml, file, sort_keys=False) + + +if __name__ == "__main__": + # load all the data + dfs = {} + for topo in TOPOPLOGY_LIST: + fcn = read_1jet_data if "C" in topo else read_2jet_data + dfs[topo] = fcn(topo) + + # load correlations + ndata_dict = {a: len(b) for a, b in dfs.items()} + correlation_df = read_correlations(ndata_dict) + # sum stat and syst for both jet and dijets as recommended + # by E.Aschenauer, see https://github.com/NNPDF/nnpdf/pull/2035#issuecomment-2201979662 + correlated_unc = [] + for a in TOPOPLOGY_LIST: + correlated_unc.extend( + np.sqrt(dfs[a]["syst"] ** 2 + dfs[a]["stat"] ** 2).values.tolist() + ) + ndata_points = np.sum((*ndata_dict.values(),)) + art_sys = np.array(compute_covmat(correlation_df, correlated_unc, ndata_points)) + + # write data + cnt = 0 + for topo, df in dfs.items(): + ndata = ndata_dict[topo] + syst = art_sys[cnt : cnt + ndata, :].tolist() + if "C" in topo: + write_1jet_data(df, topo, syst) + else: + write_2jet_data(df, topo, syst) + cnt += ndata diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CC.yaml new file mode 100644 index 0000000000..978f9b6214 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CC.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 6.2 + mid: 6.0 + min: 5.8 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 7.529999999999999 + mid: 7.31 + min: 7.09 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 9.72 + mid: 9.47 + min: 9.22 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 11.64 + mid: 11.33 + min: 11.02 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 13.7 + mid: 13.36 + min: 13.02 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 16.09 + mid: 15.74 + min: 15.39 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 18.81 + mid: 18.43 + min: 18.05 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 21.93 + mid: 21.49 + min: 21.049999999999997 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 25.610000000000003 + mid: 25.1 + min: 24.59 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 29.73 + mid: 29.17 + min: 28.610000000000003 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 0.5 + mid: 0.25 + min: 0.0 + pT: + max: 34.43 + mid: 33.81 + min: 33.190000000000005 + sqrts: + max: null + mid: 200.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CF.yaml new file mode 100644 index 0000000000..9cc95b9f2a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/kinematics_CF.yaml @@ -0,0 +1,133 @@ +bins: +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 6.340000000000001 + mid: 6.15 + min: 5.96 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 7.54 + mid: 7.34 + min: 7.14 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 9.78 + mid: 9.5 + min: 9.22 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 11.62 + mid: 11.34 + min: 11.06 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 13.56 + mid: 13.25 + min: 12.94 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 15.83 + mid: 15.47 + min: 15.110000000000001 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 18.44 + mid: 18.07 + min: 17.7 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 21.57 + mid: 21.16 + min: 20.75 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 25.16 + mid: 24.68 + min: 24.2 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 29.09 + mid: 28.56 + min: 28.029999999999998 + sqrts: + max: null + mid: 200.0 + min: null +- abs_eta: + max: 1.0 + mid: 0.75 + min: 0.5 + pT: + max: 33.5 + mid: 32.9 + min: 32.3 + sqrts: + max: null + mid: 200.0 + min: null diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/metadata.yaml new file mode 100644 index 0000000000..897f2f9269 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/metadata.yaml @@ -0,0 +1,90 @@ +setname: "STAR_2015_1JET_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "JETS" + +arXiv: + url: https://arxiv.org/abs/2103.05571 +iNSPIRE: + url: "https://inspirehep.net/literature/1850855" +hepdata: + url: "https://www.hepdata.net/record/ins1850855" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: { description: "$A_{LL}$ as function of $p_T$, central region", label: "$A_{LL}$", units: "" } + observable_name: CC-ALL + process_type: JET_POL + ndata: 11 + tables: [1] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + abs_eta: {description: "absolute pseudorapidity", label: '$|\eta|$', units: "" } + file: kinematics_CC.yaml + data_central: data_CC.yaml + data_uncertainties: + - uncertainties_CC.yaml + kinematic_coverage: [pT, sqrts, abs_eta] + plotting: + dataset_label: "STAR 200 GeV (2015) 1-JET $A_{LL}$" + kinematics_override: identity + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2015_1JET_200GEV_CC-ALL-POL + - - STAR_2015_1JET_200GEV_CC-ALL-UNPOL + operation: "ratio" + - observable: { description: "$A_{LL}$ as function of $p_T$, forward region", label: "$A_{LL}$", units: "" } + observable_name: CF-ALL + process_type: JET_POL + ndata: 11 + tables: [1] + kinematics: + variables: + pT: + { + description: "mean transverse momentum", + label: '$\langle pT \rangle$', + units: "$GeV$", + } + sqrts: + { + description: "center of mass energy", + label: '$\sqrt{s}$', + units: "$GeV$", + } + abs_eta: {description: "absolute pseudorapidity", label: '$|\eta|$', units: "" } + file: kinematics_CF.yaml + data_central: data_CF.yaml + data_uncertainties: + - uncertainties_CF.yaml + kinematic_coverage: [pT, sqrts, abs_eta] + plotting: + dataset_label: "STAR 200 GeV (2015) 1-JET $A_{LL}$" + kinematics_override: identity + plot_x: pT + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2015_1JET_200GEV_CF-ALL-POL + - - STAR_2015_1JET_200GEV_CF-ALL-UNPOL + operation: "ratio" \ No newline at end of file diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table11SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table11SupplementalMaterial.csv new file mode 100644 index 0000000000..22e588f648 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table11SupplementalMaterial.csv @@ -0,0 +1,37 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t19 +#: name: Table 11 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties for dijet measurements with the $\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_11_supplemental_material.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$) [GeV/$c^2$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +20.29,20.29,1.0 +20.29,23.5,0.044 +20.29,28.28,0.033 +20.29,34.15,0.02 +20.29,40.96,0.013 +20.29,50.75,0.012 +20.29,69.11,0.006 +23.5,23.5,1.0 +23.5,28.28,0.038 +23.5,34.15,0.023 +23.5,40.96,0.016 +23.5,50.75,0.015 +23.5,69.11,0.008 +28.28,28.28,1.0 +28.28,34.15,0.019 +28.28,40.96,0.013 +28.28,50.75,0.014 +28.28,69.11,0.008 +34.15,34.15,1.0 +34.15,40.96,0.009 +34.15,50.75,0.009 +34.15,69.11,0.005 +40.96,40.96,1.0 +40.96,50.75,0.007 +40.96,69.11,0.004 +50.75,50.75,1.0 +50.75,69.11,0.006 +69.11,69.11,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table12SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table12SupplementalMaterial.csv new file mode 100644 index 0000000000..430b2a39c6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table12SupplementalMaterial.csv @@ -0,0 +1,37 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t20 +#: name: Table 12 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties for dijet measurements with the $\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_12_supplemental_material.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$) [GeV/$c^2$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +20.48,20.48,1.0 +20.48,23.65,0.011 +20.48,28.5,0.012 +20.48,34.38,0.008 +20.48,41.38,0.006 +20.48,51.25,0.008 +20.48,69.96,0.004 +23.65,23.65,1.0 +23.65,28.5,0.016 +23.65,34.38,0.01 +23.65,41.38,0.008 +23.65,51.25,0.01 +23.65,69.96,0.005 +28.5,28.5,1.0 +28.5,34.38,0.011 +28.5,41.38,0.009 +28.5,51.25,0.011 +28.5,69.96,0.006 +34.38,34.38,1.0 +34.38,41.38,0.006 +34.38,51.25,0.008 +34.38,69.96,0.004 +41.38,41.38,1.0 +41.38,51.25,0.006 +41.38,69.96,0.003 +51.25,51.25,1.0 +51.25,69.96,0.004 +69.96,69.96,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table13SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table13SupplementalMaterial.csv new file mode 100644 index 0000000000..2bf53ee3e8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table13SupplementalMaterial.csv @@ -0,0 +1,58 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t21 +#: name: Table 13 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling dijet measurements with the $\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$ topology and the $\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_13_supplemental_material.yaml +#: keyword reactions: P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$) [GeV/$c^2$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +20.48,20.29,0.008 +20.48,23.5,0.01 +20.48,28.28,0.01 +20.48,34.15,0.007 +20.48,40.96,0.006 +20.48,50.75,0.008 +20.48,69.11,0.005 +23.65,20.29,0.01 +23.65,23.5,0.013 +23.65,28.28,0.013 +23.65,34.15,0.009 +23.65,40.96,0.008 +23.65,50.75,0.01 +23.65,69.11,0.007 +28.5,20.29,0.011 +28.5,23.5,0.014 +28.5,28.28,0.015 +28.5,34.15,0.01 +28.5,40.96,0.008 +28.5,50.75,0.011 +28.5,69.11,0.007 +34.38,20.29,0.007 +34.38,23.5,0.009 +34.38,28.28,0.01 +34.38,34.15,0.007 +34.38,40.96,0.006 +34.38,50.75,0.007 +34.38,69.11,0.005 +41.38,20.29,0.006 +41.38,23.5,0.008 +41.38,28.28,0.008 +41.38,34.15,0.006 +41.38,40.96,0.005 +41.38,50.75,0.006 +41.38,69.11,0.004 +51.25,20.29,0.008 +51.25,23.5,0.01 +51.25,28.28,0.011 +51.25,34.15,0.007 +51.25,40.96,0.006 +51.25,50.75,0.008 +51.25,69.11,0.006 +69.96,20.29,0.004 +69.96,23.5,0.005 +69.96,28.28,0.005 +69.96,34.15,0.004 +69.96,40.96,0.003 +69.96,50.75,0.004 +69.96,69.11,0.003 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1SupplementalMaterial.csv new file mode 100644 index 0000000000..9c7741b8f6 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1SupplementalMaterial.csv @@ -0,0 +1,75 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t9 +#: name: Table 1 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties for inclusive jet measurements with jets in the $0.5<|\eta|<1$ region. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_1_supplemental_material.yaml +#: keyword reactions: P P --> JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($0.5<|\eta|<1$) [GeV/$c$],Inclusive jet transverse momentum $p_T$ at the parton level ($0.5<|\eta|<1$) [GeV/$c$],Correlation +6.15,6.15,1.0 +6.15,7.34,0.043 +6.15,9.5,0.062 +6.15,11.34,0.051 +6.15,13.25,0.037 +6.15,15.47,0.026 +6.15,18.07,0.019 +6.15,21.16,0.012 +6.15,24.68,0.011 +6.15,28.56,0.007 +6.15,32.9,0.003 +7.34,7.34,1.0 +7.34,9.5,0.051 +7.34,11.34,0.045 +7.34,13.25,0.033 +7.34,15.47,0.023 +7.34,18.07,0.018 +7.34,21.16,0.012 +7.34,24.68,0.011 +7.34,28.56,0.007 +7.34,32.9,0.003 +9.5,9.5,1.0 +9.5,11.34,0.069 +9.5,13.25,0.051 +9.5,15.47,0.037 +9.5,18.07,0.029 +9.5,21.16,0.019 +9.5,24.68,0.017 +9.5,28.56,0.011 +9.5,32.9,0.005 +11.34,11.34,1.0 +11.34,13.25,0.051 +11.34,15.47,0.039 +11.34,18.07,0.032 +11.34,21.16,0.02 +11.34,24.68,0.019 +11.34,28.56,0.013 +11.34,32.9,0.006 +13.25,13.25,1.0 +13.25,15.47,0.034 +13.25,18.07,0.028 +13.25,21.16,0.019 +13.25,24.68,0.017 +13.25,28.56,0.01 +13.25,32.9,0.005 +15.47,15.47,1.0 +15.47,18.07,0.027 +15.47,21.16,0.019 +15.47,24.68,0.016 +15.47,28.56,0.01 +15.47,32.9,0.004 +18.07,18.07,1.0 +18.07,21.16,0.023 +18.07,24.68,0.019 +18.07,28.56,0.011 +18.07,32.9,0.005 +21.16,21.16,1.0 +21.16,24.68,0.022 +21.16,28.56,0.014 +21.16,32.9,0.006 +24.68,24.68,1.0 +24.68,28.56,0.02 +24.68,32.9,0.011 +28.56,28.56,1.0 +28.56,32.9,0.016 +32.9,32.9,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1bottom.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1bottom.csv new file mode 100644 index 0000000000..48f86b8a87 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1bottom.csv @@ -0,0 +1,34 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t5 +#: name: Table 1 bottom +#: description: Parton inclusive-jet $p_T$ and $A_{LL}$ values with associated uncertainties for jet-$\eta$ region $|\eta|<0.5$. +#: data_file: table_1_bottom.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET X +#: SQRT(S) [GeV],200 +bin,Inclusive jet transverse momentum $p_T$ at the parton level [GeV/$c$],Syst +,Syst - +1.0,6.0,0.2,-0.2 +2.0,7.31,0.22,-0.22 +3.0,9.47,0.25,-0.25 +4.0,11.33,0.31,-0.31 +5.0,13.36,0.34,-0.34 +6.0,15.74,0.35,-0.35 +7.0,18.43,0.38,-0.38 +8.0,21.49,0.44,-0.44 +9.0,25.1,0.51,-0.51 +10.0,29.17,0.56,-0.56 +11.0,33.81,0.62,-0.62 + +#: SQRT(S) [GeV],200 +bin,Double spin asymmetry $A_{LL}$,Stat +,Stat -,Syst +,Syst -,Lumi +,Lumi -,Pol +,Pol - +1.0,0.0002,0.0014,-0.0014,0.0015,-0.0015,0.0007,-0.0007,6.1%,-6.1% +2.0,0.0006,0.0017,-0.0017,0.0012,-0.0012,0.0007,-0.0007,6.1%,-6.1% +3.0,0.0034,0.001,-0.001,0.0011,-0.0011,0.0007,-0.0007,6.1%,-6.1% +4.0,0.0041,0.0011,-0.0011,0.0009,-0.0009,0.0007,-0.0007,6.1%,-6.1% +5.0,0.007,0.0014,-0.0014,0.0008,-0.0008,0.0007,-0.0007,6.1%,-6.1% +6.0,0.0045,0.0019,-0.0019,0.0007,-0.0007,0.0007,-0.0007,6.1%,-6.1% +7.0,0.0182,0.0028,-0.0028,0.0008,-0.0008,0.0007,-0.0007,6.1%,-6.1% +8.0,0.022,0.0043,-0.0043,0.0009,-0.0009,0.0007,-0.0007,6.1%,-6.1% +9.0,0.0196,0.0072,-0.0072,0.0011,-0.0011,0.0007,-0.0007,6.1%,-6.1% +10.0,0.0348,0.0127,-0.0127,0.0014,-0.0014,0.0007,-0.0007,6.1%,-6.1% +11.0,0.0515,0.0239,-0.0239,0.0015,-0.0015,0.0007,-0.0007,6.1%,-6.1% + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1top.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1top.csv new file mode 100644 index 0000000000..96ed05bb37 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table1top.csv @@ -0,0 +1,34 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t4 +#: name: Table 1 top +#: description: Parton inclusive-jet $p_T$ and $A_{LL}$ values with associated uncertainties for jet-$\eta$ region $0.5<|\eta|<1$. +#: data_file: table_1_top.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET X +#: SQRT(S) [GeV],200 +bin,Inclusive jet transverse momentum $p_T$ at the parton level [GeV/$c$],Syst +,Syst - +1.0,6.15,0.19,-0.19 +2.0,7.34,0.2,-0.2 +3.0,9.5,0.28,-0.28 +4.0,11.34,0.28,-0.28 +5.0,13.25,0.31,-0.31 +6.0,15.47,0.36,-0.36 +7.0,18.07,0.37,-0.37 +8.0,21.16,0.41,-0.41 +9.0,24.68,0.48,-0.48 +10.0,28.56,0.53,-0.53 +11.0,32.9,0.6,-0.6 + +#: SQRT(S) [GeV],200 +bin,Double spin asymmetry $A_{LL}$,Stat +,Stat -,Syst +,Syst -,Lumi +,Lumi -,Pol +,Pol - +1.0,-0.00021,0.0017,-0.0017,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +2.0,0.00091,0.0019,-0.0019,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +3.0,0.00084,0.0012,-0.0012,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +4.0,0.00333,0.0014,-0.0014,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +5.0,0.00238,0.0018,-0.0018,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +6.0,0.00214,0.0025,-0.0025,0.0004,-0.0004,0.0007,-0.0007,6.1%,-6.1% +7.0,0.01141,0.0037,-0.0037,0.0005,-0.0005,0.0007,-0.0007,6.1%,-6.1% +8.0,0.01228,0.0058,-0.0058,0.0006,-0.0006,0.0007,-0.0007,6.1%,-6.1% +9.0,0.02057,0.0099,-0.0099,0.001,-0.001,0.0007,-0.0007,6.1%,-6.1% +10.0,0.05314,0.018,-0.018,0.0013,-0.0013,0.0007,-0.0007,6.1%,-6.1% +11.0,0.02316,0.0357,-0.0357,0.0016,-0.0016,0.0007,-0.0007,6.1%,-6.1% + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2SupplementalMaterial.csv new file mode 100644 index 0000000000..dd0f806245 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2SupplementalMaterial.csv @@ -0,0 +1,75 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t10 +#: name: Table 2 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties for inclusive jet measurements with jets in the $|\eta|<0.5$ region. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_2_supplemental_material.yaml +#: keyword reactions: P P --> JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($|\eta|<0.5$) [GeV/$c$],Inclusive jet transverse momentum $p_T$ at the parton level ($|\eta|<0.5$) [GeV/$c$],Correlation +6.0,6.0,1.0 +6.0,7.31,0.448 +6.0,9.47,0.549 +6.0,11.33,0.463 +6.0,13.36,0.353 +6.0,15.74,0.244 +6.0,18.43,0.163 +6.0,21.49,0.102 +6.0,25.1,0.064 +6.0,29.17,0.035 +6.0,33.81,0.018 +7.31,7.31,1.0 +7.31,9.47,0.45 +7.31,11.33,0.379 +7.31,13.36,0.287 +7.31,15.74,0.198 +7.31,18.43,0.13 +7.31,21.49,0.08 +7.31,25.1,0.049 +7.31,29.17,0.027 +7.31,33.81,0.014 +9.47,9.47,1.0 +9.47,11.33,0.47 +9.47,13.36,0.361 +9.47,15.74,0.251 +9.47,18.43,0.171 +9.47,21.49,0.109 +9.47,25.1,0.069 +9.47,29.17,0.038 +9.47,33.81,0.02 +11.33,11.33,1.0 +11.33,13.36,0.309 +11.33,15.74,0.217 +11.33,18.43,0.149 +11.33,21.49,0.095 +11.33,25.1,0.06 +11.33,29.17,0.033 +11.33,33.81,0.017 +13.36,13.36,1.0 +13.36,15.74,0.177 +13.36,18.43,0.129 +13.36,21.49,0.085 +13.36,25.1,0.056 +13.36,29.17,0.031 +13.36,33.81,0.016 +15.74,15.74,1.0 +15.74,18.43,0.104 +15.74,21.49,0.072 +15.74,25.1,0.049 +15.74,29.17,0.027 +15.74,33.81,0.014 +18.43,18.43,1.0 +18.43,21.49,0.075 +18.43,25.1,0.056 +18.43,29.17,0.032 +18.43,33.81,0.017 +21.49,21.49,1.0 +21.49,25.1,0.062 +21.49,29.17,0.04 +21.49,33.81,0.021 +25.1,25.1,1.0 +25.1,29.17,0.056 +25.1,33.81,0.033 +29.17,29.17,1.0 +29.17,33.81,0.053 +33.81,33.81,1.0 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2bottom.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2bottom.csv new file mode 100644 index 0000000000..353441b4fe --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2bottom.csv @@ -0,0 +1,36 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t7 +#: name: Table 2 bottom +#: description: Parton dijet invariant mass $M_{inv}$ and $A_{LL}$ values with associated uncertainties for the $\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$ topology. +#: data_file: table_2_bottom.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +#: SQRT(S) [GeV],200 +bin,Dijet invariant mass $M_{inv}$ at the parton level [GeV/$c$],Syst +,Syst - +1.0,20.48,0.62,-0.62 +2.0,23.65,0.59,-0.59 +3.0,28.5,0.69,-0.69 +4.0,34.38,0.79,-0.79 +5.0,41.38,0.92,-0.92 +6.0,51.25,1.08,-1.08 +7.0,69.96,1.31,-1.31 + +#: SQRT(S) [GeV],200 +bin,Dijet $M_{inv}/\sqrt{s}$ at the parton level,Syst +,Syst - +1.0,0.1024,0.0031,-0.0031 +2.0,0.1183,0.003,-0.003 +3.0,0.1425,0.0035,-0.0035 +4.0,0.1719,0.004,-0.004 +5.0,0.2069,0.0046,-0.0046 +6.0,0.2563,0.0054,-0.0054 +7.0,0.3498,0.0066,-0.0066 + +#: SQRT(S) [GeV],200 +bin,Double spin asymmetry $A_{LL}$,Stat +,Stat -,Syst +,Syst -,Lumi +,Lumi -,Pol +,Pol - +1.0,0.0067,0.004,-0.004,0.0005,-0.0005,0.0007,-0.0007,6.1%,-6.1% +2.0,0.0024,0.0027,-0.0027,0.0005,-0.0005,0.0007,-0.0007,6.1%,-6.1% +3.0,0.0052,0.0032,-0.0032,0.0006,-0.0006,0.0007,-0.0007,6.1%,-6.1% +4.0,0.011,0.0044,-0.0044,0.0007,-0.0007,0.0007,-0.0007,6.1%,-6.1% +5.0,0.0201,0.0068,-0.0068,0.0009,-0.0009,0.0007,-0.0007,6.1%,-6.1% +6.0,0.024,0.0097,-0.0097,0.0012,-0.0012,0.0007,-0.0007,6.1%,-6.1% +7.0,0.0934,0.0304,-0.0304,0.002,-0.002,0.0007,-0.0007,6.1%,-6.1% + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2top.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2top.csv new file mode 100644 index 0000000000..cb61d55282 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table2top.csv @@ -0,0 +1,36 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t6 +#: name: Table 2 top +#: description: Parton dijet invariant mass $M_{inv}$ and $A_{LL}$ values with associated uncertainties for the $\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$ topology. +#: data_file: table_2_top.yaml +#: keyword observables: ASYM +#: keyword reactions: P P --> JET JET X +#: SQRT(S) [GeV],200 +bin,Dijet invariant mass $M_{inv}$ at the parton level [GeV/$c$],Syst +,Syst - +1.0,20.29,0.53,-0.53 +2.0,23.5,0.61,-0.61 +3.0,28.28,0.66,-0.66 +4.0,34.15,0.78,-0.78 +5.0,40.96,0.89,-0.89 +6.0,50.75,1.03,-1.03 +7.0,69.11,1.31,-1.31 + +#: SQRT(S) [GeV],200 +bin,Dijet $M_{inv}/\sqrt{s}$ at the parton level,Syst +,Syst - +1.0,0.1015,0.0027,-0.0027 +2.0,0.1175,0.0031,-0.0031 +3.0,0.1414,0.0033,-0.0033 +4.0,0.1708,0.0039,-0.0039 +5.0,0.2048,0.0045,-0.0045 +6.0,0.2538,0.0052,-0.0052 +7.0,0.3456,0.0066,-0.0066 + +#: SQRT(S) [GeV],200 +bin,Double spin asymmetry $A_{LL}$,Stat +,Stat -,Syst +,Syst -,Lumi +,Lumi -,Pol +,Pol - +1.0,0.0071,0.0036,-0.0036,0.0009,-0.0009,0.0007,-0.0007,6.1%,-6.1% +2.0,0.0049,0.0028,-0.0028,0.0007,-0.0007,0.0007,-0.0007,6.1%,-6.1% +3.0,0.0017,0.0035,-0.0035,0.0008,-0.0008,0.0007,-0.0007,6.1%,-6.1% +4.0,0.0137,0.0051,-0.0051,0.0009,-0.0009,0.0007,-0.0007,6.1%,-6.1% +5.0,0.0316,0.0081,-0.0081,0.0011,-0.0011,0.0007,-0.0007,6.1%,-6.1% +6.0,0.0232,0.0121,-0.0121,0.0015,-0.0015,0.0007,-0.0007,6.1%,-6.1% +7.0,0.0228,0.0418,-0.0418,0.0033,-0.0033,0.0007,-0.0007,6.1%,-6.1% + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table4SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table4SupplementalMaterial.csv new file mode 100644 index 0000000000..4851f501b0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table4SupplementalMaterial.csv @@ -0,0 +1,130 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t12 +#: name: Table 4 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling inclusive jet measurements with jets in the $|\eta|<0.5$ region and jets in the $0.5<|\eta|<1$ region. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_4_supplemental_material.yaml +#: keyword reactions: P P --> JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($|\eta|<0.5$) [GeV/$c$],Inclusive jet transverse momentum $p_T$ at the parton level ($0.5<|\eta|<1$) [GeV/$c$],Correlation +6.0,6.15,0.019 +6.0,7.34,0.021 +6.0,9.5,0.029 +6.0,11.34,0.033 +6.0,13.25,0.026 +6.0,15.47,0.02 +6.0,18.07,0.018 +6.0,21.16,0.012 +6.0,24.68,0.013 +6.0,28.56,0.009 +6.0,32.9,0.005 +7.31,6.15,0.013 +7.31,7.34,0.015 +7.31,9.5,0.019 +7.31,11.34,0.021 +7.31,13.25,0.017 +7.31,15.47,0.013 +7.31,18.07,0.012 +7.31,21.16,0.008 +7.31,24.68,0.008 +7.31,28.56,0.006 +7.31,32.9,0.003 +9.47,6.15,0.021 +9.47,7.34,0.024 +9.47,9.5,0.037 +9.47,11.34,0.042 +9.47,13.25,0.034 +9.47,15.47,0.027 +9.47,18.07,0.024 +9.47,21.16,0.016 +9.47,24.68,0.017 +9.47,28.56,0.011 +9.47,32.9,0.005 +11.33,6.15,0.019 +11.33,7.34,0.021 +11.33,9.5,0.034 +11.33,11.34,0.039 +11.33,13.25,0.033 +11.33,15.47,0.027 +11.33,18.07,0.024 +11.33,21.16,0.016 +11.33,24.68,0.016 +11.33,28.56,0.01 +11.33,32.9,0.005 +13.36,6.15,0.02 +13.36,7.34,0.022 +13.36,9.5,0.037 +13.36,11.34,0.044 +13.36,13.25,0.038 +13.36,15.47,0.034 +13.36,18.07,0.03 +13.36,21.16,0.021 +13.36,24.68,0.019 +13.36,28.56,0.012 +13.36,32.9,0.006 +15.74,6.15,0.016 +15.74,7.34,0.018 +15.74,9.5,0.03 +15.74,11.34,0.037 +15.74,13.25,0.035 +15.74,15.47,0.033 +15.74,18.07,0.033 +15.74,21.16,0.025 +15.74,24.68,0.021 +15.74,28.56,0.013 +15.74,32.9,0.006 +18.43,6.15,0.019 +18.43,7.34,0.021 +18.43,9.5,0.034 +18.43,11.34,0.041 +18.43,13.25,0.038 +18.43,15.47,0.038 +18.43,18.07,0.041 +18.43,21.16,0.035 +18.43,24.68,0.03 +18.43,28.56,0.019 +18.43,32.9,0.009 +21.49,6.15,0.015 +21.49,7.34,0.017 +21.49,9.5,0.027 +21.49,11.34,0.033 +21.49,13.25,0.03 +21.49,15.47,0.031 +21.49,18.07,0.037 +21.49,21.16,0.038 +21.49,24.68,0.038 +21.49,28.56,0.026 +21.49,32.9,0.013 +25.1,6.15,0.014 +25.1,7.34,0.015 +25.1,9.5,0.024 +25.1,11.34,0.028 +25.1,13.25,0.024 +25.1,15.47,0.024 +25.1,18.07,0.029 +25.1,21.16,0.035 +25.1,24.68,0.042 +25.1,28.56,0.037 +25.1,32.9,0.023 +29.17,6.15,0.009 +29.17,7.34,0.009 +29.17,9.5,0.015 +29.17,11.34,0.017 +29.17,13.25,0.014 +29.17,15.47,0.014 +29.17,18.07,0.017 +29.17,21.16,0.022 +29.17,24.68,0.032 +29.17,28.56,0.04 +29.17,32.9,0.03 +33.81,6.15,0.005 +33.81,7.34,0.005 +33.81,9.5,0.008 +33.81,11.34,0.009 +33.81,13.25,0.008 +33.81,15.47,0.007 +33.81,18.07,0.008 +33.81,21.16,0.01 +33.81,24.68,0.019 +33.81,28.56,0.029 +33.81,32.9,0.035 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table5SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table5SupplementalMaterial.csv new file mode 100644 index 0000000000..af3ef60677 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table5SupplementalMaterial.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t13 +#: name: Table 5 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling inclusive jet measurements with jets in the $0.5<|\eta|<1$ region with dijet measurements with the the $\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_5_supplemental_material.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($0.5<|\eta|<1$) [GeV/$c$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +6.15,20.29,0.013 +6.15,23.5,0.013 +6.15,28.28,0.012 +6.15,34.15,0.008 +6.15,40.96,0.007 +6.15,50.75,0.009 +6.15,69.11,0.006 +7.34,20.29,0.021 +7.34,23.5,0.018 +7.34,28.28,0.014 +7.34,34.15,0.009 +7.34,40.96,0.008 +7.34,50.75,0.01 +7.34,69.11,0.007 +9.5,20.29,0.06 +9.5,23.5,0.056 +9.5,28.28,0.032 +9.5,34.15,0.015 +9.5,40.96,0.012 +9.5,50.75,0.016 +9.5,69.11,0.01 +11.34,20.29,0.063 +11.34,23.5,0.081 +11.34,28.28,0.06 +11.34,34.15,0.024 +11.34,40.96,0.014 +11.34,50.75,0.018 +11.34,69.11,0.012 +13.25,20.29,0.03 +13.25,23.5,0.074 +13.25,28.28,0.083 +13.25,34.15,0.045 +13.25,40.96,0.016 +13.25,50.75,0.014 +13.25,69.11,0.009 +15.47,20.29,0.011 +15.47,23.5,0.043 +15.47,28.28,0.076 +15.47,34.15,0.08 +15.47,40.96,0.036 +15.47,50.75,0.014 +15.47,69.11,0.007 +18.07,20.29,0.01 +18.07,23.5,0.02 +18.07,28.28,0.046 +18.07,34.15,0.078 +18.07,40.96,0.081 +18.07,50.75,0.03 +18.07,69.11,0.007 +21.16,20.29,0.006 +21.16,23.5,0.009 +21.16,28.28,0.02 +21.16,34.15,0.041 +21.16,40.96,0.085 +21.16,50.75,0.08 +21.16,69.11,0.005 +24.68,20.29,0.007 +24.68,23.5,0.009 +24.68,28.28,0.012 +24.68,34.15,0.017 +24.68,40.96,0.042 +24.68,50.75,0.114 +24.68,69.11,0.017 +28.56,20.29,0.005 +28.56,23.5,0.007 +28.56,28.28,0.007 +28.56,34.15,0.007 +28.56,40.96,0.015 +28.56,50.75,0.081 +28.56,69.11,0.068 +32.9,20.29,0.002 +32.9,23.5,0.003 +32.9,28.28,0.003 +32.9,34.15,0.003 +32.9,40.96,0.004 +32.9,50.75,0.027 +32.9,69.11,0.108 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table6SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table6SupplementalMaterial.csv new file mode 100644 index 0000000000..cc47c69a26 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table6SupplementalMaterial.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t14 +#: name: Table 6 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling inclusive jet measurements with jets in the $0.5<|\eta|<1$ region with dijet measurements with the the $\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_6_supplemental_material.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($0.5<|\eta|<1$) [GeV/$c$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +6.15,20.48,0.016 +6.15,23.65,0.015 +6.15,28.5,0.013 +6.15,34.38,0.008 +6.15,41.38,0.007 +6.15,51.25,0.009 +6.15,69.96,0.005 +7.34,20.48,0.02 +7.34,23.65,0.022 +7.34,28.5,0.016 +7.34,34.38,0.009 +7.34,41.38,0.008 +7.34,51.25,0.01 +7.34,69.96,0.005 +9.5,20.48,0.056 +9.5,23.65,0.064 +9.5,28.5,0.042 +9.5,34.38,0.019 +9.5,41.38,0.012 +9.5,51.25,0.016 +9.5,69.96,0.008 +11.34,20.48,0.035 +11.34,23.65,0.076 +11.34,28.5,0.071 +11.34,34.38,0.035 +11.34,41.38,0.016 +11.34,51.25,0.018 +11.34,69.96,0.009 +13.25,20.48,0.015 +13.25,23.65,0.052 +13.25,28.5,0.079 +13.25,34.38,0.063 +13.25,41.38,0.027 +13.25,51.25,0.015 +13.25,69.96,0.007 +15.47,20.48,0.011 +15.47,23.65,0.024 +15.47,28.5,0.06 +15.47,34.38,0.08 +15.47,41.38,0.061 +15.47,51.25,0.023 +15.47,69.96,0.005 +18.07,20.48,0.01 +18.07,23.65,0.013 +18.07,28.5,0.033 +18.07,34.38,0.059 +18.07,41.38,0.088 +18.07,51.25,0.06 +18.07,69.96,0.006 +21.16,20.48,0.006 +21.16,23.65,0.008 +21.16,28.5,0.014 +21.16,34.38,0.027 +21.16,41.38,0.063 +21.16,51.25,0.112 +21.16,69.96,0.011 +24.68,20.48,0.007 +24.68,23.65,0.009 +24.68,28.5,0.01 +24.68,34.38,0.013 +24.68,41.38,0.026 +24.68,51.25,0.114 +24.68,69.96,0.056 +28.56,20.48,0.005 +28.56,23.65,0.006 +28.56,28.5,0.007 +28.56,34.38,0.006 +28.56,41.38,0.009 +28.56,51.25,0.057 +28.56,69.96,0.13 +32.9,20.48,0.002 +32.9,23.65,0.003 +32.9,28.5,0.003 +32.9,34.38,0.002 +32.9,41.38,0.003 +32.9,51.25,0.018 +32.9,69.96,0.122 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table7SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table7SupplementalMaterial.csv new file mode 100644 index 0000000000..e7aa7cc143 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table7SupplementalMaterial.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t15 +#: name: Table 7 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling inclusive jet measurements with jets in the $|\eta|<0.5$ region with dijet measurements with the the $\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_7_supplemental_material.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($|\eta|<0.5$) [GeV/$c$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) = \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +6.0,20.29,0.019 +6.0,23.5,0.02 +6.0,28.28,0.02 +6.0,34.15,0.013 +6.0,40.96,0.011 +6.0,50.75,0.015 +6.0,69.11,0.01 +7.31,20.29,0.024 +7.31,23.5,0.019 +7.31,28.28,0.013 +7.31,34.15,0.008 +7.31,40.96,0.007 +7.31,50.75,0.009 +7.31,69.11,0.006 +9.47,20.29,0.066 +9.47,23.5,0.062 +9.47,28.28,0.036 +9.47,34.15,0.017 +9.47,40.96,0.014 +9.47,50.75,0.018 +9.47,69.11,0.012 +11.33,20.29,0.077 +11.33,23.5,0.098 +11.33,28.28,0.07 +11.33,34.15,0.025 +11.33,40.96,0.013 +11.33,50.75,0.015 +11.33,69.11,0.01 +13.36,20.29,0.042 +13.36,23.5,0.106 +13.36,28.28,0.122 +13.36,34.15,0.068 +13.36,40.96,0.021 +13.36,50.75,0.017 +13.36,69.11,0.011 +15.74,20.29,0.014 +15.74,23.5,0.066 +15.74,28.28,0.12 +15.74,34.15,0.135 +15.74,40.96,0.061 +15.74,50.75,0.019 +15.74,69.11,0.009 +18.43,20.29,0.016 +18.43,23.5,0.033 +18.43,28.28,0.078 +18.43,34.15,0.138 +18.43,40.96,0.149 +18.43,50.75,0.055 +18.43,69.11,0.011 +21.49,20.29,0.013 +21.49,23.5,0.018 +21.49,28.28,0.038 +21.49,34.15,0.075 +21.49,40.96,0.16 +21.49,50.75,0.161 +21.49,69.11,0.011 +25.1,20.29,0.012 +25.1,23.5,0.015 +25.1,28.28,0.02 +25.1,34.15,0.03 +25.1,40.96,0.078 +25.1,50.75,0.236 +25.1,69.11,0.038 +29.17,20.29,0.007 +29.17,23.5,0.009 +29.17,28.28,0.01 +29.17,34.15,0.011 +29.17,40.96,0.024 +29.17,50.75,0.164 +29.17,69.11,0.168 +33.81,20.29,0.004 +33.81,23.5,0.005 +33.81,28.28,0.006 +33.81,34.15,0.005 +33.81,40.96,0.007 +33.81,50.75,0.057 +33.81,69.11,0.259 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table8SupplementalMaterial.csv b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table8SupplementalMaterial.csv new file mode 100644 index 0000000000..73fb408e65 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/rawdata/Table8SupplementalMaterial.csv @@ -0,0 +1,86 @@ +#: table_doi: 10.17182/hepdata.104836.v1/t16 +#: name: Table 8 Supplemental Material +#: description: The correlation matrix for the point-to-point uncertainties coupling inclusive jet measurements with jets in the $|\eta|<0.5$ region with dijet measurements with the the $\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$ topology. The $A_{LL}$ uncertainty contribution of $0.0007$ from uncertainty in the relative luminosity measurement and $6.1\%$ from the beam polarization uncertainty, which are common to all the data points, are separated from the listed values. +#: data_file: table_8_supplemental_material.yaml +#: keyword reactions: P P --> JET X | P P --> JET JET X +#: keyword observables: CORR +#: SQRT(S) [GeV],200 +Inclusive jet transverse momentum $p_T$ at the parton level ($|\eta|<0.5$) [GeV/$c$],Dijet invariant mass $M_{inv}$ at the parton level ($\textrm{sign}(\eta_1) \neq \textrm{sign}(\eta_2)$) [GeV/$c^2$],Correlation +6.0,20.48,0.022 +6.0,23.65,0.021 +6.0,28.5,0.02 +6.0,34.38,0.013 +6.0,41.38,0.011 +6.0,51.25,0.015 +6.0,69.96,0.007 +7.31,20.48,0.027 +7.31,23.65,0.022 +7.31,28.5,0.014 +7.31,34.38,0.008 +7.31,41.38,0.007 +7.31,51.25,0.009 +7.31,69.96,0.004 +9.47,20.48,0.075 +9.47,23.65,0.07 +9.47,28.5,0.042 +9.47,34.38,0.019 +9.47,41.38,0.013 +9.47,51.25,0.018 +9.47,69.96,0.009 +11.33,20.48,0.07 +11.33,23.65,0.103 +11.33,28.5,0.079 +11.33,34.38,0.032 +11.33,41.38,0.014 +11.33,51.25,0.016 +11.33,69.96,0.008 +13.36,20.48,0.031 +13.36,23.65,0.099 +13.36,28.5,0.124 +13.36,34.38,0.082 +13.36,41.38,0.028 +13.36,51.25,0.018 +13.36,69.96,0.008 +15.74,20.48,0.013 +15.74,23.65,0.053 +15.74,28.5,0.111 +15.74,34.38,0.138 +15.74,41.38,0.08 +15.74,51.25,0.024 +15.74,69.96,0.007 +18.43,20.48,0.016 +18.43,23.65,0.027 +18.43,28.5,0.069 +18.43,34.38,0.122 +18.43,41.38,0.156 +18.43,51.25,0.078 +18.43,69.96,0.009 +21.49,20.48,0.013 +21.49,23.65,0.017 +21.49,28.5,0.033 +21.49,34.38,0.063 +21.49,41.38,0.139 +21.49,51.25,0.183 +21.49,69.96,0.013 +25.1,20.48,0.012 +25.1,23.65,0.015 +25.1,28.5,0.019 +25.1,34.38,0.027 +25.1,41.38,0.063 +25.1,51.25,0.226 +25.1,69.96,0.062 +29.17,20.48,0.007 +29.17,23.65,0.009 +29.17,28.5,0.01 +29.17,34.38,0.01 +29.17,41.38,0.02 +29.17,51.25,0.138 +29.17,69.96,0.196 +33.81,20.48,0.004 +33.81,23.65,0.005 +33.81,28.5,0.006 +33.81,34.38,0.004 +33.81,41.38,0.007 +33.81,51.25,0.046 +33.81,69.96,0.248 + diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml new file mode 100644 index 0000000000..e9f0e63bde --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CC.yaml @@ -0,0 +1,572 @@ +definitions: + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2015LUMI + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2015POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc35 +bins: +- lumi: 0.0007 + pol: 1.22e-05 + sys_0: 2.809959437757453e-05 + sys_1: -7.185392731632926e-06 + sys_2: 2.032057491627476e-05 + sys_3: 1.9819369009025838e-05 + sys_4: -2.364871675859988e-05 + sys_5: 8.650219323299149e-05 + sys_6: -2.174034766270273e-05 + sys_7: 4.019382956998368e-05 + sys_8: -2.6847481352734624e-05 + sys_9: 6.102559860998911e-05 + sys_10: 9.151332020142007e-05 + sys_11: -9.403203974284458e-05 + sys_12: 3.825634787164059e-05 + sys_13: -0.00012603378487528342 + sys_14: 0.00020212422029433126 + sys_15: -0.0003717807941914203 + sys_16: 0.000116588625227863 + sys_17: -0.0002296367619210727 + sys_18: 5.6743176030740096e-05 + sys_19: -0.0001312302124088049 + sys_20: -0.0004753312842740866 + sys_21: -0.0011933124320179292 + sys_22: -0.0004372565456283063 + sys_23: -0.0002021157871700671 + sys_24: -0.0008139502948908713 + sys_25: 0.00011838917732219757 + sys_26: 0.00013248180517322575 + sys_27: -0.0004960975183387767 + sys_28: 1.4965574734465321e-05 + sys_29: 0.0005578784953858285 + sys_30: -9.311393813485821e-05 + sys_31: -0.0008378635705710827 + sys_32: 8.273770777404491e-06 + sys_33: -0.00016155422445124023 + sys_34: 0.00015049207022036924 + sys_35: 1.5596687777284e-05 +- lumi: 0.0007 + pol: 3.6599999999999995e-05 + sys_0: 1.8149426066360522e-05 + sys_1: -4.423934412528832e-06 + sys_2: 1.4395689948905659e-05 + sys_3: 1.8355811290465007e-05 + sys_4: -1.7155939576204963e-05 + sys_5: 6.472329017651851e-05 + sys_6: -2.178393001479839e-05 + sys_7: 2.6439683484474728e-05 + sys_8: -1.9500053202074446e-05 + sys_9: 4.717063750854134e-05 + sys_10: 7.310665766034574e-05 + sys_11: -8.053564639801155e-05 + sys_12: 3.0805018179882256e-05 + sys_13: -0.00010226700621847391 + sys_14: 0.00017087625983496359 + sys_15: -0.0003423310799906059 + sys_16: 8.414996352568861e-05 + sys_17: -0.00021135630918570278 + sys_18: 3.086366974430853e-05 + sys_19: -0.00010611478007238274 + sys_20: -0.00042982184062897386 + sys_21: -0.0011236477365984304 + sys_22: -0.00041255768415914804 + sys_23: -0.0001838085751931462 + sys_24: -0.0008244448704981528 + sys_25: 0.00013322279840738318 + sys_26: 5.596533746237118e-05 + sys_27: -0.0001621382057411061 + sys_28: 1.4607266255739876e-05 + sys_29: 1.05451567242284e-05 + sys_30: -2.176751474050312e-05 + sys_31: 0.0012116679252942766 + sys_32: -1.7984430129058662e-05 + sys_33: -0.00028625916889107167 + sys_34: 0.0003965529449374572 + sys_35: 2.4350602387981475e-05 +- lumi: 0.0007 + pol: 0.00020739999999999997 + sys_0: 2.3737686267900512e-05 + sys_1: -5.1348402274832466e-06 + sys_2: 1.8188519894305523e-05 + sys_3: 1.4426767055528131e-05 + sys_4: -2.007081779898205e-05 + sys_5: 6.950843350959866e-05 + sys_6: -1.4275043443782747e-05 + sys_7: 3.5728858010560964e-05 + sys_8: -1.9971486427864997e-05 + sys_9: 4.99856373408251e-05 + sys_10: 7.098032635183504e-05 + sys_11: -6.78766558071543e-05 + sys_12: 3.381818510471825e-05 + sys_13: -0.0001017462986720906 + sys_14: 0.0001613913863272056 + sys_15: -0.0003196402599757852 + sys_16: 1.363891741293072e-05 + sys_17: -0.0002187616434039494 + sys_18: 5.0754248914926635e-06 + sys_19: -8.077638899250048e-05 + sys_20: -0.00033638390508750803 + sys_21: -0.0007709327327589085 + sys_22: -0.00021863260662754016 + sys_23: -5.852975230342423e-05 + sys_24: -0.00045838048053786713 + sys_25: 7.743209692136095e-05 + sys_26: -0.0008559543252754121 + sys_27: 0.0004828690214644966 + sys_28: -2.2686660436506427e-05 + sys_29: 1.2458681910968605e-05 + sys_30: 7.272391214419092e-06 + sys_31: -0.00021019887964111845 + sys_32: -7.1129991636158285e-06 + sys_33: -6.357098171175973e-05 + sys_34: 7.504460058414215e-05 + sys_35: 5.608715537593189e-06 +- lumi: 0.0007 + pol: 0.0002501 + sys_0: 1.937683040766588e-05 + sys_1: -5.396669160663762e-06 + sys_2: 1.4897495063307904e-05 + sys_3: 1.1518787349516082e-05 + sys_4: -1.7337277017991964e-05 + sys_5: 5.794060749041637e-05 + sys_6: -1.2232374813046683e-05 + sys_7: 3.225134943571696e-05 + sys_8: -1.5858074848960698e-05 + sys_9: 4.4256556494805665e-05 + sys_10: 6.467836680618835e-05 + sys_11: -5.4885613291424813e-05 + sys_12: 3.5335917342187895e-05 + sys_13: -0.00010487122828378171 + sys_14: 0.00016092565898699789 + sys_15: -0.00027589049926684227 + sys_16: -1.6256712441390517e-06 + sys_17: -0.00024287672965101292 + sys_18: 5.977245824441434e-06 + sys_19: -0.00010533773300395895 + sys_20: -0.0003230478830797316 + sys_21: -0.0006188374129024658 + sys_22: -0.0001150610534536165 + sys_23: 1.0925562213513696e-05 + sys_24: -0.0003608059886809807 + sys_25: 9.228803433473298e-05 + sys_26: 0.0005615512333141956 + sys_27: 0.0008946172755380109 + sys_28: -6.221841553725663e-05 + sys_29: 0.00010171308643277497 + sys_30: 3.8460913908612004e-05 + sys_31: -0.00018672735494979702 + sys_32: -2.170012654470621e-05 + sys_33: -5.015401758617945e-05 + sys_34: 0.00010863419134059101 + sys_35: 1.4071100325029457e-05 +- lumi: 0.0007 + pol: 0.000427 + sys_0: 2.364590233562442e-05 + sys_1: -6.989083842170735e-06 + sys_2: 1.5776530766100676e-05 + sys_3: 1.080621324964769e-05 + sys_4: -2.2968318026921283e-05 + sys_5: 6.58539842765527e-05 + sys_6: -9.203591558496778e-06 + sys_7: 4.295215472850646e-05 + sys_8: -1.6009509022850107e-05 + sys_9: 6.251039803372007e-05 + sys_10: 9.081987982910272e-05 + sys_11: -4.453339358037737e-05 + sys_12: 5.669728571790954e-05 + sys_13: -0.00018443063466224975 + sys_14: 0.0002334620713272627 + sys_15: -0.0002076074293215407 + sys_16: 1.7075463902623104e-05 + sys_17: -0.0002683983921085173 + sys_18: 6.0578685295159576e-05 + sys_19: -0.0002096669112113343 + sys_20: -0.0003698122689759653 + sys_21: -0.0005131595411738475 + sys_22: -4.730392240625962e-05 + sys_23: 4.7202271836592956e-05 + sys_24: -0.0003586686342205002 + sys_25: 0.00014247372087741018 + sys_26: 9.07388048076826e-05 + sys_27: -0.00016072566223235315 + sys_28: 1.764977307662172e-05 + sys_29: -0.0012033885410498448 + sys_30: 0.00021447275867132382 + sys_31: -0.00039673560909608005 + sys_32: -2.0432565551697755e-05 + sys_33: -9.613573902284681e-05 + sys_34: 0.0002645747926532775 + sys_35: 6.295154143597791e-05 +- lumi: 0.0007 + pol: 0.00027449999999999995 + sys_0: 2.5388244750565634e-05 + sys_1: -9.648660022555425e-06 + sys_2: 1.725728266673761e-05 + sys_3: 1.2119343249863144e-05 + sys_4: -3.257069700876005e-05 + sys_5: 8.397396786221949e-05 + sys_6: -6.161059928617393e-06 + sys_7: 7.249369654381061e-05 + sys_8: -2.2507596571035827e-05 + sys_9: 0.00016225851426990452 + sys_10: 0.00019784780836575665 + sys_11: 6.811866455367594e-06 + sys_12: 6.923938780742184e-05 + sys_13: -0.0003644191471656307 + sys_14: 0.0003488601882700381 + sys_15: -7.988413081927177e-05 + sys_16: -1.950369654015518e-05 + sys_17: -0.00022838473752983098 + sys_18: 5.842042150942091e-05 + sys_19: -0.0003198526740891854 + sys_20: -0.00038526584962616866 + sys_21: -0.0004316978124805003 + sys_22: -6.091793201368487e-05 + sys_23: 2.64166652026038e-05 + sys_24: -0.0005977485448930482 + sys_25: 0.00033117273676790566 + sys_26: 3.3244133461990905e-05 + sys_27: -4.78514476785507e-05 + sys_28: -1.4782237528043642e-06 + sys_29: -9.612033210242234e-05 + sys_30: 3.69380652134341e-07 + sys_31: 0.00015512094758818654 + sys_32: -3.9186489101915314e-05 + sys_33: 0.000975703209172063 + sys_34: -0.0013284682158812148 + sys_35: -0.00018495674223522745 +- lumi: 0.0007 + pol: 0.0011102 + sys_0: 4.632403094116476e-05 + sys_1: -2.233516447738181e-05 + sys_2: 3.0393390967329307e-05 + sys_3: 2.2710258501585905e-05 + sys_4: -7.93294511043506e-05 + sys_5: 0.000228480957739856 + sys_6: 3.277659799820675e-05 + sys_7: 0.00022747726390786438 + sys_8: -0.00013807805635516798 + sys_9: 0.0005026636252844625 + sys_10: 0.0004487724186968814 + sys_11: 0.0002157382155598788 + sys_12: -2.7545708803115317e-05 + sys_13: -0.0005705489319652115 + sys_14: 0.00044853710412763045 + sys_15: 0.00011561411669469581 + sys_16: -0.0002161001549593385 + sys_17: -0.0002609876078982399 + sys_18: -7.303606145754799e-05 + sys_19: -0.0006082000076467789 + sys_20: -0.0007169593629889122 + sys_21: -0.0012395471118820693 + sys_22: -0.0007684668314692085 + sys_23: -0.0006420510158603892 + sys_24: 0.0018279160465979017 + sys_25: -0.0006280977961080022 + sys_26: 1.2473128169371759e-05 + sys_27: -2.130248570938879e-05 + sys_28: -6.478227399489838e-06 + sys_29: -2.1128005414496778e-05 + sys_30: 1.2925159699881355e-05 + sys_31: 4.075025187179643e-05 + sys_32: -3.1562230950504706e-05 + sys_33: 8.113143316257949e-05 + sys_34: -0.0001159991818682499 + sys_35: -3.175517942454168e-05 +- lumi: 0.0007 + pol: 0.0013419999999999999 + sys_0: 8.011012824062248e-05 + sys_1: -5.796013995421985e-05 + sys_2: 6.397314012512733e-05 + sys_3: 5.296944282509577e-05 + sys_4: -0.00020724154008688634 + sys_5: 0.0007635092953233615 + sys_6: 0.0003154819573537301 + sys_7: 0.0006101871457360746 + sys_8: -0.0006646965157433418 + sys_9: 0.0008143388034978547 + sys_10: 0.0005161466573771503 + sys_11: 0.0009152868619020572 + sys_12: -0.0005483211579918866 + sys_13: -0.0008898470322617161 + sys_14: 0.001060948872320649 + sys_15: -0.002714328702068823 + sys_16: 0.002372118424256617 + sys_17: 0.00033039606666010886 + sys_18: 0.00032156629377201563 + sys_19: 0.0005823407624898847 + sys_20: 0.00029672906544411977 + sys_21: 0.00023434658986785524 + sys_22: 4.589635079525321e-05 + sys_23: -2.2072093590782424e-05 + sys_24: 0.00023795180697767552 + sys_25: -8.673254562210834e-05 + sys_26: 4.4860339113215005e-06 + sys_27: -9.56370070315141e-06 + sys_28: -3.3174779236945243e-06 + sys_29: -3.0393613874223474e-06 + sys_30: 7.241756378687385e-06 + sys_31: 1.6101184693980498e-05 + sys_32: -1.3921079553079474e-05 + sys_33: 2.8146228439132703e-05 + sys_34: -3.020100225638923e-05 + sys_35: -9.506727341716175e-06 +- lumi: 0.0007 + pol: 0.0011955999999999998 + sys_0: 0.0003727712758895778 + sys_1: -0.00020642812158274987 + sys_2: 0.000412859817936704 + sys_3: -6.531368769914884e-05 + sys_4: -0.0004152642414604761 + sys_5: 0.0020329539525521536 + sys_6: 0.0012809104864390352 + sys_7: 0.001587869471721034 + sys_8: -0.002750688437951095 + sys_9: 0.0010408234292963593 + sys_10: 0.0019297968539493393 + sys_11: -0.005568439811563932 + sys_12: 0.000827080982249373 + sys_13: 0.00026053785598724157 + sys_14: -2.877231165546006e-05 + sys_15: -0.00016718429931133303 + sys_16: 0.00019170585119502069 + sys_17: 4.8594873402738034e-05 + sys_18: 5.132169309899809e-05 + sys_19: 9.010428786676163e-05 + sys_20: 6.575546387418727e-05 + sys_21: 6.90218094152791e-05 + sys_22: 1.0618847109918516e-05 + sys_23: -8.776136943731652e-06 + sys_24: 6.807872007100107e-05 + sys_25: -1.8561843884851213e-05 + sys_26: 1.3463601880381797e-06 + sys_27: -3.3547985639216735e-06 + sys_28: -1.8551466900077834e-06 + sys_29: 8.912348381009338e-07 + sys_30: 3.6412448299252004e-06 + sys_31: 5.859390331089284e-06 + sys_32: -6.9428330542424095e-06 + sys_33: 8.710171215224049e-06 + sys_34: -4.678041920993092e-06 + sys_35: -3.185370040237061e-06 +- lumi: 0.0007 + pol: 0.0021227999999999998 + sys_0: 0.0024930277547264477 + sys_1: -0.0003769892285984547 + sys_2: 0.0024116798545195718 + sys_3: -0.0018579209195307422 + sys_4: 0.00012484530309271824 + sys_5: 0.00915874530911133 + sys_6: -0.007463776468033819 + sys_7: -0.0020287753389202786 + sys_8: 0.00192546706100331 + sys_9: 2.1830235380458572e-05 + sys_10: 0.0001251284567783781 + sys_11: -0.00039420305439264195 + sys_12: 0.00013086711070995556 + sys_13: 3.127482770920754e-05 + sys_14: 1.9043439541967036e-06 + sys_15: -3.94042101127698e-05 + sys_16: 4.5236302726333434e-05 + sys_17: 1.2030522753580578e-05 + sys_18: 1.0979819996922476e-05 + sys_19: 2.102386500700968e-05 + sys_20: 1.775019157855965e-05 + sys_21: 2.1588540440093262e-05 + sys_22: 4.157127569815916e-06 + sys_23: -1.5467075000608138e-06 + sys_24: 1.834354096602947e-05 + sys_25: -3.579361140938578e-06 + sys_26: 3.2149881077409185e-07 + sys_27: -9.802830173551652e-07 + sys_28: -5.674484518726649e-07 + sys_29: 5.808389272407738e-07 + sys_30: 1.020195396967078e-06 + sys_31: 1.5391014504256256e-06 + sys_32: -1.8362641411309277e-06 + sys_33: 2.1177790813195717e-06 + sys_34: -4.3959865737232015e-07 + sys_35: -8.151484736740975e-07 +- lumi: 0.0007 + pol: 0.0031414999999999998 + sys_0: 0.008930830278231645 + sys_1: -0.0005044354604341876 + sys_2: 0.010587200186555056 + sys_3: 0.01943810448788214 + sys_4: -0.0017367920892882843 + sys_5: -0.00010201992715172124 + sys_6: -0.0006085662253752182 + sys_7: -0.00018643727054909841 + sys_8: 0.0002769568274062023 + sys_9: 1.0414908581753627e-05 + sys_10: 2.6125335174242363e-05 + sys_11: -8.182525906402096e-05 + sys_12: 2.638300327262256e-05 + sys_13: 7.524233509329551e-06 + sys_14: -3.7876535581187026e-07 + sys_15: -5.304077803905228e-06 + sys_16: 7.431396223608688e-06 + sys_17: 2.92882970637657e-06 + sys_18: 1.614757220531454e-06 + sys_19: 4.507411135769528e-06 + sys_20: 4.5482427608144205e-06 + sys_21: 6.080764607828331e-06 + sys_22: 1.691053650065729e-06 + sys_23: 1.4595716631921798e-07 + sys_24: 3.812365408183043e-06 + sys_25: -4.950626203585459e-07 + sys_26: 8.349609149511641e-08 + sys_27: -2.3467452087233907e-07 + sys_28: -1.0211679139057085e-07 + sys_29: 1.7650550093622654e-07 + sys_30: 1.5912010984403719e-07 + sys_31: 3.056421312460556e-07 + sys_32: -3.404629164432848e-07 + sys_33: 4.204781122533761e-07 + sys_34: 9.813384612651571e-08 + sys_35: -1.1323072132199317e-07 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml new file mode 100644 index 0000000000..8d99002b25 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_1JET_200GEV/uncertainties_CF.yaml @@ -0,0 +1,572 @@ +definitions: + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2015LUMI + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2015POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc35 +bins: +- lumi: 0.0007 + pol: 1.2810000000000001e-05 + sys_0: 1.285223974365419e-05 + sys_1: -3.862854872078084e-06 + sys_2: 8.150376962433087e-06 + sys_3: -3.483254100883933e-07 + sys_4: -1.237736679770237e-05 + sys_5: 2.386427223662891e-05 + sys_6: 3.3887678604091973e-06 + sys_7: 2.1277189305953603e-05 + sys_8: -2.195628790734498e-06 + sys_9: 1.615036594896178e-05 + sys_10: 1.920636279819397e-05 + sys_11: -3.332902170211824e-06 + sys_12: 2.0127948125865605e-05 + sys_13: -2.3169161505744384e-05 + sys_14: 3.133870227729763e-05 + sys_15: -4.0063452321581536e-05 + sys_16: -2.3271518173226584e-05 + sys_17: -5.259775748999714e-05 + sys_18: 1.8283083945297095e-05 + sys_19: 1.3356998325156546e-06 + sys_20: -3.7845120798363494e-05 + sys_21: -3.481321287736566e-05 + sys_22: 2.1170572301420632e-05 + sys_23: 3.5127182071760884e-05 + sys_24: -7.483870489011861e-06 + sys_25: -6.924805969182493e-05 + sys_26: -7.787584626612572e-07 + sys_27: -5.76236362256171e-06 + sys_28: -8.049679826648725e-05 + sys_29: 2.745901800444975e-05 + sys_30: 0.00015385993712531453 + sys_31: 3.123438330297301e-05 + sys_32: 0.00039637906803887286 + sys_33: -0.0002976466102130916 + sys_34: -0.0004491161211109203 + sys_35: 0.0015975727575618594 +- lumi: 0.0007 + pol: 5.5509999999999995e-05 + sys_0: 1.6057684092139258e-05 + sys_1: -3.601491685525938e-06 + sys_2: 8.941219814439445e-06 + sys_3: -1.0096349204975345e-06 + sys_4: -1.3812508453407938e-05 + sys_5: 2.8219727929312756e-05 + sys_6: 5.3797688345805834e-06 + sys_7: 2.5269444185676645e-05 + sys_8: -4.880100598848979e-06 + sys_9: 2.042895458419939e-05 + sys_10: 2.360161420336143e-05 + sys_11: -3.0967414814763035e-06 + sys_12: 2.2051476198861813e-05 + sys_13: -3.0133145799158175e-05 + sys_14: 4.022730728401975e-05 + sys_15: -5.778205434989625e-05 + sys_16: -3.3573678525596656e-05 + sys_17: -7.763446256768089e-05 + sys_18: 7.806224144913355e-06 + sys_19: 1.9476867958196844e-06 + sys_20: -5.282210817371301e-05 + sys_21: -4.930201178199024e-05 + sys_22: 3.523885577184821e-05 + sys_23: 6.33709289401045e-05 + sys_24: -1.090215539571636e-07 + sys_25: -7.618710144405932e-05 + sys_26: 7.668845439618003e-07 + sys_27: -1.673308900683324e-06 + sys_28: -4.36254087407854e-05 + sys_29: 1.1942945128805624e-05 + sys_30: 7.379911532079111e-05 + sys_31: 1.1097213340754331e-05 + sys_32: 0.0018560916981537918 + sys_33: 0.00038813923620466815 + sys_34: 0.0002710295600312309 + sys_35: -0.00024561832143300084 +- lumi: 0.0007 + pol: 5.1240000000000004e-05 + sys_0: 1.5425709267569812e-05 + sys_1: -4.525850117947641e-06 + sys_2: 9.321142600835634e-06 + sys_3: -5.046417309826194e-07 + sys_4: -1.426741357360373e-05 + sys_5: 2.9799551825637255e-05 + sys_6: 4.634425181522115e-06 + sys_7: 2.5176603670615524e-05 + sys_8: -5.306106059811315e-06 + sys_9: 2.0095286279757753e-05 + sys_10: 2.3393568156301887e-05 + sys_11: -3.7182989563727932e-06 + sys_12: 2.2665826195247915e-05 + sys_13: -3.29187285072527e-05 + sys_14: 4.777054039344982e-05 + sys_15: -7.61238082808522e-05 + sys_16: -5.828835528127942e-05 + sys_17: -9.948326080512265e-05 + sys_18: -1.213876183233262e-05 + sys_19: 2.299318521169646e-06 + sys_20: -5.723459159215817e-05 + sys_21: -3.0062025310338624e-05 + sys_22: 6.220369833320895e-05 + sys_23: 7.933720901677079e-05 + sys_24: 2.101350855360452e-05 + sys_25: -3.054640020655776e-05 + sys_26: 1.0959273342590644e-05 + sys_27: 6.47001707457454e-05 + sys_28: 0.0012234169769303447 + sys_29: -7.991306770076882e-06 + sys_30: -0.00016968182524960154 + sys_31: -9.782656031600185e-06 + sys_32: 0.00011571574736373265 + sys_33: -5.072922113185092e-05 + sys_34: -5.364670582419901e-05 + sys_35: 9.605675830598421e-05 +- lumi: 0.0007 + pol: 0.00020313 + sys_0: 2.111835504260543e-05 + sys_1: -5.961823951750334e-06 + sys_2: 1.1827218058841966e-05 + sys_3: -1.106349750242994e-06 + sys_4: -1.9338998960613666e-05 + sys_5: 3.886403148319452e-05 + sys_6: 6.101515043685867e-06 + sys_7: 3.313112142561751e-05 + sys_8: -7.481255869424059e-06 + sys_9: 2.7903072755436987e-05 + sys_10: 3.5329307157540044e-05 + sys_11: -5.243136020513351e-06 + sys_12: 3.008597223689683e-05 + sys_13: -5.730754997641691e-05 + sys_14: 8.286276024217568e-05 + sys_15: -7.414720683753734e-05 + sys_16: -4.320332026622168e-05 + sys_17: -0.00015708867257591483 + sys_18: -8.571674791870129e-07 + sys_19: -3.485022089129842e-05 + sys_20: -0.00010477265242178917 + sys_21: -2.3061049383154577e-05 + sys_22: 0.00011610726534474499 + sys_23: 0.00011244827057188676 + sys_24: 3.508658466684369e-05 + sys_25: -1.5340250052121433e-05 + sys_26: 1.3493954971573253e-05 + sys_27: 2.4495848656012216e-05 + sys_28: -0.00016626157785700857 + sys_29: -0.0002097267052656691 + sys_30: -0.001384406821235923 + sys_31: -2.0728667395293437e-05 + sys_32: 0.00013249632379304385 + sys_33: -6.601013085580339e-05 + sys_34: -3.2645999262283165e-05 + sys_35: 0.00013577252574687641 +- lumi: 0.0007 + pol: 0.00014518 + sys_0: 2.0675202260269935e-05 + sys_1: -6.696986196434674e-06 + sys_2: 1.204702934795447e-05 + sys_3: 1.0390605388744996e-06 + sys_4: -1.9623194068498713e-05 + sys_5: 4.185444243315913e-05 + sys_6: 5.537119119515644e-06 + sys_7: 3.958261258496471e-05 + sys_8: -6.757720790114465e-06 + sys_9: 4.173942020298349e-05 + sys_10: 6.573454165523849e-05 + sys_11: 2.292337359810742e-06 + sys_12: 4.3610408672702596e-05 + sys_13: -0.00011655307280171247 + sys_14: 0.0001509439518311608 + sys_15: -3.9579376642465814e-05 + sys_16: -3.607442798285155e-05 + sys_17: -0.00017629469902999731 + sys_18: 4.0849307298704476e-05 + sys_19: -0.00012757117739127765 + sys_20: -0.00014138674155569398 + sys_21: 2.8948824527280363e-05 + sys_22: 0.00017808726122148382 + sys_23: 0.00012019840598521374 + sys_24: 2.581947550466835e-05 + sys_25: 3.3138727880038584e-05 + sys_26: 9.152542915004433e-06 + sys_27: 4.9903108979816506e-06 + sys_28: -3.827996210006749e-05 + sys_29: -4.5171819951341896e-05 + sys_30: 6.421529273653664e-05 + sys_31: 4.345550428345773e-06 + sys_32: 0.0003825505259469543 + sys_33: -0.0014099698476642323 + sys_34: -0.000880433869080994 + sys_35: -0.0005597635335845922 +- lumi: 0.0007 + pol: 0.00013054 + sys_0: 2.2686915457829096e-05 + sys_1: -7.317597007040106e-06 + sys_2: 1.3160650517625648e-05 + sys_3: 2.9419735605104256e-06 + sys_4: -2.9709742397722466e-05 + sys_5: 6.44248547037572e-05 + sys_6: 1.6067626688573048e-06 + sys_7: 7.351757258941668e-05 + sys_8: -2.4074885678267756e-05 + sys_9: 0.00011625546656451912 + sys_10: 0.0001740769203881293 + sys_11: 4.733781498201458e-05 + sys_12: 4.950354140433527e-05 + sys_13: -0.0002754299049465634 + sys_14: 0.00024799705743984684 + sys_15: 3.8658934569814036e-05 + sys_16: -8.872601657046061e-05 + sys_17: -0.0001813278559595234 + sys_18: 5.498525145125015e-05 + sys_19: -0.0002782262224667798 + sys_20: -0.00017766561084092634 + sys_21: 0.00019091657045969016 + sys_22: 0.00035677934397300854 + sys_23: 0.00025898116061938474 + sys_24: -0.0007217929457675095 + sys_25: -0.002299955113082285 + sys_26: 4.878361475830814e-06 + sys_27: -2.001298121119027e-06 + sys_28: -1.4360961016360165e-05 + sys_29: -1.6130671310470476e-05 + sys_30: 2.0994115907796764e-05 + sys_31: 5.207927631189154e-06 + sys_32: -8.543982251031059e-05 + sys_33: 5.716764400499841e-05 + sys_34: -5.1312687328924034e-05 + sys_35: -4.855251906395146e-05 +- lumi: 0.0007 + pol: 0.0006960099999999999 + sys_0: 3.5738555944694254e-05 + sys_1: -1.5917190927378952e-05 + sys_2: 2.3353095663833054e-05 + sys_3: 8.050417843947248e-06 + sys_4: -5.86382687396931e-05 + sys_5: 0.00017224115563288858 + sys_6: 1.4799945227157132e-05 + sys_7: 0.00022245683877536107 + sys_8: -0.00014458009654551358 + sys_9: 0.00037229409262537423 + sys_10: 0.0003544794511471884 + sys_11: 0.00023580618217840295 + sys_12: -3.2209350400685866e-05 + sys_13: -0.0005509990029404628 + sys_14: 0.00041114541854045134 + sys_15: 0.000528166085947224 + sys_16: -0.0006764297525016664 + sys_17: -0.001296351982860125 + sys_18: 0.0025631381820355537 + sys_19: 0.0019919938086019806 + sys_20: 0.00022006613991167886 + sys_21: -0.000129958317938841 + sys_22: -8.365614770035166e-05 + sys_23: -5.5395976884051123e-05 + sys_24: 7.952820623372875e-05 + sys_25: -4.8218719755114414e-05 + sys_26: 1.923886869335027e-06 + sys_27: -2.958469918156698e-06 + sys_28: -6.58569748485641e-06 + sys_29: -3.3154750912697345e-06 + sys_30: 1.0670483395209834e-05 + sys_31: 4.432759307986511e-06 + sys_32: -2.5762040277922556e-05 + sys_33: 2.1849375777802637e-05 + sys_34: -1.557657116980189e-05 + sys_35: -1.4910863267382842e-05 +- lumi: 0.0007 + pol: 0.0007490799999999998 + sys_0: 5.207549015037195e-05 + sys_1: -4.573512819999964e-05 + sys_2: 6.781126356853113e-05 + sys_3: 2.0184706664707343e-05 + sys_4: -0.0001479092787615579 + sys_5: 0.0005858399070605129 + sys_6: 0.00021026504049237026 + sys_7: 0.0006181087873216847 + sys_8: -0.0006802530789416085 + sys_9: 0.0007946133564753306 + sys_10: 0.000502201668031044 + sys_11: 0.0016969370201710334 + sys_12: 0.005279905010325694 + sys_13: 0.0010073908767744841 + sys_14: -7.17809202134433e-05 + sys_15: -0.00018741636363926584 + sys_16: 0.0001702829849509456 + sys_17: 2.6283999953943916e-05 + sys_18: 3.9042964667243354e-05 + sys_19: 8.295811103181216e-05 + sys_20: 2.190589782050955e-05 + sys_21: -9.266624789250637e-06 + sys_22: -9.887124941424196e-06 + sys_23: -1.4123803872499664e-05 + sys_24: 3.2429169853850166e-05 + sys_25: -1.3108964250986156e-05 + sys_26: 4.800641311693095e-07 + sys_27: -1.561222785002972e-06 + sys_28: -2.534893761025201e-06 + sys_29: 6.023984114974349e-07 + sys_30: 3.6801598030836423e-06 + sys_31: 2.2035080622288806e-06 + sys_32: -8.929407400705548e-06 + sys_33: 7.4683560697751666e-06 + sys_34: -2.7366473166153918e-06 + sys_35: -4.156174717466502e-06 +- lumi: 0.0007 + pol: 0.00125477 + sys_0: 0.0002621698363592479 + sys_1: -0.0002308425005531879 + sys_2: 0.0005439942971856746 + sys_3: -0.0001629306353168326 + sys_4: -0.0002819901950622355 + sys_5: 0.002115699071514149 + sys_6: 0.0021510708522020066 + sys_7: 0.0069306184259284795 + sys_8: 0.006387557377611017 + sys_9: -0.0005762915169987481 + sys_10: 4.4296319137657094e-05 + sys_11: -0.0004367117349764881 + sys_12: 0.0001213474552510949 + sys_13: 6.307630965107302e-05 + sys_14: -8.76856675694154e-06 + sys_15: -3.842712006714301e-05 + sys_16: 4.696816241725876e-05 + sys_17: 1.4920052703246663e-05 + sys_18: 8.6168673773297e-06 + sys_19: 2.0292261029837205e-05 + sys_20: 1.2462477026507097e-05 + sys_21: 6.699286211773008e-06 + sys_22: -2.479491066604267e-06 + sys_23: -5.325156751393041e-06 + sys_24: 9.947334932876608e-06 + sys_25: -7.561531945856727e-07 + sys_26: 1.5885613200720402e-07 + sys_27: -7.655455780631961e-07 + sys_28: -1.1380393315349312e-06 + sys_29: 1.0318226570139057e-06 + sys_30: 1.956347839173489e-06 + sys_31: 1.2615779935026349e-06 + sys_32: -4.266799513880128e-06 + sys_33: 2.533182458724038e-06 + sys_34: 1.5038675121658114e-06 + sys_35: -1.3996797265160816e-06 +- lumi: 0.0007 + pol: 0.00324154 + sys_0: 0.001694979844524648 + sys_1: -0.0007059136103654653 + sys_2: 0.002921005256194737 + sys_3: -0.0033275445745681153 + sys_4: -0.017325010555937898 + sys_5: -0.0013794219016511138 + sys_6: -0.0006795894636556391 + sys_7: -0.0002676644275423033 + sys_8: 0.000336291496965905 + sys_9: -2.3949354547415492e-05 + sys_10: 2.1202729166135035e-05 + sys_11: -8.054948910198334e-05 + sys_12: 2.5339733559674375e-05 + sys_13: 1.1838807003139507e-05 + sys_14: -2.921239790202044e-06 + sys_15: -5.974423571244644e-06 + sys_16: 1.0278365429950377e-05 + sys_17: 5.013015002834768e-06 + sys_18: 1.2956403304494049e-06 + sys_19: 4.626172246075433e-06 + sys_20: 4.4855307354330844e-06 + sys_21: 3.1941359328582955e-06 + sys_22: -6.758811659398594e-07 + sys_23: -1.1124446186484344e-06 + sys_24: 1.9249169829713778e-06 + sys_25: 6.363479203913497e-07 + sys_26: 1.958383414364181e-08 + sys_27: -1.3403880105142416e-07 + sys_28: -3.447999003198934e-07 + sys_29: 3.860757286009122e-07 + sys_30: 6.825781647556457e-07 + sys_31: 2.638830971437584e-07 + sys_32: -1.2209453736175658e-06 + sys_33: 4.786839287191819e-07 + sys_34: 7.647153417042092e-07 + sys_35: -3.921951148811907e-07 +- lumi: 0.0007 + pol: 0.0014127599999999999 + sys_0: 0.012331020607674624 + sys_1: -0.031529556662290556 + sys_2: -0.011371028884111926 + sys_3: 0.0012226741838805577 + sys_4: -0.00024518806955623964 + sys_5: -4.9386986222864934e-05 + sys_6: -0.0001384345449274311 + sys_7: -4.256767028385578e-05 + sys_8: 6.361724154609152e-05 + sys_9: -1.7190192735098968e-06 + sys_10: 2.8770642342247687e-06 + sys_11: -1.188553953623915e-05 + sys_12: 4.041053649290636e-06 + sys_13: 2.343164445136635e-06 + sys_14: -6.173035258736877e-07 + sys_15: -3.9726630914759515e-08 + sys_16: 7.513635311704876e-07 + sys_17: 7.548770803456711e-07 + sys_18: -1.594079504652319e-07 + sys_19: 5.362392802177541e-07 + sys_20: 8.207005250570114e-07 + sys_21: 9.119120642731183e-07 + sys_22: 1.0242785585505468e-07 + sys_23: -1.0127228138332318e-07 + sys_24: 1.2423244954531212e-07 + sys_25: 2.0616022769452172e-07 + sys_26: -2.7187395489441307e-08 + sys_27: -1.5800123345631692e-09 + sys_28: -5.97458953517806e-08 + sys_29: 9.891048794493751e-08 + sys_30: 1.216510795388191e-07 + sys_31: 6.430903620001199e-08 + sys_32: -1.8781384964506675e-07 + sys_33: 8.320391742769609e-08 + sys_34: 2.3072498123408804e-07 + sys_35: -2.8885604034905375e-08 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_OS.yaml new file mode 100644 index 0000000000..7fcb4963f4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_OS.yaml @@ -0,0 +1,8 @@ +data_central: +- 0.0067 +- 0.0024 +- 0.0052 +- 0.011 +- 0.0201 +- 0.024 +- 0.0934 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_SS.yaml new file mode 100644 index 0000000000..66487c6ce3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/data_SS.yaml @@ -0,0 +1,8 @@ +data_central: +- 0.0071 +- 0.0049 +- 0.0017 +- 0.0137 +- 0.0316 +- 0.0232 +- 0.0228 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_OS.yaml new file mode 100644 index 0000000000..4e30f535e0 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_OS.yaml @@ -0,0 +1,85 @@ +bins: +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 21.1 + mid: 20.48 + min: 19.86 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 24.24 + mid: 23.65 + min: 23.06 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 29.19 + mid: 28.5 + min: 27.81 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 35.17 + mid: 34.38 + min: 33.59 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 42.300000000000004 + mid: 41.38 + min: 40.46 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 52.33 + mid: 51.25 + min: 50.17 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 71.27 + mid: 69.96 + min: 68.64999999999999 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_SS.yaml new file mode 100644 index 0000000000..c185447fb1 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/kinematics_SS.yaml @@ -0,0 +1,85 @@ +bins: +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 20.82 + mid: 20.29 + min: 19.759999999999998 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 24.11 + mid: 23.5 + min: 22.89 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 28.94 + mid: 28.28 + min: 27.62 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 34.93 + mid: 34.15 + min: 33.37 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 41.85 + mid: 40.96 + min: 40.07 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 51.78 + mid: 50.75 + min: 49.72 +- abs_eta_1: + max: 0.8 + mid: 0.4 + min: 0.0 + abs_eta_2: + max: 0.8 + mid: 0.4 + min: 0.0 + m_jj: + max: 70.42 + mid: 69.11 + min: 67.8 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/metadata.yaml new file mode 100644 index 0000000000..8457a92e91 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/metadata.yaml @@ -0,0 +1,92 @@ +setname: "STAR_2015_2JET_MIDRAP_200GEV" + +nnpdf_metadata: + experiment: "STAR" + nnpdf31_process: "DIJET" + +arXiv: + url: https://arxiv.org/abs/2103.05571 +iNSPIRE: + url: "https://inspirehep.net/literature/1850855" +hepdata: + url: "https://www.hepdata.net/record/ins1850855" + version: 1 + +version: 1 +version_comment: "Initial implementation" + +implemented_observables: + - observable: + { + description: 'ALL as function of $M_{inv}$, opposite sign $\eta$ topology', + label: "$A_{LL}$", + units: "", + } + observable_name: OS-ALL + process_type: DIJET_POL + ndata: 7 + tables: [2] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_OS.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_OS.yaml + data_uncertainties: + - uncertainties_OS.yaml + plotting: + dataset_label: 'STAR 200 GeV (2015) DIJET $A_{LL}$, opposite sign $\eta$ topology' + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2015_2JET_MIDRAP_200GEV_OS-ALL-POL + - - STAR_2015_2JET_MIDRAP_200GEV_OS-ALL-UNPOL + operation: "ratio" + - observable: + { + description: 'ALL as function of $M_{inv}$, same sign $\eta$ topology', + label: "$A_{LL}$", + units: "", + } + observable_name: SS-ALL + process_type: DIJET_POL + ndata: 7 + tables: [2] + kinematics: + variables: + m_jj: { description: "dijet mass", label: "$m_{jj}$", units: "GeV" } + # sqrts: + # { + # description: "center of mass energy", + # label: r"$\sqrt(s)$", + # units: "GeV", + # } + abs_eta_1: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + abs_eta_2: { description: "abs eta jet", label: r"$|\eta_j|$", units: "" } + file: kinematics_SS.yaml + kinematic_coverage: [m_jj, abs_eta_1, abs_eta_2] + data_central: data_SS.yaml + data_uncertainties: + - uncertainties_SS.yaml + plotting: + dataset_label: 'STAR 200 GeV (2015) DIJET $A_{LL}$, same sign $\eta$ topology' + kinematics_override: identity + plot_x: m_jj + x_scale: log + y_label: "$A_{LL}$" + theory: + FK_tables: + - - STAR_2015_2JET_MIDRAP_200GEV_SS-ALL-POL + - - STAR_2015_2JET_MIDRAP_200GEV_SS-ALL-UNPOL + operation: "ratio" diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml new file mode 100644 index 0000000000..9099d415c4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_OS.yaml @@ -0,0 +1,420 @@ +definitions: + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2015LUMI + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2015POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc35 +bins: +- lumi: 0.0007 + pol: 0.00040869999999999996 + sys_0: 2.4205120959673334e-05 + sys_1: -5.444190877463483e-06 + sys_2: 1.5722791645983914e-05 + sys_3: -6.00136111950355e-07 + sys_4: -2.1523535174843234e-05 + sys_5: 4.927704250451052e-05 + sys_6: 8.726953624519251e-06 + sys_7: 4.152523004109835e-05 + sys_8: -1.554948658764077e-05 + sys_9: 3.8864479998395915e-05 + sys_10: 5.071407727323686e-05 + sys_11: -1.6060393426230818e-05 + sys_12: 3.870221739166212e-05 + sys_13: -0.00010852752234012185 + sys_14: 0.0002697387518753302 + sys_15: -0.0024825800314653757 + sys_16: -0.0030871425533248046 + sys_17: 0.0006173926551777016 + sys_18: -8.851627347014294e-05 + sys_19: 7.787109442314204e-05 + sys_20: 0.0001828028173424944 + sys_21: 0.00016234822259028216 + sys_22: 7.300832313234382e-06 + sys_23: -2.014553836726235e-05 + sys_24: 4.7556622120913694e-05 + sys_25: 5.529234832500124e-06 + sys_26: 6.532877411333795e-06 + sys_27: -2.745015935547167e-05 + sys_28: -1.7233455643885712e-05 + sys_29: 6.436491656599522e-06 + sys_30: 1.566619909507939e-05 + sys_31: 6.08903312151212e-06 + sys_32: -2.838037640713458e-05 + sys_33: 1.4515999587259596e-05 + sys_34: -4.431790318334802e-06 + sys_35: -1.1143495479759462e-05 +- lumi: 0.0007 + pol: 0.00014639999999999998 + sys_0: 2.2711268975888834e-05 + sys_1: -5.07405519977087e-06 + sys_2: 1.2522827433063763e-05 + sys_3: -1.0245977596970578e-06 + sys_4: -1.6983266711967087e-05 + sys_5: 4.066738752219934e-05 + sys_6: 6.920553447401831e-06 + sys_7: 3.3414929658566534e-05 + sys_8: -1.1545289653403e-05 + sys_9: 3.159887092380475e-05 + sys_10: 3.8151337652350525e-05 + sys_11: -8.494818690307794e-06 + sys_12: 2.3975958024131946e-05 + sys_13: -6.256980103844092e-05 + sys_14: 9.30216053060881e-05 + sys_15: -0.00010990752732367705 + sys_16: -2.978439392791941e-05 + sys_17: -0.00016348127045161668 + sys_18: 4.140573799647448e-05 + sys_19: -8.039901847645031e-05 + sys_20: -0.000290989674852556 + sys_21: -0.0005905563323203709 + sys_22: 2.5539979523993916e-05 + sys_23: 0.002606137754088265 + sys_24: 0.00045136082408345516 + sys_25: 0.00010751631316426118 + sys_26: -9.373605061657642e-06 + sys_27: -5.414635363984558e-05 + sys_28: -2.7591089002936972e-05 + sys_29: 8.44143490569067e-05 + sys_30: 5.3763530600025844e-05 + sys_31: 3.7225470538197e-05 + sys_32: -8.679986426792194e-05 + sys_33: 4.656417629839125e-05 + sys_34: 7.93522213473708e-05 + sys_35: 3.686824621160096e-06 +- lumi: 0.0007 + pol: 0.00031719999999999996 + sys_0: 2.7734786152907583e-05 + sys_1: -7.155066555136723e-06 + sys_2: 1.894837894567719e-05 + sys_3: 1.3477200517147243e-07 + sys_4: -2.4206304042848947e-05 + sys_5: 5.682175969281097e-05 + sys_6: 1.0223412452862325e-05 + sys_7: 4.94135469091005e-05 + sys_8: -2.1214830533916953e-05 + sys_9: 5.166668106698138e-05 + sys_10: 7.100198281326451e-05 + sys_11: -6.213846782999133e-06 + sys_12: 5.7648645170736626e-05 + sys_13: -0.0001308495813146563 + sys_14: 0.00021752692741649858 + sys_15: -0.00026465156102284637 + sys_16: -1.4971526449104612e-05 + sys_17: -0.0004760637418264583 + sys_18: 0.0003301068595766301 + sys_19: -0.00017294103247516413 + sys_20: -0.0028546908805488626 + sys_21: 0.0013554652046465629 + sys_22: 4.7792672538380956e-05 + sys_23: -4.6190769084001484e-05 + sys_24: 1.0799700071329045e-05 + sys_25: 0.00022884762900159393 + sys_26: -1.6298982379822454e-05 + sys_27: -1.966849664614637e-05 + sys_28: -9.242648469114673e-06 + sys_29: 9.112921034845045e-05 + sys_30: 2.931085641271736e-05 + sys_31: 2.4788722957999453e-05 + sys_32: -4.232693392362559e-05 + sys_33: 9.146922149309855e-07 + sys_34: 0.00015494175016605036 + sys_35: 3.0820659857645093e-05 +- lumi: 0.0007 + pol: 0.0006709999999999999 + sys_0: 2.7361108957441005e-05 + sys_1: -6.356888748829645e-06 + sys_2: 1.8679277941844177e-05 + sys_3: -2.0128302299011633e-06 + sys_4: -3.091646319085073e-05 + sys_5: 8.138542500025143e-05 + sys_6: 9.394240186591722e-06 + sys_7: 9.310798960489039e-05 + sys_8: -2.6922174749846393e-05 + sys_9: 0.00010475490885647621 + sys_10: 0.00016694870660816555 + sys_11: -4.494672615989274e-05 + sys_12: 0.0002839518714079022 + sys_13: -0.0004369660740580082 + sys_14: 0.0041995613196612195 + sys_15: 0.0010631651303513489 + sys_16: -0.00037796795876870597 + sys_17: 0.0004765372490046071 + sys_18: -0.00044678024965661404 + sys_19: -7.458946160562403e-05 + sys_20: 0.00021646776414987134 + sys_21: 0.0002445893129606991 + sys_22: 6.224491474381815e-05 + sys_23: 3.774633039928424e-05 + sys_24: -0.00011042849569599705 + sys_25: 0.00018332282740198067 + sys_26: -8.244258022038552e-06 + sys_27: 2.4091498993700626e-06 + sys_28: -5.848463200988263e-07 + sys_29: 4.4658613525731567e-05 + sys_30: 3.9038383898936376e-06 + sys_31: 2.9549822702161563e-08 + sys_32: -7.4965507953481744e-06 + sys_33: -3.696141330970805e-05 + sys_34: 0.000124722455223452 + sys_35: 2.754501528817717e-05 +- lumi: 0.0007 + pol: 0.0012261 + sys_0: 4.216896131855797e-05 + sys_1: -1.8040493430369853e-05 + sys_2: 3.182290304501371e-05 + sys_3: 1.944051016858923e-05 + sys_4: -8.745117826864479e-05 + sys_5: 0.0002610585437404747 + sys_6: -1.0945440875734272e-05 + sys_7: 0.0003542209585235115 + sys_8: -4.494586905699029e-05 + sys_9: 0.000567787095148555 + sys_10: 0.006458487768253884 + sys_11: 0.0018601075392524528 + sys_12: -0.0009297368553190474 + sys_13: 0.000270896517641882 + sys_14: -0.00030254913301022576 + sys_15: 0.00037062328234619877 + sys_16: -0.0002561121933077558 + sys_17: 0.00010714558521826975 + sys_18: -0.0002094755267196622 + sys_19: -0.00012417322910214683 + sys_20: 4.2759548373172644e-05 + sys_21: 9.322582932203707e-05 + sys_22: 4.463988397930048e-05 + sys_23: 4.0294735419517334e-05 + sys_24: -0.00013243158170925652 + sys_25: 0.0001041572379796935 + sys_26: -2.667243314110643e-06 + sys_27: 3.4502402372818453e-06 + sys_28: 4.982372516724433e-07 + sys_29: 9.708698430657178e-06 + sys_30: -8.162402795341703e-07 + sys_31: -5.5051728778581714e-06 + sys_32: 1.6191637505969195e-06 + sys_33: -2.370264313094247e-05 + sys_34: 4.737214959208348e-05 + sys_35: 1.0296247714810579e-05 +- lumi: 0.0007 + pol: 0.001464 + sys_0: 0.00019557361566372098 + sys_1: -0.00017992091700051808 + sys_2: 0.00017927202791608837 + sys_3: 0.0003660294110554394 + sys_4: -0.000913494524490063 + sys_5: 0.002516622414970656 + sys_6: -0.0025785168718412007 + sys_7: 0.006736367214253652 + sys_8: -0.005562702794277883 + sys_9: -0.001037724016283338 + sys_10: -0.0009700188775559487 + sys_11: 0.0015414514424924393 + sys_12: -0.0007315456355418778 + sys_13: -8.635279247891968e-07 + sys_14: -0.00014772164726383958 + sys_15: 0.0003244455808859015 + sys_16: -0.0002600387205594625 + sys_17: 1.6298737034180356e-05 + sys_18: -0.00010820559562811921 + sys_19: -0.00010586240264626553 + sys_20: -1.8386901731346093e-05 + sys_21: 1.634314685614923e-06 + sys_22: 7.517258227383637e-06 + sys_23: 1.4051954759870006e-05 + sys_24: -7.30434249251154e-05 + sys_25: 3.59735805879498e-05 + sys_26: -8.689527685366217e-07 + sys_27: 1.850489193509901e-06 + sys_28: 4.189338003099894e-08 + sys_29: 1.5724603720759096e-06 + sys_30: -1.828022044505358e-07 + sys_31: -2.7061516624401224e-06 + sys_32: 1.0475923836075468e-06 + sys_33: -7.158030457435013e-06 + sys_34: 1.1124019132297472e-05 + sys_35: 2.4309203386920214e-06 +- lumi: 0.0007 + pol: 0.005697399999999999 + sys_0: 0.00394424928749791 + sys_1: -0.012501134347021728 + sys_2: 0.0264449380409075 + sys_3: -0.006971736890008444 + sys_4: 0.002595350480017923 + sys_5: -0.0008799128088274737 + sys_6: 0.0008517681118486095 + sys_7: 7.844082965392992e-05 + sys_8: -0.0003423116697744218 + sys_9: -1.721098634149058e-05 + sys_10: -5.450341955938146e-05 + sys_11: 0.00014216921525600103 + sys_12: -4.2882155736304875e-05 + sys_13: -5.62898129946584e-06 + sys_14: -4.391190605927062e-06 + sys_15: 1.3679684584656604e-05 + sys_16: -1.0929965747918132e-05 + sys_17: 3.248069246700459e-07 + sys_18: -3.6970779578645243e-06 + sys_19: -4.823180645610675e-06 + sys_20: -1.8777073287709331e-06 + sys_21: -3.058748592871662e-06 + sys_22: -1.1655689871601464e-06 + sys_23: -1.5037257067537078e-07 + sys_24: -4.02190507576274e-06 + sys_25: 1.1889694206987331e-06 + sys_26: -2.777419405467811e-08 + sys_27: 1.126440180656962e-07 + sys_28: -4.187989741644149e-08 + sys_29: -3.1900853225573806e-08 + sys_30: 7.527460311725738e-08 + sys_31: -1.3181370397918372e-07 + sys_32: -1.3089386915970926e-07 + sys_33: -2.3655852829065698e-07 + sys_34: 3.832321675464542e-07 + sys_35: 6.289476894114971e-10 diff --git a/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml new file mode 100644 index 0000000000..69af9aac46 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/STAR_2015_2JET_MIDRAP_200GEV/uncertainties_SS.yaml @@ -0,0 +1,420 @@ +definitions: + lumi: + description: luminosity uncertainty + treatment: ADD + type: STAR2015LUMI + pol: + description: beam polarization uncertainty + treatment: MULT + type: STAR2015POL + sys_0: + description: 0 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc0 + sys_1: + description: 1 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc1 + sys_2: + description: 2 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc2 + sys_3: + description: 3 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc3 + sys_4: + description: 4 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc4 + sys_5: + description: 5 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc5 + sys_6: + description: 6 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc6 + sys_7: + description: 7 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc7 + sys_8: + description: 8 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc8 + sys_9: + description: 9 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc9 + sys_10: + description: 10 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc10 + sys_11: + description: 11 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc11 + sys_12: + description: 12 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc12 + sys_13: + description: 13 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc13 + sys_14: + description: 14 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc14 + sys_15: + description: 15 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc15 + sys_16: + description: 16 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc16 + sys_17: + description: 17 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc17 + sys_18: + description: 18 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc18 + sys_19: + description: 19 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc19 + sys_20: + description: 20 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc20 + sys_21: + description: 21 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc21 + sys_22: + description: 22 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc22 + sys_23: + description: 23 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc23 + sys_24: + description: 24 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc24 + sys_25: + description: 25 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc25 + sys_26: + description: 26 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc26 + sys_27: + description: 27 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc27 + sys_28: + description: 28 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc28 + sys_29: + description: 29 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc29 + sys_30: + description: 30 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc30 + sys_31: + description: 31 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc31 + sys_32: + description: 32 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc32 + sys_33: + description: 33 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc33 + sys_34: + description: 34 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc34 + sys_35: + description: 35 artificial correlated statistical + systematics uncertainty + treatment: ADD + type: STAR2015JETunc35 +bins: +- lumi: 0.0007 + pol: 0.0004331 + sys_0: 2.566966489574663e-05 + sys_1: -3.6973873912721496e-06 + sys_2: 1.4226288147546912e-05 + sys_3: -1.5876960931236844e-06 + sys_4: -2.063129836644625e-05 + sys_5: 5.4808114603773026e-05 + sys_6: 2.0743304908220686e-05 + sys_7: 3.623569390401037e-05 + sys_8: -1.6861627551519136e-05 + sys_9: 6.557213744945129e-05 + sys_10: 3.763929987481428e-05 + sys_11: -2.6943224667770906e-06 + sys_12: 3.699717309379034e-05 + sys_13: -0.0001791243805086333 + sys_14: 0.00013638219558771432 + sys_15: -0.0003437538964889431 + sys_16: -0.00015152680186949542 + sys_17: -0.0026647775496260943 + sys_18: -0.0022420464560907972 + sys_19: 0.0011310034859324035 + sys_20: 0.00024156015381071187 + sys_21: 0.0002478987939394416 + sys_22: -0.00017370082147642385 + sys_23: -1.3106478019234179e-05 + sys_24: 4.991447434008643e-05 + sys_25: -1.80387271044469e-05 + sys_26: 2.562571021662328e-06 + sys_27: -3.0538329417589674e-05 + sys_28: -1.804654056787526e-05 + sys_29: 1.2836121130542453e-05 + sys_30: 3.20976412750335e-05 + sys_31: 8.522508272709622e-06 + sys_32: -3.619701235837163e-05 + sys_33: 2.920999322984929e-05 + sys_34: -6.659931374158539e-06 + sys_35: -8.57017702712665e-06 +- lumi: 0.0007 + pol: 0.00029889999999999995 + sys_0: 2.659150440105816e-05 + sys_1: -4.369641361285013e-06 + sys_2: 1.319050738966851e-05 + sys_3: -2.200768469655277e-06 + sys_4: -2.188464919989284e-05 + sys_5: 5.234263474383961e-05 + sys_6: 1.8925736846190355e-05 + sys_7: 3.466559918529128e-05 + sys_8: -1.5270726921583994e-05 + sys_9: 6.0559288731972e-05 + sys_10: 3.848141749124722e-05 + sys_11: 1.552379934231666e-06 + sys_12: 3.2948090368580244e-05 + sys_13: -0.00013390232352248846 + sys_14: 0.00010255866714425406 + sys_15: -0.00012740213588307374 + sys_16: -5.7241123964300274e-05 + sys_17: -0.0004470435939962537 + sys_18: -2.864151543141426e-05 + sys_19: -0.00015181196492851853 + sys_20: -0.0002711935743346527 + sys_21: -0.0008693132822395942 + sys_22: 0.0026373703908254874 + sys_23: -0.00033214340712351906 + sys_24: 0.00029247933441508444 + sys_25: 0.00018349645342315566 + sys_26: -1.1576204701356267e-05 + sys_27: -4.293374650449766e-05 + sys_28: -1.8201104684572328e-05 + sys_29: 8.362367791353279e-05 + sys_30: 4.839215613850722e-05 + sys_31: 3.360724217356472e-05 + sys_32: -6.644264483763873e-05 + sys_33: 5.753547605712172e-05 + sys_34: 0.00010370806390435748 + sys_35: 2.035347647114533e-05 +- lumi: 0.0007 + pol: 0.00010369999999999999 + sys_0: 3.370579339764503e-05 + sys_1: -5.572095760395613e-06 + sys_2: 1.7736395742336946e-05 + sys_3: 7.861900166000319e-07 + sys_4: -2.8669697074327235e-05 + sys_5: 7.346232207308177e-05 + sys_6: 2.222914788953642e-05 + sys_7: 6.256606659190075e-05 + sys_8: -2.3013447857295897e-05 + sys_9: 8.524177169151353e-05 + sys_10: 8.23998487892616e-05 + sys_11: 4.229658533070019e-06 + sys_12: 0.00010783530257734291 + sys_13: -0.00023505919161165634 + sys_14: 0.00031376808858071375 + sys_15: -0.0004719680050724829 + sys_16: -2.0661471213797647e-05 + sys_17: -0.0019243124252555203 + sys_18: 0.001118611669049059 + sys_19: -0.0025023626515044374 + sys_20: 0.0009234549916419706 + sys_21: 0.0005656226587210434 + sys_22: -0.0001042894698475903 + sys_23: 8.200380368830873e-06 + sys_24: -1.5051785061028108e-05 + sys_25: 0.00021543773679997785 + sys_26: -1.455807223296544e-05 + sys_27: -1.027304594192363e-05 + sys_28: -3.1406592903730267e-06 + sys_29: 7.633639769076949e-05 + sys_30: 1.5232676481136117e-05 + sys_31: 1.7642083990232292e-05 + sys_32: -2.6042857530989918e-05 + sys_33: -6.907519529302538e-06 + sys_34: 0.00014131733018019803 + sys_35: 3.1770087709652525e-05 +- lumi: 0.0007 + pol: 0.0008356999999999999 + sys_0: 3.4044796512012245e-05 + sys_1: -1.235580450763309e-05 + sys_2: 2.1758035353734206e-05 + sys_3: 2.867352508234647e-06 + sys_4: -4.5000867003292974e-05 + sys_5: 0.00011660353715517705 + sys_6: 2.3670615807236325e-05 + sys_7: 0.00013654091820906127 + sys_8: -2.133872904870482e-05 + sys_9: 0.00018600095090144265 + sys_10: 0.0002847662785624916 + sys_11: -4.5056098700560735e-05 + sys_12: 0.0011124363919218568 + sys_13: -0.004920999210457797 + sys_14: -0.0008069098617898477 + sys_15: 0.0004510305970018719 + sys_16: -0.0001898945558576748 + sys_17: 0.0003565379944131164 + sys_18: -0.0002933633650934632 + sys_19: -9.251741184978696e-05 + sys_20: 0.00011950286802132286 + sys_21: 0.0001825180984201983 + sys_22: 3.100269465540828e-05 + sys_23: 4.526859488422026e-05 + sys_24: -0.00011831061665909264 + sys_25: 0.0001492671555795182 + sys_26: -5.845042505503442e-06 + sys_27: 4.571630777897474e-06 + sys_28: 4.860552522656625e-07 + sys_29: 2.9802330985577454e-05 + sys_30: -1.2789117464646912e-06 + sys_31: -3.440359835173812e-06 + sys_32: -5.481509591689304e-07 + sys_33: -4.256851831819666e-05 + sys_34: 9.53289549268313e-05 + sys_35: 1.9691592570572704e-05 +- lumi: 0.0007 + pol: 0.0019276000000000002 + sys_0: 5.464114054645147e-05 + sys_1: -3.062095489186111e-05 + sys_2: 4.0415840571796696e-05 + sys_3: 1.5327427426349682e-05 + sys_4: -0.00017872619670486877 + sys_5: 0.00044376524936038536 + sys_6: 5.49802380054675e-06 + sys_7: 0.000886937198728721 + sys_8: 0.00018793036610378666 + sys_9: 0.00798135211666991 + sys_10: -0.0010314352699320264 + sys_11: 0.0005351754359914387 + sys_12: -0.0006518098322777602 + sys_13: 0.00014697707264120312 + sys_14: -0.0002106305892936574 + sys_15: 0.0003206195984885479 + sys_16: -0.00023312036984821086 + sys_17: 7.918357935504335e-05 + sys_18: -0.0001453909296051549 + sys_19: -0.00010207566860981084 + sys_20: 1.663206929313714e-05 + sys_21: 6.385683411940092e-05 + sys_22: 2.784384855735132e-05 + sys_23: 3.4642646724997656e-05 + sys_24: -0.00011620766744040269 + sys_25: 6.444844243918791e-05 + sys_26: -1.5912776814627501e-06 + sys_27: 2.855625040059884e-06 + sys_28: 3.643486692950468e-07 + sys_29: 4.9923275695351105e-06 + sys_30: -9.889262034963313e-07 + sys_31: -4.677827812803862e-06 + sys_32: 2.1810152788058135e-06 + sys_33: -1.8515677888569596e-05 + sys_34: 2.9284153306517715e-05 + sys_35: 5.837344585341716e-06 +- lumi: 0.0007 + pol: 0.0014151999999999997 + sys_0: 0.0003071021131367993 + sys_1: -0.00035077514334489303 + sys_2: 0.0002562772739118575 + sys_3: 0.0006696767213730105 + sys_4: -0.002070423138136885 + sys_5: 0.008849667525284956 + sys_6: 0.007606687954749016 + sys_7: -0.0020343884304423352 + sys_8: -0.0011899493886719664 + sys_9: -0.00040555205669531207 + sys_10: -0.0005602587449578607 + sys_11: 0.0010779617610889333 + sys_12: -0.00041062059885300955 + sys_13: 3.227927534968388e-07 + sys_14: -8.847654536710416e-05 + sys_15: 0.00022386635784993453 + sys_16: -0.00018129739416672242 + sys_17: 4.9964415308542935e-06 + sys_18: -5.1128190299249654e-05 + sys_19: -5.866590347958515e-05 + sys_20: -1.6224017698830028e-05 + sys_21: -6.884067616956192e-06 + sys_22: -1.8429094045786048e-06 + sys_23: 7.30835919685055e-06 + sys_24: -4.661654866142171e-05 + sys_25: 1.8610162918199476e-05 + sys_26: -4.3726589029246027e-07 + sys_27: 1.4200305711977498e-06 + sys_28: -8.067098550155562e-08 + sys_29: 5.766010834362378e-07 + sys_30: 3.633520634872011e-08 + sys_31: -1.8040159269671746e-06 + sys_32: 3.022695953804084e-07 + sys_33: -4.149713509882675e-06 + sys_34: 6.091466180920674e-06 + sys_35: 1.1407411378471392e-06 +- lumi: 0.0007 + pol: 0.0013908000000000002 + sys_0: 0.04021217259960858 + sys_1: 0.011067171099206125 + sys_2: -0.001741686503104436 + sys_3: -0.0037582018101186276 + sys_4: 0.0009561788929469937 + sys_5: -0.000502333136597115 + sys_6: 0.0005129899620712568 + sys_7: 0.00010203346169470573 + sys_8: -0.00015850575517120714 + sys_9: -1.4026407568518896e-05 + sys_10: -2.8151115451100227e-05 + sys_11: 6.75419320019088e-05 + sys_12: -1.9254775640780305e-05 + sys_13: -5.358580547351121e-08 + sys_14: -3.883327445976158e-06 + sys_15: 7.6231144403215724e-06 + sys_16: -4.526051988056168e-06 + sys_17: 2.202499168198968e-06 + sys_18: -2.0861615029363186e-06 + sys_19: -1.7390637860399502e-06 + sys_20: -2.511908932637233e-07 + sys_21: -1.0150398803148308e-06 + sys_22: -1.1524327187910162e-06 + sys_23: -4.857978881877494e-07 + sys_24: -2.0738794703057933e-06 + sys_25: 8.080610887023786e-07 + sys_26: 1.0213905463502986e-08 + sys_27: 6.845615185451228e-08 + sys_28: -9.36392593651474e-08 + sys_29: 2.1710453159270453e-08 + sys_30: 2.0820040688300134e-07 + sys_31: 1.1228233543167254e-08 + sys_32: -3.96824653172278e-07 + sys_33: -6.644355315771639e-10 + sys_34: 2.792066496877991e-07 + sys_35: -6.980638791207585e-08 diff --git a/validphys2/src/validphys/commondataparser.py b/validphys2/src/validphys/commondataparser.py index 5d26d93900..3fb3d3f22d 100644 --- a/validphys2/src/validphys/commondataparser.py +++ b/validphys2/src/validphys/commondataparser.py @@ -109,6 +109,8 @@ def _quick_yaml_load(filepath): "JET": ("$\\eta$", "$p_T^2 (GeV^2)$", "$\\sqrt{s} (GeV)$"), "PHT": ("$\\eta_\\gamma$", "$E_{T,\\gamma}^2 (GeV^2)$", "$\\sqrt{s} (GeV)$"), "SIA": ("$z$", "$Q^2 (GeV^2)$", "$y$"), + "JET_POL": ("$\\eta$", "$p_T^2 (GeV^2)$", "$\\sqrt{s} (GeV)$"), + "DIJET_POL": ("$\\m_{1,2} (GeV)", "$\\eta_1$", "$\\eta_2$"), } PROCESS_DESCRIPTION_LABEL = { @@ -133,6 +135,8 @@ def _quick_yaml_load(filepath): "EWK_MLL": "Drell-Yan Mass Distribution", "DIJET": "Dijets Invariant Mass and Rapidity Distribution", "DYP": "Fixed-Target Drell-Yan", + "JET_POL": "Inclusive Jet longitudinal double-spin asymmetry", + "DIJET_POL": "Dijets longitudinal double-spin asymmetry", } diff --git a/validphys2/src/validphys/filters.py b/validphys2/src/validphys/filters.py index 130047385e..5a9a73e470 100644 --- a/validphys2/src/validphys/filters.py +++ b/validphys2/src/validphys/filters.py @@ -45,6 +45,8 @@ "HQP_PTQ": ("p_TQ", "mu2", "sqrts"), "HIG_RAP": ("y", "M_H2", "sqrts"), "SIA": ("z", "Q2", "y"), + "JET_POL": ("eta", "pT2", "sqrts"), + "DIJET_POL": ("m_12", "eta_1", "eta_2"), } diff --git a/validphys2/src/validphys/process_options.py b/validphys2/src/validphys/process_options.py index eed200002a..26bbe6875a 100644 --- a/validphys2/src/validphys/process_options.py +++ b/validphys2/src/validphys/process_options.py @@ -29,8 +29,13 @@ class _Vars: pT_t = "pT_t" m_ttBar = "m_ttBar" eta = "eta" + abs_eta = "abs_eta" m_W2 = "m_W2" m_Z2 = "m_Z2" + abs_eta_1 = "abs_eta_1" + abs_eta_2 = "abs_eta_2" + eta_1 = "eta_1" + eta_2 = "eta_2" class _KinematicsInformation: @@ -250,11 +255,25 @@ def _dybosonpt_xq2map(kin_dict): DIJET = _Process( "DIJET", - "DiJets Production", + "DiJets production", accepted_variables=(_Vars.ystar, _Vars.m_jj, _Vars.sqrts, _Vars.ydiff), xq2map_function=_dijets_xq2map, ) +JET_POL = _Process( + "JET_POL", + "Longitudinal double-spin asymmetry in inclusive jet production", + accepted_variables=(_Vars.eta, _Vars.pT, _Vars.sqrts, _Vars.abs_eta), + xq2map_function=_jets_xq2map, +) + +DIJET_POL = _Process( + "DIJET_POL", + "Longitudinal double-spin asymmetry in dijets production", + accepted_variables=(_Vars.m_jj, _Vars.sqrts, _Vars.abs_eta_2, _Vars.abs_eta_1, _Vars.eta_1, _Vars.eta_2), + xq2map_function=_dijets_xq2map, +) + HQP_YQ = _Process( "HQP_YQ", "(absolute) rapidity of top quark in top pair production", @@ -335,6 +354,8 @@ def _dybosonpt_xq2map(kin_dict): "INC": INC, "HERAJET": HERAJET, "HERADIJET": dataclasses.replace(HERAJET, name="HERADIJET", description="DIS + jj production"), + "JET_POL": JET_POL, + "DIJET_POL": DIJET_POL, "DY_Z_Y": dataclasses.replace(DY_2L, name="DY_Z_Y", description="DY Z -> ll (pseudo)rapidity"), "DY_W_ETA": dataclasses.replace( DY_2L, name="DY_W_ETA", description="DY W -> l nu (pseudo)rapidity"