From 2193547acce83d8018af1c14bf383ce4f87b1d9e Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 24 May 2024 12:22:58 +0200 Subject: [PATCH 1/3] include additional systematics for EIC --- .../nnpdf_data/filter_utils/eic_utils.py | 8 ++++-- .../new_commondata/EIC_NC_211GEV_EP/filter.py | 5 +++- .../EIC_NC_211GEV_EP/uncertainties.yaml | 26 +++++++++---------- .../new_commondata/EIC_NC_43GEV_EP/filter.py | 5 +++- .../EIC_NC_43GEV_EP/uncertainties.yaml | 24 ++++++++--------- .../new_commondata/EIC_NC_67GEV_EP/filter.py | 5 +++- .../EIC_NC_67GEV_EP/uncertainties.yaml | 24 ++++++++--------- 7 files changed, 55 insertions(+), 42 deletions(-) diff --git a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py b/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py index c7a6399f68..07ec9de229 100644 --- a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py +++ b/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py @@ -96,6 +96,7 @@ def write_data( asym: bool = True, abserr: Optional[Union[np.ndarray, None]] = None, add_fluctuate: bool = False, + sys_error: float = 0.0, ) -> None: """Write the input kinematics, central values, and uncertainties into the new commondata format. @@ -184,7 +185,10 @@ def write_data( # ----------------------------------------------------------------- # Prepare the uncertainty values - errors = [{"stat": float(d["abs"]), "sys": 0.0} for _, d in df.iterrows()] + errors = [ + {"stat": float(d["abs"]), "sys": float(data_central[i] * sys_error)} + for i, d in df.iterrows() + ] error_definition = { "stat": { @@ -192,7 +196,7 @@ def write_data( "treatment": "ADD", "type": "UNCORR", }, - "sys": {"description": "systematic uncertainty", "treatment": "ADD", "type": "UNCORR"}, + "sys": {"description": "systematic uncertainty", "treatment": "MULT", "type": "CORR"}, } # ----------------------------------------------------------------- diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py index 1d4d4af877..9071198010 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py @@ -17,4 +17,7 @@ df = read_txt_data(input_txt) cv_preds = read_central_values(Path("./rawdata/EIC_NC_211GEV_EP.yaml")) fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml index 1c59b5709e..23c9761e03 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml @@ -5,28 +5,28 @@ definitions: type: UNCORR sys: description: systematic uncertainty - treatment: ADD - type: UNCORR + treatment: MULT + type: CORR bins: - stat: 0.00260049 - sys: 0.0 + sys: 0.0005262674566292198 - stat: 0.0032644 - sys: 0.0 + sys: 0.0006948311251004375 - stat: 0.00393122 - sys: 0.0 + sys: 0.0007873575493742746 - stat: 0.00450892 - sys: 0.0 + sys: 0.0006420715545079917 - stat: 0.00525977 - sys: 0.0 + sys: 0.001080542239345155 - stat: 0.00597521 - sys: 0.0 + sys: 0.001209460706547277 - stat: 0.00679294 - sys: 0.0 + sys: 0.0011841980538993809 - stat: 0.00758583 - sys: 0.0 + sys: 0.0006537127364699953 - stat: 0.00805148 - sys: 0.0 + sys: 0.0009465784380735705 - stat: 0.00877917 - sys: 0.0 + sys: 0.0007436513063664077 - stat: 0.0101136 - sys: 0.0 + sys: 0.0011504705487424141 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py index cf94f19908..9c7fbac958 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py @@ -17,4 +17,7 @@ df = read_txt_data(input_txt) cv_preds = read_central_values(Path("./rawdata/EIC_NC_43GEV_EP.yaml")) fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml index cddd6430ed..af1a19a6bd 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml @@ -5,26 +5,26 @@ definitions: type: UNCORR sys: description: systematic uncertainty - treatment: ADD - type: UNCORR + treatment: MULT + type: CORR bins: - stat: 0.00672086 - sys: 0.0 + sys: 0.0013573793771477641 - stat: 0.00767392 - sys: 0.0 + sys: 0.001916707735550931 - stat: 0.00822064 - sys: 0.0 + sys: 0.002413601690792145 - stat: 0.00935268 - sys: 0.0 + sys: 0.0026595972847857164 - stat: 0.00979612 - sys: 0.0 + sys: 0.00427643635436818 - stat: 0.0110492 - sys: 0.0 + sys: 0.005606454032048129 - stat: 0.0118684 - sys: 0.0 + sys: 0.006925769467099229 - stat: 0.0134677 - sys: 0.0 + sys: 0.008045478371171437 - stat: 0.0156306 - sys: 0.0 + sys: 0.011808083761866825 - stat: 0.0205952 - sys: 0.0 + sys: 0.016122165035993685 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py index e7520141fb..fd117219f8 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py @@ -17,4 +17,7 @@ df = read_txt_data(input_txt) cv_preds = read_central_values(Path("./rawdata/EIC_NC_67GEV_EP.yaml")) fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml index 3cdde3fad7..b5e7cfcbf4 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml @@ -5,26 +5,26 @@ definitions: type: UNCORR sys: description: systematic uncertainty - treatment: ADD - type: UNCORR + treatment: MULT + type: CORR bins: - stat: 0.0044181 - sys: 0.0 + sys: 0.0014207399940720385 - stat: 0.00523863 - sys: 0.0 + sys: 0.0016104484919313307 - stat: 0.00594865 - sys: 0.0 + sys: 0.0016818854412173213 - stat: 0.00659991 - sys: 0.0 + sys: 0.0014623710529683164 - stat: 0.00739964 - sys: 0.0 + sys: 0.0021765139226716146 - stat: 0.00834399 - sys: 0.0 + sys: 0.002573825524645206 - stat: 0.00923507 - sys: 0.0 + sys: 0.0029692135284708626 - stat: 0.0103193 - sys: 0.0 + sys: 0.0030621344913334997 - stat: 0.0115804 - sys: 0.0 + sys: 0.004901422989356397 - stat: 0.0135544 - sys: 0.0 + sys: 0.008160077586764392 From 0957693b0ca95611ebf4bcc725e354aa3044bcdf Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 24 May 2024 18:00:26 +0200 Subject: [PATCH 2/3] add NLO & NNLO variants for Athena and EIC --- .../nnpdf_data/filter_utils/eic_utils.py | 5 +- .../ATHENA_NC_105GEV_EP/data.yaml | 124 ----- .../ATHENA_NC_105GEV_EP/data_nlo.yaml | 124 +++++ .../ATHENA_NC_105GEV_EP/data_nnlo.yaml | 124 +++++ .../ATHENA_NC_105GEV_EP/filter.py | 8 +- .../ATHENA_NC_105GEV_EP/metadata.yaml | 41 +- .../rawdata/ATHENA_NC_105GEV_EP.yaml | 124 ----- .../rawdata/ATHENA_NC_105GEV_EP_NLO.yaml | 124 +++++ .../rawdata/ATHENA_NC_105GEV_EP_NNLO.yaml | 124 +++++ .../ATHENA_NC_105GEV_EP/uncertainties.yaml | 510 ------------------ .../uncertainties_nlo.yaml | 510 ++++++++++++++++++ .../uncertainties_nnlo.yaml | 510 ++++++++++++++++++ .../rawdata/ATHENA_NC_140GEV_EP_NLO.yaml | 132 +++++ .../rawdata/ATHENA_NC_140GEV_EP_NNLO.yaml | 132 +++++ .../ATHENA_NC_29GEV_EP/data.yaml | 77 --- .../ATHENA_NC_29GEV_EP/data_nlo.yaml | 77 +++ .../ATHENA_NC_29GEV_EP/data_nnlo.yaml | 77 +++ .../ATHENA_NC_29GEV_EP/filter.py | 8 +- .../ATHENA_NC_29GEV_EP/metadata.yaml | 43 +- .../rawdata/ATHENA_NC_29GEV_EP.yaml | 77 --- .../rawdata/ATHENA_NC_29GEV_EP_NLO.yaml | 77 +++ .../rawdata/ATHENA_NC_29GEV_EP_NNLO.yaml | 77 +++ .../ATHENA_NC_29GEV_EP/uncertainties.yaml | 322 ----------- .../ATHENA_NC_29GEV_EP/uncertainties_nlo.yaml | 322 +++++++++++ .../uncertainties_nnlo.yaml | 322 +++++++++++ .../ATHENA_NC_45GEV_EP/data.yaml | 93 ---- .../ATHENA_NC_45GEV_EP/data_nlo.yaml | 93 ++++ .../ATHENA_NC_45GEV_EP/data_nnlo.yaml | 93 ++++ .../ATHENA_NC_45GEV_EP/filter.py | 8 +- .../ATHENA_NC_45GEV_EP/metadata.yaml | 43 +- .../rawdata/ATHENA_NC_45GEV_EP.yaml | 93 ---- .../rawdata/ATHENA_NC_45GEV_EP_NLO.yaml | 93 ++++ .../rawdata/ATHENA_NC_45GEV_EP_NNLO.yaml | 93 ++++ .../ATHENA_NC_45GEV_EP/uncertainties.yaml | 386 ------------- .../ATHENA_NC_45GEV_EP/uncertainties_nlo.yaml | 386 +++++++++++++ .../uncertainties_nnlo.yaml | 386 +++++++++++++ .../ATHENA_NC_63GEV_EP/data.yaml | 92 ---- .../ATHENA_NC_63GEV_EP/data_nlo.yaml | 92 ++++ .../ATHENA_NC_63GEV_EP/data_nnlo.yaml | 92 ++++ .../ATHENA_NC_63GEV_EP/filter.py | 8 +- .../ATHENA_NC_63GEV_EP/metadata.yaml | 43 +- .../rawdata/ATHENA_NC_63GEV_EP.yaml | 92 ---- .../rawdata/ATHENA_NC_63GEV_EP_NLO.yaml | 92 ++++ .../rawdata/ATHENA_NC_63GEV_EP_NNLO.yaml | 92 ++++ .../ATHENA_NC_63GEV_EP/uncertainties.yaml | 382 ------------- .../ATHENA_NC_63GEV_EP/uncertainties_nlo.yaml | 382 +++++++++++++ .../uncertainties_nnlo.yaml | 382 +++++++++++++ .../new_commondata/EIC_NC_211GEV_EP/data.yaml | 12 - .../EIC_NC_211GEV_EP/data_nlo.yaml | 12 + .../EIC_NC_211GEV_EP/data_nnlo.yaml | 12 + .../new_commondata/EIC_NC_211GEV_EP/filter.py | 21 +- .../EIC_NC_211GEV_EP/metadata.yaml | 42 +- .../rawdata/EIC_NC_211GEV_EP.yaml | 12 - .../rawdata/EIC_NC_211GEV_EP_NLO.yaml | 12 + .../rawdata/EIC_NC_211GEV_EP_NNLO.yaml | 12 + .../EIC_NC_211GEV_EP/uncertainties_nlo.yaml | 32 ++ ...rtainties.yaml => uncertainties_nnlo.yaml} | 22 +- .../new_commondata/EIC_NC_43GEV_EP/data.yaml | 11 - .../EIC_NC_43GEV_EP/data_nlo.yaml | 11 + .../EIC_NC_43GEV_EP/data_nnlo.yaml | 11 + .../new_commondata/EIC_NC_43GEV_EP/filter.py | 21 +- .../EIC_NC_43GEV_EP/metadata.yaml | 42 +- .../rawdata/EIC_NC_43GEV_EP.yaml | 11 - .../rawdata/EIC_NC_43GEV_EP_NLO.yaml | 11 + .../rawdata/EIC_NC_43GEV_EP_NNLO.yaml | 11 + .../EIC_NC_43GEV_EP/uncertainties_nlo.yaml | 30 ++ ...rtainties.yaml => uncertainties_nnlo.yaml} | 20 +- .../new_commondata/EIC_NC_67GEV_EP/data.yaml | 11 - .../EIC_NC_67GEV_EP/data_nlo.yaml | 11 + .../EIC_NC_67GEV_EP/data_nnlo.yaml | 11 + .../new_commondata/EIC_NC_67GEV_EP/filter.py | 21 +- .../EIC_NC_67GEV_EP/metadata.yaml | 42 +- .../rawdata/EIC_NC_67GEV_EP.yaml | 11 - .../rawdata/EIC_NC_67GEV_EP_NLO.yaml | 11 + .../rawdata/EIC_NC_67GEV_EP_NNLO.yaml | 11 + .../EIC_NC_67GEV_EP/uncertainties_nlo.yaml | 30 ++ ...rtainties.yaml => uncertainties_nnlo.yaml} | 20 +- 77 files changed, 5604 insertions(+), 2530 deletions(-) delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nnlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NNLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nlo.yaml rename nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/{uncertainties.yaml => uncertainties_nnlo.yaml} (55%) delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NNLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nlo.yaml rename nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/{uncertainties.yaml => uncertainties_nnlo.yaml} (56%) delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NNLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nlo.yaml rename nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/{uncertainties.yaml => uncertainties_nnlo.yaml} (56%) diff --git a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py b/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py index 07ec9de229..1cdb801b45 100644 --- a/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py +++ b/nnpdf_data/nnpdf_data/filter_utils/eic_utils.py @@ -97,6 +97,7 @@ def write_data( abserr: Optional[Union[np.ndarray, None]] = None, add_fluctuate: bool = False, sys_error: float = 0.0, + suffix: str = "", ) -> None: """Write the input kinematics, central values, and uncertainties into the new commondata format. @@ -123,7 +124,7 @@ def write_data( print(f"The dataset has {len(data_central)} datapoints!") data_central_yaml = {"data_central": data_central} - with open("data.yaml", "w") as file: + with open(f"data_{suffix}.yaml", "w") as file: yaml.dump(data_central_yaml, file, sort_keys=False) if asym: @@ -206,5 +207,5 @@ def write_data( yaml.dump(kinematics_yaml, file, sort_keys=False) uncertainties_yaml = {"definitions": error_definition, "bins": errors} - with open("uncertainties.yaml", "w") as file: + with open(f"uncertainties_{suffix}.yaml", "w") as file: yaml.dump(uncertainties_yaml, file, sort_keys=False) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data.yaml deleted file mode 100644 index 386b699f8d..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data.yaml +++ /dev/null @@ -1,124 +0,0 @@ -data_central: -- 0.0030232492667256476 -- 0.002555546843002419 -- 0.0057601463999422215 -- 0.002034588868637695 -- 0.004558456269590243 -- 0.008532582308076646 -- 0.0017279908038945128 -- 0.0033703961980815203 -- 0.006451277170582645 -- 0.010466932984758447 -- 0.0013265331758707064 -- 0.0025590501051209586 -- 0.004795570413674596 -- 0.007735791204031044 -- 0.012224836425224874 -- 0.0010846226765217652 -- 0.0020756968013515716 -- 0.00342249795999119 -- 0.005817355761132647 -- 0.008906418989800935 -- 0.013295759775211337 -- 0.0007582303616102364 -- 0.0014982502854730636 -- 0.002529556455526126 -- 0.004164636624241837 -- 0.006414662909968195 -- 0.010045125193224206 -- 0.014795141156436245 -- 0.0005484376931462637 -- 0.0011719339995933972 -- 0.0019621855490396457 -- 0.0031074112503655248 -- 0.004775355943674676 -- 0.007139891622980082 -- 0.011098209407376257 -- 0.016710878682833046 -- 0.0008882210489093715 -- 0.0015473672218736204 -- 0.002395998266516214 -- 0.0035801901290965304 -- 0.005469990877244589 -- 0.008553882831584961 -- 0.013045288348511439 -- 0.019741213268127285 -- 0.0011170555572520596 -- 0.001732180172703438 -- 0.0029422565201887834 -- 0.0045222497096678695 -- 0.006781903696060579 -- 0.010664131110250361 -- 0.016369598420864023 -- 0.025067783739548977 -- 0.0015564819085647536 -- 0.002393155719935957 -- 0.0034183817956831186 -- 0.0055710852657673655 -- 0.008880682302329709 -- 0.013546789665405769 -- 0.02257514160897749 -- 0.03567920543503588 -- 0.0020013377586011573 -- 0.0031760568752588225 -- 0.004826183395098619 -- 0.007801274867260488 -- 0.01188377690593458 -- 0.0196364088034342 -- 0.03213925202754847 -- 0.051712309848685876 -- 0.0025897154812055444 -- 0.004529742794075346 -- 0.0071350779994061135 -- 0.010636358498966613 -- 0.01793554991512172 -- 0.028207549466742785 -- 0.04751995403767628 -- 0.078399292226318 -- 0.003797811136504016 -- 0.006106445193975674 -- 0.008956449990185172 -- 0.015409760938497722 -- 0.024702970460839312 -- 0.04276543913975987 -- 0.07121694430149718 -- 0.11587349188568133 -- 0.005325119381510992 -- 0.008739860667078495 -- 0.013811984097920824 -- 0.022547749486510168 -- 0.036418678415793396 -- 0.061092464889775336 -- 0.10120334768295079 -- 0.16729706489332236 -- 0.007314426129897138 -- 0.012310565849337556 -- 0.01880548673319385 -- 0.03150322613317545 -- 0.050248794571101964 -- 0.08528986456786831 -- 0.14002591134881992 -- 0.22685366247561983 -- 0.010412613343060003 -- 0.01585900025047944 -- 0.02639526782013252 -- 0.041523343993664856 -- 0.06939374238598457 -- 0.10990318552454333 -- 0.18248513590443896 -- 0.29672896478109023 -- 0.013143953495619778 -- 0.019441475337021664 -- 0.03717737735144933 -- 0.056289104982429596 -- 0.08183214001645585 -- 0.1415165136560526 -- 0.22888822225339417 -- 0.35549348132337844 -- 0.008547674684558856 -- 0.03108709490324683 -- 0.03640459562611305 -- 0.07940695861152511 -- 0.11371150089179818 -- 0.17430883944275216 -- 0.2547218362841646 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..af966938f3 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nlo.yaml @@ -0,0 +1,124 @@ +data_central: +- -7.9686135798526e-05 +- 0.0002622778592100214 +- -8.971990952500228e-05 +- 0.0003628747566496608 +- 0.0003025455606930224 +- -0.0003289396500082594 +- 0.000527054559951973 +- 0.0004032644714491676 +- 0.0001481775475596897 +- -0.0006079219455117313 +- 0.0005024371133567035 +- 0.0005457329516728618 +- 0.0005443908463106457 +- 0.00017035475863076682 +- -0.0002337125541561955 +- 0.0005645489349221586 +- 0.0007706117390689029 +- 0.0006587939550546941 +- 0.0009382957243788438 +- 0.000777917208132874 +- 0.00037375785249127105 +- 0.00047748047883363243 +- 0.0007119676009007722 +- 0.0008295811417789234 +- 0.0011488113066331566 +- 0.001450630379123243 +- 0.002078282116525751 +- 0.0024206334590696587 +- 0.0004405019776883573 +- 0.0007483436903050735 +- 0.0009872885740138074 +- 0.0013416345834552875 +- 0.0018842729468733271 +- 0.00258061458881251 +- 0.0039818104246081626 +- 0.005626434699792646 +- 0.0006934233360681582 +- 0.001028315280783365 +- 0.0014186099044476248 +- 0.0019842314954966905 +- 0.002997442001906029 +- 0.004799903586210154 +- 0.007185279701466692 +- 0.011048600628194181 +- 0.0008483582626409018 +- 0.0012098791895980272 +- 0.0020981550383013287 +- 0.0032510779021936356 +- 0.004924952060087364 +- 0.007869355840293713 +- 0.012327664818173363 +- 0.019373305654178406 +- 0.0012702189970770893 +- 0.0019516512271589685 +- 0.0027882257686412757 +- 0.004709829515748181 +- 0.0076610106528119705 +- 0.011941775238752323 +- 0.020512539207820386 +- 0.033199757077112244 +- 0.001766225587548656 +- 0.0028700405543423996 +- 0.00445125142621223 +- 0.007328448152888959 +- 0.011373304782740777 +- 0.019174161857557808 +- 0.03192182372156644 +- 0.052150831686440184 +- 0.0024532942817132005 +- 0.004389477501758794 +- 0.006998345079620076 +- 0.01056874188430606 +- 0.018037201498317657 +- 0.028670268151369555 +- 0.04870711544113141 +- 0.0809062734710754 +- 0.003761905022154242 +- 0.00609560205469274 +- 0.009009697922423439 +- 0.0155883006163242 +- 0.025115802273797182 +- 0.04360557684501048 +- 0.07282022986865623 +- 0.1187394126377662 +- 0.005296962994242974 +- 0.008713152265362425 +- 0.01379190285650563 +- 0.02254310429766776 +- 0.03644366417781698 +- 0.061166719038238254 +- 0.1013487295607234 +- 0.1675171964965923 +- 0.007170480945043473 +- 0.01207701366471271 +- 0.018426746989812726 +- 0.030887562862464444 +- 0.04924067191448828 +- 0.0836229782621661 +- 0.13723561833633344 +- 0.22225297807177194 +- 0.010180052675848867 +- 0.01546611145021116 +- 0.02573869826452503 +- 0.04043385918178369 +- 0.06758788773895415 +- 0.10690652802285827 +- 0.1774920798074007 +- 0.2886214497436867 +- 0.012675193009394273 +- 0.018662707587756032 +- 0.03589600521832406 +- 0.05419357611943356 +- 0.07841029808872996 +- 0.13592881332923945 +- 0.21975087129836593 +- 0.34091679158712623 +- 0.008261810311290464 +- 0.030557722485239133 +- 0.03545078323896834 +- 0.07774683149865645 +- 0.11086575147231159 +- 0.16948280631982732 +- 0.24658998569172716 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..1763d3e00a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/data_nnlo.yaml @@ -0,0 +1,124 @@ +data_central: +- 0.001288789100176689 +- 0.0014542457744041392 +- 0.003926901719921948 +- 0.0013096162205063922 +- 0.003212715753290155 +- 0.006974865216226672 +- 0.0011889437458539752 +- 0.002570571065240646 +- 0.0054177616142548155 +- 0.008893269715123227 +- 0.0010574133398396815 +- 0.002028815128018711 +- 0.004072052780767281 +- 0.006661069821358631 +- 0.010514719080513059 +- 0.0007507821289958793 +- 0.0016176024062696012 +- 0.0031172694852463086 +- 0.004936824704509253 +- 0.007830050011352395 +- 0.011619450000394379 +- 0.0006495366980216258 +- 0.0012098919407804876 +- 0.0022249646713079856 +- 0.003701336116335129 +- 0.005588276758171016 +- 0.008883991271251019 +- 0.013400680980201715 +- 0.0005022299575971106 +- 0.0009873625496670331 +- 0.001868345598641782 +- 0.002743886194477732 +- 0.004223245128172256 +- 0.006553806453379708 +- 0.01006741543381578 +- 0.015440792592474726 +- 0.0007189663833356716 +- 0.001416299423859499 +- 0.0022687749141711445 +- 0.003326896427980325 +- 0.005113468209918768 +- 0.007688497642184163 +- 0.01221707137071272 +- 0.018759148699855246 +- 0.0011233554158381286 +- 0.0017752111094485226 +- 0.0028408348120356045 +- 0.00399623198327263 +- 0.006386594989988534 +- 0.010251131514532458 +- 0.01588326040047888 +- 0.024626076490845188 +- 0.001456899957654583 +- 0.0023402121021217524 +- 0.003413633333358003 +- 0.005889311815021564 +- 0.008773729253332049 +- 0.013610681493193418 +- 0.021725499042919753 +- 0.03511600648522476 +- 0.002073740845704274 +- 0.0029067352432693744 +- 0.004855841429357919 +- 0.007493328353280653 +- 0.012188555321409488 +- 0.019813794806229412 +- 0.03156926033292497 +- 0.05181708280575586 +- 0.00281114388978407 +- 0.004084778174379404 +- 0.007171965505656213 +- 0.01076289854430281 +- 0.01775423709189913 +- 0.02912932553643306 +- 0.047595767802506544 +- 0.0793038132407141 +- 0.003883126393493111 +- 0.005997658866446578 +- 0.009986485493579812 +- 0.015349501525855574 +- 0.026837169996202802 +- 0.043262133205403515 +- 0.07230753191627408 +- 0.11832805069052024 +- 0.005295265394518274 +- 0.008653210105573819 +- 0.013793999808859182 +- 0.022740309571390543 +- 0.03657492627169011 +- 0.06184600032112132 +- 0.10134990247092757 +- 0.16919493709769018 +- 0.0075356626536552986 +- 0.011975070208950557 +- 0.019631626535036372 +- 0.030813987448784837 +- 0.05106763264110275 +- 0.08342744843742042 +- 0.14094118726453117 +- 0.22762207795279701 +- 0.0103763664197803 +- 0.015908239239044844 +- 0.025308136371606615 +- 0.044025459663668234 +- 0.07051012470583337 +- 0.11078349614917639 +- 0.1822603169954002 +- 0.2895929430235369 +- 0.013721830846965889 +- 0.020194007019691665 +- 0.0345424980989993 +- 0.05421373022382363 +- 0.08846208294426103 +- 0.14259894714412755 +- 0.23620187183394312 +- 0.38059903515452126 +- 0.015039023769633465 +- 0.020473677243678354 +- 0.04362708522157544 +- 0.07278441583285218 +- 0.097308164529993 +- 0.22853669696603904 +- 0.29000741056484663 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py index c996daf879..19cda05f74 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/filter.py @@ -16,6 +16,8 @@ BEAMS = (10, 275) input_xlsx = Path("./rawdata/ATHENA_ALL_EP.xlsx") xdf = read_excel(input_xlsx, beams=BEAMS) - cv_preds = read_central_values(Path("./rawdata/ATHENA_NC_105GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) - write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/ATHENA_NC_105GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) + write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True, suffix=pto.lower()) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/metadata.yaml index ab25b8528f..e0189fbcfe 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/metadata.yaml @@ -17,9 +17,44 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: + - observable_name: "ALL-NLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 105GeV at ATHENA using NLO theory" + label: "$A_{LL}$" + units: "" + process_type: "DIS_POL" + ndata: 123 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "ATHENA 105GeV (ALL)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$A_{LL}^{p}(x, Q^2)$" + kinematic_coverage: [x, Q2, y] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + y: { description: "inelasticity", label: "$y$", units: "" } + file: kinematics.yaml + + data_central: data_nlo.yaml + data_uncertainties: + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - ATHENA_NC_105GEV_EP_G1 + operation: "null" - observable_name: "ALL" observable: - description: "EIC projection measurements on polarized ep scattering at 105GeV at ATHENA" + description: "EIC projection measurements on polarized ep scattering at 105GeV at ATHENA using NNLO theory" label: "$A_{LL}$" units: "" process_type: "DIS_POL" @@ -44,9 +79,9 @@ implemented_observables: y: { description: "inelasticity", label: "$y$", units: "" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nnlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP.yaml deleted file mode 100644 index bc13923ebc..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP.yaml +++ /dev/null @@ -1,124 +0,0 @@ -predictions_central: -- 0.00296772820919159 -- 0.0024866637621892584 -- 0.005683055570806761 -- 0.0020434896269367823 -- 0.004458355308226592 -- 0.008398487231052437 -- 0.0016658431829077258 -- 0.003407632157326397 -- 0.0064179201673133105 -- 0.010475856950041369 -- 0.0013323412827694107 -- 0.0025978539834060187 -- 0.004750776546951256 -- 0.007795243512325097 -- 0.012102592816194987 -- 0.0010416601796285772 -- 0.001970023856979919 -- 0.0035060148011920697 -- 0.005655601319760286 -- 0.008868452972950313 -- 0.01344219971596848 -- 0.0007921769947487853 -- 0.0014831461074527735 -- 0.0025788987442990304 -- 0.004123959126219047 -- 0.0063845925371155765 -- 0.00981567022313473 -- 0.014745401941546575 -- 0.0005941624846898383 -- 0.0011174602129639007 -- 0.0019160123600240671 -- 0.003055191328425735 -- 0.0047033761312318964 -- 0.007169438461877657 -- 0.010976062650133947 -- 0.016786555969738756 -- 0.0008577815529743146 -- 0.001462876372258788 -- 0.0023359885469107244 -- 0.0035908383726446945 -- 0.005463068527777083 -- 0.008332166072528726 -- 0.013028648668477139 -- 0.019876634712565774 -- 0.0011687116190717832 -- 0.0018630412060004473 -- 0.0028706927643409133 -- 0.004375613971419849 -- 0.006689527963376768 -- 0.010440882037249521 -- 0.01638361634192423 -- 0.02548177999084164 -- 0.0015475188466977667 -- 0.002392313599414489 -- 0.003672553227716287 -- 0.005649167646445503 -- 0.008843916439829479 -- 0.013919853849693391 -- 0.022307964988018413 -- 0.035434153404348016 -- 0.00203240242206357 -- 0.0031542335950251956 -- 0.004908931803629576 -- 0.007728402257545838 -- 0.012239667830863917 -- 0.019660562306830207 -- 0.03212363128610677 -- 0.05195007627046263 -- 0.0027276976166624996 -- 0.004308061595663645 -- 0.006848988680192725 -- 0.01092201372651906 -- 0.017606786635449595 -- 0.02873673814570295 -- 0.04761919977411481 -- 0.07795005735264784 -- 0.00377527782191803 -- 0.00606104025017294 -- 0.00974459619654039 -- 0.015742234230125055 -- 0.025656383754178665 -- 0.04225457462047918 -- 0.07051079534812431 -- 0.115955139173926 -- 0.005329470020619374 -- 0.008608425692153044 -- 0.013924320046807643 -- 0.022596630607185524 -- 0.036942112351151885 -- 0.06093097605494136 -- 0.10163947074887669 -- 0.16669109060633383 -- 0.007461133437360829 -- 0.012041316216805263 -- 0.0194495645778482 -- 0.03149793987480191 -- 0.05133726087190483 -- 0.08431475216024567 -- 0.13980500530144452 -- 0.2273642220497778 -- 0.01009158425461095 -- 0.016225039949696644 -- 0.026102012481797814 -- 0.04207515071982921 -- 0.06819767039554252 -- 0.11122803114838334 -- 0.18277695675053662 -- 0.29376579055422564 -- 0.013339834811484822 -- 0.02134155417659174 -- 0.034142755473764136 -- 0.05468417653510797 -- 0.08795087662673129 -- 0.142069502805989 -- 0.23064652634434202 -- 0.365745608463166 -- 0.016295329757989464 -- 0.026088161486197418 -- 0.04169425991320661 -- 0.06654984089657041 -- 0.10638885023111658 -- 0.17032114506393223 -- 0.27367818984876163 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NLO.yaml new file mode 100644 index 0000000000..902f3810f7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NLO.yaml @@ -0,0 +1,124 @@ +predictions_central: +- -0.0001352071933325836 +- 0.00019339477839686096 +- -0.00016681073866046316 +- 0.00037177551494874806 +- 0.00020244459932937075 +- -0.00046303472703246784 +- 0.0004649069389651861 +- 0.00044050043069404426 +- 0.00011482054429035508 +- -0.0005989979802288085 +- 0.0005082452202554077 +- 0.0005845368299579219 +- 0.0004995969795873054 +- 0.000229807066924819 +- -0.00035595616318608193 +- 0.0005215864380289707 +- 0.0006649387946972502 +- 0.0007423107962555739 +- 0.0007765412830064827 +- 0.0007399511912822518 +- 0.0005201977932484143 +- 0.0005114271119721814 +- 0.0006968634228804821 +- 0.0008789234305518278 +- 0.001108133808610367 +- 0.0014205600062706248 +- 0.0018488271464362752 +- 0.0023708942441799876 +- 0.0004862267692319318 +- 0.0006938699036755769 +- 0.0009411153849982289 +- 0.0012894146615154978 +- 0.0018122931344305472 +- 0.002610161427710085 +- 0.003859663667365853 +- 0.005702111986698358 +- 0.0006629838401331013 +- 0.0009438244311685325 +- 0.0013586001848421355 +- 0.0019948797390448546 +- 0.0029905196524385234 +- 0.004578186827153918 +- 0.007168640021432393 +- 0.01118402207263267 +- 0.0009000143244606253 +- 0.0013407402228950366 +- 0.0020265912824534585 +- 0.0031044421639456143 +- 0.004832576327403553 +- 0.007646106767292873 +- 0.01234168273923357 +- 0.01978730190547107 +- 0.0012612559352101025 +- 0.0019508091066375007 +- 0.003042397200674444 +- 0.004787911896426318 +- 0.007624244790311739 +- 0.012314839423039946 +- 0.02024536258686131 +- 0.03295470504642438 +- 0.0017972902510110685 +- 0.0028482172741087727 +- 0.004533999834743187 +- 0.007255575543174309 +- 0.011729195707670115 +- 0.019198315360953816 +- 0.03190620298012474 +- 0.05238859810821694 +- 0.0025912764171701556 +- 0.004167796303347094 +- 0.0067122557604066884 +- 0.010854397111858507 +- 0.017708438218645532 +- 0.02919945683032972 +- 0.04880636117756994 +- 0.08045703859740524 +- 0.0037393717075682557 +- 0.006050197110890006 +- 0.009797844128778656 +- 0.015920773907951533 +- 0.026069215567136535 +- 0.043094712325729784 +- 0.07211408091528336 +- 0.11882105992601087 +- 0.005301313633351356 +- 0.008581717290436974 +- 0.01390423880539245 +- 0.022591985418343116 +- 0.036967098113175466 +- 0.06100523020340428 +- 0.1017848526266493 +- 0.16691122220960378 +- 0.007317188252507164 +- 0.011807764032180416 +- 0.019070824834467075 +- 0.030882276604090896 +- 0.05032913821529115 +- 0.08264786585454345 +- 0.13701471228895803 +- 0.2227635376459299 +- 0.009859023587399813 +- 0.015832151149428365 +- 0.025445442926190324 +- 0.04098566590794804 +- 0.06639181574851209 +- 0.10823137364669828 +- 0.17778390065349836 +- 0.2856582755168221 +- 0.012871074325259317 +- 0.020562786427326108 +- 0.032861383340638865 +- 0.05258864767211194 +- 0.0845290346990054 +- 0.13648180247917585 +- 0.22150917538931378 +- 0.3511689187269138 +- 0.01600946538472107 +- 0.02555878906818972 +- 0.0407404475260619 +- 0.06488971378370176 +- 0.10354310081162998 +- 0.16549511194100738 +- 0.2655463392563242 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..2d9cef8572 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/rawdata/ATHENA_NC_105GEV_EP_NNLO.yaml @@ -0,0 +1,124 @@ +predictions_central: +- 0.0013379319718546058 +- 0.0014093388199850757 +- 0.003954089639800477 +- 0.0013306977973959672 +- 0.0032737301074025815 +- 0.006872521350128301 +- 0.0011869572096717274 +- 0.002615464162319655 +- 0.0053743076821056 +- 0.00885429740733913 +- 0.001010866839403228 +- 0.0020712319791894715 +- 0.004053094494279841 +- 0.006697225372050352 +- 0.010411475256525941 +- 0.0008301955300596466 +- 0.001627049476017036 +- 0.0030479217151978713 +- 0.004945110517080911 +- 0.007759153908420137 +- 0.01173646498452678 +- 0.0006592259264737892 +- 0.0012679908324118405 +- 0.0022914398213542933 +- 0.003681865885394588 +- 0.005702470543152257 +- 0.008751211132905633 +- 0.013105920164551772 +- 0.000515784646274745 +- 0.0009899690021342876 +- 0.001748251634128524 +- 0.0027969505160615237 +- 0.004306705153552465 +- 0.006556778401164516 +- 0.010018771868437925 +- 0.015324671553767074 +- 0.0007883509546233338 +- 0.001374758325115665 +- 0.002197454616736621 +- 0.0033768687881787587 +- 0.005133966523667186 +- 0.007824616535900018 +- 0.012241724219988488 +- 0.01866655479503961 +- 0.0011274132257078253 +- 0.0017949039986460186 +- 0.002763714842388449 +- 0.0042118708437075695 +- 0.006441584751879239 +- 0.010062792215167036 +- 0.015807002521794587 +- 0.024621901365806807 +- 0.0015143935693050792 +- 0.002340738699486566 +- 0.0035962222121833096 +- 0.005539863039625577 +- 0.008683054343283026 +- 0.013695312577428589 +- 0.021999626806179572 +- 0.03503176656636804 +- 0.0020063582623002178 +- 0.0031204368344392736 +- 0.004868413119248314 +- 0.007675317653800517 +- 0.012187119696440873 +- 0.019626548642551766 +- 0.03214777616547121 +- 0.0521112821911091 +- 0.002715858991605612 +- 0.004302340974130728 +- 0.00684905418861857 +- 0.010949498175695876 +- 0.017691239302018172 +- 0.028933367084832268 +- 0.04803113970468203 +- 0.07874329823313234 +- 0.0037888704290314334 +- 0.006087356145522903 +- 0.009804052463699914 +- 0.01586167328100376 +- 0.025883061010011525 +- 0.04267170080381979 +- 0.07126465939964033 +- 0.11726580853185602 +- 0.005350787187483993 +- 0.008649234473524677 +- 0.013998540747834761 +- 0.022727620443608938 +- 0.037169683685062134 +- 0.061322490355424045 +- 0.10231037839875257 +- 0.16780634888808807 +- 0.007456268350314235 +- 0.012036905696366685 +- 0.019446823750761375 +- 0.03149908233587679 +- 0.05134600887606355 +- 0.08433731540448988 +- 0.13985138446432144 +- 0.2274474614027247 +- 0.010070513142088544 +- 0.01619012812204914 +- 0.026043947607085723 +- 0.041978291362815626 +- 0.0680352148893666 +- 0.11095409906315966 +- 0.18231212734921934 +- 0.29299545488248663 +- 0.013212528463971676 +- 0.021135542704366295 +- 0.033810131574252486 +- 0.05414757361513702 +- 0.08708320764428719 +- 0.14066286884302173 +- 0.22835785845256412 +- 0.3621102902139775 +- 0.016087245631736042 +- 0.025751423439916037 +- 0.0411510408407804 +- 0.06567566121754694 +- 0.10498118737007685 +- 0.1680526985328942 +- 0.2700108008409332 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml deleted file mode 100644 index 79d394b0a8..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,510 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: MULT - type: UNCORR - shift_lumi: - description: uncertainty on the precision of the relative luminosity - treatment: ADD - type: UNCORR - norm: - description: relative (percent) normalization uncertainty (beam pol) - treatment: MULT - type: CORR -bins: -- stat: 7.013938298803503e-08 - sys: 4.534873900088472e-05 - shift_lumi: 0.0001 - norm: 0.0001511624633362824 -- stat: 5.67331399146537e-08 - sys: 3.8333202645036284e-05 - shift_lumi: 0.0001 - norm: 0.00012777734215012093 -- stat: 1.65892216318336e-07 - sys: 8.640219599913332e-05 - shift_lumi: 0.0001 - norm: 0.00028800731999711107 -- stat: 4.4354037336301756e-08 - sys: 3.051883302956543e-05 - shift_lumi: 0.0001 - norm: 0.00010172944343188476 -- stat: 1.258133930406907e-07 - sys: 6.837684404385365e-05 - shift_lumi: 0.0001 - norm: 0.00022792281347951214 -- stat: 2.95227347859452e-07 - sys: 0.00012798873462114971 - shift_lumi: 0.0001 - norm: 0.0004266291154038323 -- stat: 3.767019952490038e-08 - sys: 2.5919862058417692e-05 - shift_lumi: 0.0001 - norm: 8.639954019472565e-05 -- stat: 9.133773696800921e-08 - sys: 5.05559429712228e-05 - shift_lumi: 0.0001 - norm: 0.00016851980990407602 -- stat: 2.1289214662922732e-07 - sys: 9.676915755873969e-05 - shift_lumi: 0.0001 - norm: 0.0003225638585291323 -- stat: 4.3856449206137894e-07 - sys: 0.0001570039947713767 - shift_lumi: 0.0001 - norm: 0.0005233466492379224 -- stat: 2.9449036504329683e-08 - sys: 1.9897997638060595e-05 - shift_lumi: 0.0001 - norm: 6.632665879353532e-05 -- stat: 6.960616285929008e-08 - sys: 3.838575157681438e-05 - shift_lumi: 0.0001 - norm: 0.00012795250525604794 -- stat: 1.5585603844442437e-07 - sys: 7.193355620511894e-05 - shift_lumi: 0.0001 - norm: 0.00023977852068372984 -- stat: 3.10978806402048e-07 - sys: 0.00011603686806046567 - shift_lumi: 0.0001 - norm: 0.00038678956020155226 -- stat: 6.308015595416033e-07 - sys: 0.0001833725463783731 - shift_lumi: 0.0001 - norm: 0.0006112418212612437 -- stat: 2.462093475704407e-08 - sys: 1.6269340147826477e-05 - shift_lumi: 0.0001 - norm: 5.423113382608826e-05 -- stat: 5.728923171730337e-08 - sys: 3.113545202027357e-05 - shift_lumi: 0.0001 - norm: 0.00010378484006757859 -- stat: 1.1157343349571278e-07 - sys: 5.1337469399867845e-05 - shift_lumi: 0.0001 - norm: 0.00017112489799955952 -- stat: 2.3036728814085282e-07 - sys: 8.726033641698971e-05 - shift_lumi: 0.0001 - norm: 0.00029086778805663237 -- stat: 4.4175838189412635e-07 - sys: 0.00013359628484701402 - shift_lumi: 0.0001 - norm: 0.0004453209494900468 -- stat: 8.53587777568568e-07 - sys: 0.00019943639662817005 - shift_lumi: 0.0001 - norm: 0.0006647879887605668 -- stat: 1.774259046167953e-08 - sys: 1.1373455424153545e-05 - shift_lumi: 0.0001 - norm: 3.791151808051182e-05 -- stat: 4.24004830788877e-08 - sys: 2.2473754282095957e-05 - shift_lumi: 0.0001 - norm: 7.491251427365318e-05 -- stat: 8.372831867791477e-08 - sys: 3.7943346832891894e-05 - shift_lumi: 0.0001 - norm: 0.0001264778227763063 -- stat: 1.6575253764482514e-07 - sys: 6.246954936362756e-05 - shift_lumi: 0.0001 - norm: 0.00020823183121209188 -- stat: 3.136770162974448e-07 - sys: 9.621994364952292e-05 - shift_lumi: 0.0001 - norm: 0.0003207331454984098 -- stat: 6.248067870185457e-07 - sys: 0.0001506768778983631 - shift_lumi: 0.0001 - norm: 0.0005022562596612103 -- stat: 1.2087630324808412e-06 - sys: 0.0002219271173465437 - shift_lumi: 0.0001 - norm: 0.0007397570578218123 -- stat: 1.3217348404824955e-08 - sys: 8.226565397193957e-06 - shift_lumi: 0.0001 - norm: 2.7421884657313185e-05 -- stat: 3.42204727881272e-08 - sys: 1.757900999390096e-05 - shift_lumi: 0.0001 - norm: 5.859669997966987e-05 -- stat: 6.671430866734796e-08 - sys: 2.943278323559469e-05 - shift_lumi: 0.0001 - norm: 9.810927745198228e-05 -- stat: 1.2616089676484032e-07 - sys: 4.661116875548287e-05 - shift_lumi: 0.0001 - norm: 0.00015537056251827623 -- stat: 2.363801192118965e-07 - sys: 7.163033915512014e-05 - shift_lumi: 0.0001 - norm: 0.0002387677971837338 -- stat: 4.4053131313787106e-07 - sys: 0.00010709837434470123 - shift_lumi: 0.0001 - norm: 0.0003569945811490041 -- stat: 8.811978269456747e-07 - sys: 0.00016647314111064386 - shift_lumi: 0.0001 - norm: 0.0005549104703688128 -- stat: 1.7546422616974698e-06 - sys: 0.00025066318024249566 - shift_lumi: 0.0001 - norm: 0.0008355439341416524 -- stat: 2.655780936239021e-08 - sys: 1.3323315733640571e-05 - shift_lumi: 0.0001 - norm: 4.4411052445468574e-05 -- stat: 5.4157852765576714e-08 - sys: 2.3210508328104307e-05 - shift_lumi: 0.0001 - norm: 7.736836109368102e-05 -- stat: 9.991312771372612e-08 - sys: 3.593997399774321e-05 - shift_lumi: 0.0001 - norm: 0.00011979991332581069 -- stat: 1.8115762053228446e-07 - sys: 5.370285193644796e-05 - shift_lumi: 0.0001 - norm: 0.00017900950645482653 -- stat: 3.424214289155113e-07 - sys: 8.204986315866882e-05 - shift_lumi: 0.0001 - norm: 0.00027349954386222947 -- stat: 6.766121319783705e-07 - sys: 0.00012830824247377442 - shift_lumi: 0.0001 - norm: 0.00042769414157924806 -- stat: 1.330619411548167e-06 - sys: 0.0001956793252276716 - shift_lumi: 0.0001 - norm: 0.0006522644174255719 -- stat: 2.6848050044653104e-06 - sys: 0.0002961181990219093 - shift_lumi: 0.0001 - norm: 0.0009870606634063642 -- stat: 4.0214000061074145e-08 - sys: 1.6755833358780896e-05 - shift_lumi: 0.0001 - norm: 5.585277786260298e-05 -- stat: 7.448374742624783e-08 - sys: 2.598270259055157e-05 - shift_lumi: 0.0001 - norm: 8.660900863517189e-05 -- stat: 1.5358579035385451e-07 - sys: 4.413384780283175e-05 - shift_lumi: 0.0001 - norm: 0.00014711282600943918 -- stat: 2.8987620638971044e-07 - sys: 6.783374564501805e-05 - shift_lumi: 0.0001 - norm: 0.00022611248548339347 -- stat: 5.459432475328766e-07 - sys: 0.00010172855544090868 - shift_lumi: 0.0001 - norm: 0.0003390951848030289 -- stat: 1.0984055043557873e-06 - sys: 0.00015996196665375544 - shift_lumi: 0.0001 - norm: 0.0005332065555125181 -- stat: 2.193526188395779e-06 - sys: 0.00024554397631296036 - shift_lumi: 0.0001 - norm: 0.0008184799210432012 -- stat: 4.537268856858366e-06 - sys: 0.0003760167560932347 - shift_lumi: 0.0001 - norm: 0.0012533891869774489 -- stat: 6.895214854941858e-08 - sys: 2.3347228628471307e-05 - shift_lumi: 0.0001 - norm: 7.782409542823768e-05 -- stat: 1.2875177773255448e-07 - sys: 3.589733579903935e-05 - shift_lumi: 0.0001 - norm: 0.00011965778599679785 -- stat: 2.2629687487422246e-07 - sys: 5.1275726935246786e-05 - shift_lumi: 0.0001 - norm: 0.00017091908978415595 -- stat: 4.6184296853211465e-07 - sys: 8.356627898651048e-05 - shift_lumi: 0.0001 - norm: 0.0002785542632883683 -- stat: 9.324716417446195e-07 - sys: 0.00013321023453494562 - shift_lumi: 0.0001 - norm: 0.00044403411511648546 -- stat: 1.8288166048297787e-06 - sys: 0.00020320184498108653 - shift_lumi: 0.0001 - norm: 0.0006773394832702884 -- stat: 3.995800064789016e-06 - sys: 0.0003386271241346624 - shift_lumi: 0.0001 - norm: 0.0011287570804488745 -- stat: 8.527330098973576e-06 - sys: 0.0005351880815255382 - shift_lumi: 0.0001 - norm: 0.001783960271751794 -- stat: 1.1167464692994457e-07 - sys: 3.002006637901736e-05 - shift_lumi: 0.0001 - norm: 0.00010006688793005786 -- stat: 2.1819510733028112e-07 - sys: 4.764085312888234e-05 - shift_lumi: 0.0001 - norm: 0.00015880284376294112 -- stat: 4.136039169599516e-07 - sys: 7.239275092647929e-05 - shift_lumi: 0.0001 - norm: 0.00024130916975493094 -- stat: 8.425376856641328e-07 - sys: 0.00011701912300890731 - shift_lumi: 0.0001 - norm: 0.0003900637433630244 -- stat: 1.6280774361130374e-06 - sys: 0.00017825665358901872 - shift_lumi: 0.0001 - norm: 0.0005941888452967289 -- stat: 3.495280767011287e-06 - sys: 0.000294546132051513 - shift_lumi: 0.0001 - norm: 0.00098182044017171 -- stat: 7.617002730528987e-06 - sys: 0.0004820887804132271 - shift_lumi: 0.0001 - norm: 0.0016069626013774235 -- stat: 1.665136377127685e-05 - sys: 0.0007756846477302881 - shift_lumi: 0.0001 - norm: 0.0025856154924342937 -- stat: 1.8464671380995531e-07 - sys: 3.884573221808317e-05 - shift_lumi: 0.0001 - norm: 0.0001294857740602772 -- stat: 4.0405305723152094e-07 - sys: 6.794614191113019e-05 - shift_lumi: 0.0001 - norm: 0.00022648713970376731 -- stat: 8.062638139328908e-07 - sys: 0.00010702616999109171 - shift_lumi: 0.0001 - norm: 0.0003567538999703057 -- stat: 1.5209992653522256e-06 - sys: 0.00015954537748449918 - shift_lumi: 0.0001 - norm: 0.0005318179249483307 -- stat: 3.282205634467275e-06 - sys: 0.00026903324872682577 - shift_lumi: 0.0001 - norm: 0.000896777495756086 -- stat: 6.713396773084784e-06 - sys: 0.0004231132420011418 - shift_lumi: 0.0001 - norm: 0.0014103774733371394 -- stat: 1.5016305475905706e-05 - sys: 0.0007127993105651442 - shift_lumi: 0.0001 - norm: 0.002375997701883814 -- stat: 3.402529282622201e-05 - sys: 0.00117598938339477 - shift_lumi: 0.0001 - norm: 0.0039199646113159 -- stat: 3.524368734675727e-07 - sys: 5.696716704756024e-05 - shift_lumi: 0.0001 - norm: 0.00018989055682520082 -- stat: 7.083476425011782e-07 - sys: 9.159667790963512e-05 - shift_lumi: 0.0001 - norm: 0.0003053222596987837 -- stat: 1.3255545985474055e-06 - sys: 0.00013434674985277759 - shift_lumi: 0.0001 - norm: 0.0004478224995092586 -- stat: 2.9124448173760696e-06 - sys: 0.00023114641407746586 - shift_lumi: 0.0001 - norm: 0.0007704880469248861 -- stat: 6.002821821983953e-06 - sys: 0.00037054455691258966 - shift_lumi: 0.0001 - norm: 0.0012351485230419656 -- stat: 1.3727705963862919e-05 - sys: 0.000641481587096398 - shift_lumi: 0.0001 - norm: 0.002138271956987994 -- stat: 3.076571993824678e-05 - sys: 0.0010682541645224578 - shift_lumi: 0.0001 - norm: 0.0035608472150748588 -- stat: 6.790186624500926e-05 - sys: 0.00173810237828522 - shift_lumi: 0.0001 - norm: 0.005793674594284066 -- stat: 6.54989683925852e-07 - sys: 7.987679072266487e-05 - shift_lumi: 0.0001 - norm: 0.0002662559690755496 -- stat: 1.3634182640642452e-06 - sys: 0.00013109791000617742 - shift_lumi: 0.0001 - norm: 0.00043699303335392476 -- stat: 2.7347728513883235e-06 - sys: 0.00020717976146881236 - shift_lumi: 0.0001 - norm: 0.0006905992048960412 -- stat: 5.794771618033113e-06 - sys: 0.0003382162422976525 - shift_lumi: 0.0001 - norm: 0.0011273874743255084 -- stat: 1.190890784196444e-05 - sys: 0.000546280176236901 - shift_lumi: 0.0001 - norm: 0.0018209339207896696 -- stat: 2.6819592086611373e-05 - sys: 0.0009163869733466301 - shift_lumi: 0.0001 - norm: 0.0030546232444887667 -- stat: 5.879914500379441e-05 - sys: 0.0015180502152442618 - shift_lumi: 0.0001 - norm: 0.005060167384147539 -- stat: 0.0001324992753955113 - sys: 0.002509455973399836 - shift_lumi: 0.0001 - norm: 0.008364853244666117 -- stat: 1.2288235898227192e-06 - sys: 0.00010971639194845708 - shift_lumi: 0.0001 - norm: 0.0003657213064948569 -- stat: 2.622150525908899e-06 - sys: 0.00018465848774006335 - shift_lumi: 0.0001 - norm: 0.0006155282924668778 -- stat: 5.190314338361503e-06 - sys: 0.00028208230099790776 - shift_lumi: 0.0001 - norm: 0.0009402743366596925 -- stat: 1.1404167860209515e-05 - sys: 0.00047254839199763177 - shift_lumi: 0.0001 - norm: 0.0015751613066587729 -- stat: 2.29636991189936e-05 - sys: 0.0007537319185665295 - shift_lumi: 0.0001 - norm: 0.002512439728555098 -- stat: 5.270913630294262e-05 - sys: 0.0012793479685180248 - shift_lumi: 0.0001 - norm: 0.004264493228393416 -- stat: 0.00011622150641952053 - sys: 0.002100388670232299 - shift_lumi: 0.0001 - norm: 0.007001295567440996 -- stat: 0.00024953902872318183 - sys: 0.0034028049371342974 - shift_lumi: 0.0001 - norm: 0.011342683123780992 -- stat: 2.6343911757941806e-06 - sys: 0.00015618920014590003 - shift_lumi: 0.0001 - norm: 0.0005206306671530002 -- stat: 5.217611082407736e-06 - sys: 0.00023788500375719162 - shift_lumi: 0.0001 - norm: 0.000792950012523972 -- stat: 1.1244384091376454e-05 - sys: 0.00039592901730198786 - shift_lumi: 0.0001 - norm: 0.0013197633910066262 -- stat: 2.3170025948464992e-05 - sys: 0.0006228501599049728 - shift_lumi: 0.0001 - norm: 0.002076167199683243 -- stat: 5.086561316892669e-05 - sys: 0.0010409061357897686 - shift_lumi: 0.0001 - norm: 0.0034696871192992284 -- stat: 0.00010363870394964436 - sys: 0.00164854778286815 - shift_lumi: 0.0001 - norm: 0.0054951592762271665 -- stat: 0.0002463549334709926 - sys: 0.0027372770385665846 - shift_lumi: 0.0001 - norm: 0.009124256795221948 -- stat: 0.0005697196123796933 - sys: 0.004450934471716354 - shift_lumi: 0.0001 - norm: 0.014836448239054513 -- stat: 6.532544887323029e-06 - sys: 0.00019715930243429666 - shift_lumi: 0.0001 - norm: 0.0006571976747809889 -- stat: 1.263695896906408e-05 - sys: 0.00029162213005532497 - shift_lumi: 0.0001 - norm: 0.0009720737668510831 -- stat: 3.1972544522246424e-05 - sys: 0.00055766066027174 - shift_lumi: 0.0001 - norm: 0.0018588688675724666 -- stat: 6.360668863014545e-05 - sys: 0.000844336574736444 - shift_lumi: 0.0001 - norm: 0.00281445524912148 -- stat: 0.00011947492442402553 - sys: 0.0012274821002468377 - shift_lumi: 0.0001 - norm: 0.004091607000822792 -- stat: 0.00029435434840458945 - sys: 0.0021227477048407894 - shift_lumi: 0.0001 - norm: 0.00707582568280263 -- stat: 0.0006775091378700466 - sys: 0.003433323333800913 - shift_lumi: 0.0001 - norm: 0.011444411112669708 -- stat: 0.001464633143052319 - sys: 0.005332402219850676 - shift_lumi: 0.0001 - norm: 0.017774674066168922 -- stat: 1.906131454656625e-05 - sys: 0.00012821512026838284 - shift_lumi: 0.0001 - norm: 0.0004273837342279428 -- stat: 9.139605901554568e-05 - sys: 0.00046630642354870245 - shift_lumi: 0.0001 - norm: 0.0015543547451623415 -- stat: 0.00013214868212279036 - sys: 0.0005460689343916958 - shift_lumi: 0.0001 - norm: 0.0018202297813056524 -- stat: 0.00040338734974654754 - sys: 0.0011911043791728766 - shift_lumi: 0.0001 - norm: 0.003970347930576256 -- stat: 0.0008005289662782591 - sys: 0.001705672513376973 - shift_lumi: 0.0001 - norm: 0.005685575044589909 -- stat: 0.0024577546361428055 - sys: 0.002614632591641283 - shift_lumi: 0.0001 - norm: 0.008715441972137607 -- stat: 0.003591577891606721 - sys: 0.0038208275442624695 - shift_lumi: 0.0001 - norm: 0.01273609181420823 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..d93836ddde --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,510 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: -1.8487183505258032e-09 + sys: -1.19529203697789e-06 + shift_lumi: 0.0001 + norm: -3.9843067899263e-06 +- stat: 5.822568474462475e-09 + sys: 3.93416788815032e-06 + shift_lumi: 0.0001 + norm: 1.3113892960501069e-05 +- stat: -2.5839333943200655e-09 + sys: -1.3457986428750342e-06 + shift_lumi: 0.0001 + norm: -4.4859954762501144e-06 +- stat: 7.910669694962605e-09 + sys: 5.443121349744911e-06 + shift_lumi: 0.0001 + norm: 1.814373783248304e-05 +- stat: 8.350257475127418e-09 + sys: 4.5381834103953355e-06 + shift_lumi: 0.0001 + norm: 1.512727803465112e-05 +- stat: -1.1381311890285776e-08 + sys: -4.934094750123891e-06 + shift_lumi: 0.0001 + norm: -1.6446982500412968e-05 +- stat: 1.1489789406953012e-08 + sys: 7.905818399279596e-06 + shift_lumi: 0.0001 + norm: 2.6352727997598654e-05 +- stat: 1.0928467176272444e-08 + sys: 6.048967071737514e-06 + shift_lumi: 0.0001 + norm: 2.016322357245838e-05 +- stat: 4.8898590694697595e-09 + sys: 2.222663213395345e-06 + shift_lumi: 0.0001 + norm: 7.408877377984484e-06 +- stat: -2.547192951694154e-08 + sys: -9.11882918267597e-06 + shift_lumi: 0.0001 + norm: -3.0396097275586568e-05 +- stat: 1.1154103916518819e-08 + sys: 7.536556700350552e-06 + shift_lumi: 0.0001 + norm: 2.5121855667835173e-05 +- stat: 1.4843936285501843e-08 + sys: 8.185994275092926e-06 + shift_lumi: 0.0001 + norm: 2.7286647583643088e-05 +- stat: 1.7692702505095983e-08 + sys: 8.165862694659684e-06 + shift_lumi: 0.0001 + norm: 2.7219542315532283e-05 +- stat: 6.848261296956827e-09 + sys: 2.555321379461502e-06 + shift_lumi: 0.0001 + norm: 8.517737931538342e-06 +- stat: -1.2059567794459688e-08 + sys: -3.5056883123429324e-06 + shift_lumi: 0.0001 + norm: -1.1685627707809775e-05 +- stat: 1.2815260822732999e-08 + sys: 8.46823402383238e-06 + shift_lumi: 0.0001 + norm: 2.822744674610793e-05 +- stat: 2.1268883998301718e-08 + sys: 1.1559176086033543e-05 + shift_lumi: 0.0001 + norm: 3.853058695344515e-05 +- stat: 2.1476682934783028e-08 + sys: 9.881909325820412e-06 + shift_lumi: 0.0001 + norm: 3.293969775273471e-05 +- stat: 3.7156510685402215e-08 + sys: 1.4074435865682657e-05 + shift_lumi: 0.0001 + norm: 4.691478621894219e-05 +- stat: 3.8584693523390554e-08 + sys: 1.166875812199311e-05 + shift_lumi: 0.0001 + norm: 3.8895860406643705e-05 +- stat: 2.3995254129939604e-08 + sys: 5.606367787369065e-06 + shift_lumi: 0.0001 + norm: 1.8687892624563554e-05 +- stat: 1.1173043204707e-08 + sys: 7.162207182504487e-06 + shift_lumi: 0.0001 + norm: 2.387402394168162e-05 +- stat: 2.0148683105491854e-08 + sys: 1.0679514013511582e-05 + shift_lumi: 0.0001 + norm: 3.559838004503861e-05 +- stat: 2.7459135792882364e-08 + sys: 1.244371712668385e-05 + shift_lumi: 0.0001 + norm: 4.147905708894617e-05 +- stat: 4.5722690003999636e-08 + sys: 1.723216959949735e-05 + shift_lumi: 0.0001 + norm: 5.7440565331657835e-05 +- stat: 7.093582553912659e-08 + sys: 2.1759455686848647e-05 + shift_lumi: 0.0001 + norm: 7.253151895616216e-05 +- stat: 1.2926914764790172e-07 + sys: 3.1174231747886266e-05 + shift_lumi: 0.0001 + norm: 0.00010391410582628756 +- stat: 1.9776575360599112e-07 + sys: 3.630950188604488e-05 + shift_lumi: 0.0001 + norm: 0.00012103167295348295 +- stat: 1.061609766228941e-08 + sys: 6.60752966532536e-06 + shift_lumi: 0.0001 + norm: 2.2025098884417863e-05 +- stat: 2.1851635756908148e-08 + sys: 1.1225155354576102e-05 + shift_lumi: 0.0001 + norm: 3.741718451525367e-05 +- stat: 3.356781151646945e-08 + sys: 1.4809328610207113e-05 + shift_lumi: 0.0001 + norm: 4.936442870069037e-05 +- stat: 5.447036408828468e-08 + sys: 2.0124518751829317e-05 + shift_lumi: 0.0001 + norm: 6.708172917276437e-05 +- stat: 9.32715108702297e-08 + sys: 2.8264094203099906e-05 + shift_lumi: 0.0001 + norm: 9.421364734366636e-05 +- stat: 1.5922392012973188e-07 + sys: 3.870921883218765e-05 + shift_lumi: 0.0001 + norm: 0.00012903072944062553 +- stat: 3.1615574771388813e-07 + sys: 5.9727156369122436e-05 + shift_lumi: 0.0001 + norm: 0.00019909052123040814 +- stat: 5.907756434782279e-07 + sys: 8.439652049688969e-05 + shift_lumi: 0.0001 + norm: 0.0002813217349896323 +- stat: 2.073335774843793e-08 + sys: 1.0401350041022375e-05 + shift_lumi: 0.0001 + norm: 3.4671166803407906e-05 +- stat: 3.599103482741778e-08 + sys: 1.5424729211750476e-05 + shift_lumi: 0.0001 + norm: 5.141576403916826e-05 +- stat: 5.915603301546595e-08 + sys: 2.1279148566714372e-05 + shift_lumi: 0.0001 + norm: 7.093049522238124e-05 +- stat: 1.0040211367213254e-07 + sys: 2.976347243245036e-05 + shift_lumi: 0.0001 + norm: 9.921157477483452e-05 +- stat: 1.8763986931931742e-07 + sys: 4.496163002859044e-05 + shift_lumi: 0.0001 + norm: 0.00014987210009530146 +- stat: 3.796723736692232e-07 + sys: 7.19985537931523e-05 + shift_lumi: 0.0001 + norm: 0.0002399951793105077 +- stat: 7.328985295496027e-07 + sys: 0.00010777919552200038 + shift_lumi: 0.0001 + norm: 0.0003592639850733346 +- stat: 1.5026096854344086e-06 + sys: 0.0001657290094229127 + shift_lumi: 0.0001 + norm: 0.0005524300314097091 +- stat: 3.054089745507246e-08 + sys: 1.2725373939613528e-05 + shift_lumi: 0.0001 + norm: 4.241791313204509e-05 +- stat: 5.202480515271517e-08 + sys: 1.814818784397041e-05 + shift_lumi: 0.0001 + norm: 6.049395947990136e-05 +- stat: 1.0952369299932936e-07 + sys: 3.147232557451993e-05 + shift_lumi: 0.0001 + norm: 0.00010490775191506643 +- stat: 2.0839409353061206e-07 + sys: 4.876616853290454e-05 + shift_lumi: 0.0001 + norm: 0.0001625538951096818 +- stat: 3.9645864083703275e-07 + sys: 7.387428090131046e-05 + shift_lumi: 0.0001 + norm: 0.0002462476030043682 +- stat: 8.105436515502525e-07 + sys: 0.00011804033760440571 + shift_lumi: 0.0001 + norm: 0.00039346779201468565 +- stat: 1.6519070856352309e-06 + sys: 0.00018491497227260043 + shift_lumi: 0.0001 + norm: 0.0006163832409086682 +- stat: 3.5065683234062916e-06 + sys: 0.0002905995848126761 + shift_lumi: 0.0001 + norm: 0.0009686652827089204 +- stat: 5.6270701570515053e-08 + sys: 1.905328495615634e-05 + shift_lumi: 0.0001 + norm: 6.351094985385447e-05 +- stat: 1.049988360211525e-07 + sys: 2.927476840738453e-05 + shift_lumi: 0.0001 + norm: 9.758256135794842e-05 +- stat: 1.8458054588405246e-07 + sys: 4.182338652961914e-05 + shift_lumi: 0.0001 + norm: 0.00013941128843206378 +- stat: 3.904448668555242e-07 + sys: 7.064744273622271e-05 + shift_lumi: 0.0001 + norm: 0.00023549147578740904 +- stat: 8.04406118545257e-07 + sys: 0.00011491515979217956 + shift_lumi: 0.0001 + norm: 0.0003830505326405985 +- stat: 1.6121396572315637e-06 + sys: 0.00017912662858128483 + shift_lumi: 0.0001 + norm: 0.0005970887619376161 +- stat: 3.6307194397842086e-06 + sys: 0.0003076880881173058 + shift_lumi: 0.0001 + norm: 0.0010256269603910193 +- stat: 7.934741941429827e-06 + sys: 0.0004979963561566837 + shift_lumi: 0.0001 + norm: 0.0016599878538556124 +- stat: 9.8555387785215e-08 + sys: 2.6493383813229837e-05 + shift_lumi: 0.0001 + norm: 8.83112793774328e-05 +- stat: 1.9717178608332285e-07 + sys: 4.3050608315136e-05 + shift_lumi: 0.0001 + norm: 0.00014350202771712 +- stat: 3.814722472263881e-07 + sys: 6.676877139318346e-05 + shift_lumi: 0.0001 + norm: 0.0002225625713106115 +- stat: 7.914724005120077e-07 + sys: 0.00010992672229333439 + shift_lumi: 0.0001 + norm: 0.0003664224076444479 +- stat: 1.5581427552354867e-06 + sys: 0.0001705995717411117 + shift_lumi: 0.0001 + norm: 0.0005686652391370388 +- stat: 3.41300081064529e-06 + sys: 0.0002876124278633671 + shift_lumi: 0.0001 + norm: 0.0009587080928778904 +- stat: 7.565472222011246e-06 + sys: 0.00047882735582349667 + shift_lumi: 0.0001 + norm: 0.001596091186078322 +- stat: 1.679256780303374e-05 + sys: 0.0007822624752966028 + shift_lumi: 0.0001 + norm: 0.002607541584322009 +- stat: 1.7491988228615118e-07 + sys: 3.679941422569801e-05 + shift_lumi: 0.0001 + norm: 0.00012266471408566002 +- stat: 3.915413931568845e-07 + sys: 6.584216252638192e-05 + shift_lumi: 0.0001 + norm: 0.00021947387508793972 +- stat: 7.908129939970685e-07 + sys: 0.00010497517619430112 + shift_lumi: 0.0001 + norm: 0.0003499172539810038 +- stat: 1.5113300894557666e-06 + sys: 0.00015853112826459093 + shift_lumi: 0.0001 + norm: 0.000528437094215303 +- stat: 3.3008078741921314e-06 + sys: 0.0002705580224747649 + shift_lumi: 0.0001 + norm: 0.0009018600749158828 +- stat: 6.823523820025955e-06 + sys: 0.00043005402227054335 + shift_lumi: 0.0001 + norm: 0.0014335134075684779 +- stat: 1.539144847939753e-05 + sys: 0.0007306067316169712 + shift_lumi: 0.0001 + norm: 0.0024353557720565707 +- stat: 3.511332268644673e-05 + sys: 0.001213594102066131 + shift_lumi: 0.0001 + norm: 0.00404531367355377 +- stat: 3.4910478605591367e-07 + sys: 5.642857533231363e-05 + shift_lumi: 0.0001 + norm: 0.0001880952511077121 +- stat: 7.070898383443578e-07 + sys: 9.14340308203911e-05 + shift_lumi: 0.0001 + norm: 0.00030478010273463703 +- stat: 1.3334352925186691e-06 + sys: 0.00013514546883635159 + shift_lumi: 0.0001 + norm: 0.00045048489612117197 +- stat: 2.9461888164852736e-06 + sys: 0.00023382450924486298 + shift_lumi: 0.0001 + norm: 0.00077941503081621 +- stat: 6.103139952532715e-06 + sys: 0.00037673703410695774 + shift_lumi: 0.0001 + norm: 0.001255790113689859 +- stat: 1.3997390167248363e-05 + sys: 0.0006540836526751572 + shift_lumi: 0.0001 + norm: 0.002180278842250524 +- stat: 3.1458339303259496e-05 + sys: 0.0010923034480298435 + shift_lumi: 0.0001 + norm: 0.0036410114934328115 +- stat: 6.9581295805731e-05 + sys: 0.001781091189566493 + shift_lumi: 0.0001 + norm: 0.00593697063188831 +- stat: 6.515264482918858e-07 + sys: 7.945444491364461e-05 + shift_lumi: 0.0001 + norm: 0.0002648481497121487 +- stat: 1.3592517533965383e-06 + sys: 0.00013069728398043637 + shift_lumi: 0.0001 + norm: 0.0004356576132681213 +- stat: 2.730796765588115e-06 + sys: 0.00020687854284758445 + shift_lumi: 0.0001 + norm: 0.0006895951428252815 +- stat: 5.7935778045006145e-06 + sys: 0.0003381465644650164 + shift_lumi: 0.0001 + norm: 0.0011271552148833881 +- stat: 1.191707818614615e-05 + sys: 0.0005466549626672547 + shift_lumi: 0.0001 + norm: 0.0018221832088908489 +- stat: 2.6852189657786593e-05 + sys: 0.0009175007855735739 + shift_lumi: 0.0001 + norm: 0.0030583359519119127 +- stat: 5.88836118747803e-05 + sys: 0.001520230943410851 + shift_lumi: 0.0001 + norm: 0.00506743647803617 +- stat: 0.0001326736196253011 + sys: 0.002512757947448885 + shift_lumi: 0.0001 + norm: 0.008375859824829615 +- stat: 1.2046407987673035e-06 + sys: 0.0001075572141756521 + shift_lumi: 0.0001 + norm: 0.0003585240472521736 +- stat: 2.572403910583807e-06 + sys: 0.00018115520497069063 + shift_lumi: 0.0001 + norm: 0.0006038506832356356 +- stat: 5.085782169188312e-06 + sys: 0.00027640120484719087 + shift_lumi: 0.0001 + norm: 0.0009213373494906363 +- stat: 1.1181297756212129e-05 + sys: 0.0004633134429369667 + shift_lumi: 0.0001 + norm: 0.0015443781431232224 +- stat: 2.2502987064921144e-05 + sys: 0.0007386100787173243 + shift_lumi: 0.0001 + norm: 0.002462033595724414 +- stat: 5.167900056601865e-05 + sys: 0.0012543446739324915 + shift_lumi: 0.0001 + norm: 0.004181148913108305 +- stat: 0.00011390556321915677 + sys: 0.0020585342750450014 + shift_lumi: 0.0001 + norm: 0.0068617809168166725 +- stat: 0.00024447827587894915 + sys: 0.0033337946710765795 + shift_lumi: 0.0001 + norm: 0.011112648903588597 +- stat: 2.575553326989763e-06 + sys: 0.00015270079013773302 + shift_lumi: 0.0001 + norm: 0.0005090026337924434 +- stat: 5.088350667119471e-06 + sys: 0.0002319916717531674 + shift_lumi: 0.0001 + norm: 0.000773305572510558 +- stat: 1.0964685460687663e-05 + sys: 0.0003860804739678755 + shift_lumi: 0.0001 + norm: 0.0012869349132262513 +- stat: 2.2562093423435297e-05 + sys: 0.0006065078877267553 + shift_lumi: 0.0001 + norm: 0.0020216929590891842 +- stat: 4.954192171265339e-05 + sys: 0.0010138183160843123 + shift_lumi: 0.0001 + norm: 0.0033793943869477074 +- stat: 0.00010081285592555535 + sys: 0.0016035979203428742 + shift_lumi: 0.0001 + norm: 0.005345326401142914 +- stat: 0.00023961430773999096 + sys: 0.002662381197111011 + shift_lumi: 0.0001 + norm: 0.008874603990370034 +- stat: 0.0005541531835078785 + sys: 0.0043293217461553 + shift_lumi: 0.0001 + norm: 0.014431072487184336 +- stat: 6.299570925668954e-06 + sys: 0.00019012789514091411 + shift_lumi: 0.0001 + norm: 0.0006337596504697137 +- stat: 1.2130759932041421e-05 + sys: 0.0002799406138163405 + shift_lumi: 0.0001 + norm: 0.0009331353793878016 +- stat: 3.0870564487758695e-05 + sys: 0.0005384400782748609 + shift_lumi: 0.0001 + norm: 0.0017948002609162032 +- stat: 6.123874101495992e-05 + sys: 0.0008129036417915034 + shift_lumi: 0.0001 + norm: 0.002709678805971678 +- stat: 0.00011447903520954574 + sys: 0.0011761544713309493 + shift_lumi: 0.0001 + norm: 0.003920514904436498 +- stat: 0.00028273193172481805 + sys: 0.002038932199938592 + shift_lumi: 0.0001 + norm: 0.006796440666461972 +- stat: 0.0006504625790431631 + sys: 0.003296263069475489 + shift_lumi: 0.0001 + norm: 0.010987543564918297 +- stat: 0.0014045771813389599 + sys: 0.005113751873806894 + shift_lumi: 0.0001 + norm: 0.017045839579356313 +- stat: 1.8423836994177735e-05 + sys: 0.00012392715466935696 + shift_lumi: 0.0001 + norm: 0.00041309051556452317 +- stat: 8.983970410660305e-05 + sys: 0.000458365837278587 + shift_lumi: 0.0001 + norm: 0.0015278861242619566 +- stat: 0.00012868634315745507 + sys: 0.0005317617485845252 + shift_lumi: 0.0001 + norm: 0.0017725391619484168 +- stat: 0.0003949539040131748 + sys: 0.0011662024724798468 + shift_lumi: 0.0001 + norm: 0.003887341574932823 +- stat: 0.0007804948903650735 + sys: 0.001662986272084674 + shift_lumi: 0.0001 + norm: 0.0055432875736155796 +- stat: 0.002389707569109565 + sys: 0.00254224209479741 + shift_lumi: 0.0001 + norm: 0.008474140315991365 +- stat: 0.003476918798253353 + sys: 0.0036988497853759073 + shift_lumi: 0.0001 + norm: 0.012329499284586359 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..5ee7f9b12e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_105GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,510 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 2.9899907124099184e-08 + sys: 1.9331836502650336e-05 + shift_lumi: 0.0001 + norm: 6.443945500883445e-05 +- stat: 3.2284256191771894e-08 + sys: 2.1813686616062085e-05 + shift_lumi: 0.0001 + norm: 7.271228872020697e-05 +- stat: 1.130947695337521e-07 + sys: 5.890352579882921e-05 + shift_lumi: 0.0001 + norm: 0.0001963450859960974 +- stat: 2.854963360703935e-08 + sys: 1.9644243307595883e-05 + shift_lumi: 0.0001 + norm: 6.548081102531962e-05 +- stat: 8.867095479080828e-08 + sys: 4.8190736299352324e-05 + shift_lumi: 0.0001 + norm: 0.00016063578766450776 +- stat: 2.413303364814429e-07 + sys: 0.00010462297824340009 + shift_lumi: 0.0001 + norm: 0.0003487432608113336 +- stat: 2.591897365961666e-08 + sys: 1.7834156187809626e-05 + shift_lumi: 0.0001 + norm: 5.944718729269876e-05 +- stat: 6.966247586802152e-08 + sys: 3.855856597860969e-05 + shift_lumi: 0.0001 + norm: 0.0001285285532620323 +- stat: 1.7878613327040892e-07 + sys: 8.126642421382224e-05 + shift_lumi: 0.0001 + norm: 0.00027088808071274074 +- stat: 3.7262800106366323e-07 + sys: 0.00013339904572684842 + shift_lumi: 0.0001 + norm: 0.00044466348575616135 +- stat: 2.3474576144440933e-08 + sys: 1.586120009759522e-05 + shift_lumi: 0.0001 + norm: 5.287066699198408e-05 +- stat: 5.518377148210894e-08 + sys: 3.0432226920280664e-05 + shift_lumi: 0.0001 + norm: 0.00010144075640093554 +- stat: 1.3234171537493663e-07 + sys: 6.108079171150922e-05 + shift_lumi: 0.0001 + norm: 0.00020360263903836405 +- stat: 2.6777500681861697e-07 + sys: 9.991604732037945e-05 + shift_lumi: 0.0001 + norm: 0.0003330534910679316 +- stat: 5.425595045544738e-07 + sys: 0.00015772078620769587 + shift_lumi: 0.0001 + norm: 0.0005257359540256529 +- stat: 1.704275432820646e-08 + sys: 1.126173193493819e-05 + shift_lumi: 0.0001 + norm: 3.753910644979397e-05 +- stat: 4.464582641304099e-08 + sys: 2.4264036094044017e-05 + shift_lumi: 0.0001 + norm: 8.088012031348006e-05 +- stat: 1.0162298521902967e-07 + sys: 4.675904227869463e-05 + shift_lumi: 0.0001 + norm: 0.00015586347426231544 +- stat: 1.9549825829856644e-07 + sys: 7.40523705676388e-05 + shift_lumi: 0.0001 + norm: 0.0002468412352254627 +- stat: 3.883704805630788e-07 + sys: 0.00011745075017028591 + shift_lumi: 0.0001 + norm: 0.00039150250056761975 +- stat: 7.459686900253193e-07 + sys: 0.00017429175000591566 + shift_lumi: 0.0001 + norm: 0.000580972500019719 +- stat: 1.5199158733706044e-08 + sys: 9.743050470324387e-06 + shift_lumi: 0.0001 + norm: 3.2476834901081286e-05 +- stat: 3.4239941924087804e-08 + sys: 1.8148379111707315e-05 + shift_lumi: 0.0001 + norm: 6.049459703902438e-05 +- stat: 7.364633062029433e-08 + sys: 3.337447006961978e-05 + shift_lumi: 0.0001 + norm: 0.00011124823356539928 +- stat: 1.4731317743013815e-07 + sys: 5.552004174502694e-05 + shift_lumi: 0.0001 + norm: 0.00018506680581675645 +- stat: 2.732667334745627e-07 + sys: 8.382415137256524e-05 + shift_lumi: 0.0001 + norm: 0.0002794138379085508 +- stat: 5.525842570718134e-07 + sys: 0.0001332598690687653 + shift_lumi: 0.0001 + norm: 0.00044419956356255095 +- stat: 1.0948356360824802e-06 + sys: 0.0002010102147030257 + shift_lumi: 0.0001 + norm: 0.0006700340490100857 +- stat: 1.2103741978090365e-08 + sys: 7.5334493639566595e-06 + shift_lumi: 0.0001 + norm: 2.5111497879855535e-05 +- stat: 2.8830986450277365e-08 + sys: 1.4810438245005497e-05 + shift_lumi: 0.0001 + norm: 4.936812748335165e-05 +- stat: 6.352375035382058e-08 + sys: 2.8025183979626727e-05 + shift_lumi: 0.0001 + norm: 9.341727993208911e-05 +- stat: 1.1140177949579594e-07 + sys: 4.115829291716599e-05 + shift_lumi: 0.0001 + norm: 0.0001371943097238866 +- stat: 2.0905063384452669e-07 + sys: 6.334867692258384e-05 + shift_lumi: 0.0001 + norm: 0.00021116225640861283 +- stat: 4.0436985817352796e-07 + sys: 9.830709680069561e-05 + shift_lumi: 0.0001 + norm: 0.00032769032266898534 +- stat: 7.993527854449728e-07 + sys: 0.00015101123150723672 + shift_lumi: 0.0001 + norm: 0.000503370771690789 +- stat: 1.6212832222098464e-06 + sys: 0.0002316118888871209 + shift_lumi: 0.0001 + norm: 0.0007720396296237363 +- stat: 2.1497094861736583e-08 + sys: 1.0784495750035076e-05 + shift_lumi: 0.0001 + norm: 3.594831916678358e-05 +- stat: 4.957047983508246e-08 + sys: 2.1244491357892483e-05 + shift_lumi: 0.0001 + norm: 7.081497119297495e-05 +- stat: 9.460791392093672e-08 + sys: 3.403162371256717e-05 + shift_lumi: 0.0001 + norm: 0.00011343874570855722 +- stat: 1.6834095925580445e-07 + sys: 4.990344641970488e-05 + shift_lumi: 0.0001 + norm: 0.00016634482139901623 +- stat: 3.201031099409148e-07 + sys: 7.670202314878151e-05 + shift_lumi: 0.0001 + norm: 0.0002556734104959384 +- stat: 6.081601634967673e-07 + sys: 0.00011532746463276246 + shift_lumi: 0.0001 + norm: 0.0003844248821092082 +- stat: 1.2461412798126976e-06 + sys: 0.0001832560705606908 + shift_lumi: 0.0001 + norm: 0.0006108535685356361 +- stat: 2.5512442231803132e-06 + sys: 0.0002813872304978287 + shift_lumi: 0.0001 + norm: 0.0009379574349927623 +- stat: 4.044079497017263e-08 + sys: 1.685033123757193e-05 + shift_lumi: 0.0001 + norm: 5.6167770791906436e-05 +- stat: 7.633407770628647e-08 + sys: 2.662816664172784e-05 + shift_lumi: 0.0001 + norm: 8.876055547242614e-05 +- stat: 1.4829157718825854e-07 + sys: 4.2612522180534074e-05 + shift_lumi: 0.0001 + norm: 0.00014204174060178024 +- stat: 2.561584701277756e-07 + sys: 5.994347974908946e-05 + shift_lumi: 0.0001 + norm: 0.0001998115991636315 +- stat: 5.14120896694077e-07 + sys: 9.579892484982801e-05 + shift_lumi: 0.0001 + norm: 0.0003193297494994267 +- stat: 1.0558665459968432e-06 + sys: 0.0001537669727179869 + shift_lumi: 0.0001 + norm: 0.0005125565757266229 +- stat: 2.12835689366417e-06 + sys: 0.00023824890600718316 + shift_lumi: 0.0001 + norm: 0.000794163020023944 +- stat: 4.45731984484298e-06 + sys: 0.0003693911473626778 + shift_lumi: 0.0001 + norm: 0.0012313038245422596 +- stat: 6.454066812409802e-08 + sys: 2.1853499364818744e-05 + shift_lumi: 0.0001 + norm: 7.284499788272916e-05 +- stat: 1.2590341109415027e-07 + sys: 3.5103181531826286e-05 + shift_lumi: 0.0001 + norm: 0.00011701060510608763 +- stat: 2.259825266682998e-07 + sys: 5.1204500000370046e-05 + shift_lumi: 0.0001 + norm: 0.00017068166666790014 +- stat: 4.882239494652877e-07 + sys: 8.833967722532345e-05 + shift_lumi: 0.0001 + norm: 0.0002944655907510782 +- stat: 9.212415715998652e-07 + sys: 0.00013160593879998073 + shift_lumi: 0.0001 + norm: 0.0004386864626666025 +- stat: 1.8374420015811116e-06 + sys: 0.00020416022239790128 + shift_lumi: 0.0001 + norm: 0.0006805340746596709 +- stat: 3.845413330596796e-06 + sys: 0.0003258824856437963 + shift_lumi: 0.0001 + norm: 0.0010862749521459878 +- stat: 8.39272554996872e-06 + sys: 0.0005267400972783715 + shift_lumi: 0.0001 + norm: 0.001755800324261238 +- stat: 1.1571473919029849e-07 + sys: 3.110611268556411e-05 + shift_lumi: 0.0001 + norm: 0.00010368704228521371 +- stat: 1.9969271121260603e-07 + sys: 4.360102864904062e-05 + shift_lumi: 0.0001 + norm: 0.0001453367621634687 +- stat: 4.161456104959736e-07 + sys: 7.283762144036878e-05 + shift_lumi: 0.0001 + norm: 0.00024279207146789592 +- stat: 8.092794621543105e-07 + sys: 0.00011239992529920979 + shift_lumi: 0.0001 + norm: 0.00037466641766403265 +- stat: 1.6698320790331e-06 + sys: 0.00018282832982114233 + shift_lumi: 0.0001 + norm: 0.0006094277660704744 +- stat: 3.526855475508835e-06 + sys: 0.0002972069220934412 + shift_lumi: 0.0001 + norm: 0.0009906897403114707 +- stat: 7.481914698903217e-06 + sys: 0.0004735389049938745 + shift_lumi: 0.0001 + norm: 0.0015784630166462482 +- stat: 1.6685100663453386e-05 + sys: 0.0007772562420863379 + shift_lumi: 0.0001 + norm: 0.0025908541402877927 +- stat: 2.004345593416042e-07 + sys: 4.2167158346761055e-05 + shift_lumi: 0.0001 + norm: 0.0001405571944892035 +- stat: 3.643622131546429e-07 + sys: 6.127167261569107e-05 + shift_lumi: 0.0001 + norm: 0.0002042389087189702 +- stat: 8.104321021391519e-07 + sys: 0.00010757948258484319 + shift_lumi: 0.0001 + norm: 0.0003585982752828106 +- stat: 1.5390944918353018e-06 + sys: 0.00016144347816454213 + shift_lumi: 0.0001 + norm: 0.0005381449272151404 +- stat: 3.249025387817541e-06 + sys: 0.0002663135563784869 + shift_lumi: 0.0001 + norm: 0.0008877118545949566 +- stat: 6.9327794776710685e-06 + sys: 0.00043693988304649586 + shift_lumi: 0.0001 + norm: 0.001456466276821653 +- stat: 1.504026262559207e-05 + sys: 0.0007139365170375981 + shift_lumi: 0.0001 + norm: 0.0023797883901253273 +- stat: 3.441785494646992e-05 + sys: 0.0011895571986107116 + shift_lumi: 0.0001 + norm: 0.003965190662035705 +- stat: 3.603541293161607e-07 + sys: 5.824689590239667e-05 + shift_lumi: 0.0001 + norm: 0.00019415631967465555 +- stat: 6.957284285078031e-07 + sys: 8.996488299669868e-05 + shift_lumi: 0.0001 + norm: 0.0002998829433223289 +- stat: 1.4779998530498124e-06 + sys: 0.00014979728240369718 + shift_lumi: 0.0001 + norm: 0.0004993242746789906 +- stat: 2.9010557883867033e-06 + sys: 0.0002302425228878336 + shift_lumi: 0.0001 + norm: 0.0007674750762927787 +- stat: 6.521432309077281e-06 + sys: 0.000402557549943042 + shift_lumi: 0.0001 + norm: 0.0013418584998101401 +- stat: 1.3887144758934528e-05 + sys: 0.0006489319980810528 + shift_lumi: 0.0001 + norm: 0.002163106660270176 +- stat: 3.12368537878304e-05 + sys: 0.0010846129787441111 + shift_lumi: 0.0001 + norm: 0.003615376595813704 +- stat: 6.934023770464486e-05 + sys: 0.0017749207603578038 + shift_lumi: 0.0001 + norm: 0.005916402534526012 +- stat: 6.513176435257478e-07 + sys: 7.942898091777413e-05 + shift_lumi: 0.0001 + norm: 0.0002647632697259137 +- stat: 1.3499007764695157e-06 + sys: 0.00012979815158360727 + shift_lumi: 0.0001 + norm: 0.000432660505278691 +- stat: 2.7312119621541183e-06 + sys: 0.00020690999713288773 + shift_lumi: 0.0001 + norm: 0.0006896999904429591 +- stat: 5.84425955984737e-06 + sys: 0.0003411046435708581 + shift_lumi: 0.0001 + norm: 0.0011370154785695272 +- stat: 1.1960000890842664e-05 + sys: 0.0005486238940753517 + shift_lumi: 0.0001 + norm: 0.0018287463135845056 +- stat: 2.715039414097226e-05 + sys: 0.0009276900048168199 + shift_lumi: 0.0001 + norm: 0.003092300016056066 +- stat: 5.8884293335608916e-05 + sys: 0.0015202485370639136 + shift_lumi: 0.0001 + norm: 0.005067495123546379 +- stat: 0.00013400239018137062 + sys: 0.002537924056465353 + shift_lumi: 0.0001 + norm: 0.00845974685488451 +- stat: 1.2659913258140902e-06 + sys: 0.00011303493980482947 + shift_lumi: 0.0001 + norm: 0.0003767831326827649 +- stat: 2.5506899545064687e-06 + sys: 0.00017962605313425836 + shift_lumi: 0.0001 + norm: 0.0005987535104475278 +- stat: 5.418328923670039e-06 + sys: 0.00029447439802554555 + shift_lumi: 0.0001 + norm: 0.0009815813267518186 +- stat: 1.1154663456460113e-05 + sys: 0.0004622098117317726 + shift_lumi: 0.0001 + norm: 0.0015406993724392417 +- stat: 2.333790811698396e-05 + sys: 0.0007660144896165412 + shift_lumi: 0.0001 + norm: 0.0025533816320551374 +- stat: 5.1558163134325815e-05 + sys: 0.0012514117265613061 + shift_lumi: 0.0001 + norm: 0.004171372421871021 +- stat: 0.00011698118542956089 + sys: 0.0021141178089679673 + shift_lumi: 0.0001 + norm: 0.007047059363226559 +- stat: 0.0002503842857480767 + sys: 0.0034143311692919555 + shift_lumi: 0.0001 + norm: 0.011381103897639851 +- stat: 2.625220704204416e-06 + sys: 0.00015564549629670452 + shift_lumi: 0.0001 + norm: 0.000518818320989015 +- stat: 5.233810709645753e-06 + sys: 0.00023862358858567267 + shift_lumi: 0.0001 + norm: 0.0007954119619522422 +- stat: 1.0781266094304418e-05 + sys: 0.0003796220455740992 + shift_lumi: 0.0001 + norm: 0.0012654068185803309 +- stat: 2.4566206492326877e-05 + sys: 0.0006603818949550236 + shift_lumi: 0.0001 + norm: 0.0022012729831834116 +- stat: 5.168392140937586e-05 + sys: 0.0010576518705875007 + shift_lumi: 0.0001 + norm: 0.003525506235291669 +- stat: 0.00010446883686867333 + sys: 0.0016617524422376459 + shift_lumi: 0.0001 + norm: 0.00553917480745882 +- stat: 0.00024605142794379033 + sys: 0.0027339047549310032 + shift_lumi: 0.0001 + norm: 0.009113015849770012 +- stat: 0.0005560184506051909 + sys: 0.004343894145353053 + shift_lumi: 0.0001 + norm: 0.014479647151176845 +- stat: 6.819749930942047e-06 + sys: 0.00020582746270448834 + shift_lumi: 0.0001 + norm: 0.0006860915423482944 +- stat: 1.3126104562799584e-05 + sys: 0.000302910105295375 + shift_lumi: 0.0001 + norm: 0.0010097003509845833 +- stat: 2.9706548365139395e-05 + sys: 0.0005181374714849895 + shift_lumi: 0.0001 + norm: 0.0017271249049499648 +- stat: 6.12615151529207e-05 + sys: 0.0008132059533573543 + shift_lumi: 0.0001 + norm: 0.0027106865111911817 +- stat: 0.00012915464109862108 + sys: 0.0013269312441639154 + shift_lumi: 0.0001 + norm: 0.004423104147213051 +- stat: 0.0002966058100597853 + sys: 0.002138984207161913 + shift_lumi: 0.0001 + norm: 0.0071299473572063775 +- stat: 0.0006991575406284715 + sys: 0.003543028077509147 + shift_lumi: 0.0001 + norm: 0.011810093591697155 +- stat: 0.0015680680248366275 + sys: 0.005708985527317819 + shift_lumi: 0.0001 + norm: 0.019029951757726062 +- stat: 3.353702300628263e-05 + sys: 0.00022558535654450197 + shift_lumi: 0.0001 + norm: 0.0007519511884816732 +- stat: 6.0192611096414366e-05 + sys: 0.0003071051586551753 + shift_lumi: 0.0001 + norm: 0.0010236838621839176 +- stat: 0.00015836631935431885 + sys: 0.0006544062783236317 + shift_lumi: 0.0001 + norm: 0.0021813542610787722 +- stat: 0.00036974483243088906 + sys: 0.001091766237492783 + shift_lumi: 0.0001 + norm: 0.003639220791642609 +- stat: 0.0006850494782911507 + sys: 0.0014596224679498948 + shift_lumi: 0.0001 + norm: 0.0048654082264996505 +- stat: 0.0032223674272211502 + sys: 0.0034280504544905856 + shift_lumi: 0.0001 + norm: 0.011426834848301952 +- stat: 0.004089104488964337 + sys: 0.0043501111584727 + shift_lumi: 0.0001 + norm: 0.014500370528242332 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NLO.yaml new file mode 100644 index 0000000000..967965e4cc --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NLO.yaml @@ -0,0 +1,132 @@ +predictions_central: +- -0.00038188620539219295 +- -7.149596107529836e-05 +- -0.0003644402769088769 +- 0.00010128309665161876 +- -8.8207541213239e-05 +- -0.0006671359153219826 +- 0.0001982506190906048 +- 0.0001060225932180995 +- -0.00024484727479692986 +- -0.0009383120142227422 +- 0.0002507398646495637 +- 0.00023489842548348385 +- 6.0132855609405963e-05 +- -0.0003167430313657772 +- -0.0010284931993324881 +- 0.00027694809806452954 +- 0.0003152602668236574 +- 0.00026641187091794815 +- 0.00012035263600968685 +- -0.00018822539955447477 +- -0.0007953735891857921 +- 0.00028629003659486307 +- 0.00036233205386207413 +- 0.0004003530448380128 +- 0.0004140934082941714 +- 0.0003875210522505875 +- 0.0002750744265954807 +- -1.6097294566125908e-05 +- 0.00028172671057070687 +- 0.0003824966300734099 +- 0.0004789345039257954 +- 0.0005976536332261015 +- 0.0007575186890328944 +- 0.0009682522977966871 +- 0.0012537007715157653 +- 0.0016175362940123623 +- 0.00038222785016756516 +- 0.0005165624302451024 +- 0.0007026154381614899 +- 0.0009774303137825978 +- 0.0013918778891107925 +- 0.002021350790879998 +- 0.0030152092251864793 +- 0.0045445452385970584 +- 0.0005199187648148044 +- 0.0007457128258665323 +- 0.001087030684358038 +- 0.0016128872899882581 +- 0.00244133445130414 +- 0.0037543002255286543 +- 0.005913978295543277 +- 0.009376233764312687 +- 0.0007385653280473736 +- 0.0011123619214658438 +- 0.00169164277122766 +- 0.0026063700768565864 +- 0.004077313699525493 +- 0.006463482913464729 +- 0.01046329068704812 +- 0.016972903113589614 +- 0.0010746302253022853 +- 0.0016699207310846853 +- 0.002608982909370892 +- 0.004112010268190602 +- 0.00656693203681158 +- 0.010602732052177384 +- 0.0174260573803309 +- 0.0286155346801601 +- 0.0015689799481513932 +- 0.0024886363677608363 +- 0.003953638454358413 +- 0.006325947620260576 +- 0.01023757012704416 +- 0.016709649903735933 +- 0.027702469660183984 +- 0.045789607354110785 +- 0.0022958883394797367 +- 0.0036842444649110603 +- 0.0059146736967947925 +- 0.009550753129178054 +- 0.015570714479462925 +- 0.025560459477440907 +- 0.04254472826489479 +- 0.0704575109613578 +- 0.0033328349054129744 +- 0.005377872102615914 +- 0.008675395021534686 +- 0.014060000045113537 +- 0.02298040902259322 +- 0.03776698361678131 +- 0.06283116797269174 +- 0.10377274145659357 +- 0.004727357871113562 +- 0.007631803180048215 +- 0.01231060744647532 +- 0.019937592667505576 +- 0.032531256549418144 +- 0.05330591214360842 +- 0.08826067572288299 +- 0.1447057140756059 +- 0.006504470416426106 +- 0.010467655486568741 +- 0.016828073198814682 +- 0.027144187893001704 +- 0.04407226918760179 +- 0.07175619974071397 +- 0.11779471804693536 +- 0.19090371821989083 +- 0.008721359818775712 +- 0.013966576305243016 +- 0.022333514942669382 +- 0.03580732722913238 +- 0.057714765948054705 +- 0.09310749825954104 +- 0.15105270987283875 +- 0.24150365438279592 +- 0.011327295805650742 +- 0.018037061459459915 +- 0.028656100189703826 +- 0.0455893361509367 +- 0.07277940786344776 +- 0.11600693362122536 +- 0.1856939614329193 +- 0.29307150148108013 +- 0.01407941308114166 +- 0.022361747474115738 +- 0.03535907884646098 +- 0.05584425808032172 +- 0.08825085859486116 +- 0.13906970895145104 +- 0.2203435841979496 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..2dce3629d2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_140GEV_EP/rawdata/ATHENA_NC_140GEV_EP_NNLO.yaml @@ -0,0 +1,132 @@ +predictions_central: +- -0.0020366895294822 +- -0.0009086911312413041 +- 0.0017771036294905024 +- -0.00016496005052968953 +- 0.0017916331587640084 +- 0.004363134290872071 +- 0.00028467555312634564 +- 0.0016859468338542036 +- 0.003634416479118161 +- 0.006070967073438751 +- 0.0005232209714814523 +- 0.0015259686856858292 +- 0.0029385693640694966 +- 0.00474402571715296 +- 0.007275050469824402 +- 0.0006166906803807408 +- 0.0013305248333056743 +- 0.002354331834516163 +- 0.003636915961875367 +- 0.0054961964215606285 +- 0.00816198968610271 +- 0.0006174763092247463 +- 0.001131597096782111 +- 0.0018664510430449499 +- 0.0028009585781529596 +- 0.004117073705080678 +- 0.0060829883587002545 +- 0.008936594138550765 +- 0.0005595424937223792 +- 0.0009378697566735099 +- 0.0014715751554888442 +- 0.0021569660194687016 +- 0.00312546178356297 +- 0.004536190752339559 +- 0.006682959718089891 +- 0.009965269976949173 +- 0.0007637554555530743 +- 0.0011634893416829545 +- 0.001684275910710987 +- 0.002414911256790381 +- 0.003489833515933358 +- 0.005094666832714554 +- 0.0076685466588026305 +- 0.011473105884185411 +- 0.0009310947689285256 +- 0.0013443580329491312 +- 0.0019252484220638013 +- 0.0027794813169542388 +- 0.0040755843903247 +- 0.006116225379317599 +- 0.009316909053469007 +- 0.014260739816983092 +- 0.001100375962751929 +- 0.0015880498782046306 +- 0.0023103409823460883 +- 0.0034107091707611483 +- 0.005164134244345308 +- 0.007898218943881177 +- 0.012362346057168115 +- 0.019429605223020816 +- 0.0013449866274862375 +- 0.001989448058019296 +- 0.0029788040401913752 +- 0.004551009717544903 +- 0.007052555640836035 +- 0.011092457927757197 +- 0.01781897696227713 +- 0.028680233187461462 +- 0.0017353498879138641 +- 0.002653393946634099 +- 0.004108979640960348 +- 0.006430610023088596 +- 0.010221768287154816 +- 0.01644101021957732 +- 0.026931225974656206 +- 0.044088715427135494 +- 0.002370878217306275 +- 0.0037355971107414167 +- 0.005912933477444321 +- 0.009446259812544832 +- 0.01527498287158289 +- 0.024918952003250512 +- 0.04128701933117826 +- 0.06815542762111419 +- 0.0033636821738826524 +- 0.005388184491083274 +- 0.008647421702782487 +- 0.013963685031637424 +- 0.022764962322182437 +- 0.03735125697280967 +- 0.06208275507681573 +- 0.1025092881912874 +- 0.004794777307587241 +- 0.007726164183900289 +- 0.012447384959498917 +- 0.02014318919407683 +- 0.03285254809130701 +- 0.05382527719231269 +- 0.08913307033530696 +- 0.14619338295172035 +- 0.006655934912563632 +- 0.010707548281136856 +- 0.01720921679642264 +- 0.027753988449682663 +- 0.04505757313490431 +- 0.07335802869614842 +- 0.12042933015136566 +- 0.19519509338566823 +- 0.008875078899946253 +- 0.01421529533080224 +- 0.022734141181152613 +- 0.03645254403771095 +- 0.05875674243506577 +- 0.09478803699223248 +- 0.1537746459459577 +- 0.24584890627998465 +- 0.011407639578171003 +- 0.01816586797510601 +- 0.0288611050031924 +- 0.045914343752937216 +- 0.07329381614396206 +- 0.11681636808909346 +- 0.18697059825640716 +- 0.29506033379761665 +- 0.013639132596721518 +- 0.02167794926887739 +- 0.034297501864131434 +- 0.0541961402591755 +- 0.0856877767208394 +- 0.1350893785024477 +- 0.2141189932616949 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data.yaml deleted file mode 100644 index a5992c14ca..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data.yaml +++ /dev/null @@ -1,77 +0,0 @@ -data_central: -- 0.012809394511625948 -- 0.009418662409048165 -- 0.01806460082055432 -- 0.0065694263387909785 -- 0.01360459047339885 -- 0.02384616923323372 -- 0.0055862894829189925 -- 0.009796991764000932 -- 0.017928025684194424 -- 0.02930362462096865 -- 0.004466823784889146 -- 0.007958763075533495 -- 0.014551039219778555 -- 0.02312190333192727 -- 0.03844380399834426 -- 0.004313514416043816 -- 0.007467543592397761 -- 0.011377352026628701 -- 0.020061969906322343 -- 0.03106597228702225 -- 0.04878876618165684 -- 0.003448508766943426 -- 0.005845529447754025 -- 0.009525276071306613 -- 0.015952181058944286 -- 0.025496355553516484 -- 0.04281332344558378 -- 0.06820178754388044 -- 0.0028092966871974966 -- 0.005060055108028309 -- 0.008293622598933997 -- 0.013225284135263657 -- 0.021436710275863805 -- 0.03424847475736489 -- 0.05805000951438039 -- 0.09501802323547184 -- 0.00414518646409684 -- 0.007140656519582914 -- 0.011171720989274549 -- 0.017630989536653263 -- 0.029169798801374863 -- 0.04964613499085929 -- 0.08096556372466782 -- 0.1347498096619069 -- 0.005450307938844511 -- 0.008565099913202976 -- 0.01563957344406665 -- 0.025779851621330143 -- 0.04149595206086526 -- 0.06904048482612761 -- 0.11310365029103706 -- 0.18689180047597323 -- 0.008083065095496991 -- 0.012956754058056956 -- 0.01919404234489798 -- 0.03350587514672228 -- 0.05595918713400959 -- 0.08892207869185634 -- 0.15518958275014433 -- 0.2576014859650089 -- 0.010560136061448372 -- 0.017687516525875017 -- 0.027309363916693218 -- 0.046316307863957386 -- 0.07036890359790095 -- 0.12152787780609264 -- 0.20256802362951826 -- 0.3334440608473117 -- 0.00843064405083789 -- 0.027185758895653448 -- 0.04261141556382719 -- 0.04545811313925797 -- 0.1015866547735202 -- 0.12939174575949897 -- 0.24349832238575325 -- 0.42731839924200893 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..4b9ea0955b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nlo.yaml @@ -0,0 +1,77 @@ +data_central: +- 0.008385421918829539 +- 0.007781084425683668 +- 0.011389791554981715 +- 0.006520262749171053 +- 0.010649160526923577 +- 0.015667104156122942 +- 0.0061275258223323905 +- 0.008700216895897946 +- 0.013851406819177167 +- 0.021073362112586532 +- 0.00490541864250497 +- 0.007513377459966611 +- 0.012299876108455746 +- 0.018778782620517933 +- 0.031486708393086024 +- 0.0043520210195622374 +- 0.007123353072476964 +- 0.009877034798239936 +- 0.017607190353638356 +- 0.027498899855962534 +- 0.04396665262173815 +- 0.0031824227909763264 +- 0.0055316566845722255 +- 0.00851831866650847 +- 0.014585371215870004 +- 0.023759615986173422 +- 0.04074356968701476 +- 0.06599152906472458 +- 0.0025355064927315234 +- 0.004885132710538335 +- 0.0077679211382786694 +- 0.012620571648526629 +- 0.02076431150737572 +- 0.03356452229111515 +- 0.05750524949608702 +- 0.09484716029322178 +- 0.004107515613146795 +- 0.0069382668325610256 +- 0.010943027049356591 +- 0.017358025803203156 +- 0.028837752278674467 +- 0.049241179434699474 +- 0.08053838093641666 +- 0.13432894666449183 +- 0.005340891846285998 +- 0.008387034429550359 +- 0.015343273990549978 +- 0.02528786834510903 +- 0.04068132575564114 +- 0.06774675166132316 +- 0.11091974420835006 +- 0.18321155507907594 +- 0.00798050726909086 +- 0.012760158194598706 +- 0.018831822410788974 +- 0.03286233210186974 +- 0.054868524741176115 +- 0.08694198052955618 +- 0.1516612211989575 +- 0.25141046188616156 +- 0.010311665627409844 +- 0.017248917041778458 +- 0.026559597495486535 +- 0.045028361491962605 +- 0.06806171175856408 +- 0.11747965915914914 +- 0.19545608808105291 +- 0.32117247182710784 +- 0.008462465505846336 +- 0.02721035427744837 +- 0.04256310554522253 +- 0.04510281398887407 +- 0.10062505909827921 +- 0.12726323959223257 +- 0.23916124821242113 +- 0.41897670717971186 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..18e1d657ec --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/data_nnlo.yaml @@ -0,0 +1,77 @@ +data_central: +- 0.010421013083774858 +- 0.007876360060494827 +- 0.014692447372193156 +- 0.005787177106829602 +- 0.01132188400453885 +- 0.02198932721611213 +- 0.005165536579700028 +- 0.009496648397665569 +- 0.017097997663458018 +- 0.028495677284988696 +- 0.004331209904932739 +- 0.007928761320642758 +- 0.013703013268419413 +- 0.02306479109287335 +- 0.03664814774838209 +- 0.004123343675941296 +- 0.006613033704399389 +- 0.011927400530836343 +- 0.01827999600600125 +- 0.030444448701663237 +- 0.048215797813595807 +- 0.0037949455270673673 +- 0.005731264942744633 +- 0.009588200750161825 +- 0.01584259205791899 +- 0.024793506490985343 +- 0.04147115400142738 +- 0.06728066652473859 +- 0.0032467494635512366 +- 0.004515987089484759 +- 0.007915624925366987 +- 0.013216744826672917 +- 0.020848835281399376 +- 0.03335413882146488 +- 0.059255375741785195 +- 0.0968884026106837 +- 0.0033155332809685365 +- 0.006595117095933006 +- 0.010680217530980814 +- 0.016971390257683787 +- 0.027884287447704582 +- 0.049295283438378086 +- 0.0802166128262332 +- 0.13857754275883444 +- 0.00593254449398995 +- 0.009379560903905784 +- 0.014753125324651735 +- 0.023980126317561162 +- 0.041918048852748684 +- 0.06686588948696867 +- 0.1122458372944519 +- 0.18691781067531707 +- 0.008859998129434329 +- 0.012961264691798497 +- 0.020163325242483612 +- 0.034792400670331514 +- 0.05629611075846671 +- 0.0936882017659405 +- 0.15063659003355095 +- 0.25621844881624545 +- 0.010294862445852693 +- 0.01868126459857233 +- 0.024853647988669816 +- 0.04474227036563973 +- 0.07677674878743483 +- 0.1202341750182106 +- 0.2043364100815369 +- 0.32601326679799564 +- 0.011497250089923649 +- 0.014769585628010482 +- 0.02591949449267989 +- 0.05652144562022898 +- 0.07405621796956285 +- 0.1648389506352521 +- 0.2869318552564656 +- 0.3969650291816622 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py index b932c2647e..f608011217 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/filter.py @@ -16,6 +16,8 @@ BEAMS = (5, 41) input_xlsx = Path("./rawdata/ATHENA_ALL_EP.xlsx") xdf = read_excel(input_xlsx, beams=BEAMS) - cv_preds = read_central_values(Path("./rawdata/ATHENA_NC_29GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) - write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/ATHENA_NC_29GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) + write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True, suffix=pto.lower()) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/metadata.yaml index a24a3dff54..e25fbaaea6 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "ALL" + - observable_name: "ALL-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 29GeV at ATHENA" + description: "EIC projection measurements on polarized ep scattering at 29GeV at ATHENA using NLO theory" label: "$A_{LL}$" units: "" process_type: "DIS_POL" @@ -44,9 +44,44 @@ implemented_observables: y: { description: "inelasticity", label: "$y$", units: "" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - ATHENA_NC_29GEV_EP_G1 + operation: "null" + - observable_name: "ALL-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 29GeV at ATHENA using NNLO theory" + label: "$A_{LL}$" + units: "" + process_type: "DIS_POL" + ndata: 76 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "ATHENA 29GeV (ALL)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$A_{LL}^{p}(x, Q^2)$" + kinematic_coverage: [x, Q2, y] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + y: { description: "inelasticity", label: "$y$", units: "" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP.yaml deleted file mode 100644 index aec221cd6a..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP.yaml +++ /dev/null @@ -1,77 +0,0 @@ -predictions_central: -- 0.012482887895632993 -- 0.009014508305628246 -- 0.017608603454436444 -- 0.006621438019160908 -- 0.01301408138842378 -- 0.023051567870722652 -- 0.005226137595351616 -- 0.010014490239010044 -- 0.017731446983742905 -- 0.029357245506508867 -- 0.004500033670507252 -- 0.008182435904526561 -- 0.014289233337923398 -- 0.023478630603807695 -- 0.037697361411207664 -- 0.004070989566396666 -- 0.006867252737240012 -- 0.011860121871056707 -- 0.019101332954163445 -- 0.030835182271117145 -- 0.04970346857374366 -- 0.003636374544855426 -- 0.005761850220464535 -- 0.009808438418571009 -- 0.015711817060053073 -- 0.02531372651113435 -- 0.04138405479013408 -- 0.06788514473738892 -- 0.003065005603809197 -- 0.004764752233311755 -- 0.008033613625618063 -- 0.012920856903266555 -- 0.021004847870174984 -- 0.034431124911528554 -- 0.05727772142918034 -- 0.09550805751159333 -- 0.003979432590928609 -- 0.00666755031139075 -- 0.010826770846815109 -- 0.0176944394621394 -- 0.029127455319627377 -- 0.048247437828796494 -- 0.08085759872663285 -- 0.1356489945875168 -- 0.00574450028010292 -- 0.009335869967292793 -- 0.015207614401156326 -- 0.024862497325837514 -- 0.04090084634716706 -- 0.06757334183820897 -- 0.11319874794114564 -- 0.1897434556249819 -- 0.008024806542055191 -- 0.012951090662724816 -- 0.020959438788916165 -- 0.034065334319998676 -- 0.05568838848930559 -- 0.09173832182745695 -- 0.15310739473500365 -- 0.2556693215491039 -- 0.010855562105730765 -- 0.017472973220073015 -- 0.02815363221729687 -- 0.04554525627822731 -- 0.07426948501006425 -- 0.12179995079848895 -- 0.20238916929703513 -- 0.3362938207886922 -- 0.012515107645864025 -- 0.020516805687285467 -- 0.03352748471308516 -- 0.05488404157149106 -- 0.0901032219853407 -- 0.14843124777484573 -- 0.2472293172852005 -- 0.41108943758035316 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NLO.yaml new file mode 100644 index 0000000000..f3489abf0f --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NLO.yaml @@ -0,0 +1,77 @@ +predictions_central: +- 0.008058915302836584 +- 0.007376930322263748 +- 0.01093379418886384 +- 0.006572274429540983 +- 0.010058651441948507 +- 0.014872502793611873 +- 0.005767373934765014 +- 0.008917715370907058 +- 0.013654828118725648 +- 0.02112698299812675 +- 0.004938628528123076 +- 0.007737050288959676 +- 0.012038070226600589 +- 0.01913550989239836 +- 0.03074026580594943 +- 0.004109496169915088 +- 0.006523062217319215 +- 0.010359804642667942 +- 0.01664655340147946 +- 0.02726810984005743 +- 0.04488135501382497 +- 0.003370288568888326 +- 0.005447977457282736 +- 0.008801481013772866 +- 0.01434500721697879 +- 0.023576986943791286 +- 0.03931430103156506 +- 0.06567488625823306 +- 0.002791215409343224 +- 0.004589829835821781 +- 0.0075079121649627364 +- 0.012316144416529527 +- 0.020332449101686897 +- 0.03374717244527882 +- 0.05673296141088697 +- 0.09533719456934327 +- 0.003941761739978563 +- 0.006465160624368862 +- 0.01059807690689715 +- 0.01742147572868929 +- 0.02879540879692698 +- 0.047842482272636676 +- 0.0804304159383817 +- 0.13522813159010175 +- 0.0056350841875444065 +- 0.009157804483640175 +- 0.014911314947639656 +- 0.0243705140496164 +- 0.040086220041942934 +- 0.06627960867340452 +- 0.11101484185845864 +- 0.1860632102280846 +- 0.00792224871564906 +- 0.012754494799266566 +- 0.02059721885480716 +- 0.03342179127514614 +- 0.054597726096472114 +- 0.08975822366515679 +- 0.14957903318381682 +- 0.24947829747025654 +- 0.010607091671692237 +- 0.017034373735976455 +- 0.027403865796090186 +- 0.04425730990623253 +- 0.07196229317072739 +- 0.11775173215154544 +- 0.19527723374856978 +- 0.3240222317684883 +- 0.012546929100872472 +- 0.020541401069080388 +- 0.033479174694480494 +- 0.05452874242110716 +- 0.0891416263100997 +- 0.1463027416075793 +- 0.24289224311186838 +- 0.4027477455180561 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..ee35e9312e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/rawdata/ATHENA_NC_29GEV_EP_NNLO.yaml @@ -0,0 +1,77 @@ +predictions_central: +- 0.010387884768954567 +- 0.007825376218739808 +- 0.01559963512663332 +- 0.006011268578971309 +- 0.011960694946790099 +- 0.02166303006747765 +- 0.004959031730975205 +- 0.009518703400091139 +- 0.017104876441877002 +- 0.02828355979414283 +- 0.0044032276171558325 +- 0.007958581828261563 +- 0.014007072595263351 +- 0.02297606085920576 +- 0.036884659580308225 +- 0.0040252995447910165 +- 0.006749948211048411 +- 0.011689190968829652 +- 0.018828812984350872 +- 0.03044004575450856 +- 0.049170909339600034 +- 0.003590615104539472 +- 0.005689536083380598 +- 0.009676366102276002 +- 0.015544176044308945 +- 0.025123930944029788 +- 0.04120444165963117 +- 0.06779500089609826 +- 0.0030268295651878748 +- 0.004738377749438136 +- 0.007957011542225159 +- 0.01285146198468974 +- 0.020965886654317423 +- 0.03446908126306335 +- 0.05748394560670121 +- 0.09592273551121258 +- 0.003997881905173963 +- 0.006647221002849956 +- 0.010822605423331294 +- 0.0177216651699895 +- 0.02921465851995292 +- 0.048446822843096295 +- 0.08118101830074796 +- 0.13629204714571563 +- 0.005719285072445739 +- 0.009307932430225254 +- 0.015176725016557624 +- 0.024829556805074444 +- 0.04086900720061406 +- 0.06750489336877472 +- 0.11312493586327266 +- 0.18967395596447534 +- 0.008008286163360363 +- 0.012928294240677658 +- 0.020925024930505458 +- 0.0340102597184007 +- 0.05557677255218777 +- 0.09155144829701674 +- 0.15278770824564003 +- 0.2551191914220688 +- 0.010772133672651157 +- 0.017329920168631625 +- 0.027912578379130876 +- 0.04513340917288913 +- 0.07358265326086877 +- 0.12065370714332449 +- 0.20045770415645914 +- 0.3330475536917538 +- 0.012371176845895034 +- 0.02027861484761466 +- 0.03312529030145642 +- 0.05421307238572115 +- 0.08898323839951988 +- 0.14655943307095964 +- 0.24407230866766713 +- 0.4057832202705991 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml deleted file mode 100644 index ff79b67684..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,322 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: MULT - type: UNCORR - shift_lumi: - description: uncertainty on the precision of the relative luminosity - treatment: ADD - type: UNCORR - norm: - description: relative (percent) normalization uncertainty (beam pol) - treatment: MULT - type: CORR -bins: -- stat: 1.7476354374983829e-06 - sys: 0.0001921409176743892 - shift_lumi: 0.0001 - norm: 0.0006404697255812975 -- stat: 1.2268081009768969e-06 - sys: 0.00014127993613572248 - shift_lumi: 0.0001 - norm: 0.00047093312045240823 -- stat: 3.0773753767062357e-06 - sys: 0.00027096901230831477 - shift_lumi: 0.0001 - norm: 0.0009032300410277159 -- stat: 8.368696501969296e-07 - sys: 9.854139508186469e-05 - shift_lumi: 0.0001 - norm: 0.000328471316939549 -- stat: 2.2150467176747332e-06 - sys: 0.00020406885710098276 - shift_lumi: 0.0001 - norm: 0.0006802295236699426 -- stat: 4.8891255730080144e-06 - sys: 0.0003576925384985058 - shift_lumi: 0.0001 - norm: 0.001192308461661686 -- stat: 7.057341246889251e-07 - sys: 8.37943422437849e-05 - shift_lumi: 0.0001 - norm: 0.0002793144741459496 -- stat: 1.5507996837801284e-06 - sys: 0.000146954876460014 - shift_lumi: 0.0001 - norm: 0.0004898495882000466 -- stat: 3.486549518634661e-06 - sys: 0.00026892038526291637 - shift_lumi: 0.0001 - norm: 0.0008964012842097212 -- stat: 7.377538342492713e-06 - sys: 0.00043955436931452974 - shift_lumi: 0.0001 - norm: 0.0014651812310484324 -- stat: 5.670019771023957e-07 - sys: 6.70023567733372e-05 - shift_lumi: 0.0001 - norm: 0.0002233411892444573 -- stat: 1.2478218251615798e-06 - sys: 0.00011938144613300242 - shift_lumi: 0.0001 - norm: 0.0003979381537766748 -- stat: 2.7640011421002987e-06 - sys: 0.0002182655882966783 - shift_lumi: 0.0001 - norm: 0.0007275519609889278 -- stat: 5.57721293024517e-06 - sys: 0.0003468285499789091 - shift_lumi: 0.0001 - norm: 0.0011560951665963634 -- stat: 1.2112848970764898e-05 - sys: 0.0005766570599751639 - shift_lumi: 0.0001 - norm: 0.001922190199917213 -- stat: 5.527437508606987e-07 - sys: 6.470271624065724e-05 - shift_lumi: 0.0001 - norm: 0.00021567572080219077 -- stat: 1.1708055368031942e-06 - sys: 0.00011201315388596642 - shift_lumi: 0.0001 - norm: 0.00037337717961988807 -- stat: 2.144000442052102e-06 - sys: 0.00017066028039943053 - shift_lumi: 0.0001 - norm: 0.0005688676013314351 -- stat: 4.718150986640426e-06 - sys: 0.00030092954859483516 - shift_lumi: 0.0001 - norm: 0.0010030984953161171 -- stat: 9.366743074875621e-06 - sys: 0.00046598958430533376 - shift_lumi: 0.0001 - norm: 0.0015532986143511123 -- stat: 1.9564787433989562e-05 - sys: 0.0007318314927248526 - shift_lumi: 0.0001 - norm: 0.002439438309082842 -- stat: 4.4657885923945215e-07 - sys: 5.172763150415139e-05 - shift_lumi: 0.0001 - norm: 0.0001724254383471713 -- stat: 9.164965906518386e-07 - sys: 8.768294171631039e-05 - shift_lumi: 0.0001 - norm: 0.0002922764723877012 -- stat: 1.8093466413124542e-06 - sys: 0.0001428791410695992 - shift_lumi: 0.0001 - norm: 0.00047626380356533064 -- stat: 3.7516155768235756e-06 - sys: 0.0002392827158841643 - shift_lumi: 0.0001 - norm: 0.0007976090529472143 -- stat: 7.572128838101883e-06 - sys: 0.0003824453333027473 - shift_lumi: 0.0001 - norm: 0.0012748177776758243 -- stat: 1.6587682992528045e-05 - sys: 0.0006421998516837567 - shift_lumi: 0.0001 - norm: 0.002140666172279189 -- stat: 3.547223184706007e-05 - sys: 0.0010230268131582066 - shift_lumi: 0.0001 - norm: 0.0034100893771940224 -- stat: 3.786245651992241e-07 - sys: 4.213945030796245e-05 - shift_lumi: 0.0001 - norm: 0.00014046483435987484 -- stat: 8.009736101110781e-07 - sys: 7.590082662042465e-05 - shift_lumi: 0.0001 - norm: 0.00025300275540141547 -- stat: 1.5878945262779485e-06 - sys: 0.00012440433898400994 - shift_lumi: 0.0001 - norm: 0.00041468112994669985 -- stat: 3.130244963606354e-06 - sys: 0.00019837926202895484 - shift_lumi: 0.0001 - norm: 0.0006612642067631828 -- stat: 6.366460168520662e-06 - sys: 0.0003215506541379571 - shift_lumi: 0.0001 - norm: 0.0010718355137931902 -- stat: 1.3062774147395812e-05 - sys: 0.0005137271213604733 - shift_lumi: 0.0001 - norm: 0.0017124237378682444 -- stat: 2.914205614168562e-05 - sys: 0.0008707501427157059 - shift_lumi: 0.0001 - norm: 0.00290250047571902 -- stat: 6.460352193563292e-05 - sys: 0.0014252703485320777 - shift_lumi: 0.0001 - norm: 0.004750901161773592 -- stat: 6.749032019303074e-07 - sys: 6.217779696145261e-05 - shift_lumi: 0.0001 - norm: 0.00020725932320484202 -- stat: 1.3994428164518218e-06 - sys: 0.0001071098477937437 - shift_lumi: 0.0001 - norm: 0.00035703282597914567 -- stat: 2.6778784902954154e-06 - sys: 0.00016757581483911824 - shift_lumi: 0.0001 - norm: 0.0005585860494637274 -- stat: 5.315943361432807e-06 - sys: 0.000264464843049799 - shift_lumi: 0.0001 - norm: 0.0008815494768326632 -- stat: 1.1169682077235024e-05 - sys: 0.00043754698202062294 - shift_lumi: 0.0001 - norm: 0.0014584899400687432 -- stat: 2.4773484672973103e-05 - sys: 0.0007446920248628894 - shift_lumi: 0.0001 - norm: 0.0024823067495429647 -- stat: 5.358441898295103e-05 - sys: 0.0012144834558700172 - shift_lumi: 0.0001 - norm: 0.0040482781862333905 -- stat: 0.00012168264589681401 - sys: 0.0020212471449286033 - shift_lumi: 0.0001 - norm: 0.006737490483095345 -- stat: 1.1174641790026303e-06 - sys: 8.175461908266767e-05 - shift_lumi: 0.0001 - norm: 0.0002725153969422256 -- stat: 2.169278824669081e-06 - sys: 0.00012847649869804465 - shift_lumi: 0.0001 - norm: 0.0004282549956601488 -- stat: 4.927706714541665e-06 - sys: 0.00023459360166099973 - shift_lumi: 0.0001 - norm: 0.0007819786722033324 -- stat: 1.0337980574732111e-05 - sys: 0.00038669777431995215 - shift_lumi: 0.0001 - norm: 0.001288992581066507 -- stat: 2.1519780516698157e-05 - sys: 0.0006224392809129789 - shift_lumi: 0.0001 - norm: 0.002074797603043263 -- stat: 4.673301872595832e-05 - sys: 0.0010356072723919142 - shift_lumi: 0.0001 - norm: 0.003452024241306381 -- stat: 0.0001028176315328498 - sys: 0.0016965547543655558 - shift_lumi: 0.0001 - norm: 0.005655182514551853 -- stat: 0.00023300724194530865 - sys: 0.0028033770071395985 - shift_lumi: 0.0001 - norm: 0.00934459002379866 -- stat: 2.327464713116507e-06 - sys: 0.00012124597643245485 - shift_lumi: 0.0001 - norm: 0.0004041532547748496 -- stat: 4.687930004889778e-06 - sys: 0.00019435131087085434 - shift_lumi: 0.0001 - norm: 0.0006478377029028479 -- stat: 8.8255128108214e-06 - sys: 0.0002879106351734697 - shift_lumi: 0.0001 - norm: 0.000959702117244899 -- stat: 1.9901730889483523e-05 - sys: 0.0005025881272008342 - shift_lumi: 0.0001 - norm: 0.0016752937573361138 -- stat: 4.32775258196613e-05 - sys: 0.0008393878070101437 - shift_lumi: 0.0001 - norm: 0.0027979593567004795 -- stat: 9.062123242052582e-05 - sys: 0.0013338311803778452 - shift_lumi: 0.0001 - norm: 0.004446103934592817 -- stat: 0.00021407074539952093 - sys: 0.002327843741252165 - shift_lumi: 0.0001 - norm: 0.007759479137507217 -- stat: 0.00048543606499087337 - sys: 0.0038640222894751343 - shift_lumi: 0.0001 - norm: 0.012880074298250445 -- stat: 5.603841448148112e-06 - sys: 0.0001584020409217256 - shift_lumi: 0.0001 - norm: 0.0005280068030724186 -- stat: 1.19458906335059e-05 - sys: 0.00026531274788812526 - shift_lumi: 0.0001 - norm: 0.0008843758262937509 -- stat: 2.3878840798848338e-05 - sys: 0.00040964045875039825 - shift_lumi: 0.0001 - norm: 0.0013654681958346609 -- stat: 5.2926941665170476e-05 - sys: 0.0006947446179593608 - shift_lumi: 0.0001 - norm: 0.0023158153931978694 -- stat: 0.00010566077324652538 - sys: 0.0010555335539685143 - shift_lumi: 0.0001 - norm: 0.0035184451798950475 -- stat: 0.00024366952504263105 - sys: 0.0018229181670913897 - shift_lumi: 0.0001 - norm: 0.006076393890304632 -- stat: 0.0005496890145569661 - sys: 0.003038520354442774 - shift_lumi: 0.0001 - norm: 0.010128401181475913 -- stat: 0.001286875739232545 - sys: 0.005001660912709676 - shift_lumi: 0.0001 - norm: 0.016672203042365587 -- stat: 1.7793543763972594e-05 - sys: 0.00012645966076256835 - shift_lumi: 0.0001 - norm: 0.0004215322025418945 -- stat: 7.295165099015878e-05 - sys: 0.00040778638343480175 - shift_lumi: 0.0001 - norm: 0.0013592879447826725 -- stat: 0.00015288911989203542 - sys: 0.0006391712334574079 - shift_lumi: 0.0001 - norm: 0.00213057077819136 -- stat: 0.00021450104114826735 - sys: 0.0006818716970888696 - shift_lumi: 0.0001 - norm: 0.0022729056569628986 -- stat: 0.0006493460120847287 - sys: 0.001523799821602803 - shift_lumi: 0.0001 - norm: 0.00507933273867601 -- stat: 0.001107971450450383 - sys: 0.0019408761863924846 - shift_lumi: 0.0001 - norm: 0.006469587287974948 -- stat: 0.0028926497594473537 - sys: 0.0036524748357862993 - shift_lumi: 0.0001 - norm: 0.012174916119287662 -- stat: 0.006699749946150337 - sys: 0.006409775988630135 - shift_lumi: 0.0001 - norm: 0.02136591996210045 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..1aa33e99c9 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,322 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 1.1440556765131606e-06 + sys: 0.0001257813287824431 + shift_lumi: 0.0001 + norm: 0.00041927109594147696 +- stat: 1.0135088182631426e-06 + sys: 0.00011671626638525501 + shift_lumi: 0.0001 + norm: 0.0003890542212841834 +- stat: 1.9402955219046914e-06 + sys: 0.0001708468733247257 + shift_lumi: 0.0001 + norm: 0.0005694895777490857 +- stat: 8.306067721424624e-07 + sys: 9.780394123756579e-05 + shift_lumi: 0.0001 + norm: 0.0003260131374585527 +- stat: 1.7338550629124737e-06 + sys: 0.00015973740790385364 + shift_lumi: 0.0001 + norm: 0.0005324580263461789 +- stat: 3.212190555031698e-06 + sys: 0.00023500656234184413 + shift_lumi: 0.0001 + norm: 0.0007833552078061471 +- stat: 7.74110272293464e-07 + sys: 9.191288733498585e-05 + shift_lumi: 0.0001 + norm: 0.00030637629111661955 +- stat: 1.3771873995601925e-06 + sys: 0.0001305032534384692 + shift_lumi: 0.0001 + norm: 0.00043501084479489734 +- stat: 2.693749809851694e-06 + sys: 0.00020777110228765752 + shift_lumi: 0.0001 + norm: 0.0006925703409588584 +- stat: 5.305471217358955e-06 + sys: 0.000316100431688798 + shift_lumi: 0.0001 + norm: 0.0010536681056293267 +- stat: 6.226755750303891e-07 + sys: 7.358127963757456e-05 + shift_lumi: 0.0001 + norm: 0.00024527093212524853 +- stat: 1.1779916409428933e-06 + sys: 0.00011270066189949916 + shift_lumi: 0.0001 + norm: 0.00037566887299833054 +- stat: 2.3363878756682535e-06 + sys: 0.0001844981416268362 + shift_lumi: 0.0001 + norm: 0.0006149938054227873 +- stat: 4.529612797956721e-06 + sys: 0.00028168173930776896 + shift_lumi: 0.0001 + norm: 0.0009389391310258967 +- stat: 9.920811774204052e-06 + sys: 0.00047230062589629035 + shift_lumi: 0.0001 + norm: 0.0015743354196543014 +- stat: 5.576780764265325e-07 + sys: 6.528031529343356e-05 + shift_lumi: 0.0001 + norm: 0.0002176010509781119 +- stat: 1.11684131664803e-06 + sys: 0.00010685029608715446 + shift_lumi: 0.0001 + norm: 0.00035616765362384825 +- stat: 1.8612737765366771e-06 + sys: 0.00014815552197359905 + shift_lumi: 0.0001 + norm: 0.0004938517399119968 +- stat: 4.140838757454461e-06 + sys: 0.00026410785530457534 + shift_lumi: 0.0001 + norm: 0.0008803595176819179 +- stat: 8.291230269980534e-06 + sys: 0.000412483497839438 + shift_lumi: 0.0001 + norm: 0.0013749449927981266 +- stat: 1.7631071249589752e-05 + sys: 0.0006594997893260722 + shift_lumi: 0.0001 + norm: 0.0021983326310869074 +- stat: 4.121209588431812e-07 + sys: 4.7736341864644895e-05 + shift_lumi: 0.0001 + norm: 0.00015912113954881632 +- stat: 8.672857672481317e-07 + sys: 8.297485026858339e-05 + shift_lumi: 0.0001 + norm: 0.00027658283422861126 +- stat: 1.6180729202489238e-06 + sys: 0.00012777477999762705 + shift_lumi: 0.0001 + norm: 0.00042591593332542353 +- stat: 3.4301708114409652e-06 + sys: 0.00021878056823805008 + shift_lumi: 0.0001 + norm: 0.0007292685607935002 +- stat: 7.056336856202838e-06 + sys: 0.00035639423979260136 + shift_lumi: 0.0001 + norm: 0.001187980799308671 +- stat: 1.578577329581008e-05 + sys: 0.0006111535453052214 + shift_lumi: 0.0001 + norm: 0.002037178484350738 +- stat: 3.432266078685724e-05 + sys: 0.0009898729359708687 + shift_lumi: 0.0001 + norm: 0.003299576453236229 +- stat: 3.417243353986817e-07 + sys: 3.803259739097285e-05 + shift_lumi: 0.0001 + norm: 0.00012677532463657617 +- stat: 7.732845392974949e-07 + sys: 7.327699065807503e-05 + shift_lumi: 0.0001 + norm: 0.0002442566355269168 +- stat: 1.4872438803300354e-06 + sys: 0.00011651881707418004 + shift_lumi: 0.0001 + norm: 0.00038839605691393347 +- stat: 2.987117738763504e-06 + sys: 0.00018930857472789942 + shift_lumi: 0.0001 + norm: 0.0006310285824263315 +- stat: 6.166765349593076e-06 + sys: 0.00031146467261063577 + shift_lumi: 0.0001 + norm: 0.001038215575368786 +- stat: 1.2801906571322127e-05 + sys: 0.0005034678343667274 + shift_lumi: 0.0001 + norm: 0.0016782261145557576 +- stat: 2.8868577684581864e-05 + sys: 0.0008625787424413054 + shift_lumi: 0.0001 + norm: 0.002875262474804351 +- stat: 6.44873508402789e-05 + sys: 0.0014227074043983267 + shift_lumi: 0.0001 + norm: 0.004742358014661089 +- stat: 6.687697799127855e-07 + sys: 6.161273419720191e-05 + shift_lumi: 0.0001 + norm: 0.00020537578065733976 +- stat: 1.3597780051211041e-06 + sys: 0.00010407400248841539 + shift_lumi: 0.0001 + norm: 0.0003469133416280513 +- stat: 2.6230602055248626e-06 + sys: 0.00016414540574034888 + shift_lumi: 0.0001 + norm: 0.0005471513524678295 +- stat: 5.233641699139299e-06 + sys: 0.00026037038704804737 + shift_lumi: 0.0001 + norm: 0.0008679012901601579 +- stat: 1.1042535019462378e-05 + sys: 0.000432566284180117 + shift_lumi: 0.0001 + norm: 0.0014418876139337233 +- stat: 2.4571411334019172e-05 + sys: 0.0007386176915204921 + shift_lumi: 0.0001 + norm: 0.0024620589717349738 +- stat: 5.330170198012997e-05 + sys: 0.00120807571404625 + shift_lumi: 0.0001 + norm: 0.004026919046820833 +- stat: 0.00012130259546695424 + sys: 0.0020149341999673776 + shift_lumi: 0.0001 + norm: 0.0067164473332245915 +- stat: 1.0950308476363118e-06 + sys: 8.011337769428997e-05 + shift_lumi: 0.0001 + norm: 0.00026704459231429996 +- stat: 2.124180263413929e-06 + sys: 0.0001258055164432554 + shift_lumi: 0.0001 + norm: 0.0004193517214775179 +- stat: 4.8343488738159606e-06 + sys: 0.00023014910985824966 + shift_lumi: 0.0001 + norm: 0.0007671636995274988 +- stat: 1.0140690317698256e-05 + sys: 0.0003793180251766355 + shift_lumi: 0.0001 + norm: 0.0012643934172554517 +- stat: 2.1097315711797706e-05 + sys: 0.0006102198863346171 + shift_lumi: 0.0001 + norm: 0.002034066287782057 +- stat: 4.585729984348721e-05 + sys: 0.0010162012749198473 + shift_lumi: 0.0001 + norm: 0.003387337583066158 +- stat: 0.00010083233706769092 + sys: 0.001663796163125251 + shift_lumi: 0.0001 + norm: 0.005545987210417503 +- stat: 0.00022841889816870085 + sys: 0.0027481733261861393 + shift_lumi: 0.0001 + norm: 0.009160577753953797 +- stat: 2.2979338706459726e-06 + sys: 0.00011970760903636291 + shift_lumi: 0.0001 + norm: 0.000399025363454543 +- stat: 4.616798945134109e-06 + sys: 0.0001914023729189806 + shift_lumi: 0.0001 + norm: 0.0006380079097299353 +- stat: 8.658962346288135e-06 + sys: 0.00028247733616183464 + shift_lumi: 0.0001 + norm: 0.0009415911205394486 +- stat: 1.9519480897851628e-05 + sys: 0.0004929349815280461 + shift_lumi: 0.0001 + norm: 0.001643116605093487 +- stat: 4.2434033047806917e-05 + sys: 0.0008230278711176417 + shift_lumi: 0.0001 + norm: 0.002743426237058806 +- stat: 8.860329786005436e-05 + sys: 0.0013041297079433428 + shift_lumi: 0.0001 + norm: 0.004347099026477809 +- stat: 0.00020920367266231513 + sys: 0.0022749183179843623 + shift_lumi: 0.0001 + norm: 0.007583061059947876 +- stat: 0.0004737694150263323 + sys: 0.0037711569282924237 + shift_lumi: 0.0001 + norm: 0.012570523094308079 +- stat: 5.471988135955705e-06 + sys: 0.00015467498441114767 + shift_lumi: 0.0001 + norm: 0.0005155832813704922 +- stat: 1.1649666940300309e-05 + sys: 0.0002587337556266769 + shift_lumi: 0.0001 + norm: 0.000862445852088923 +- stat: 2.322325786169421e-05 + sys: 0.00039839396243229806 + shift_lumi: 0.0001 + norm: 0.001327979874774327 +- stat: 5.145516928861016e-05 + sys: 0.0006754254223794392 + shift_lumi: 0.0001 + norm: 0.0022514180745981304 +- stat: 0.00010219646356841241 + sys: 0.0010209256763784613 + shift_lumi: 0.0001 + norm: 0.003403085587928204 +- stat: 0.00023555264245752274 + sys: 0.001762194887387237 + shift_lumi: 0.0001 + norm: 0.005873982957957456 +- stat: 0.0005303900513090525 + sys: 0.0029318413212157937 + shift_lumi: 0.0001 + norm: 0.009772804404052647 +- stat: 0.0012395154409210265 + sys: 0.0048175870774066175 + shift_lumi: 0.0001 + norm: 0.016058623591355393 +- stat: 1.7860705471774712e-05 + sys: 0.00012693698258769504 + shift_lumi: 0.0001 + norm: 0.00042312327529231685 +- stat: 7.301765149121376e-05 + sys: 0.0004081553141617256 + shift_lumi: 0.0001 + norm: 0.0013605177138724183 +- stat: 0.0001527157842699092 + sys: 0.000638446583178338 + shift_lumi: 0.0001 + norm: 0.0021281552772611264 +- stat: 0.00021282450790890983 + sys: 0.0006765422098331112 + shift_lumi: 0.0001 + norm: 0.0022551406994437036 +- stat: 0.0006431994535791087 + sys: 0.001509375886474188 + shift_lumi: 0.0001 + norm: 0.00503125295491396 +- stat: 0.0010897452177676418 + sys: 0.0019089485938834885 + shift_lumi: 0.0001 + norm: 0.006363161979611629 +- stat: 0.00284112728306528 + sys: 0.003587418723186317 + shift_lumi: 0.0001 + norm: 0.011958062410621056 +- stat: 0.006568963977082981 + sys: 0.006284650607695678 + shift_lumi: 0.0001 + norm: 0.02094883535898559 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..0635e7a033 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_29GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,322 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 1.4217792842050198e-06 + sys: 0.0001563151962566229 + shift_lumi: 0.0001 + norm: 0.0005210506541887429 +- stat: 1.0259187460783449e-06 + sys: 0.0001181454009074224 + shift_lumi: 0.0001 + norm: 0.00039381800302474136 +- stat: 2.502915852715313e-06 + sys: 0.00022038671058289733 + shift_lumi: 0.0001 + norm: 0.0007346223686096579 +- stat: 7.372200602087095e-07 + sys: 8.680765660244403e-05 + shift_lumi: 0.0001 + norm: 0.0002893588553414801 +- stat: 1.8433852934554711e-06 + sys: 0.00016982826006808275 + shift_lumi: 0.0001 + norm: 0.0005660942002269424 +- stat: 4.508421498397458e-06 + sys: 0.00032983990824168196 + shift_lumi: 0.0001 + norm: 0.0010994663608056066 +- stat: 6.525790415569997e-07 + sys: 7.748304869550042e-05 + shift_lumi: 0.0001 + norm: 0.0002582768289850014 +- stat: 1.5032572943652651e-06 + sys: 0.00014244972596498353 + shift_lumi: 0.0001 + norm: 0.0004748324198832785 +- stat: 3.3251299709873637e-06 + sys: 0.0002564699649518703 + shift_lumi: 0.0001 + norm: 0.0008548998831729009 +- stat: 7.174127927330567e-06 + sys: 0.00042743515927483046 + shift_lumi: 0.0001 + norm: 0.0014247838642494348 +- stat: 5.497876561977e-07 + sys: 6.496814857399109e-05 + shift_lumi: 0.0001 + norm: 0.00021656049524663694 +- stat: 1.2431179730440445e-06 + sys: 0.00011893141980964137 + shift_lumi: 0.0001 + norm: 0.0003964380660321379 +- stat: 2.6029167918566854e-06 + sys: 0.00020554519902629123 + shift_lumi: 0.0001 + norm: 0.0006851506634209708 +- stat: 5.5634369398539755e-06 + sys: 0.00034597186639310026 + shift_lumi: 0.0001 + norm: 0.0011532395546436675 +- stat: 1.1547074757574688e-05 + sys: 0.0005497222162257313 + shift_lumi: 0.0001 + norm: 0.0018324073874191047 +- stat: 5.283748307529434e-07 + sys: 6.185015513911943e-05 + shift_lumi: 0.0001 + norm: 0.0002061671837970648 +- stat: 1.0368304356547947e-06 + sys: 9.919550556599082e-05 + shift_lumi: 0.0001 + norm: 0.00033065168521996947 +- stat: 2.247654107106248e-06 + sys: 0.00017891100796254514 + shift_lumi: 0.0001 + norm: 0.0005963700265418172 +- stat: 4.299068416223557e-06 + sys: 0.0002741999400900188 + shift_lumi: 0.0001 + norm: 0.0009139998003000625 +- stat: 9.179346662967232e-06 + sys: 0.0004566667305249485 + shift_lumi: 0.0001 + norm: 0.0015222224350831617 +- stat: 1.933502133812693e-05 + sys: 0.0007232369672039371 + shift_lumi: 0.0001 + norm: 0.0024107898906797903 +- stat: 4.914421156759115e-07 + sys: 5.6924182906010513e-05 + shift_lumi: 0.0001 + norm: 0.00018974727635336837 +- stat: 8.985815274895335e-07 + sys: 8.59689741411695e-05 + shift_lumi: 0.0001 + norm: 0.0002865632471372317 +- stat: 1.8212993191655725e-06 + sys: 0.00014382301125242736 + shift_lumi: 0.0001 + norm: 0.0004794100375080913 +- stat: 3.7258425617245203e-06 + sys: 0.00023763888086878487 + shift_lumi: 0.0001 + norm: 0.0007921296028959496 +- stat: 7.363390626711083e-06 + sys: 0.00037190259736478016 + shift_lumi: 0.0001 + norm: 0.0012396753245492672 +- stat: 1.6067670074348005e-05 + sys: 0.0006220673100214108 + shift_lumi: 0.0001 + norm: 0.002073557700071369 +- stat: 3.499315029323456e-05 + sys: 0.001009209997871079 + shift_lumi: 0.0001 + norm: 0.003364033326236929 +- stat: 4.3758251292932234e-07 + sys: 4.870124195326856e-05 + shift_lumi: 0.0001 + norm: 0.00016233747317756183 +- stat: 7.148512032093448e-07 + sys: 6.773980634227139e-05 + shift_lumi: 0.0001 + norm: 0.00022579935447423796 +- stat: 1.5155232036571194e-06 + sys: 0.00011873437388050481 + shift_lumi: 0.0001 + norm: 0.0003957812462683494 +- stat: 3.1282238253506114e-06 + sys: 0.00019825117240009378 + shift_lumi: 0.0001 + norm: 0.0006608372413336458 +- stat: 6.191867953196416e-06 + sys: 0.0003127325292209907 + shift_lumi: 0.0001 + norm: 0.0010424417640699688 +- stat: 1.2721663822765973e-05 + sys: 0.0005003120823219733 + shift_lumi: 0.0001 + norm: 0.001667706941073244 +- stat: 2.9747169742254813e-05 + sys: 0.000888830636126778 + shift_lumi: 0.0001 + norm: 0.00296276878708926 +- stat: 6.587520798928832e-05 + sys: 0.0014533260391602553 + shift_lumi: 0.0001 + norm: 0.004844420130534185 +- stat: 5.398222846700598e-07 + sys: 4.973299921452805e-05 + shift_lumi: 0.0001 + norm: 0.0001657766640484268 +- stat: 1.2925267051076614e-06 + sys: 9.892675643899508e-05 + shift_lumi: 0.0001 + norm: 0.00032975585479665034 +- stat: 2.5600643647784772e-06 + sys: 0.00016020326296471222 + shift_lumi: 0.0001 + norm: 0.0005340108765490407 +- stat: 5.117066695948197e-06 + sys: 0.0002545708538652568 + shift_lumi: 0.0001 + norm: 0.0008485695128841894 +- stat: 1.0677434831206838e-05 + sys: 0.0004182643117155688 + shift_lumi: 0.0001 + norm: 0.0013942143723852292 +- stat: 2.4598409300852346e-05 + sys: 0.0007394292515756713 + shift_lumi: 0.0001 + norm: 0.0024647641719189044 +- stat: 5.308875024561164e-05 + sys: 0.001203249192393498 + shift_lumi: 0.0001 + norm: 0.00401083064131166 +- stat: 0.0001251391902302686 + sys: 0.0020786631413825165 + shift_lumi: 0.0001 + norm: 0.006928877137941722 +- stat: 1.2163360376622164e-06 + sys: 8.898816740984924e-05 + shift_lumi: 0.0001 + norm: 0.0002966272246994975 +- stat: 2.375556976535951e-06 + sys: 0.00014069341355858677 + shift_lumi: 0.0001 + norm: 0.00046897804519528924 +- stat: 4.648405212761199e-06 + sys: 0.00022129687986977603 + shift_lumi: 0.0001 + norm: 0.0007376562662325867 +- stat: 9.6162725717728e-06 + sys: 0.0003597018947634174 + shift_lumi: 0.0001 + norm: 0.0011990063158780582 +- stat: 2.1738679707270056e-05 + sys: 0.0006287707327912302 + shift_lumi: 0.0001 + norm: 0.0020959024426374343 +- stat: 4.526105043138114e-05 + sys: 0.00100298834230453 + shift_lumi: 0.0001 + norm: 0.003343294474348434 +- stat: 0.00010203783087760984 + sys: 0.0016836875594167782 + shift_lumi: 0.0001 + norm: 0.005612291864722595 +- stat: 0.00023303967014599012 + sys: 0.002803767160129756 + shift_lumi: 0.0001 + norm: 0.009345890533765853 +- stat: 2.5511774012589154e-06 + sys: 0.00013289997194151494 + shift_lumi: 0.0001 + norm: 0.0004429999064717165 +- stat: 4.68956201358295e-06 + sys: 0.00019441897037697747 + shift_lumi: 0.0001 + norm: 0.0006480632345899248 +- stat: 9.271193740155493e-06 + sys: 0.0003024498786372542 + shift_lumi: 0.0001 + norm: 0.0010081662621241807 +- stat: 2.0665897909183878e-05 + sys: 0.0005218860100549727 + shift_lumi: 0.0001 + norm: 0.0017396200335165757 +- stat: 4.353809466641346e-05 + sys: 0.0008444416613770006 + shift_lumi: 0.0001 + norm: 0.0028148055379233357 +- stat: 9.547842821706276e-05 + sys: 0.0014053230264891076 + shift_lumi: 0.0001 + norm: 0.004684410088297025 +- stat: 0.00020779028167658572 + sys: 0.0022595488505032643 + shift_lumi: 0.0001 + norm: 0.007531829501677547 +- stat: 0.0004828298063013442 + sys: 0.003843276732243682 + shift_lumi: 0.0001 + norm: 0.012810922440812274 +- stat: 5.4630713601942184e-06 + sys: 0.0001544229366877904 + shift_lumi: 0.0001 + norm: 0.0005147431222926347 +- stat: 1.2617053584863883e-05 + sys: 0.0002802189689785849 + shift_lumi: 0.0001 + norm: 0.0009340632299286166 +- stat: 2.1731604785906176e-05 + sys: 0.0003728047198300472 + shift_lumi: 0.0001 + norm: 0.0012426823994334908 +- stat: 5.112824494916821e-05 + sys: 0.000671134055484596 + shift_lumi: 0.0001 + norm: 0.002237113518281986 +- stat: 0.00011528232258085912 + sys: 0.0011516512318115225 + shift_lumi: 0.0001 + norm: 0.003838837439371742 +- stat: 0.00024107558569669323 + sys: 0.001803512625273159 + shift_lumi: 0.0001 + norm: 0.006011708750910529 +- stat: 0.0005544877117488973 + sys: 0.0030650461512230537 + shift_lumi: 0.0001 + norm: 0.010216820504076844 +- stat: 0.0012581977398073963 + sys: 0.004890199001969935 + shift_lumi: 0.0001 + norm: 0.016300663339899782 +- stat: 2.4265859334917853e-05 + sys: 0.00017245875134885472 + shift_lumi: 0.0001 + norm: 0.0005748625044961824 +- stat: 3.9633458831864896e-05 + sys: 0.00022154378442015726 + shift_lumi: 0.0001 + norm: 0.0007384792814005241 +- stat: 9.299875745963984e-05 + sys: 0.0003887924173901984 + shift_lumi: 0.0001 + norm: 0.0012959747246339946 +- stat: 0.0002667050630896951 + sys: 0.0008478216843034348 + shift_lumi: 0.0001 + norm: 0.002826072281011449 +- stat: 0.0004733703449121529 + sys: 0.001110843269543443 + shift_lumi: 0.0001 + norm: 0.003702810898478143 +- stat: 0.001411503107512958 + sys: 0.0024725842595287816 + shift_lumi: 0.0001 + norm: 0.008241947531762606 +- stat: 0.0034086204535344264 + sys: 0.004303977828846984 + shift_lumi: 0.0001 + norm: 0.01434659276282328 +- stat: 0.006223851904343536 + sys: 0.005954475437724933 + shift_lumi: 0.0001 + norm: 0.019848251459083113 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data.yaml deleted file mode 100644 index 324bce6c21..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data.yaml +++ /dev/null @@ -1,93 +0,0 @@ -data_central: -- 0.008495537894920734 -- 0.0064749989207337506 -- 0.012555472679858693 -- 0.004679610105705653 -- 0.009222896426919458 -- 0.01648488730927256 -- 0.0035409828979633 -- 0.00656466698565836 -- 0.011772580805258993 -- 0.01927999673274046 -- 0.0025724849239145927 -- 0.004922506382419332 -- 0.0087322949634807 -- 0.01420344960974076 -- 0.02286107086698205 -- 0.002132420007442807 -- 0.004058119165465245 -- 0.006661144634259548 -- 0.011277873447911205 -- 0.01762188531613362 -- 0.027405489110444662 -- 0.0017546456955652618 -- 0.003262961669672007 -- 0.005497393956632017 -- 0.009044040291180645 -- 0.014217314878625313 -- 0.022824387134530718 -- 0.03575207204486389 -- 0.0015824072010941033 -- 0.00282884114402215 -- 0.0047644324445340145 -- 0.007522611661650216 -- 0.011906791469828431 -- 0.018639894599060312 -- 0.030225114607253262 -- 0.04868507629962767 -- 0.0023736532609833776 -- 0.004050589474957798 -- 0.006311573979299005 -- 0.00985114298069296 -- 0.015845293452690822 -- 0.0258642652549809 -- 0.04193173500352452 -- 0.0687537954853826 -- 0.003177131890109135 -- 0.004987797430772481 -- 0.008426228850321153 -- 0.013643255104071009 -- 0.022057870876805667 -- 0.0362532060929738 -- 0.05959963111030635 -- 0.09874454769167333 -- 0.004393365920378955 -- 0.007091632794178253 -- 0.011153672404571697 -- 0.018687077421495148 -- 0.030995801236110516 -- 0.050403293515249505 -- 0.08563126196128086 -- 0.14309458337457048 -- 0.006106216709007802 -- 0.009996164481448265 -- 0.01607100678420103 -- 0.02645644463939984 -- 0.042729465532558575 -- 0.07129084880012726 -- 0.1190276010658528 -- 0.1985071136038613 -- 0.008243383886894351 -- 0.014036813750560248 -- 0.02256710889817846 -- 0.035237953660068135 -- 0.05919518395127921 -- 0.09510671227378309 -- 0.15950975579018511 -- 0.26657396284220236 -- 0.011446865411932848 -- 0.018367057276144544 -- 0.027348897424633593 -- 0.04656491442037939 -- 0.07483484691103826 -- 0.12786150992886278 -- 0.2109133081473551 -- 0.34508100318896745 -- 0.013531719682799577 -- 0.023005904549581103 -- 0.03479710196565216 -- 0.057459105355798276 -- 0.08990497805052745 -- 0.15596522398696214 -- 0.2507284378330005 -- 0.42636135401495795 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..48109d5544 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nlo.yaml @@ -0,0 +1,93 @@ +data_central: +- 0.0032914171757275922 +- 0.0032929446407404177 +- 0.004313933226053449 +- 0.0030164846829855113 +- 0.0044120513839983316 +- 0.005749637919292183 +- 0.002914396791904169 +- 0.004055373641604267 +- 0.005807705358188606 +- 0.0081292154637434 +- 0.002553321373026907 +- 0.003791670867589197 +- 0.005657499453676913 +- 0.008223330692046145 +- 0.012782681016707795 +- 0.002346808560827551 +- 0.0036306056100126665 +- 0.005101308848442317 +- 0.00818383104004481 +- 0.01245727784157174 +- 0.019378109971233633 +- 0.0019303963244722076 +- 0.0030865404450305745 +- 0.004619909640010226 +- 0.007382232962093579 +- 0.011601900265017643 +- 0.018968797969915976 +- 0.030313289969475788 +- 0.0015979866568412687 +- 0.0026909195535394933 +- 0.004170143375619893 +- 0.0065657593805294925 +- 0.01054192332473009 +- 0.01682709411611813 +- 0.027931105544938856 +- 0.045699201942526156 +- 0.0022466629170572517 +- 0.003647088626503267 +- 0.005770168379434233 +- 0.00917417660507367 +- 0.015053344024170478 +- 0.025033352090316992 +- 0.04109513907910249 +- 0.06832680033114875 +- 0.002964437393733165 +- 0.004745481320570824 +- 0.008159885686020541 +- 0.013376656224838187 +- 0.021849429470004483 +- 0.03618897276035334 +- 0.059925426852576326 +- 0.0998720158095774 +- 0.004300838229254699 +- 0.006982252697741589 +- 0.011022145808010708 +- 0.01852922917510562 +- 0.030832348379156594 +- 0.0502450764522363 +- 0.08550839553853806 +- 0.1430652492658434 +- 0.0059863363819422435 +- 0.009799020423085187 +- 0.01574832602090372 +- 0.025952158407851606 +- 0.04189383802519662 +- 0.06990731634077273 +- 0.11671029425908595 +- 0.19461923435180029 +- 0.008096832674412247 +- 0.013778937733781697 +- 0.022135087772464444 +- 0.03446612816503813 +- 0.05784512774169055 +- 0.09277929063582596 +- 0.15549255630976488 +- 0.2596939269572346 +- 0.01114351607149279 +- 0.017850960516353587 +- 0.026434998107834926 +- 0.04498695307449473 +- 0.07211360856567359 +- 0.12324819209097497 +- 0.20307327440918854 +- 0.33184785517426063 +- 0.013512173845768376 +- 0.022863531587277084 +- 0.03441620532079757 +- 0.05662943167723859 +- 0.08824548430698406 +- 0.15282929132772752 +- 0.2448925677514052 +- 0.4158777437933314 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..b4a7cc4849 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/data_nnlo.yaml @@ -0,0 +1,93 @@ +data_central: +- 0.00635369095693941 +- 0.005120929963983404 +- 0.010174572343488586 +- 0.003905637831994263 +- 0.007660761517495012 +- 0.014551449197958989 +- 0.003002789051514441 +- 0.005845860348880186 +- 0.010758785554463584 +- 0.01759276358190274 +- 0.002365495097782561 +- 0.0045369591390949 +- 0.008222508137793648 +- 0.01336029775703295 +- 0.02130784648943275 +- 0.002015118899578239 +- 0.003694400096816015 +- 0.006403990501532993 +- 0.01084136576886584 +- 0.01701666036436673 +- 0.026182000948221557 +- 0.0017555280954818517 +- 0.0031281736760242177 +- 0.005338936385885484 +- 0.008585947415974276 +- 0.013992212779119616 +- 0.02186353722252385 +- 0.03530774524495931 +- 0.0016640634935843532 +- 0.002716471370782225 +- 0.00456432783997803 +- 0.0072123803678124645 +- 0.01179796815518483 +- 0.01839561732293517 +- 0.029667806169615764 +- 0.048103118855730584 +- 0.0024252949640079695 +- 0.003881983141863837 +- 0.006055907439194456 +- 0.009892794753946286 +- 0.015854546873123595 +- 0.025743726888832103 +- 0.041653155369935496 +- 0.0692732465550358 +- 0.003173458273701306 +- 0.005274505451820373 +- 0.008034232111271036 +- 0.013402495043775648 +- 0.02225776335019864 +- 0.03602706510178574 +- 0.06029134554273909 +- 0.09963424115920626 +- 0.004352248332974171 +- 0.006938380999924843 +- 0.01137134137215996 +- 0.01894615780784943 +- 0.03068028700307754 +- 0.05169415745237099 +- 0.08669114771367209 +- 0.1433052700982185 +- 0.006132897162010508 +- 0.010321359736125786 +- 0.016012358888461288 +- 0.02602065463361073 +- 0.043274145590532276 +- 0.0714871170390574 +- 0.11942223189312078 +- 0.19765593291700684 +- 0.008611221598943914 +- 0.013894266043747083 +- 0.021816123022415056 +- 0.03560059754352901 +- 0.05787516063708916 +- 0.09579858965800814 +- 0.1597708112083282 +- 0.2649956445500215 +- 0.011187320553578945 +- 0.018525202304246872 +- 0.027839145668427864 +- 0.04667577065870914 +- 0.07791526638281537 +- 0.1257180088343608 +- 0.20689458307934347 +- 0.3396425906039367 +- 0.013393026268792421 +- 0.018407166105460733 +- 0.04188622462593984 +- 0.05893531379680118 +- 0.09155165458918313 +- 0.14655954727074905 +- 0.2538363329178866 +- 0.4243701035328192 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py index cc5188f9e0..899d7cd7cf 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/filter.py @@ -16,6 +16,8 @@ BEAMS = (5, 100) input_xlsx = Path("./rawdata/ATHENA_ALL_EP.xlsx") xdf = read_excel(input_xlsx, beams=BEAMS) - cv_preds = read_central_values(Path("./rawdata/ATHENA_NC_45GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) - write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/ATHENA_NC_45GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) + write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True, suffix=pto.lower()) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/metadata.yaml index cd1d299d02..7056c1a271 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "ALL" + - observable_name: "ALL-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 45GeV at ATHENA" + description: "EIC projection measurements on polarized ep scattering at 45GeV at ATHENA using NLO theory" label: "$A_{LL}$" units: "" process_type: "DIS_POL" @@ -44,9 +44,44 @@ implemented_observables: y: { description: "inelasticity", label: "$y$", units: "" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - ATHENA_NC_45GEV_EP_G1 + operation: "null" + - observable_name: "ALL-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 45GeV at ATHENA using NNLO theory" + label: "$A_{LL}$" + units: "" + process_type: "DIS_POL" + ndata: 92 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "ATHENA 45GeV (ALL)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$A_{LL}^{p}(x, Q^2)$" + kinematic_coverage: [x, Q2, y] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + y: { description: "inelasticity", label: "$y$", units: "" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP.yaml deleted file mode 100644 index e89081c727..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP.yaml +++ /dev/null @@ -1,93 +0,0 @@ -predictions_central: -- 0.008413660967563285 -- 0.006373363943910846 -- 0.012440590894389546 -- 0.004692752446522257 -- 0.009074581240267566 -- 0.01628560188355434 -- 0.003449219343836318 -- 0.006619687497919061 -- 0.011723059333821445 -- 0.019293363015054358 -- 0.0025809804656415185 -- 0.004979575118832076 -- 0.008665887447355157 -- 0.014292669979549496 -- 0.022675944255026108 -- 0.0020701198298536125 -- 0.0039035634865790124 -- 0.006784579686098784 -- 0.011036411351736974 -- 0.017564240350264604 -- 0.027631758436499138 -- 0.0018032216610866778 -- 0.0032411360231947707 -- 0.00556982214549936 -- 0.008983623299218532 -- 0.01417175147841924 -- 0.02247039752634722 -- 0.03567417893658855 -- 0.0016470889666107924 -- 0.0027517969407886934 -- 0.004697900317739944 -- 0.007445537824222955 -- 0.011798459056702107 -- 0.018685265436988858 -- 0.030035139647486296 -- 0.04880442965842947 -- 0.0023311973097959026 -- 0.003930368062292368 -- 0.006223591221168345 -- 0.009867076222531636 -- 0.015834771844337923 -- 0.025520390931360295 -- 0.04190531457404702 -- 0.06897190814878322 -- 0.003250334138409909 -- 0.005177554381530941 -- 0.008320208051503119 -- 0.013420960907518948 -- 0.021916162038593638 -- 0.035904806187269746 -- 0.05962199502446783 -- 0.09941133206420734 -- 0.004380422625744206 -- 0.007090390618192875 -- 0.011537645488700326 -- 0.018806442678014786 -- 0.030938525338084968 -- 0.050995182888853005 -- 0.08519549951639928 -- 0.14269646328374483 -- 0.0061528759728035455 -- 0.009962724061486012 -- 0.016201190943838827 -- 0.026339516397774175 -- 0.04331321219737229 -- 0.07133117536906064 -- 0.11900152854976481 -- 0.19890773536073186 -- 0.008480016912972444 -- 0.013650419804760446 -- 0.02205866860582476 -- 0.03575882095433497 -- 0.058583449002386004 -- 0.09611500513594919 -- 0.15970431477405508 -- 0.26570223252403513 -- 0.011390728528978374 -- 0.018250572927687864 -- 0.029418807076396068 -- 0.047476589347707175 -- 0.07744012363785222 -- 0.12642456324618198 -- 0.2089013393598704 -- 0.3453275280192657 -- 0.013564945143795491 -- 0.02199274491173719 -- 0.03569069186610392 -- 0.05785724337962171 -- 0.09459729966759732 -- 0.1545428413740342 -- 0.2551049737675776 -- 0.4202585373509952 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NLO.yaml new file mode 100644 index 0000000000..8551009193 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NLO.yaml @@ -0,0 +1,93 @@ +predictions_central: +- 0.003209540248370143 +- 0.0031913096639175132 +- 0.004199051440584301 +- 0.0030296270238021152 +- 0.004263736197346441 +- 0.005550352493573964 +- 0.002822633237777187 +- 0.004110394153864968 +- 0.005758183886751058 +- 0.008142581746057297 +- 0.0025618169147538328 +- 0.0038487396040019412 +- 0.005591091937551371 +- 0.008312551061854882 +- 0.012597554404751854 +- 0.0022845083832383566 +- 0.003476049931126434 +- 0.005224743900281554 +- 0.007942368943870579 +- 0.012399632875702726 +- 0.01960437929728811 +- 0.0019789722899936236 +- 0.0030647147985533377 +- 0.004692337828877569 +- 0.007321815970131466 +- 0.01155633686481157 +- 0.018614808361732477 +- 0.030235396861200445 +- 0.0016626684223579578 +- 0.0026138753503060367 +- 0.004103611248825823 +- 0.006488685543102232 +- 0.010433590911603766 +- 0.016872464954046675 +- 0.02774113058517189 +- 0.04581855530132795 +- 0.0022042069658697767 +- 0.0035268672138378367 +- 0.005682185621303573 +- 0.009190109846912346 +- 0.015042822415817579 +- 0.02468947776669639 +- 0.04106871864962499 +- 0.06854491299454937 +- 0.003037639642033939 +- 0.004935238271329285 +- 0.008053864887202507 +- 0.013154362028286126 +- 0.021707720631792455 +- 0.03584057285464929 +- 0.059947790766737806 +- 0.1005388001821114 +- 0.00428789493461995 +- 0.0069810105217562105 +- 0.011406118892139336 +- 0.018648594431625257 +- 0.030775072481131045 +- 0.0508369658258398 +- 0.08507263309365648 +- 0.14266712917501775 +- 0.006032995645737987 +- 0.009765580003122934 +- 0.015878510180541518 +- 0.02583523016622594 +- 0.04247758469001033 +- 0.0699476429097061 +- 0.11668422174299796 +- 0.19501985610867084 +- 0.00833346570049034 +- 0.013392543787981897 +- 0.02162664748011074 +- 0.03498699545930496 +- 0.05723339279279735 +- 0.09378758349799206 +- 0.15568711529363485 +- 0.25882219663906736 +- 0.011087379188538317 +- 0.017734476167896907 +- 0.028504907759597402 +- 0.04589862800182252 +- 0.07471888529248755 +- 0.12181124540829417 +- 0.20106130562170385 +- 0.3320943800045589 +- 0.01354539930676429 +- 0.02185037194943317 +- 0.03530979522124933 +- 0.05702756970106203 +- 0.09293780592405393 +- 0.1514069087147996 +- 0.24926910368598232 +- 0.4097749271293687 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..7808d78222 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/rawdata/ATHENA_NC_45GEV_EP_NNLO.yaml @@ -0,0 +1,93 @@ +predictions_central: +- 0.006383567769072112 +- 0.0050795243603962625 +- 0.010274726787872168 +- 0.0039051677841917274 +- 0.0077581606847875115 +- 0.014470314801305683 +- 0.0029942219931864533 +- 0.005864446313819188 +- 0.010696620786455443 +- 0.01766258667319673 +- 0.002343141585128922 +- 0.004576518094773505 +- 0.00814388771237827 +- 0.013445054631620271 +- 0.02132473825071711 +- 0.001964316808707057 +- 0.0037103099753826624 +- 0.006544835136533887 +- 0.010632775486732981 +- 0.016909699412730197 +- 0.026597729708157193 +- 0.0017644302241532927 +- 0.003152465422045288 +- 0.005459838277513419 +- 0.008791325147623779 +- 0.013866228546776101 +- 0.022003368689386744 +- 0.03498392643456889 +- 0.0016286031588622146 +- 0.002704791500816427 +- 0.004630193059027559 +- 0.00733931184784923 +- 0.01164726805766653 +- 0.018485057867246937 +- 0.029787227394392084 +- 0.04846920334345543 +- 0.002301939603437702 +- 0.0038774449779310463 +- 0.006157187115907628 +- 0.009793095517774651 +- 0.01576604651144863 +- 0.02548650272093235 +- 0.04190571538522082 +- 0.06914547091400304 +- 0.0032193415641676893 +- 0.0051497469406295154 +- 0.008304775165538982 +- 0.013435755971910527 +- 0.02199506955059045 +- 0.03606069809413474 +- 0.059985776262115945 +- 0.10016558301580446 +- 0.004378737329589657 +- 0.007101300311259279 +- 0.011572187456057093 +- 0.018884161268079402 +- 0.03106227529908025 +- 0.05123692874854191 +- 0.08564961646266354 +- 0.14352365680248977 +- 0.006140378381314273 +- 0.009949524369013321 +- 0.016188579173206614 +- 0.026312835764050555 +- 0.043284969498139404 +- 0.07130504802540415 +- 0.11898475888834041 +- 0.19891494993876607 +- 0.008466093348305352 +- 0.013628350699982838 +- 0.02201445653514357 +- 0.035685979234724226 +- 0.05846112743079372 +- 0.09590819205542374 +- 0.1593490467258614 +- 0.2650905710811393 +- 0.011293200124464723 +- 0.018085540468871186 +- 0.029146746879388005 +- 0.047029793277988785 +- 0.07670108755302651 +- 0.1252041783489859 +- 0.2068661908445586 +- 0.341938910477178 +- 0.013402220585792617 +- 0.0217238788857713 +- 0.03524705635367875 +- 0.057127625859673556 +- 0.09338933414989344 +- 0.15254804942602365 +- 0.2517813055333936 +- 0.4147381413840185 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml deleted file mode 100644 index dea33194c6..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,386 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: MULT - type: UNCORR - shift_lumi: - description: uncertainty on the precision of the relative luminosity - treatment: ADD - type: UNCORR - norm: - description: relative (percent) normalization uncertainty (beam pol) - treatment: MULT - type: CORR -bins: -- stat: 2.906582623515438e-07 - sys: 0.000127433068423811 - shift_lumi: 0.0001 - norm: 0.0004247768947460367 -- stat: 2.1209151994654362e-07 - sys: 9.712498381100627e-05 - shift_lumi: 0.0001 - norm: 0.00032374994603668754 -- stat: 5.388576032889534e-07 - sys: 0.0001883320901978804 - shift_lumi: 0.0001 - norm: 0.0006277736339929346 -- stat: 1.506301405481431e-07 - sys: 7.01941515855848e-05 - shift_lumi: 0.0001 - norm: 0.00023398050528528267 -- stat: 3.771584027216592e-07 - sys: 0.00013834344640379186 - shift_lumi: 0.0001 - norm: 0.0004611448213459729 -- stat: 8.476660433434479e-07 - sys: 0.0002472733096390884 - shift_lumi: 0.0001 - norm: 0.0008242443654636279 -- stat: 1.1397931441947618e-07 - sys: 5.3114743469449504e-05 - shift_lumi: 0.0001 - norm: 0.00017704914489816498 -- stat: 2.628718454573844e-07 - sys: 9.84700047848754e-05 - shift_lumi: 0.0001 - norm: 0.000328233349282918 -- stat: 5.767560155136511e-07 - sys: 0.0001765887120788849 - shift_lumi: 0.0001 - norm: 0.0005886290402629496 -- stat: 1.2099675875077547e-06 - sys: 0.0002891999509911069 - shift_lumi: 0.0001 - norm: 0.000963999836637023 -- stat: 8.353380978523867e-08 - sys: 3.8587273858718893e-05 - shift_lumi: 0.0001 - norm: 0.00012862424619572964 -- stat: 1.9691478018970823e-07 - sys: 7.383759573628999e-05 - shift_lumi: 0.0001 - norm: 0.0002461253191209666 -- stat: 4.207367432892503e-07 - sys: 0.0001309844244522105 - shift_lumi: 0.0001 - norm: 0.000436614748174035 -- stat: 8.568704889138486e-07 - sys: 0.0002130517441461114 - shift_lumi: 0.0001 - norm: 0.000710172480487038 -- stat: 1.7864421678152981e-06 - sys: 0.00034291606300473074 - shift_lumi: 0.0001 - norm: 0.0011430535433491025 -- stat: 7.019373903230296e-08 - sys: 3.198630011164211e-05 - shift_lumi: 0.0001 - norm: 0.00010662100037214036 -- stat: 1.6381551693517266e-07 - sys: 6.087178748197867e-05 - shift_lumi: 0.0001 - norm: 0.00020290595827326222 -- stat: 3.209452167749396e-07 - sys: 9.991716951389321e-05 - shift_lumi: 0.0001 - norm: 0.00033305723171297736 -- stat: 6.666765130196395e-07 - sys: 0.0001691681017186681 - shift_lumi: 0.0001 - norm: 0.0005638936723955602 -- stat: 1.3270900628583136e-06 - sys: 0.0002643282797420043 - shift_lumi: 0.0001 - norm: 0.000881094265806681 -- stat: 2.71855875883023e-06 - sys: 0.00041108233665666994 - shift_lumi: 0.0001 - norm: 0.0013702744555222333 -- stat: 5.87529973301235e-08 - sys: 2.631968543347893e-05 - shift_lumi: 0.0001 - norm: 8.77322847782631e-05 -- stat: 1.33434590882264e-07 - sys: 4.894442504508011e-05 - shift_lumi: 0.0001 - norm: 0.00016314808348360035 -- stat: 2.6709957022495356e-07 - sys: 8.246090934948027e-05 - shift_lumi: 0.0001 - norm: 0.00027486969783160084 -- stat: 5.346264322597238e-07 - sys: 0.00013566060436770967 - shift_lumi: 0.0001 - norm: 0.0004522020145590323 -- stat: 1.0534253236681345e-06 - sys: 0.0002132597231793797 - shift_lumi: 0.0001 - norm: 0.0007108657439312657 -- stat: 2.190193841607403e-06 - sys: 0.0003423658070179608 - shift_lumi: 0.0001 - norm: 0.0011412193567265359 -- stat: 4.574286708091571e-06 - sys: 0.0005362810806729584 - shift_lumi: 0.0001 - norm: 0.0017876036022431946 -- stat: 5.3946767227943324e-08 - sys: 2.3736108016411548e-05 - shift_lumi: 0.0001 - norm: 7.912036005470517e-05 -- stat: 1.1682715861353452e-07 - sys: 4.243261716033225e-05 - shift_lumi: 0.0001 - norm: 0.00014144205720110752 -- stat: 2.33416539529367e-07 - sys: 7.146648666801022e-05 - shift_lumi: 0.0001 - norm: 0.00023822162222670071 -- stat: 4.507808319901849e-07 - sys: 0.00011283917492475324 - shift_lumi: 0.0001 - norm: 0.00037613058308251084 -- stat: 8.870490868591825e-07 - sys: 0.00017860187204742645 - shift_lumi: 0.0001 - norm: 0.0005953395734914216 -- stat: 1.766015016871816e-06 - sys: 0.0002795984189859047 - shift_lumi: 0.0001 - norm: 0.0009319947299530157 -- stat: 3.732526313849551e-06 - sys: 0.00045337671910879895 - shift_lumi: 0.0001 - norm: 0.0015112557303626631 -- stat: 8.06221258497037e-06 - sys: 0.000730276144494415 - shift_lumi: 0.0001 - norm: 0.0024342538149813835 -- stat: 9.89896036800113e-08 - sys: 3.5604798914750666e-05 - shift_lumi: 0.0001 - norm: 0.00011868266304916887 -- stat: 2.0172439602569908e-07 - sys: 6.075884212436697e-05 - shift_lumi: 0.0001 - norm: 0.00020252947374788991 -- stat: 3.858777227030162e-07 - sys: 9.467360968948508e-05 - shift_lumi: 0.0001 - norm: 0.00031557869896495027 -- stat: 7.458702954260066e-07 - sys: 0.0001477671447103944 - shift_lumi: 0.0001 - norm: 0.0004925571490346479 -- stat: 1.5076593709705373e-06 - sys: 0.00023767940179036232 - shift_lumi: 0.0001 - norm: 0.0007922646726345412 -- stat: 3.1730568748443006e-06 - sys: 0.0003879639788247135 - shift_lumi: 0.0001 - norm: 0.001293213262749045 -- stat: 6.791065297837775e-06 - sys: 0.0006289760250528678 - shift_lumi: 0.0001 - norm: 0.002096586750176226 -- stat: 1.5060140570483718e-05 - sys: 0.001031306932280739 - shift_lumi: 0.0001 - norm: 0.0034376897742691304 -- stat: 1.6208427075541962e-07 - sys: 4.765697835163702e-05 - shift_lumi: 0.0001 - norm: 0.00015885659450545674 -- stat: 3.1100302303584085e-07 - sys: 7.481696146158721e-05 - shift_lumi: 0.0001 - norm: 0.0002493898715386241 -- stat: 6.516309445256035e-07 - sys: 0.00012639343275481729 - shift_lumi: 0.0001 - norm: 0.00042131144251605766 -- stat: 1.3257582059843262e-06 - sys: 0.00020464882656106513 - shift_lumi: 0.0001 - norm: 0.0006821627552035505 -- stat: 2.723946113852462e-06 - sys: 0.000330868063152085 - shift_lumi: 0.0001 - norm: 0.0011028935438402833 -- stat: 5.827362155156865e-06 - sys: 0.0005437980913946069 - shift_lumi: 0.0001 - norm: 0.00181266030464869 -- stat: 1.2741265827977549e-05 - sys: 0.0008939944666545951 - shift_lumi: 0.0001 - norm: 0.0029799815555153174 -- stat: 2.878595908377846e-05 - sys: 0.0014811682153750999 - shift_lumi: 0.0001 - norm: 0.004937227384583667 -- stat: 2.810538548388693e-07 - sys: 6.590048880568433e-05 - shift_lumi: 0.0001 - norm: 0.00021966829601894778 -- stat: 5.627783651465195e-07 - sys: 0.00010637449191267381 - shift_lumi: 0.0001 - norm: 0.00035458163970891266 -- stat: 1.1154495186123015e-06 - sys: 0.00016730508606857544 - shift_lumi: 0.0001 - norm: 0.0005576836202285849 -- stat: 2.3682132407671025e-06 - sys: 0.00028030616132242723 - shift_lumi: 0.0001 - norm: 0.0009343538710747573 -- stat: 5.0701325675384004e-06 - sys: 0.0004649370185416578 - shift_lumi: 0.0001 - norm: 0.0015497900618055259 -- stat: 1.0795671726677161e-05 - sys: 0.0007560494027287427 - shift_lumi: 0.0001 - norm: 0.002520164675762475 -- stat: 2.472048326974577e-05 - sys: 0.001284468929419213 - shift_lumi: 0.0001 - norm: 0.004281563098064043 -- stat: 5.5561873861602714e-05 - sys: 0.002146418750618557 - shift_lumi: 0.0001 - norm: 0.0071547291687285245 -- stat: 5.117733199423929e-07 - sys: 9.159325063511705e-05 - shift_lumi: 0.0001 - norm: 0.0003053108354503901 -- stat: 1.0523054606547603e-06 - sys: 0.00014994246722172398 - shift_lumi: 0.0001 - norm: 0.0004998082240724132 -- stat: 2.1668178291824635e-06 - sys: 0.00024106510176301544 - shift_lumi: 0.0001 - norm: 0.0008035503392100515 -- stat: 4.584693767030418e-06 - sys: 0.0003968466695909977 - shift_lumi: 0.0001 - norm: 0.001322822231969992 -- stat: 9.601863466575638e-06 - sys: 0.0006409419829883786 - shift_lumi: 0.0001 - norm: 0.0021364732766279287 -- stat: 2.118677858343148e-05 - sys: 0.0010693627320019089 - shift_lumi: 0.0001 - norm: 0.003564542440006363 -- stat: 4.7084431049770434e-05 - sys: 0.0017854140159877922 - shift_lumi: 0.0001 - norm: 0.005951380053292641 -- stat: 0.00010770006251892446 - sys: 0.00297760670405792 - shift_lumi: 0.0001 - norm: 0.009925355680193065 -- stat: 1.0079698699799828e-06 - sys: 0.00012365075830341528 - shift_lumi: 0.0001 - norm: 0.00041216919434471756 -- stat: 2.1824024690560554e-06 - sys: 0.00021055220625840372 - shift_lumi: 0.0001 - norm: 0.0007018406875280124 -- stat: 4.532029035326099e-06 - sys: 0.0003385066334726769 - shift_lumi: 0.0001 - norm: 0.001128355444908923 -- stat: 9.188225176912424e-06 - sys: 0.0005285693049010221 - shift_lumi: 0.0001 - norm: 0.0017618976830034068 -- stat: 2.0156608135631914e-05 - sys: 0.0008879277592691882 - shift_lumi: 0.0001 - norm: 0.0029597591975639606 -- stat: 4.3128492086649834e-05 - sys: 0.0014266006841067464 - shift_lumi: 0.0001 - norm: 0.0047553356136891545 -- stat: 9.881292687370604e-05 - sys: 0.0023926463368527766 - shift_lumi: 0.0001 - norm: 0.007975487789509256 -- stat: 0.00022449989676567368 - sys: 0.0039986094426330355 - shift_lumi: 0.0001 - norm: 0.013328698142110119 -- stat: 2.646413889950843e-06 - sys: 0.0001717029811789927 - shift_lumi: 0.0001 - norm: 0.0005723432705966424 -- stat: 5.46590402719389e-06 - sys: 0.00027550585914216816 - shift_lumi: 0.0001 - norm: 0.0009183528638072272 -- stat: 1.063031509966051e-05 - sys: 0.00041023346136950394 - shift_lumi: 0.0001 - norm: 0.0013674448712316797 -- stat: 2.4132585929235264e-05 - sys: 0.0006984737163056909 - shift_lumi: 0.0001 - norm: 0.0023282457210189694 -- stat: 4.969157991491966e-05 - sys: 0.0011225227036655739 - shift_lumi: 0.0001 - norm: 0.0037417423455519128 -- stat: 0.00011544623507368242 - sys: 0.0019179226489329415 - shift_lumi: 0.0001 - norm: 0.006393075496443139 -- stat: 0.0002596047590793393 - sys: 0.0031636996222103265 - shift_lumi: 0.0001 - norm: 0.010545665407367755 -- stat: 0.0006105729660033536 - sys: 0.005176215047834511 - shift_lumi: 0.0001 - norm: 0.017254050159448375 -- stat: 1.2710892914666807e-05 - sys: 0.00020297579524199364 - shift_lumi: 0.0001 - norm: 0.0006765859841399788 -- stat: 2.7665010883530222e-05 - sys: 0.0003450885682437166 - shift_lumi: 0.0001 - norm: 0.001150295227479055 -- stat: 5.480595623703129e-05 - sys: 0.0005219565294847824 - shift_lumi: 0.0001 - norm: 0.001739855098282608 -- stat: 0.00012027752567093754 - sys: 0.0008618865803369741 - shift_lumi: 0.0001 - norm: 0.002872955267789914 -- stat: 0.000263546581949871 - sys: 0.0013485746707579118 - shift_lumi: 0.0001 - norm: 0.0044952489025263725 -- stat: 0.0006030679205674428 - sys: 0.002339478359804432 - shift_lumi: 0.0001 - norm: 0.0077982611993481065 -- stat: 0.0014618444706712768 - sys: 0.003760926567495007 - shift_lumi: 0.0001 - norm: 0.012536421891650025 -- stat: 0.0034007847259558107 - sys: 0.006395420310224369 - shift_lumi: 0.0001 - norm: 0.021318067700747897 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..e9128fe37e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,386 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 1.1260942023965087e-07 + sys: 4.937125763591389e-05 + shift_lumi: 0.0001 + norm: 0.0001645708587863796 +- stat: 1.0786189194844167e-07 + sys: 4.939416961110626e-05 + shift_lumi: 0.0001 + norm: 0.00016464723203702086 +- stat: 1.8514601387081406e-07 + sys: 6.470899839080174e-05 + shift_lumi: 0.0001 + norm: 0.00021569666130267246 +- stat: 9.709644639099949e-08 + sys: 4.524727024478267e-05 + shift_lumi: 0.0001 + norm: 0.00015082423414927558 +- stat: 1.8042512630389627e-07 + sys: 6.618077075997498e-05 + shift_lumi: 0.0001 + norm: 0.0002206025691999166 +- stat: 2.956509640780146e-07 + sys: 8.624456878938275e-05 + shift_lumi: 0.0001 + norm: 0.00028748189596460917 +- stat: 9.381037916862621e-08 + sys: 4.371595187856254e-05 + shift_lumi: 0.0001 + norm: 0.00014571983959520845 +- stat: 1.6239110917837904e-07 + sys: 6.083060462406401e-05 + shift_lumi: 0.0001 + norm: 0.00020276868208021336 +- stat: 2.8452801106872095e-07 + sys: 8.71155803728291e-05 + shift_lumi: 0.0001 + norm: 0.0002903852679094303 +- stat: 5.101705855734464e-07 + sys: 0.00012193823195615101 + shift_lumi: 0.0001 + norm: 0.00040646077318717003 +- stat: 8.291153036980648e-08 + sys: 3.8299820595403606e-05 + shift_lumi: 0.0001 + norm: 0.00012766606865134534 +- stat: 1.5167802282789272e-07 + sys: 5.6875063013837956e-05 + shift_lumi: 0.0001 + norm: 0.00018958354337945987 +- stat: 2.725878941624689e-07 + sys: 8.486249180515369e-05 + shift_lumi: 0.0001 + norm: 0.00028287497268384565 +- stat: 4.960998619491316e-07 + sys: 0.00012334996038069218 + shift_lumi: 0.0001 + norm: 0.0004111665346023073 +- stat: 9.988823585232826e-07 + sys: 0.00019174021525061695 + shift_lumi: 0.0001 + norm: 0.0006391340508353898 +- stat: 7.725085447638852e-08 + sys: 3.5202128412413264e-05 + shift_lumi: 0.0001 + norm: 0.00011734042804137757 +- stat: 1.465579275870716e-07 + sys: 5.445908415018999e-05 + shift_lumi: 0.0001 + norm: 0.00018153028050063333 +- stat: 2.457896899248506e-07 + sys: 7.651963272663476e-05 + shift_lumi: 0.0001 + norm: 0.00025506544242211583 +- stat: 4.837763046480605e-07 + sys: 0.00012275746560067214 + shift_lumi: 0.0001 + norm: 0.0004091915520022405 +- stat: 9.381476123147394e-07 + sys: 0.00018685916762357612 + shift_lumi: 0.0001 + norm: 0.000622863892078587 +- stat: 1.9222620103428563e-06 + sys: 0.0002906716495685045 + shift_lumi: 0.0001 + norm: 0.0009689054985616816 +- stat: 6.463787554629854e-08 + sys: 2.8955944867083114e-05 + shift_lumi: 0.0001 + norm: 9.651981622361039e-05 +- stat: 1.2622007342354564e-07 + sys: 4.6298106675458624e-05 + shift_lumi: 0.0001 + norm: 0.00015432702225152872 +- stat: 2.2446560844274065e-07 + sys: 6.929864460015339e-05 + shift_lumi: 0.0001 + norm: 0.00023099548200051134 +- stat: 4.363908987096076e-07 + sys: 0.00011073349443140368 + shift_lumi: 0.0001 + norm: 0.00036911164810467896 +- stat: 8.596373961032618e-07 + sys: 0.00017402850397526463 + shift_lumi: 0.0001 + norm: 0.0005800950132508821 +- stat: 1.8202173075460838e-06 + sys: 0.00028453196954873966 + shift_lumi: 0.0001 + norm: 0.0009484398984957988 +- stat: 3.878423583726768e-06 + sys: 0.00045469934954213686 + shift_lumi: 0.0001 + norm: 0.0015156644984737895 +- stat: 5.447789554444066e-08 + sys: 2.396979985261903e-05 + shift_lumi: 0.0001 + norm: 7.989933284206344e-05 +- stat: 1.1113119100446678e-07 + sys: 4.03637933030924e-05 + shift_lumi: 0.0001 + norm: 0.00013454597767697466 +- stat: 2.043014456412783e-07 + sys: 6.255215063429839e-05 + shift_lumi: 0.0001 + norm: 0.00020850716878099466 +- stat: 3.9344294366421946e-07 + sys: 9.848639070794238e-05 + shift_lumi: 0.0001 + norm: 0.00032828796902647465 +- stat: 7.853671984293254e-07 + sys: 0.00015812884987095134 + shift_lumi: 0.0001 + norm: 0.0005270961662365045 +- stat: 1.594263354948268e-06 + sys: 0.00025240641174177197 + shift_lumi: 0.0001 + norm: 0.0008413547058059066 +- stat: 3.449237092268135e-06 + sys: 0.00041896658317408286 + shift_lumi: 0.0001 + norm: 0.001396555277246943 +- stat: 7.567754002409861e-06 + sys: 0.0006854880291378923 + shift_lumi: 0.0001 + norm: 0.002284960097126308 +- stat: 9.369366428436948e-08 + sys: 3.369994375585878e-05 + shift_lumi: 0.0001 + norm: 0.00011233314585286258 +- stat: 1.8162955169413535e-07 + sys: 5.4706329397549006e-05 + shift_lumi: 0.0001 + norm: 0.00018235443132516335 +- stat: 3.5277720599835706e-07 + sys: 8.65525256915135e-05 + shift_lumi: 0.0001 + norm: 0.0002885084189717117 +- stat: 6.946144044531284e-07 + sys: 0.00013761264907610502 + shift_lumi: 0.0001 + norm: 0.00045870883025368346 +- stat: 1.4323063974955844e-06 + sys: 0.00022580016036255715 + shift_lumi: 0.0001 + norm: 0.000752667201208524 +- stat: 3.071119522147699e-06 + sys: 0.00037550028135475494 + shift_lumi: 0.0001 + norm: 0.0012516676045158496 +- stat: 6.655574182333554e-06 + sys: 0.0006164270861865374 + shift_lumi: 0.0001 + norm: 0.0020547569539551246 +- stat: 1.4966609631569312e-05 + sys: 0.0010249020049672313 + shift_lumi: 0.0001 + norm: 0.0034163400165574376 +- stat: 1.5123346772577072e-07 + sys: 4.4466560905997475e-05 + shift_lumi: 0.0001 + norm: 0.00014822186968665825 +- stat: 2.958939405502417e-07 + sys: 7.118221980856237e-05 + shift_lumi: 0.0001 + norm: 0.00023727406602854121 +- stat: 6.310336582657446e-07 + sys: 0.00012239828529030813 + shift_lumi: 0.0001 + norm: 0.000407994284301027 +- stat: 1.2998519505377302e-06 + sys: 0.0002006498433725728 + shift_lumi: 0.0001 + norm: 0.0006688328112419094 +- stat: 2.6982054989403015e-06 + sys: 0.0003277414420500673 + shift_lumi: 0.0001 + norm: 0.0010924714735002243 +- stat: 5.817037250632501e-06 + sys: 0.0005428345914053001 + shift_lumi: 0.0001 + norm: 0.0018094486380176673 +- stat: 1.2810914751646261e-05 + sys: 0.0008988814027886449 + shift_lumi: 0.0001 + norm: 0.0029962713426288164 +- stat: 2.911463800194609e-05 + sys: 0.0014980802371436612 + shift_lumi: 0.0001 + norm: 0.00499360079047887 +- stat: 2.751346428403455e-07 + sys: 6.451257343882048e-05 + shift_lumi: 0.0001 + norm: 0.00021504191146273495 +- stat: 5.540981706639839e-07 + sys: 0.00010473379046612385 + shift_lumi: 0.0001 + norm: 0.0003491126348870795 +- stat: 1.1022958887138172e-06 + sys: 0.0001653321871201606 + shift_lumi: 0.0001 + norm: 0.0005511072904005354 +- stat: 2.3482091331851667e-06 + sys: 0.0002779384376265843 + shift_lumi: 0.0001 + norm: 0.000926461458755281 +- stat: 5.043395796096796e-06 + sys: 0.0004624852256873489 + shift_lumi: 0.0001 + norm: 0.0015416174189578297 +- stat: 1.0761783872238982e-05 + sys: 0.0007536761467835444 + shift_lumi: 0.0001 + norm: 0.0025122538226118145 +- stat: 2.4685013544341042e-05 + sys: 0.0012826259330780709 + shift_lumi: 0.0001 + norm: 0.004275419776926903 +- stat: 5.555048378651741e-05 + sys: 0.0021459787389876512 + shift_lumi: 0.0001 + norm: 0.007153262463292171 +- stat: 5.017259279316219e-07 + sys: 8.979504572913366e-05 + shift_lumi: 0.0001 + norm: 0.0002993168190971122 +- stat: 1.0315519236820423e-06 + sys: 0.0001469853063462778 + shift_lumi: 0.0001 + norm: 0.0004899510211542593 +- stat: 2.1233115050028128e-06 + sys: 0.0002362248903135558 + shift_lumi: 0.0001 + norm: 0.0007874163010451859 +- stat: 4.497304929486641e-06 + sys: 0.0003892823761177741 + shift_lumi: 0.0001 + norm: 0.0012976079203925804 +- stat: 9.414087159650135e-06 + sys: 0.0006284075703779493 + shift_lumi: 0.0001 + norm: 0.0020946919012598307 +- stat: 2.0775609459025117e-05 + sys: 0.001048609745111591 + shift_lumi: 0.0001 + norm: 0.0034953658170386367 +- stat: 4.616776070115094e-05 + sys: 0.0017506544138862893 + shift_lumi: 0.0001 + norm: 0.005835514712954297 +- stat: 0.00010559069308167294 + sys: 0.002919288515277004 + shift_lumi: 0.0001 + norm: 0.009730961717590015 +- stat: 9.900501408229014e-07 + sys: 0.0001214524901161837 + shift_lumi: 0.0001 + norm: 0.00040484163372061236 +- stat: 2.1423086653105017e-06 + sys: 0.00020668406600672548 + shift_lumi: 0.0001 + norm: 0.0006889468866890849 +- stat: 4.445268595854464e-06 + sys: 0.0003320263165869666 + shift_lumi: 0.0001 + norm: 0.0011067543886232223 +- stat: 8.98697323946936e-06 + sys: 0.0005169919224755719 + shift_lumi: 0.0001 + norm: 0.0017233064082519064 +- stat: 1.9696899217417344e-05 + sys: 0.0008676769161253584 + shift_lumi: 0.0001 + norm: 0.0028922563870845274 +- stat: 4.207306515310204e-05 + sys: 0.0013916893595373894 + shift_lumi: 0.0001 + norm: 0.004638964531791298 +- stat: 9.632435658827477e-05 + sys: 0.002332388344646473 + shift_lumi: 0.0001 + norm: 0.007774627815488245 +- stat: 0.0002187057549468281 + sys: 0.003895408904358519 + shift_lumi: 0.0001 + norm: 0.01298469634786173 +- stat: 2.5762822094288443e-06 + sys: 0.00016715274107239185 + shift_lumi: 0.0001 + norm: 0.0005571758035746395 +- stat: 5.312317346684814e-06 + sys: 0.0002677644077453038 + shift_lumi: 0.0001 + norm: 0.0008925480258176793 +- stat: 1.0275089162903595e-05 + sys: 0.00039652497161752395 + shift_lumi: 0.0001 + norm: 0.0013217499053917465 +- stat: 2.3314796650621082e-05 + sys: 0.0006748042961174209 + shift_lumi: 0.0001 + norm: 0.0022493476537247367 +- stat: 4.7884632506221394e-05 + sys: 0.0010817041284851038 + shift_lumi: 0.0001 + norm: 0.00360568042828368 +- stat: 0.00011128086759226662 + sys: 0.0018487228813646244 + shift_lumi: 0.0001 + norm: 0.0061624096045487485 +- stat: 0.0002499547749809028 + sys: 0.003046099116137828 + shift_lumi: 0.0001 + norm: 0.010153663720459427 +- stat: 0.0005871587462745544 + sys: 0.004977717827613909 + shift_lumi: 0.0001 + norm: 0.01659239275871303 +- stat: 1.2692532717496382e-05 + sys: 0.00020268260768652565 + shift_lumi: 0.0001 + norm: 0.0006756086922884188 +- stat: 2.749380485495732e-05 + sys: 0.0003429529738091563 + shift_lumi: 0.0001 + norm: 0.0011431765793638543 +- stat: 5.4206038322334295e-05 + sys: 0.0005162430798119636 + shift_lumi: 0.0001 + norm: 0.0017208102660398784 +- stat: 0.00011854079314519533 + sys: 0.0008494414751585789 + shift_lumi: 0.0001 + norm: 0.0028314715838619296 +- stat: 0.00025868195806183383 + sys: 0.001323682264604761 + shift_lumi: 0.0001 + norm: 0.004412274215349204 +- stat: 0.0005909422662741353 + sys: 0.002292439369915913 + shift_lumi: 0.0001 + norm: 0.007641464566386376 +- stat: 0.001427819074573136 + sys: 0.0036733885162710776 + shift_lumi: 0.0001 + norm: 0.012244628387570261 +- stat: 0.0033171643387447055 + sys: 0.006238166156899971 + shift_lumi: 0.0001 + norm: 0.02079388718966657 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..c1dfeb8a7b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_45GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,386 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 2.1737914607700742e-07 + sys: 9.530536435409114e-05 + shift_lumi: 0.0001 + norm: 0.0003176845478469705 +- stat: 1.6773837847651115e-07 + sys: 7.681394945975107e-05 + shift_lumi: 0.0001 + norm: 0.0002560464981991702 +- stat: 4.3667377623285417e-07 + sys: 0.0001526185851523288 + shift_lumi: 0.0001 + norm: 0.0005087286171744294 +- stat: 1.2571704955636002e-07 + sys: 5.8584567479913944e-05 + shift_lumi: 0.0001 + norm: 0.00019528189159971317 +- stat: 3.1327691907465516e-07 + sys: 0.00011491142276242518 + shift_lumi: 0.0001 + norm: 0.00038303807587475064 +- stat: 7.482471147745681e-07 + sys: 0.00021827173796938482 + shift_lumi: 0.0001 + norm: 0.0007275724598979494 +- stat: 9.665560306286249e-08 + sys: 4.504183577271662e-05 + shift_lumi: 0.0001 + norm: 0.00015013945257572205 +- stat: 2.3408835536570162e-07 + sys: 8.768790523320278e-05 + shift_lumi: 0.0001 + norm: 0.0002922930174440093 +- stat: 5.27088697950265e-07 + sys: 0.00016138178331695375 + shift_lumi: 0.0001 + norm: 0.0005379392777231793 +- stat: 1.1040807736570324e-06 + sys: 0.0002638914537285411 + shift_lumi: 0.0001 + norm: 0.0008796381790951369 +- stat: 7.681242976747699e-08 + sys: 3.548242646673842e-05 + shift_lumi: 0.0001 + norm: 0.00011827475488912807 +- stat: 1.814917528183013e-07 + sys: 6.80543870864235e-05 + shift_lumi: 0.0001 + norm: 0.00022684795695474498 +- stat: 3.9617435164898435e-07 + sys: 0.00012333762206690472 + shift_lumi: 0.0001 + norm: 0.0004111254068896824 +- stat: 8.060045401401871e-07 + sys: 0.00020040446635549426 + shift_lumi: 0.0001 + norm: 0.0006680148878516476 +- stat: 1.665067909353055e-06 + sys: 0.00031961769734149126 + shift_lumi: 0.0001 + norm: 0.0010653923244716376 +- stat: 6.633249062677919e-08 + sys: 3.0226783493673584e-05 + shift_lumi: 0.0001 + norm: 0.00010075594497891194 +- stat: 1.4913314196772336e-07 + sys: 5.541600145224023e-05 + shift_lumi: 0.0001 + norm: 0.00018472000484080073 +- stat: 3.0855509564650536e-07 + sys: 9.60598575229949e-05 + shift_lumi: 0.0001 + norm: 0.00032019952507664966 +- stat: 6.408729412100836e-07 + sys: 0.0001626204865329876 + shift_lumi: 0.0001 + norm: 0.000542068288443292 +- stat: 1.2815110567034852e-06 + sys: 0.00025524990546550095 + shift_lumi: 0.0001 + norm: 0.0008508330182183366 +- stat: 2.597191668962489e-06 + sys: 0.0003927300142233234 + shift_lumi: 0.0001 + norm: 0.0013091000474110778 +- stat: 5.878254383063614e-08 + sys: 2.6332921432227778e-05 + shift_lumi: 0.0001 + norm: 8.777640477409257e-05 +- stat: 1.2792261047642558e-07 + sys: 4.692260514036327e-05 + shift_lumi: 0.0001 + norm: 0.0001564086838012109 +- stat: 2.594006588172619e-07 + sys: 8.008404578828225e-05 + shift_lumi: 0.0001 + norm: 0.00026694681929427424 +- stat: 5.075468802420261e-07 + sys: 0.00012878921123961413 + shift_lumi: 0.0001 + norm: 0.0004292973707987138 +- stat: 1.0367464884552582e-06 + sys: 0.00020988319168679424 + shift_lumi: 0.0001 + norm: 0.0006996106389559808 +- stat: 2.0979921300090807e-06 + sys: 0.00032795305833785773 + shift_lumi: 0.0001 + norm: 0.0010931768611261924 +- stat: 4.517437466674125e-06 + sys: 0.0005296161786743897 + shift_lumi: 0.0001 + norm: 0.0017653872622479655 +- stat: 5.673055954171858e-08 + sys: 2.4960952403765297e-05 + shift_lumi: 0.0001 + norm: 8.320317467921766e-05 +- stat: 1.1218644510107408e-07 + sys: 4.074707056173337e-05 + shift_lumi: 0.0001 + norm: 0.00013582356853911127 +- stat: 2.2361312120344746e-07 + sys: 6.846491759967046e-05 + shift_lumi: 0.0001 + norm: 0.00022821639199890152 +- stat: 4.321907030515212e-07 + sys: 0.00010818570551718697 + shift_lumi: 0.0001 + norm: 0.0003606190183906232 +- stat: 8.789418127771424e-07 + sys: 0.00017696952232777244 + shift_lumi: 0.0001 + norm: 0.0005898984077592415 +- stat: 1.7428712519956301e-06 + sys: 0.00027593425984402757 + shift_lumi: 0.0001 + norm: 0.0009197808661467585 +- stat: 3.6637037986848555e-06 + sys: 0.0004450170925442365 + shift_lumi: 0.0001 + norm: 0.0014833903084807882 +- stat: 7.965840863187938e-06 + sys: 0.0007215467828359587 + shift_lumi: 0.0001 + norm: 0.0024051559427865294 +- stat: 1.0114324246112264e-07 + sys: 3.6379424460119544e-05 + shift_lumi: 0.0001 + norm: 0.00012126474820039847 +- stat: 1.9332759083974732e-07 + sys: 5.822974712795756e-05 + shift_lumi: 0.0001 + norm: 0.00019409915709319188 +- stat: 3.7024675290206335e-07 + sys: 9.083861158791684e-05 + shift_lumi: 0.0001 + norm: 0.0003027953719597228 +- stat: 7.490239214044705e-07 + sys: 0.0001483919213091943 + shift_lumi: 0.0001 + norm: 0.0004946397376973143 +- stat: 1.5085398220691967e-06 + sys: 0.00023781820309685392 + shift_lumi: 0.0001 + norm: 0.0007927273436561798 +- stat: 3.158269093802762e-06 + sys: 0.0003861559033324816 + shift_lumi: 0.0001 + norm: 0.001287186344441605 +- stat: 6.7459478591677135e-06 + sys: 0.0006247973305490324 + shift_lumi: 0.0001 + norm: 0.002082657768496775 +- stat: 1.5173923468914812e-05 + sys: 0.0010390986983255372 + shift_lumi: 0.0001 + norm: 0.0034636623277517903 +- stat: 1.6189685787578696e-07 + sys: 4.7601874105519595e-05 + shift_lumi: 0.0001 + norm: 0.0001586729136850653 +- stat: 3.288800644578516e-07 + sys: 7.91175817773056e-05 + shift_lumi: 0.0001 + norm: 0.00026372527259101863 +- stat: 6.213164100101483e-07 + sys: 0.00012051348166906554 + shift_lumi: 0.0001 + norm: 0.00040171160556355185 +- stat: 1.3023627902147706e-06 + sys: 0.00020103742565663472 + shift_lumi: 0.0001 + norm: 0.0006701247521887824 +- stat: 2.748631013366481e-06 + sys: 0.00033386645025297964 + shift_lumi: 0.0001 + norm: 0.001112888167509932 +- stat: 5.791012116200328e-06 + sys: 0.0005404059765267861 + shift_lumi: 0.0001 + norm: 0.0018013532550892868 +- stat: 1.2889141197279127e-05 + sys: 0.0009043701831410863 + shift_lumi: 0.0001 + norm: 0.003014567277136955 +- stat: 2.9045322059782726e-05 + sys: 0.0014945136173880938 + shift_lumi: 0.0001 + norm: 0.004981712057960313 +- stat: 2.784234669651472e-07 + sys: 6.528372499461257e-05 + shift_lumi: 0.0001 + norm: 0.00021761241664870857 +- stat: 5.506165969432211e-07 + sys: 0.00010407571499887264 + shift_lumi: 0.0001 + norm: 0.0003469190499962421 +- stat: 1.1372180210665822e-06 + sys: 0.0001705701205823994 + shift_lumi: 0.0001 + norm: 0.000568567068607998 +- stat: 2.40104649700874e-06 + sys: 0.0002841923671177415 + shift_lumi: 0.0001 + norm: 0.0009473078903924715 +- stat: 5.018522384073979e-06 + sys: 0.0004602043050461631 + shift_lumi: 0.0001 + norm: 0.001534014350153877 +- stat: 1.1072156502513353e-05 + sys: 0.0007754123617855649 + shift_lumi: 0.0001 + norm: 0.00258470787261855 +- stat: 2.502645666555624e-05 + sys: 0.0013003672157050814 + shift_lumi: 0.0001 + norm: 0.004334557385683605 +- stat: 5.564368093555046e-05 + sys: 0.002149579051473278 + shift_lumi: 0.0001 + norm: 0.0071652635049109245 +- stat: 5.140094580720172e-07 + sys: 9.199345743015763e-05 + shift_lumi: 0.0001 + norm: 0.00030664485810052544 +- stat: 1.0865390652449272e-06 + sys: 0.00015482039604188677 + shift_lumi: 0.0001 + norm: 0.0005160679868062893 +- stat: 2.158910464831287e-06 + sys: 0.00024018538332691932 + shift_lumi: 0.0001 + norm: 0.0008006179444230644 +- stat: 4.509174786664476e-06 + sys: 0.000390309819504161 + shift_lumi: 0.0001 + norm: 0.0013010327316805364 +- stat: 9.724260119200392e-06 + sys: 0.0006491121838579842 + shift_lumi: 0.0001 + norm: 0.002163707279526614 +- stat: 2.124510713178179e-05 + sys: 0.0010723067555858609 + shift_lumi: 0.0001 + norm: 0.00357435585195287 +- stat: 4.724053743022527e-05 + sys: 0.0017913334783968115 + shift_lumi: 0.0001 + norm: 0.005971111594656039 +- stat: 0.00010723825431706795 + sys: 0.0029648389937551025 + shift_lumi: 0.0001 + norm: 0.009882796645850343 +- stat: 1.0529476771372832e-06 + sys: 0.0001291683239841587 + shift_lumi: 0.0001 + norm: 0.00043056107994719566 +- stat: 2.160239571347527e-06 + sys: 0.00020841399065620625 + shift_lumi: 0.0001 + norm: 0.0006947133021873541 +- stat: 4.38121264987611e-06 + sys: 0.0003272418453362258 + shift_lumi: 0.0001 + norm: 0.0010908061511207528 +- stat: 9.282783836374095e-06 + sys: 0.0005340089631529352 + shift_lumi: 0.0001 + norm: 0.0017800298771764506 +- stat: 1.970712574706588e-05 + sys: 0.0008681274095563374 + shift_lumi: 0.0001 + norm: 0.002893758031854458 +- stat: 4.3442241006963506e-05 + sys: 0.001436978844870122 + shift_lumi: 0.0001 + norm: 0.004789929482900407 +- stat: 9.897464519504113e-05 + sys: 0.002396562168124923 + shift_lumi: 0.0001 + norm: 0.00798854056041641 +- stat: 0.00022317068857939735 + sys: 0.0039749346682503225 + shift_lumi: 0.0001 + norm: 0.013249782227501075 +- stat: 2.586409417678716e-06 + sys: 0.00016780980830368418 + shift_lumi: 0.0001 + norm: 0.0005593660276789473 +- stat: 5.512966849124974e-06 + sys: 0.0002778780345637031 + shift_lumi: 0.0001 + norm: 0.0009262601152123436 +- stat: 1.0820870983053975e-05 + sys: 0.000417587185026418 + shift_lumi: 0.0001 + norm: 0.0013919572834213934 +- stat: 2.4190037934260612e-05 + sys: 0.000700136559880637 + shift_lumi: 0.0001 + norm: 0.0023337885329354573 +- stat: 5.173702955063889e-05 + sys: 0.0011687289957422306 + shift_lumi: 0.0001 + norm: 0.003895763319140769 +- stat: 0.00011351086663188748 + sys: 0.001885770132515412 + shift_lumi: 0.0001 + norm: 0.00628590044171804 +- stat: 0.00025465827105422914 + sys: 0.003103418746190152 + shift_lumi: 0.0001 + norm: 0.010344729153967175 +- stat: 0.000600950449342899 + sys: 0.005094638859059051 + shift_lumi: 0.0001 + norm: 0.016982129530196836 +- stat: 1.2580612567841756e-05 + sys: 0.0002008953940318863 + shift_lumi: 0.0001 + norm: 0.0006696513134396211 +- stat: 2.2134945815542475e-05 + sys: 0.000276107491581911 + shift_lumi: 0.0001 + norm: 0.0009203583052730366 +- stat: 6.597143049584121e-05 + sys: 0.0006282933693890977 + shift_lumi: 0.0001 + norm: 0.002094311231296992 +- stat: 0.00012336763119135812 + sys: 0.0008840297069520177 + shift_lumi: 0.0001 + norm: 0.0029467656898400593 +- stat: 0.00026837363360763183 + sys: 0.001373274818837747 + shift_lumi: 0.0001 + norm: 0.0045775827294591565 +- stat: 0.0005666991599310947 + sys: 0.0021983932090612356 + shift_lumi: 0.0001 + norm: 0.007327977363537452 +- stat: 0.0014799647097815023 + sys: 0.0038075449937682994 + shift_lumi: 0.0001 + norm: 0.01269181664589433 +- stat: 0.003384901921003061 + sys: 0.006365551552992288 + shift_lumi: 0.0001 + norm: 0.021218505176640957 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data.yaml deleted file mode 100644 index 88978e7778..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data.yaml +++ /dev/null @@ -1,92 +0,0 @@ -data_central: -- 0.0050924929643912644 -- 0.0040098330922943215 -- 0.00793067222782162 -- 0.0029934797368306723 -- 0.005927420394400698 -- 0.010738620208166271 -- 0.0023217133920093525 -- 0.004231825662972791 -- 0.007640586075234136 -- 0.012432429810721094 -- 0.0016616086727887062 -- 0.0031181071486205904 -- 0.005581688046097754 -- 0.008930431265129523 -- 0.014340649202378876 -- 0.001319251268070941 -- 0.0025402790266655325 -- 0.004040956327103089 -- 0.006938148559584291 -- 0.010629220878520146 -- 0.016302700553267865 -- 0.0009807102534289522 -- 0.001933453787760163 -- 0.0032210161110523034 -- 0.005329585386045322 -- 0.008317672090524272 -- 0.013182254282681325 -- 0.020246209268747466 -- 0.0015333472621698939 -- 0.0028105003499530852 -- 0.004415580668436827 -- 0.006858381743538397 -- 0.010706414874867197 -- 0.016599733329791193 -- 0.026888834108561563 -- 0.0022895984491328675 -- 0.003705161980254377 -- 0.005862109319394846 -- 0.009051786459600383 -- 0.014137368969262964 -- 0.022789878670216264 -- 0.0374193125645718 -- 0.00308263932198742 -- 0.004774938415189225 -- 0.007544327144542761 -- 0.011891234478257105 -- 0.019935707420153062 -- 0.032583257219759645 -- 0.053393055117918684 -- 0.004255233864950322 -- 0.006574600155110878 -- 0.010361048566695454 -- 0.01720049890685464 -- 0.02810867686770197 -- 0.045504045760349714 -- 0.07712260458001062 -- 0.005729152998050519 -- 0.008920388285110794 -- 0.015179306678442372 -- 0.024575405257098493 -- 0.040031812144506414 -- 0.06668955693358139 -- 0.11106321914668706 -- 0.00808125365383763 -- 0.01253129253591181 -- 0.02092997505877906 -- 0.03413382279345473 -- 0.05585562964920291 -- 0.09200426494812665 -- 0.15635844991715583 -- 0.011338310815878059 -- 0.017094547282195973 -- 0.028869447870093927 -- 0.045132930888056234 -- 0.07512741865990763 -- 0.12468304617621734 -- 0.20599259785177707 -- 0.014663702216926417 -- 0.02097733618094315 -- 0.03646596332499243 -- 0.057509075726280834 -- 0.10009595747055573 -- 0.1633279033431 -- 0.2651206858585046 -- 0.017576870447045645 -- 0.030005569516483695 -- 0.044430093204549034 -- 0.07332181357660923 -- 0.11302429403560434 -- 0.1985418814172436 -- 0.3147568992050972 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..fd9a915c54 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nlo.yaml @@ -0,0 +1,92 @@ +data_central: +- 0.0014689173259534308 +- 0.0015812434233375226 +- 0.001855905955689205 +- 0.0014934521961815245 +- 0.0020813686492915837 +- 0.0023997174940101015 +- 0.0015262462465487972 +- 0.0019639824952590603 +- 0.002630803026576627 +- 0.003332803410242731 +- 0.0013584516110161746 +- 0.0019179208089438128 +- 0.0027698323516794215 +- 0.0037267333395975613 +- 0.005617406841469289 +- 0.0013098509184572514 +- 0.0019931542680588043 +- 0.002570292254721743 +- 0.004119107058847325 +- 0.005925972281725496 +- 0.008842297959279415 +- 0.0010866002577909451 +- 0.0017237443811163192 +- 0.002466330954290506 +- 0.003849715588797 +- 0.0058830645172991275 +- 0.009436144017716176 +- 0.014643243462852637 +- 0.0014462099409281953 +- 0.00238006554143987 +- 0.0036115592861456747 +- 0.005607437967163689 +- 0.00888888147554295 +- 0.014061635027943413 +- 0.02320872827581827 +- 0.001996069381903856 +- 0.0032357945846235893 +- 0.005201754082383108 +- 0.0081847302497945 +- 0.01305596794049813 +- 0.021396470636902226 +- 0.03587906897625755 +- 0.0028152302629393653 +- 0.004442864226807841 +- 0.007161163426897214 +- 0.01149381158146815 +- 0.019541334220764865 +- 0.032383992814450514 +- 0.05369976765352192 +- 0.004123682630594236 +- 0.006443824669602254 +- 0.010260199722735265 +- 0.01716977632571615 +- 0.028262257712976618 +- 0.04603019754870495 +- 0.07836823881559277 +- 0.005664189866093715 +- 0.008842958548280402 +- 0.015100224350613353 +- 0.024499730582321154 +- 0.039973892636629385 +- 0.06667586768284209 +- 0.11113860849315163 +- 0.007921876360163912 +- 0.012283923616148114 +- 0.020525678861626793 +- 0.03347208399669293 +- 0.0547632460113313 +- 0.09018992129716484 +- 0.15331664922416474 +- 0.011124928533269747 +- 0.016715941587637388 +- 0.02821625899506319 +- 0.04401973315724359 +- 0.07323370179442273 +- 0.12147236276323237 +- 0.20054380659533438 +- 0.014212312433682888 +- 0.020203294438098113 +- 0.03514936435609406 +- 0.05530254173823994 +- 0.09640014794247535 +- 0.15715243426957015 +- 0.25479598868125297 +- 0.017388739379652605 +- 0.02959858739247929 +- 0.043627191189235213 +- 0.07182190781681516 +- 0.110273251760467 +- 0.19364952998048454 +- 0.3061704414963201 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..5cff1bfed8 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/data_nnlo.yaml @@ -0,0 +1,92 @@ +data_central: +- 0.0036025480783629365 +- 0.0029555100393178035 +- 0.006293047105385795 +- 0.0023319803911031026 +- 0.004795362954988201 +- 0.009098172940912096 +- 0.00191054886075869 +- 0.0036661154895493773 +- 0.006734153273267335 +- 0.011173371450821163 +- 0.0014180369133629607 +- 0.0028281382623911834 +- 0.005002653710293771 +- 0.008323236929178272 +- 0.012906114623850981 +- 0.0011433120249525444 +- 0.002267049169857908 +- 0.0038792078021094474 +- 0.006194505216285753 +- 0.010168733949594883 +- 0.015603363108703272 +- 0.0008495813005333432 +- 0.0018107494515034765 +- 0.0031420289855013227 +- 0.004961674150163444 +- 0.0077574258706456485 +- 0.012544756997152236 +- 0.019287866777825773 +- 0.00164710050740007 +- 0.002721897651563766 +- 0.004267838228516033 +- 0.00654846252752663 +- 0.01020663854847964 +- 0.016529505363024895 +- 0.026074033553392616 +- 0.0022456408030981792 +- 0.003485341118047584 +- 0.005823597446079748 +- 0.008848601637405291 +- 0.01387438151843023 +- 0.022791366384893284 +- 0.0369342548491083 +- 0.0031530304553647427 +- 0.004701746437958431 +- 0.007675509972807233 +- 0.012096989353880825 +- 0.02001926416148817 +- 0.031661731897475176 +- 0.05329963029889679 +- 0.004244905813742462 +- 0.006573035440604798 +- 0.01079327641730584 +- 0.01700128703851473 +- 0.028205095973617932 +- 0.04626917097733246 +- 0.07747798059441625 +- 0.005758334484885701 +- 0.009005737869747297 +- 0.015326382671965628 +- 0.025155954293229022 +- 0.040244552758587626 +- 0.06695020406286802 +- 0.1136221282350729 +- 0.00784234981448418 +- 0.012654761299069511 +- 0.02093306411273044 +- 0.03425709936966447 +- 0.05645206571138623 +- 0.09184449342957361 +- 0.1556226707546957 +- 0.011172683300643426 +- 0.01728448115415171 +- 0.02818910136249308 +- 0.04522357262115729 +- 0.07499625141063453 +- 0.12416190537400226 +- 0.20517986520310755 +- 0.014240120345006308 +- 0.023710927080667295 +- 0.035194756694163845 +- 0.05936948760410898 +- 0.09937780108153182 +- 0.16032873928273308 +- 0.26279734377065794 +- 0.015525176093212556 +- 0.028004097508458534 +- 0.038677917564311784 +- 0.08616090110909161 +- 0.12259228010724513 +- 0.18941822755415086 +- 0.3038650907208745 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py index d07068c1a2..25008fc395 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/filter.py @@ -16,6 +16,8 @@ BEAMS = (10, 100) input_xlsx = Path("./rawdata/ATHENA_ALL_EP.xlsx") xdf = read_excel(input_xlsx, beams=BEAMS) - cv_preds = read_central_values(Path("./rawdata/ATHENA_NC_63GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) - write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/ATHENA_NC_63GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, xdf["delta_ALL"].values) + write_data(xdf, abserr=fluctuated_cv, add_fluctuate=True, suffix=pto.lower()) diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/metadata.yaml index d0dbdce368..898e8c6b40 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "ALL" + - observable_name: "ALL-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 63GeV at ATHENA" + description: "EIC projection measurements on polarized ep scattering at 63GeV at ATHENA using NLO theory" label: "$A_{LL}$" units: "" process_type: "DIS_POL" @@ -44,9 +44,44 @@ implemented_observables: y: { description: "inelasticity", label: "$y$", units: "" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - ATHENA_NC_63GEV_EP_G1 + operation: "null" + - observable_name: "ALL-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 63GeV at ATHENA using NNLO theory" + label: "$A_{LL}$" + units: "" + process_type: "DIS_POL" + ndata: 91 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "ATHENA 63GeV (ALL)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$A_{LL}^{p}(x, Q^2)$" + kinematic_coverage: [x, Q2, y] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + y: { description: "inelasticity", label: "$y$", units: "" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP.yaml deleted file mode 100644 index 8813e8831b..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP.yaml +++ /dev/null @@ -1,92 +0,0 @@ -predictions_central: -- 0.005026335748870104 -- 0.0039263751181961995 -- 0.007838484727203499 -- 0.003004418090085682 -- 0.0058056090840484555 -- 0.010578671337202063 -- 0.002244527286993584 -- 0.004277777995756869 -- 0.007599947545658693 -- 0.012443189968705538 -- 0.0016688132589836257 -- 0.0031661736666848375 -- 0.005526276522672347 -- 0.009003569407025368 -- 0.014191460415576673 -- 0.00126605548550629 -- 0.0024092352947230485 -- 0.004144864035182294 -- 0.006737596757393607 -- 0.010582107319012183 -- 0.01648367440671283 -- 0.0010224659588968798 -- 0.0019148257923668635 -- 0.0032825388611556817 -- 0.0052786774311560525 -- 0.00827982238443561 -- 0.0128948206036996 -- 0.020184260973891054 -- 0.0016008499624417419 -- 0.0027321802603613014 -- 0.004346487764612731 -- 0.006778299784676867 -- 0.010592595905977421 -- 0.01664795017040799 -- 0.02668468065760139 -- 0.0023203696152795184 -- 0.0036522802595327013 -- 0.00570837135787972 -- 0.008937097921949945 -- 0.0141586323469526 -- 0.022775400507267087 -- 0.03693065506032957 -- 0.0030739332448132145 -- 0.0048401241868135676 -- 0.007661234201887781 -- 0.012206314838242152 -- 0.01975425949074895 -- 0.032186890469432176 -- 0.0531248211095214 -- 0.00410948650455817 -- 0.006583421069599786 -- 0.01060355348563019 -- 0.017173144788676587 -- 0.02810594248107407 -- 0.04639195496329676 -- 0.07741280822439911 -- 0.005698631348722671 -- 0.009225176336017752 -- 0.01496878457145959 -- 0.024390819844776576 -- 0.04016134998621953 -- 0.0665916828657476 -- 0.11146514981395814 -- 0.008002032536848367 -- 0.012920395820468248 -- 0.020955948462167816 -- 0.03411745481009402 -- 0.05609758806640063 -- 0.09282360983500822 -- 0.1548995200851501 -- 0.010895136321474696 -- 0.01754087333366169 -- 0.028344047364478722 -- 0.04597147498735916 -- 0.07528497298986524 -- 0.12399437517788309 -- 0.20577230330915441 -- 0.014530428796045441 -- 0.02328882266912235 -- 0.03746734904960912 -- 0.06046843194607363 -- 0.09847656097147278 -- 0.16115284640899066 -- 0.2653734996602562 -- 0.01762821502229152 -- 0.028380873599070683 -- 0.04576839342833779 -- 0.07391730725762152 -- 0.12025705809416504 -- 0.1961206507637978 -- 0.32100625478110756 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NLO.yaml new file mode 100644 index 0000000000..c83667243e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NLO.yaml @@ -0,0 +1,92 @@ +predictions_central: +- 0.0014027601104322704 +- 0.0014977854492394002 +- 0.001763718455071082 +- 0.001504390549436534 +- 0.0019595573389393412 +- 0.002239768623045892 +- 0.0014490601415330288 +- 0.002009934828043138 +- 0.0025901644970011835 +- 0.003343563568227174 +- 0.001365656197211094 +- 0.0019659873270080597 +- 0.0027144208282540157 +- 0.003799871481493406 +- 0.005468218054667086 +- 0.0012566551358926005 +- 0.0018621105361163203 +- 0.0026741999628009487 +- 0.003918555256656641 +- 0.005878858722217533 +- 0.009023271812724382 +- 0.0011283559632588728 +- 0.0017051163857230197 +- 0.0025278537043938844 +- 0.0037988076339077305 +- 0.005845214811210464 +- 0.009148710338734451 +- 0.014581295167996224 +- 0.0015137126412000433 +- 0.0023017454518480863 +- 0.0035424663823215787 +- 0.005527356008302159 +- 0.008775062506653174 +- 0.014109851868560211 +- 0.023004574824858095 +- 0.0020268405480505067 +- 0.0031829128639019135 +- 0.005048016120867982 +- 0.008070041712144062 +- 0.013077231318187766 +- 0.02138199247395305 +- 0.03539041147201531 +- 0.0028065241857651597 +- 0.004508049998432183 +- 0.007278070484242233 +- 0.011808891941453197 +- 0.019359886291360755 +- 0.031987626064123045 +- 0.05343153364512464 +- 0.003977935270202084 +- 0.006452645584091162 +- 0.010502704641670002 +- 0.017142422207538095 +- 0.02825952332634872 +- 0.046918106751652 +- 0.07865844245998126 +- 0.005633668216765867 +- 0.00914774659918736 +- 0.014889702243630572 +- 0.024315145169999237 +- 0.0401034304783425 +- 0.0665779936150083 +- 0.11154053916042271 +- 0.00784265524317465 +- 0.012673026900704553 +- 0.020551652265015548 +- 0.03345571601333222 +- 0.05500520442852902 +- 0.09100926618404641 +- 0.151857719392159 +- 0.010681754038866384 +- 0.017162267639103106 +- 0.027690858489447984 +- 0.044858277256546515 +- 0.07339125612438034 +- 0.12078369176489812 +- 0.20032351205271173 +- 0.014079039012801912 +- 0.022514780926277313 +- 0.036150750080710746 +- 0.058261897958032736 +- 0.0947807514433924 +- 0.1549773773354608 +- 0.25504880248300454 +- 0.01744008395489848 +- 0.02797389147506628 +- 0.04496549141302397 +- 0.07241740149782745 +- 0.1175060158190277 +- 0.19122829932703875 +- 0.3124197970723305 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..8d7baf4e5b --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/rawdata/ATHENA_NC_63GEV_EP_NNLO.yaml @@ -0,0 +1,92 @@ +predictions_central: +- 0.003581396806473939 +- 0.0029789982922336527 +- 0.006249512227814356 +- 0.0023944992019459214 +- 0.004794872501007012 +- 0.009196470612627372 +- 0.001867828263219474 +- 0.0036572143866719646 +- 0.006752813573942652 +- 0.011109265453187136 +- 0.0014486748636322894 +- 0.002804944416838136 +- 0.0050424110840739415 +- 0.008242540447491807 +- 0.01299458814326038 +- 0.0011493877217056043 +- 0.002214226848224163 +- 0.0038951933648644233 +- 0.006338028976993139 +- 0.009951544517001316 +- 0.015490677475636157 +- 0.0009702081205289194 +- 0.001820028613077606 +- 0.0031665448221572896 +- 0.0050856197910322636 +- 0.007971270315114536 +- 0.012412273863806693 +- 0.019436143839921472 +- 0.0015570541058334414 +- 0.00267822956943804 +- 0.004253449406343975 +- 0.006632169221709816 +- 0.010372437462382447 +- 0.016325832336132152 +- 0.026199312698116567 +- 0.0022869278955272208 +- 0.003600172937574421 +- 0.005635221604652102 +- 0.008841339332834205 +- 0.01404176595355265 +- 0.02261896156027921 +- 0.03677210198084585 +- 0.003041135173812228 +- 0.0048038342271156656 +- 0.007627983273106266 +- 0.012190106224240093 +- 0.01975444843403728 +- 0.032267886426534755 +- 0.05337963948703524 +- 0.004101863950386037 +- 0.006590678533451501 +- 0.01064173079160205 +- 0.01724770734929903 +- 0.02827742977425901 +- 0.04674393874070876 +- 0.07809675975485454 +- 0.005715692189967846 +- 0.00926329985093272 +- 0.015028657706543528 +- 0.024506446054505915 +- 0.04037542173551518 +- 0.06697770650782857 +- 0.1121517990392799 +- 0.00799580337756643 +- 0.012907308095422574 +- 0.020942283981527133 +- 0.03410495819186368 +- 0.05608968281030801 +- 0.09282697663809084 +- 0.15492591537042388 +- 0.010873299258425522 +- 0.017505142083497436 +- 0.02828486531770698 +- 0.04587255700525026 +- 0.07511749883332625 +- 0.12370893317119835 +- 0.2052821275671212 +- 0.014396053825959196 +- 0.02306965455742995 +- 0.03710978604932374 +- 0.059884726064801025 +- 0.09751718738646739 +- 0.15957149155601644 +- 0.26275548875179117 +- 0.017409096204592647 +- 0.02802297229925505 +- 0.045183951364384516 +- 0.07296320515864912 +- 0.11869027341717103 +- 0.19354446597920869 +- 0.3167589245201338 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml deleted file mode 100644 index d534c20cd6..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,382 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: MULT - type: UNCORR - shift_lumi: - description: uncertainty on the precision of the relative luminosity - treatment: ADD - type: UNCORR - norm: - description: relative (percent) normalization uncertainty (beam pol) - treatment: MULT - type: CORR -bins: -- stat: 1.4077901130724413e-07 - sys: 7.638739446586896e-05 - shift_lumi: 0.0001 - norm: 0.0002546246482195632 -- stat: 1.0785357509227954e-07 - sys: 6.014749638441482e-05 - shift_lumi: 0.0001 - norm: 0.00020049165461471607 -- stat: 2.7313151437311854e-07 - sys: 0.0001189600834173243 - shift_lumi: 0.0001 - norm: 0.00039653361139108107 -- stat: 8.019693180728625e-08 - sys: 4.490219605246008e-05 - shift_lumi: 0.0001 - norm: 0.00014967398684153364 -- stat: 1.9907841700460948e-07 - sys: 8.891130591601046e-05 - shift_lumi: 0.0001 - norm: 0.00029637101972003493 -- stat: 4.4319303495686526e-07 - sys: 0.00016107930312249407 - shift_lumi: 0.0001 - norm: 0.0005369310104083136 -- stat: 6.286077305066028e-08 - sys: 3.482570088014029e-05 - shift_lumi: 0.0001 - norm: 0.00011608566960046761 -- stat: 1.4152790431648236e-07 - sys: 6.347738494459187e-05 - shift_lumi: 0.0001 - norm: 0.00021159128314863953 -- stat: 3.071790341178461e-07 - sys: 0.00011460879112851205 - shift_lumi: 0.0001 - norm: 0.0003820293037617068 -- stat: 6.281029234144336e-07 - sys: 0.0001864864471608164 - shift_lumi: 0.0001 - norm: 0.0006216214905360547 -- stat: 4.5756854881176895e-08 - sys: 2.4924130091830595e-05 - shift_lumi: 0.0001 - norm: 8.308043363943531e-05 -- stat: 1.0505759830437421e-07 - sys: 4.677160722930886e-05 - shift_lumi: 0.0001 - norm: 0.0001559053574310295 -- stat: 2.2440392999497687e-07 - sys: 8.372532069146632e-05 - shift_lumi: 0.0001 - norm: 0.00027908440230488767 -- stat: 4.4164537501808335e-07 - sys: 0.00013395646897694285 - shift_lumi: 0.0001 - norm: 0.0004465215632564762 -- stat: 9.030848008282235e-07 - sys: 0.00021510973803568316 - shift_lumi: 0.0001 - norm: 0.0007170324601189439 -- stat: 3.7080114449154025e-08 - sys: 1.9788769021064115e-05 - shift_lumi: 0.0001 - norm: 6.596256340354704e-05 -- stat: 8.69446670983276e-08 - sys: 3.810418539998299e-05 - shift_lumi: 0.0001 - norm: 0.00012701395133327663 -- stat: 1.6389868249486226e-07 - sys: 6.061434490654632e-05 - shift_lumi: 0.0001 - norm: 0.00020204781635515444 -- stat: 3.40650582161212e-07 - sys: 0.00010407222839376438 - shift_lumi: 0.0001 - norm: 0.00034690742797921454 -- stat: 6.542353243098144e-07 - sys: 0.0001594383131778022 - shift_lumi: 0.0001 - norm: 0.0005314610439260073 -- stat: 1.2934536447679556e-06 - sys: 0.00024454050829901796 - shift_lumi: 0.0001 - norm: 0.0008151350276633933 -- stat: 2.822771291607899e-08 - sys: 1.4710653801434281e-05 - shift_lumi: 0.0001 - norm: 4.903551267144761e-05 -- stat: 6.748220394050924e-08 - sys: 2.9001806816402447e-05 - shift_lumi: 0.0001 - norm: 9.667268938800814e-05 -- stat: 1.3293438805263375e-07 - sys: 4.831524166578455e-05 - shift_lumi: 0.0001 - norm: 0.00016105080555261518 -- stat: 2.6546539396105573e-07 - sys: 7.994378079067984e-05 - shift_lumi: 0.0001 - norm: 0.0002664792693022661 -- stat: 5.119580221202876e-07 - sys: 0.00012476508135786407 - shift_lumi: 0.0001 - norm: 0.0004158836045262136 -- stat: 1.0271177961992067e-06 - sys: 0.00019773381424021988 - shift_lumi: 0.0001 - norm: 0.0006591127141340662 -- stat: 2.0601375069600838e-06 - sys: 0.000303693139031212 - shift_lumi: 0.0001 - norm: 0.0010123104634373733 -- stat: 5.455404736640154e-08 - sys: 2.3000208932548407e-05 - shift_lumi: 0.0001 - norm: 7.66673631084947e-05 -- stat: 1.1799187577198397e-07 - sys: 4.215750524929628e-05 - shift_lumi: 0.0001 - norm: 0.00014052501749765425 -- stat: 2.2465201335482773e-07 - sys: 6.62337100265524e-05 - shift_lumi: 0.0001 - norm: 0.00022077903342184138 -- stat: 4.2701797597868763e-07 - sys: 0.00010287572615307595 - shift_lumi: 0.0001 - norm: 0.00034291908717691983 -- stat: 8.380177230295913e-07 - sys: 0.00016059622312300796 - shift_lumi: 0.0001 - norm: 0.0005353207437433599 -- stat: 1.6713753823019586e-06 - sys: 0.0002489959999468679 - shift_lumi: 0.0001 - norm: 0.0008299866664895597 -- stat: 3.568348459834222e-06 - sys: 0.00040333251162842345 - shift_lumi: 0.0001 - norm: 0.0013444417054280784 -- stat: 9.775230855450747e-08 - sys: 3.4343976736993016e-05 - shift_lumi: 0.0001 - norm: 0.00011447992245664336 -- stat: 1.924626712099241e-07 - sys: 5.557742970381566e-05 - shift_lumi: 0.0001 - norm: 0.00018525809901271883 -- stat: 3.733304368080732e-07 - sys: 8.793163979092268e-05 - shift_lumi: 0.0001 - norm: 0.00029310546596974233 -- stat: 7.213877656872519e-07 - sys: 0.00013577679689400575 - shift_lumi: 0.0001 - norm: 0.0004525893229800192 -- stat: 1.4284774439386169e-06 - sys: 0.00021206053453894447 - shift_lumi: 0.0001 - norm: 0.0007068684484631483 -- stat: 2.9838451837580575e-06 - sys: 0.000341848180053244 - shift_lumi: 0.0001 - norm: 0.0011394939335108132 -- stat: 6.523465037637568e-06 - sys: 0.000561289688468577 - shift_lumi: 0.0001 - norm: 0.0018709656282285903 -- stat: 1.6451307776222489e-07 - sys: 4.62395898298113e-05 - shift_lumi: 0.0001 - norm: 0.00015413196609937103 -- stat: 3.125878202134478e-07 - sys: 7.162407622783838e-05 - shift_lumi: 0.0001 - norm: 0.0002387469207594613 -- stat: 6.146706113797428e-07 - sys: 0.00011316490716814142 - shift_lumi: 0.0001 - norm: 0.0003772163572271381 -- stat: 1.2311370074359897e-06 - sys: 0.0001783685171738566 - shift_lumi: 0.0001 - norm: 0.0005945617239128552 -- stat: 2.6385239794114235e-06 - sys: 0.00029903561130229596 - shift_lumi: 0.0001 - norm: 0.000996785371007653 -- stat: 5.64559750401114e-06 - sys: 0.0004887488582963947 - shift_lumi: 0.0001 - norm: 0.0016291628609879823 -- stat: 1.2480632506939747e-05 - sys: 0.0008008958267687802 - shift_lumi: 0.0001 - norm: 0.002669652755895934 -- stat: 2.8613546662988145e-07 - sys: 6.382850797425484e-05 - shift_lumi: 0.0001 - norm: 0.00021276169324751612 -- stat: 5.543756495275042e-07 - sys: 9.861900232666317e-05 - shift_lumi: 0.0001 - norm: 0.00032873000775554393 -- stat: 1.0985161037494836e-06 - sys: 0.00015541572850043183 - shift_lumi: 0.0001 - norm: 0.0005180524283347727 -- stat: 2.325471894016401e-06 - sys: 0.0002580074836028196 - shift_lumi: 0.0001 - norm: 0.0008600249453427321 -- stat: 4.910303650035758e-06 - sys: 0.00042163015301552954 - shift_lumi: 0.0001 - norm: 0.0014054338433850985 -- stat: 1.0523248411250499e-05 - sys: 0.0006825606864052457 - shift_lumi: 0.0001 - norm: 0.0022752022880174858 -- stat: 2.3762166491905715e-05 - sys: 0.0011568390687001593 - shift_lumi: 0.0001 - norm: 0.0038561302290005314 -- stat: 4.993935847106427e-07 - sys: 8.59372949707578e-05 - shift_lumi: 0.0001 - norm: 0.00028645764990252595 -- stat: 9.838568345348468e-07 - sys: 0.00013380582427666192 - shift_lumi: 0.0001 - norm: 0.00044601941425553973 -- stat: 2.117017542564903e-06 - sys: 0.00022768960017663557 - shift_lumi: 0.0001 - norm: 0.0007589653339221186 -- stat: 4.424229624258676e-06 - sys: 0.0003686310788564774 - shift_lumi: 0.0001 - norm: 0.0012287702628549246 -- stat: 9.314712453418234e-06 - sys: 0.0006004771821675963 - shift_lumi: 0.0001 - norm: 0.0020015906072253205 -- stat: 2.05476508963485e-05 - sys: 0.0010003433540037208 - shift_lumi: 0.0001 - norm: 0.0033344778466790695 -- stat: 4.623198849307251e-05 - sys: 0.0016659482872003058 - shift_lumi: 0.0001 - norm: 0.005553160957334353 -- stat: 9.488097367837494e-07 - sys: 0.00012121880480756445 - shift_lumi: 0.0001 - norm: 0.00040406268269188155 -- stat: 1.877000631136558e-06 - sys: 0.00018796938803867716 - shift_lumi: 0.0001 - norm: 0.0006265646267955905 -- stat: 4.0062444095390775e-06 - sys: 0.00031394962588168594 - shift_lumi: 0.0001 - norm: 0.001046498752938953 -- stat: 8.476699867837146e-06 - sys: 0.000512007341901821 - shift_lumi: 0.0001 - norm: 0.0017066911396727365 -- stat: 1.830261045375895e-05 - sys: 0.0008378344447380437 - shift_lumi: 0.0001 - norm: 0.0027927814824601454 -- stat: 3.8953041692186295e-05 - sys: 0.0013800639742219 - shift_lumi: 0.0001 - norm: 0.004600213247406332 -- stat: 9.178923596796214e-05 - sys: 0.0023453767487573375 - shift_lumi: 0.0001 - norm: 0.007817922495857792 -- stat: 1.9847230578355628e-06 - sys: 0.0001700746622381709 - shift_lumi: 0.0001 - norm: 0.0005669155407939029 -- stat: 3.819475265082504e-06 - sys: 0.0002564182092329396 - shift_lumi: 0.0001 - norm: 0.0008547273641097987 -- stat: 8.44299923547366e-06 - sys: 0.00043304171805140886 - shift_lumi: 0.0001 - norm: 0.0014434723935046964 -- stat: 1.7021030765889628e-05 - sys: 0.0006769939633208435 - shift_lumi: 0.0001 - norm: 0.0022566465444028116 -- stat: 3.768808181068049e-05 - sys: 0.0011269112798986145 - shift_lumi: 0.0001 - norm: 0.0037563709329953817 -- stat: 8.295364333108811e-05 - sys: 0.00187024569264326 - shift_lumi: 0.0001 - norm: 0.006234152308810867 -- stat: 0.00018688663719462447 - sys: 0.0030898889677766564 - shift_lumi: 0.0001 - norm: 0.010299629892588853 -- stat: 4.992775342340548e-06 - sys: 0.00021995553325389626 - shift_lumi: 0.0001 - norm: 0.0007331851108463209 -- stat: 9.105349559370387e-06 - sys: 0.00031466004271414724 - shift_lumi: 0.0001 - norm: 0.0010488668090471575 -- stat: 2.0758412026539914e-05 - sys: 0.0005469894498748865 - shift_lumi: 0.0001 - norm: 0.0018232981662496218 -- stat: 4.3376919158332094e-05 - sys: 0.0008626361358942125 - shift_lumi: 0.0001 - norm: 0.0028754537863140417 -- stat: 0.00010185187436469215 - sys: 0.001501439362058336 - shift_lumi: 0.0001 - norm: 0.005004797873527787 -- stat: 0.00021732938126630864 - sys: 0.0024499185501464997 - shift_lumi: 0.0001 - norm: 0.008166395167155 -- stat: 0.00048106110556924483 - sys: 0.003976810287877569 - shift_lumi: 0.0001 - norm: 0.013256034292925233 -- stat: 2.55145650436825e-05 - sys: 0.00026365305670568467 - shift_lumi: 0.0001 - norm: 0.0008788435223522822 -- stat: 5.786122381835189e-05 - sys: 0.00045008354274725544 - shift_lumi: 0.0001 - norm: 0.0015002784758241846 -- stat: 0.00010480384280392099 - sys: 0.0006664513980682355 - shift_lumi: 0.0001 - norm: 0.0022215046602274517 -- stat: 0.00022956322907347605 - sys: 0.0010998272036491386 - shift_lumi: 0.0001 - norm: 0.0036660906788304613 -- stat: 0.000510695438011313 - sys: 0.001695364410534065 - shift_lumi: 0.0001 - norm: 0.005651214701780217 -- stat: 0.001306803580637546 - sys: 0.0029781282212586542 - shift_lumi: 0.0001 - norm: 0.00992709407086218 -- stat: 0.002620460212475177 - sys: 0.004721353488076458 - shift_lumi: 0.0001 - norm: 0.01573784496025486 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..78e84956cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,382 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 4.060736662490883e-08 + sys: 2.203375988930146e-05 + shift_lumi: 0.0001 + norm: 7.344586629767155e-05 +- stat: 4.2531135928285376e-08 + sys: 2.371865135006284e-05 + shift_lumi: 0.0001 + norm: 7.906217116687613e-05 +- stat: 6.391720520654002e-08 + sys: 2.783858933533808e-05 + shift_lumi: 0.0001 + norm: 9.279529778446025e-05 +- stat: 4.001038739664817e-08 + sys: 2.240178294272287e-05 + shift_lumi: 0.0001 + norm: 7.467260980907622e-05 +- stat: 6.990487401491029e-08 + sys: 3.1220529739373755e-05 + shift_lumi: 0.0001 + norm: 0.0001040684324645792 +- stat: 9.903861563151695e-08 + sys: 3.599576241015153e-05 + shift_lumi: 0.0001 + norm: 0.00011998587470050507 +- stat: 4.1323368876591966e-08 + sys: 2.2893693698231957e-05 + shift_lumi: 0.0001 + norm: 7.631231232743987e-05 +- stat: 6.568283970209898e-08 + sys: 2.9459737428885903e-05 + shift_lumi: 0.0001 + norm: 9.819912476295302e-05 +- stat: 1.0576774146652756e-07 + sys: 3.94620453986494e-05 + shift_lumi: 0.0001 + norm: 0.00013154015132883136 +- stat: 1.683776700942128e-07 + sys: 4.9992051153640966e-05 + shift_lumi: 0.0001 + norm: 0.00016664017051213655 +- stat: 3.740861145365017e-08 + sys: 2.037677416524262e-05 + shift_lumi: 0.0001 + norm: 6.792258055080872e-05 +- stat: 6.46200224436665e-08 + sys: 2.8768812134157192e-05 + shift_lumi: 0.0001 + norm: 9.589604044719063e-05 +- stat: 1.1135722025501485e-07 + sys: 4.154748527519132e-05 + shift_lumi: 0.0001 + norm: 0.00013849161758397108 +- stat: 1.8430179847927958e-07 + sys: 5.5901000093963424e-05 + shift_lumi: 0.0001 + norm: 0.00018633666697987807 +- stat: 3.5374930848722434e-07 + sys: 8.426110262203935e-05 + shift_lumi: 0.0001 + norm: 0.00028087034207346446 +- stat: 3.681589939931946e-08 + sys: 1.9647763776858772e-05 + shift_lumi: 0.0001 + norm: 6.549254592286257e-05 +- stat: 6.821854311786218e-08 + sys: 2.9897314020882063e-05 + shift_lumi: 0.0001 + norm: 9.965771340294022e-05 +- stat: 1.0424945979993898e-07 + sys: 3.8554383820826146e-05 + shift_lumi: 0.0001 + norm: 0.00012851461273608714 +- stat: 2.0224072827647442e-07 + sys: 6.178660588270987e-05 + shift_lumi: 0.0001 + norm: 0.00020595535294236627 +- stat: 3.6474737348062564e-07 + sys: 8.888958422588244e-05 + shift_lumi: 0.0001 + norm: 0.0002962986140862748 +- stat: 7.01546500604874e-07 + sys: 0.00013263446938919124 + shift_lumi: 0.0001 + norm: 0.00044211489796397083 +- stat: 3.1275537320241025e-08 + sys: 1.629900386686418e-05 + shift_lumi: 0.0001 + norm: 5.4330012889547255e-05 +- stat: 6.016283947626867e-08 + sys: 2.5856165716744788e-05 + shift_lumi: 0.0001 + norm: 8.618721905581595e-05 +- stat: 1.0178781627911974e-07 + sys: 3.699496431435759e-05 + shift_lumi: 0.0001 + norm: 0.00012331654771452531 +- stat: 1.9175342759192308e-07 + sys: 5.7745733831955e-05 + shift_lumi: 0.0001 + norm: 0.00019248577943985 +- stat: 3.621063732139341e-07 + sys: 8.824596775948692e-05 + shift_lumi: 0.0001 + norm: 0.00029415322586495636 +- stat: 7.352332340325306e-07 + sys: 0.00014154216026574263 + shift_lumi: 0.0001 + norm: 0.00047180720088580883 +- stat: 1.4900120156288925e-06 + sys: 0.00021964865194278954 + shift_lumi: 0.0001 + norm: 0.0007321621731426319 +- stat: 5.145384060457914e-08 + sys: 2.169314911392293e-05 + shift_lumi: 0.0001 + norm: 7.231049704640977e-05 +- stat: 9.992113955774484e-08 + sys: 3.5700983121598054e-05 + shift_lumi: 0.0001 + norm: 0.00011900327707199351 +- stat: 1.8374572358796393e-07 + sys: 5.417338929218512e-05 + shift_lumi: 0.0001 + norm: 0.00018057796430728375 +- stat: 3.491314570554832e-07 + sys: 8.411156950745534e-05 + shift_lumi: 0.0001 + norm: 0.00028037189835818446 +- stat: 6.957548629934644e-07 + sys: 0.00013333322213314425 + shift_lumi: 0.0001 + norm: 0.00044444407377714753 +- stat: 1.4158221794105875e-06 + sys: 0.0002109245254191512 + shift_lumi: 0.0001 + norm: 0.0007030817513971705 +- stat: 3.0799710193220205e-06 + sys: 0.000348130924137274 + shift_lumi: 0.0001 + norm: 0.0011604364137909136 +- stat: 8.522035389653939e-08 + sys: 2.994104072855784e-05 + shift_lumi: 0.0001 + norm: 9.980346909519279e-05 +- stat: 1.6808163113033634e-07 + sys: 4.853691876935384e-05 + shift_lumi: 0.0001 + norm: 0.00016178972923117948 +- stat: 3.3127548770188006e-07 + sys: 7.802631123574662e-05 + shift_lumi: 0.0001 + norm: 0.00026008770411915544 +- stat: 6.522871804371734e-07 + sys: 0.0001227709537469175 + shift_lumi: 0.0001 + norm: 0.000409236512489725 +- stat: 1.3192098015080384e-06 + sys: 0.00019583951910747197 + shift_lumi: 0.0001 + norm: 0.0006527983970249066 +- stat: 2.8014083261784892e-06 + sys: 0.0003209470595535334 + shift_lumi: 0.0001 + norm: 0.0010698235318451113 +- stat: 6.2549479402035936e-06 + sys: 0.0005381860346438633 + shift_lumi: 0.0001 + norm: 0.0017939534488128773 +- stat: 1.5024209671954698e-07 + sys: 4.2228453944090484e-05 + shift_lumi: 0.0001 + norm: 0.00014076151314696827 +- stat: 2.9084882848842617e-07 + sys: 6.664296340211762e-05 + shift_lumi: 0.0001 + norm: 0.00022214321134039205 +- stat: 5.834525223346398e-07 + sys: 0.00010741745140345821 + shift_lumi: 0.0001 + norm: 0.00035805817134486063 +- stat: 1.189990561561599e-06 + sys: 0.00017240717372202225 + shift_lumi: 0.0001 + norm: 0.0005746905790734075 +- stat: 2.586328031633265e-06 + sys: 0.000293120013311473 + shift_lumi: 0.0001 + norm: 0.0009770667110382434 +- stat: 5.611071593306017e-06 + sys: 0.0004857598922167578 + shift_lumi: 0.0001 + norm: 0.0016191996407225256 +- stat: 1.2552326595874752e-05 + sys: 0.0008054965148028289 + shift_lumi: 0.0001 + norm: 0.0026849883826760962 +- stat: 2.7728954299257856e-07 + sys: 6.185523945891354e-05 + shift_lumi: 0.0001 + norm: 0.0002061841315297118 +- stat: 5.433485538850779e-07 + sys: 9.665737004403382e-05 + shift_lumi: 0.0001 + norm: 0.0003221912334801127 +- stat: 1.0878237420235777e-06 + sys: 0.00015390299584102897 + shift_lumi: 0.0001 + norm: 0.0005130099861367632 +- stat: 2.3213182645585525e-06 + sys: 0.0002575466448857423 + shift_lumi: 0.0001 + norm: 0.0008584888162858074 +- stat: 4.937132681821108e-06 + sys: 0.00042393386569464925 + shift_lumi: 0.0001 + norm: 0.001413112885648831 +- stat: 1.0644926074815755e-05 + sys: 0.0006904529632305742 + shift_lumi: 0.0001 + norm: 0.002301509877435248 +- stat: 2.4145957576959302e-05 + sys: 0.0011755235822338915 + shift_lumi: 0.0001 + norm: 0.003918411940779638 +- stat: 4.937309376574084e-07 + sys: 8.496284799140574e-05 + shift_lumi: 0.0001 + norm: 0.00028320949330468576 +- stat: 9.75316872669737e-07 + sys: 0.00013264437822420604 + shift_lumi: 0.0001 + norm: 0.00044214792741402014 +- stat: 2.1059881405726057e-06 + sys: 0.0002265033652592003 + shift_lumi: 0.0001 + norm: 0.0007550112175306677 +- stat: 4.410606160700152e-06 + sys: 0.0003674959587348173 + shift_lumi: 0.0001 + norm: 0.0012249865291160578 +- stat: 9.30123558258934e-06 + sys: 0.0005996083895494408 + shift_lumi: 0.0001 + norm: 0.001998694631831469 +- stat: 2.054343311536213e-05 + sys: 0.0010001380152426314 + shift_lumi: 0.0001 + norm: 0.0033337933841421042 +- stat: 4.626337061421963e-05 + sys: 0.0016670791273972747 + shift_lumi: 0.0001 + norm: 0.0055569304246575815 +- stat: 9.300974509754632e-07 + sys: 0.00011882814540245868 + shift_lumi: 0.0001 + norm: 0.0003960938180081956 +- stat: 1.8399484581712065e-06 + sys: 0.00018425885424222172 + shift_lumi: 0.0001 + norm: 0.0006141961808074057 +- stat: 3.928857342660572e-06 + sys: 0.0003078851829244019 + shift_lumi: 0.0001 + norm: 0.0010262839430813396 +- stat: 8.312365471276997e-06 + sys: 0.0005020812599503939 + shift_lumi: 0.0001 + norm: 0.0016736041998346466 +- stat: 1.794466135685338e-05 + sys: 0.0008214486901699695 + shift_lumi: 0.0001 + norm: 0.0027381623005665653 +- stat: 3.8184879434494044e-05 + sys: 0.0013528488194574726 + shift_lumi: 0.0001 + norm: 0.004509496064858242 +- stat: 9.00035661706189e-05 + sys: 0.0022997497383624712 + shift_lumi: 0.0001 + norm: 0.007665832461208237 +- stat: 1.9473713973189694e-06 + sys: 0.0001668739279990462 + shift_lumi: 0.0001 + norm: 0.0005562464266634874 +- stat: 3.7348824963057624e-06 + sys: 0.0002507391238145608 + shift_lumi: 0.0001 + norm: 0.0008357970793818695 +- stat: 8.251971225609386e-06 + sys: 0.00042324388492594785 + shift_lumi: 0.0001 + norm: 0.0014108129497531594 +- stat: 1.660120930843372e-05 + sys: 0.0006602959973586539 + shift_lumi: 0.0001 + norm: 0.0022009866578621795 +- stat: 3.67380883538875e-05 + sys: 0.0010985055269163411 + shift_lumi: 0.0001 + norm: 0.003661685089721137 +- stat: 8.081752382761229e-05 + sys: 0.0018220854414484856 + shift_lumi: 0.0001 + norm: 0.006073618138161619 +- stat: 0.00018194322522103123 + sys: 0.0030081570989300157 + shift_lumi: 0.0001 + norm: 0.01002719032976672 +- stat: 4.839083747528885e-06 + sys: 0.00021318468650524333 + shift_lumi: 0.0001 + norm: 0.0007106156216841444 +- stat: 8.76937169347953e-06 + sys: 0.0003030494165714717 + shift_lumi: 0.0001 + norm: 0.0010101647219049057 +- stat: 2.00089321999264e-05 + sys: 0.0005272404653414109 + shift_lumi: 0.0001 + norm: 0.001757468217804703 +- stat: 4.171261408629591e-05 + sys: 0.000829538126073599 + shift_lumi: 0.0001 + norm: 0.002765127086911997 +- stat: 9.809123170496631e-05 + sys: 0.0014460022191371302 + shift_lumi: 0.0001 + norm: 0.004820007397123768 +- stat: 0.00020911210274066617 + sys: 0.002357286514043552 + shift_lumi: 0.0001 + norm: 0.007857621713478508 +- stat: 0.00046232695729758885 + sys: 0.0038219398302187946 + shift_lumi: 0.0001 + norm: 0.012739799434062648 +- stat: 2.5241474201362274e-05 + sys: 0.0002608310906947891 + shift_lumi: 0.0001 + norm: 0.0008694369689826303 +- stat: 5.7076420058698186e-05 + sys: 0.00044397881088718936 + shift_lumi: 0.0001 + norm: 0.0014799293696239647 +- stat: 0.00010290991887689927 + sys: 0.0006544078678385282 + shift_lumi: 0.0001 + norm: 0.0021813595594617607 +- stat: 0.00022486717488812133 + sys: 0.0010773286172522274 + shift_lumi: 0.0001 + norm: 0.0035910953908407585 +- stat: 0.0004982649711663148 + sys: 0.001654098776407005 + shift_lumi: 0.0001 + norm: 0.00551366258802335 +- stat: 0.001274602100880949 + sys: 0.002904742949707268 + shift_lumi: 0.0001 + norm: 0.009682476499024227 +- stat: 0.0025489749778424336 + sys: 0.004592556622444802 + shift_lumi: 0.0001 + norm: 0.015308522074816007 diff --git a/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..d0dc5834a7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/ATHENA_NC_63GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,382 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: UNCORR + shift_lumi: + description: uncertainty on the precision of the relative luminosity + treatment: ADD + type: UNCORR + norm: + description: relative (percent) normalization uncertainty (beam pol) + treatment: MULT + type: CORR +bins: +- stat: 9.959034999263286e-08 + sys: 5.403822117544405e-05 + shift_lumi: 0.0001 + norm: 0.00018012740391814685 +- stat: 7.949516017864008e-08 + sys: 4.433265058976705e-05 + shift_lumi: 0.0001 + norm: 0.0001477755019658902 +- stat: 2.1673187802233967e-07 + sys: 9.439570658078694e-05 + shift_lumi: 0.0001 + norm: 0.00031465235526928974 +- stat: 6.247500863300581e-08 + sys: 3.497970586654654e-05 + shift_lumi: 0.0001 + norm: 0.00011659901955515513 +- stat: 1.6105712139861124e-07 + sys: 7.193044432482303e-05 + shift_lumi: 0.0001 + norm: 0.00023976814774941008 +- stat: 3.7549022128363427e-07 + sys: 0.00013647259411368146 + shift_lumi: 0.0001 + norm: 0.0004549086470456049 +- stat: 5.1728425546276805e-08 + sys: 2.865823291138035e-05 + shift_lumi: 0.0001 + norm: 9.552744303793451e-05 +- stat: 1.2260846347191649e-07 + sys: 5.499173234324066e-05 + shift_lumi: 0.0001 + norm: 0.00018330577447746885 +- stat: 2.707371761426564e-07 + sys: 0.00010101229909901002 + shift_lumi: 0.0001 + norm: 0.0003367076636633667 +- stat: 5.644936170565913e-07 + sys: 0.00016760057176231746 + shift_lumi: 0.0001 + norm: 0.0005586685725410581 +- stat: 3.904945269213332e-08 + sys: 2.127055370044441e-05 + shift_lumi: 0.0001 + norm: 7.090184566814803e-05 +- stat: 9.528774970127778e-08 + sys: 4.242207393586776e-05 + shift_lumi: 0.0001 + norm: 0.00014140691311955917 +- stat: 2.01124667613539e-07 + sys: 7.503980565440656e-05 + shift_lumi: 0.0001 + norm: 0.00025013268551468855 +- stat: 4.1161719807469844e-07 + sys: 0.00012484855393767407 + shift_lumi: 0.0001 + norm: 0.0004161618464589136 +- stat: 8.127467445904235e-07 + sys: 0.00019359171935776472 + shift_lumi: 0.0001 + norm: 0.0006453057311925491 +- stat: 3.2135000937558094e-08 + sys: 1.7149680374288167e-05 + shift_lumi: 0.0001 + norm: 5.716560124762722e-05 +- stat: 7.759298616403059e-08 + sys: 3.400573754786862e-05 + shift_lumi: 0.0001 + norm: 0.00011335245849289539 +- stat: 1.573382626348065e-07 + sys: 5.8188117031641715e-05 + shift_lumi: 0.0001 + norm: 0.0001939603901054724 +- stat: 3.041390350763604e-07 + sys: 9.29175782442863e-05 + shift_lumi: 0.0001 + norm: 0.00030972526081428765 +- stat: 6.258920601393747e-07 + sys: 0.00015253100924392325 + shift_lumi: 0.0001 + norm: 0.0005084366974797441 +- stat: 1.2379683241832345e-06 + sys: 0.0002340504466305491 + shift_lumi: 0.0001 + norm: 0.0007801681554351636 +- stat: 2.445343766568624e-08 + sys: 1.2743719508000148e-05 + shift_lumi: 0.0001 + norm: 4.2479065026667154e-05 +- stat: 6.31995264355811e-08 + sys: 2.7161241772552146e-05 + shift_lumi: 0.0001 + norm: 9.053747257517384e-05 +- stat: 1.2967451451051542e-07 + sys: 4.713043478251984e-05 + shift_lumi: 0.0001 + norm: 0.00015710144927506616 +- stat: 2.471398218758783e-07 + sys: 7.442511225245167e-05 + shift_lumi: 0.0001 + norm: 0.00024808370750817224 +- stat: 4.774745099659452e-07 + sys: 0.00011636138805968473 + shift_lumi: 0.0001 + norm: 0.00038787129353228244 +- stat: 9.774461093272684e-07 + sys: 0.00018817135495728353 + shift_lumi: 0.0001 + norm: 0.0006272378498576119 +- stat: 1.9626221012930616e-06 + sys: 0.0002893180016673866 + shift_lumi: 0.0001 + norm: 0.0009643933388912888 +- stat: 5.860120620737212e-08 + sys: 2.4706507611001047e-05 + shift_lumi: 0.0001 + norm: 8.23550253700035e-05 +- stat: 1.1427211157355945e-07 + sys: 4.082846477345649e-05 + shift_lumi: 0.0001 + norm: 0.0001360948825781883 +- stat: 2.1713530398443567e-07 + sys: 6.401757342774049e-05 + shift_lumi: 0.0001 + norm: 0.00021339191142580164 +- stat: 4.0772172195157243e-07 + sys: 9.822693791289944e-05 + shift_lumi: 0.0001 + norm: 0.0003274231263763315 +- stat: 7.988989868365303e-07 + sys: 0.0001530995782271946 + shift_lumi: 0.0001 + norm: 0.0005103319274239821 +- stat: 1.6643043473358935e-06 + sys: 0.0002479425804453734 + shift_lumi: 0.0001 + norm: 0.0008264752681512447 +- stat: 3.4602183603895822e-06 + sys: 0.00039111050330088926 + shift_lumi: 0.0001 + norm: 0.001303701677669631 +- stat: 9.587557712147386e-08 + sys: 3.368461204647269e-05 + shift_lumi: 0.0001 + norm: 0.00011228204015490896 +- stat: 1.810441932719951e-07 + sys: 5.228011677071376e-05 + shift_lumi: 0.0001 + norm: 0.00017426705590237922 +- stat: 3.7087779498519656e-07 + sys: 8.73539616911962e-05 + shift_lumi: 0.0001 + norm: 0.0002911798723039874 +- stat: 7.051948245966652e-07 + sys: 0.00013272902456107935 + shift_lumi: 0.0001 + norm: 0.0004424300818702646 +- stat: 1.4019044909110592e-06 + sys: 0.00020811572277645344 + shift_lumi: 0.0001 + norm: 0.0006937190759215115 +- stat: 2.984039968045331e-06 + sys: 0.00034187049577339925 + shift_lumi: 0.0001 + norm: 0.0011395683192446642 +- stat: 6.4389029003026764e-06 + sys: 0.0005540138227366245 + shift_lumi: 0.0001 + norm: 0.0018467127424554148 +- stat: 1.6826968396538224e-07 + sys: 4.729545683047114e-05 + shift_lumi: 0.0001 + norm: 0.00015765152276823715 +- stat: 3.077963614279465e-07 + sys: 7.052619656937647e-05 + shift_lumi: 0.0001 + norm: 0.0002350873218979216 +- stat: 6.25358672449599e-07 + sys: 0.00011513264959210849 + shift_lumi: 0.0001 + norm: 0.0003837754986403617 +- stat: 1.2524394586073909e-06 + sys: 0.0001814548403082124 + shift_lumi: 0.0001 + norm: 0.0006048494676940412 +- stat: 2.649582852869372e-06 + sys: 0.00030028896242232256 + shift_lumi: 0.0001 + norm: 0.0010009632080744085 +- stat: 5.485927737901408e-06 + sys: 0.00047492597846212763 + shift_lumi: 0.0001 + norm: 0.0015830865948737588 +- stat: 1.2458794445216841e-05 + sys: 0.0007994944544834519 + shift_lumi: 0.0001 + norm: 0.0026649815149448397 +- stat: 2.854409755994165e-07 + sys: 6.367358720613692e-05 + shift_lumi: 0.0001 + norm: 0.0002122452906871231 +- stat: 5.542437115236456e-07 + sys: 9.859553160907198e-05 + shift_lumi: 0.0001 + norm: 0.0003286517720302399 +- stat: 1.144342474635415e-06 + sys: 0.0001618991462595876 + shift_lumi: 0.0001 + norm: 0.000539663820865292 +- stat: 2.2985388612428955e-06 + sys: 0.00025501930557772094 + shift_lumi: 0.0001 + norm: 0.0008500643519257365 +- stat: 4.9271470998338655e-06 + sys: 0.000423076439604269 + shift_lumi: 0.0001 + norm: 0.0014102547986808967 +- stat: 1.0700190979531696e-05 + sys: 0.000694037564659987 + shift_lumi: 0.0001 + norm: 0.002313458548866623 +- stat: 2.3871661030731565e-05 + sys: 0.0011621697089162439 + shift_lumi: 0.0001 + norm: 0.0038738990297208127 +- stat: 5.019372499475054e-07 + sys: 8.637501727328552e-05 + shift_lumi: 0.0001 + norm: 0.0002879167242442851 +- stat: 9.932703005730338e-07 + sys: 0.00013508606804620946 + shift_lumi: 0.0001 + norm: 0.0004502868934873648 +- stat: 2.1375298403249245e-06 + sys: 0.00022989574007948444 + shift_lumi: 0.0001 + norm: 0.0007663191335982814 +- stat: 4.528743963579351e-06 + sys: 0.0003773393143984354 + shift_lumi: 0.0001 + norm: 0.001257797714661451 +- stat: 9.364213526219457e-06 + sys: 0.0006036682913788144 + shift_lumi: 0.0001 + norm: 0.0020122276379293813 +- stat: 2.06279586156673e-05 + sys: 0.0010042530609430203 + shift_lumi: 0.0001 + norm: 0.0033475102031434007 +- stat: 4.729717871930594e-05 + sys: 0.0017043319235260934 + shift_lumi: 0.0001 + norm: 0.005681106411753645 +- stat: 9.207603401624799e-07 + sys: 0.0001176352472172627 + shift_lumi: 0.0001 + norm: 0.00039211749072420903 +- stat: 1.8954944094685628e-06 + sys: 0.00018982141948604265 + shift_lumi: 0.0001 + norm: 0.0006327380649534755 +- stat: 4.00683569094714e-06 + sys: 0.00031399596169095665 + shift_lumi: 0.0001 + norm: 0.001046653205636522 +- stat: 8.507314034424573e-06 + sys: 0.0005138564905449671 + shift_lumi: 0.0001 + norm: 0.0017128549684832237 +- stat: 1.849804888987138e-05 + sys: 0.0008467809856707935 + shift_lumi: 0.0001 + norm: 0.0028226032855693116 +- stat: 3.888539714737167e-05 + sys: 0.0013776674014436042 + shift_lumi: 0.0001 + norm: 0.004592224671478681 +- stat: 9.135730147897773e-05 + sys: 0.0023343400613204356 + shift_lumi: 0.0001 + norm: 0.0077811335377347855 +- stat: 1.955730666126046e-06 + sys: 0.00016759024950965137 + shift_lumi: 0.0001 + norm: 0.0005586341650321713 +- stat: 3.861912640811773e-06 + sys: 0.00025926721731227563 + shift_lumi: 0.0001 + norm: 0.0008642240577075855 +- stat: 8.244028854419662e-06 + sys: 0.00042283652043739614 + shift_lumi: 0.0001 + norm: 0.001409455068124654 +- stat: 1.705521458017843e-05 + sys: 0.0006783535893173594 + shift_lumi: 0.0001 + norm: 0.0022611786310578644 +- stat: 3.7622281040340366e-05 + sys: 0.0011249437711595177 + shift_lumi: 0.0001 + norm: 0.0037498125705317264 +- stat: 8.26069199428006e-05 + sys: 0.0018624285806100337 + shift_lumi: 0.0001 + norm: 0.006208095268700114 +- stat: 0.00018614928607991392 + sys: 0.003077697978046613 + shift_lumi: 0.0001 + norm: 0.010258993260155377 +- stat: 4.848551933115559e-06 + sys: 0.00021360180517509462 + shift_lumi: 0.0001 + norm: 0.0007120060172503154 +- stat: 1.029188251472788e-05 + sys: 0.0003556639062100094 + shift_lumi: 0.0001 + norm: 0.001185546354033365 +- stat: 2.0034771990530666e-05 + sys: 0.0005279213504124577 + shift_lumi: 0.0001 + norm: 0.0017597378347081923 +- stat: 4.4780157423016525e-05 + sys: 0.0008905423140616346 + shift_lumi: 0.0001 + norm: 0.0029684743802054487 +- stat: 0.000101121119835164 + sys: 0.0014906670162229774 + shift_lumi: 0.0001 + norm: 0.004968890054076591 +- stat: 0.00021333859673890027 + sys: 0.0024049310892409964 + shift_lumi: 0.0001 + norm: 0.008016436964136654 +- stat: 0.00047684540467145975 + sys: 0.00394196015655987 + shift_lumi: 0.0001 + norm: 0.013139867188532897 +- stat: 2.2536327865548817e-05 + sys: 0.00023287764139818832 + shift_lumi: 0.0001 + norm: 0.0007762588046606278 +- stat: 5.400168634951996e-05 + sys: 0.00042006146262687805 + shift_lumi: 0.0001 + norm: 0.0014002048754229268 +- stat: 9.123533398255654e-05 + sys: 0.0005801687634646767 + shift_lumi: 0.0001 + norm: 0.0019338958782155892 +- stat: 0.0002697611217406307 + sys: 0.0012924135166363744 + shift_lumi: 0.0001 + norm: 0.00430804505545458 +- stat: 0.0005539279738075858 + sys: 0.001838884201608677 + shift_lumi: 0.0001 + norm: 0.006129614005362256 +- stat: 0.0012467516487646383 + sys: 0.002841273413312263 + shift_lumi: 0.0001 + norm: 0.009470911377707543 +- stat: 0.0025297821341014053 + sys: 0.004557976360813117 + shift_lumi: 0.0001 + norm: 0.015193254536043723 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data.yaml deleted file mode 100644 index f9a017701f..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data.yaml +++ /dev/null @@ -1,12 +0,0 @@ -data_central: -- 0.016445858019663116 -- 0.021713472659388673 -- 0.02460492341794608 -- 0.02006473607837474 -- 0.03376694497953609 -- 0.0377956470796024 -- 0.03700618918435565 -- 0.020428523014687353 -- 0.029580576189799077 -- 0.023239103323950242 -- 0.03595220464820044 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..89514b71d2 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nlo.yaml @@ -0,0 +1,12 @@ +data_central: +- -0.004256561345852556 +- -0.0015280803715086305 +- -0.0015835681531963476 +- -0.008892282445682811 +- 0.002427863705803739 +- 0.004335847710084698 +- 0.0018899801128890777 +- -0.01504851121876315 +- -0.004807464842949326 +- -0.010047130199888307 +- -0.004312545557465613 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..af4c684ac7 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/data_nnlo.yaml @@ -0,0 +1,12 @@ +data_central: +- 0.013069286548472345 +- 0.021585196720858787 +- 0.01869150671643438 +- 0.030323288472688045 +- 0.0317634626094633 +- 0.04055368376322606 +- 0.019085088082351747 +- 0.045870435497175316 +- 0.030201449709216288 +- 0.014444743681212775 +- 0.030798569962170834 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py index 9071198010..e080c62e17 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/filter.py @@ -15,9 +15,18 @@ if __name__ == "__main__": input_txt = Path("./rawdata/EIC_18_275_A1c_100fb-1.txt") df = read_txt_data(input_txt) - cv_preds = read_central_values(Path("./rawdata/EIC_NC_211GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - # Flat systematic error of 3.2% due to beam polarization - # from Yuxiang suggestion - sys_error = 0.032 - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/EIC_NC_211GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data( + df, + asym=False, + abserr=fluctuated_cv, + add_fluctuate=True, + sys_error=sys_error, + suffix=pto.lower(), + ) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/metadata.yaml index 6ea9afa0a0..325bbfb1ac 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "G1F1CHARMRATIO" + - observable_name: "G1F1CHARMRATIO-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 211GeV" + description: "EIC projection measurements on polarized ep scattering at 211GeV using NLO theory" label: "$g_1^c / F_1^c$" units: "" process_type: "DIS_POL" @@ -43,9 +43,43 @@ implemented_observables: Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - EIC_NC_211GEV_EP_G1 + operation: "null" + - observable_name: "G1F1CHARMRATIO-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 211GeV using NNLO theory" + label: "$g_1^c / F_1^c$" + units: "" + process_type: "DIS_POL" + ndata: 11 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "EIC 211GeV (g1c/F1c)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$g_{1,p}^c(x, Q^2) / F_{1,p}^c(x, Q^2)$" + kinematic_coverage: [x, Q2] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP.yaml deleted file mode 100644 index 49badcbedf..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP.yaml +++ /dev/null @@ -1,12 +0,0 @@ -predictions_central: -- 0.012960776349500392 -- 0.016041279855621593 -- 0.018712070459064565 -- 0.021095670572941504 -- 0.023084173284284328 -- 0.02482749975867583 -- 0.026161582125486332 -- 0.026265451714406727 -- 0.025022969613360594 -- 0.024286196513544783 -- 0.03743395632212888 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NLO.yaml new file mode 100644 index 0000000000..96ead8d81a --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NLO.yaml @@ -0,0 +1,12 @@ +predictions_central: +- -0.007741643016015279 +- -0.0072002731752757124 +- -0.007476421112077862 +- -0.00786134795111605 +- -0.008254907989448024 +- -0.008632299610841875 +- -0.008954626945980237 +- -0.009211582519043776 +- -0.009365071419387808 +- -0.009000037010293767 +- -0.0028307938835371673 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..809b45e480 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/rawdata/EIC_NC_211GEV_EP_NNLO.yaml @@ -0,0 +1,12 @@ +predictions_central: +- 0.015146826789915323 +- 0.019065625792313058 +- 0.021947309152020863 +- 0.02434141781316983 +- 0.026188801936380728 +- 0.027742303364464888 +- 0.028830546337246778 +- 0.028518330733599797 +- 0.02675019426168865 +- 0.025658884420001842 +- 0.03901483896172707 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..62bb90dd9d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,32 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.00260049 + sys: -0.00013620996306728178 +- stat: 0.0032644 + sys: -4.8898571888276174e-05 +- stat: 0.00393122 + sys: -5.0674180902283126e-05 +- stat: 0.00450892 + sys: -0.00028455303826184996 +- stat: 0.00525977 + sys: 7.769163858571965e-05 +- stat: 0.00597521 + sys: 0.00013874712672271033 +- stat: 0.00679294 + sys: 6.047936361245049e-05 +- stat: 0.00758583 + sys: -0.0004815523590004208 +- stat: 0.00805148 + sys: -0.00015383887497437843 +- stat: 0.00877917 + sys: -0.00032150816639642585 +- stat: 0.0101136 + sys: -0.00013800145783889961 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nnlo.yaml similarity index 55% rename from nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml rename to nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nnlo.yaml index 23c9761e03..3fe46c2dac 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_211GEV_EP/uncertainties_nnlo.yaml @@ -9,24 +9,24 @@ definitions: type: CORR bins: - stat: 0.00260049 - sys: 0.0005262674566292198 + sys: 0.00041821716955111503 - stat: 0.0032644 - sys: 0.0006948311251004375 + sys: 0.0006907262950674812 - stat: 0.00393122 - sys: 0.0007873575493742746 + sys: 0.0005981282149259002 - stat: 0.00450892 - sys: 0.0006420715545079917 + sys: 0.0009703452311260175 - stat: 0.00525977 - sys: 0.001080542239345155 + sys: 0.0010164308035028255 - stat: 0.00597521 - sys: 0.001209460706547277 + sys: 0.001297717880423234 - stat: 0.00679294 - sys: 0.0011841980538993809 + sys: 0.0006107228186352559 - stat: 0.00758583 - sys: 0.0006537127364699953 + sys: 0.00146785393590961 - stat: 0.00805148 - sys: 0.0009465784380735705 + sys: 0.0009664463906949212 - stat: 0.00877917 - sys: 0.0007436513063664077 + sys: 0.0004622317977988088 - stat: 0.0101136 - sys: 0.0011504705487424141 + sys: 0.0009855542387894667 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data.yaml deleted file mode 100644 index 5b10ec884d..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data.yaml +++ /dev/null @@ -1,11 +0,0 @@ -data_central: -- 0.042418105535867626 -- 0.059897116735966593 -- 0.07542505283725452 -- 0.08311241514955363 -- 0.13363863607400564 -- 0.17520168850150403 -- 0.21643029584685092 -- 0.25142119909910743 -- 0.3690026175583383 -- 0.5038176573748027 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..ee2a8434a5 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nlo.yaml @@ -0,0 +1,11 @@ +data_central: +- 0.004375171137766257 +- 0.009575780596550633 +- 0.009505481808061357 +- -0.0038215257520829455 +- 0.019550974813473825 +- 0.02529040383214412 +- 0.022244549335103902 +- -0.004361336647652221 +- 0.018771775575542146 +- 0.014993088674585495 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..bb37e51f1e --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/data_nnlo.yaml @@ -0,0 +1,11 @@ +data_central: +- 0.04165567211166749 +- 0.050735443533362526 +- 0.08051645258754275 +- 0.08895285902162456 +- 0.13792028254087388 +- 0.17301236909659107 +- 0.2299209931854031 +- 0.24269255440478865 +- 0.3782160418879189 +- 0.4118558419805327 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py index 9c7fbac958..748e690d49 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/filter.py @@ -15,9 +15,18 @@ if __name__ == "__main__": input_txt = Path("./rawdata/EIC_5_41_A1c_100fb-1.txt") df = read_txt_data(input_txt) - cv_preds = read_central_values(Path("./rawdata/EIC_NC_43GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - # Flat systematic error of 3.2% due to beam polarization - # from Yuxiang suggestion - sys_error = 0.032 - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/EIC_NC_43GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data( + df, + asym=False, + abserr=fluctuated_cv, + add_fluctuate=True, + sys_error=sys_error, + suffix=pto.lower(), + ) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/metadata.yaml index b3c63fa327..8f75e21b94 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "G1F1CHARMRATIO" + - observable_name: "G1F1CHARMRATIO-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 43GeV" + description: "EIC projection measurements on polarized ep scattering at 43GeV using NLO theory" label: "$g_1^c / F_1^c$" units: "" process_type: "DIS_POL" @@ -43,9 +43,43 @@ implemented_observables: Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - EIC_NC_43GEV_EP_G1 + operation: "null" + - observable_name: "G1F1CHARMRATIO-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 43GeV using NNLO theory" + label: "$g_1^c / F_1^c$" + units: "" + process_type: "DIS_POL" + ndata: 10 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "EIC 43GeV (g1c/F1c)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$g_{1,p}^c(x, Q^2) / F_{1,p}^c(x, Q^2)$" + kinematic_coverage: [x, Q2] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP.yaml deleted file mode 100644 index af64b3b031..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP.yaml +++ /dev/null @@ -1,11 +0,0 @@ -predictions_central: -- 0.03341105455942479 -- 0.04656298066174644 -- 0.06310240929456301 -- 0.08525084307212592 -- 0.11374238329882923 -- 0.15122133410753597 -- 0.1974829572250635 -- 0.26178394182458514 -- 0.3601547876744313 -- 0.5062740505940179 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NLO.yaml new file mode 100644 index 0000000000..e4aa6ca490 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NLO.yaml @@ -0,0 +1,11 @@ +predictions_central: +- -0.004631879838676583 +- -0.0037583554776695256 +- -0.0028171617346301565 +- -0.0016830978295106517 +- -0.000345277961702597 +- 0.0013100494381760586 +- 0.00329721071331649 +- 0.006001406077825496 +- 0.00992394569163517 +- 0.017449481893800693 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..efcdcc9092 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/rawdata/EIC_NC_43GEV_EP_NNLO.yaml @@ -0,0 +1,11 @@ +predictions_central: +- 0.04264035071822092 +- 0.056866164132024354 +- 0.07417149315915157 +- 0.09669866778411075 +- 0.12492401673772821 +- 0.16130167819014005 +- 0.20447409054521856 +- 0.2620139245537153 +- 0.34246203623296173 +- 0.40302773880038184 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..420092379c --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,30 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.00672086 + sys: 0.00014000547640852023 +- stat: 0.00767392 + sys: 0.00030642497908962027 +- stat: 0.00822064 + sys: 0.0003041754178579634 +- stat: 0.00935268 + sys: -0.00012228882406665426 +- stat: 0.00979612 + sys: 0.0006256311940311624 +- stat: 0.0110492 + sys: 0.0008092929226286118 +- stat: 0.0118684 + sys: 0.0007118255787233249 +- stat: 0.0134677 + sys: -0.00013956277272487107 +- stat: 0.0156306 + sys: 0.0006006968184173487 +- stat: 0.0205952 + sys: 0.00047977883758673585 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nnlo.yaml similarity index 56% rename from nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml rename to nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nnlo.yaml index af1a19a6bd..27d6fb2026 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_43GEV_EP/uncertainties_nnlo.yaml @@ -9,22 +9,22 @@ definitions: type: CORR bins: - stat: 0.00672086 - sys: 0.0013573793771477641 + sys: 0.0013329815075733599 - stat: 0.00767392 - sys: 0.001916707735550931 + sys: 0.0016235341930676008 - stat: 0.00822064 - sys: 0.002413601690792145 + sys: 0.0025765264828013683 - stat: 0.00935268 - sys: 0.0026595972847857164 + sys: 0.002846491488691986 - stat: 0.00979612 - sys: 0.00427643635436818 + sys: 0.004413449041307964 - stat: 0.0110492 - sys: 0.005606454032048129 + sys: 0.005536395811090914 - stat: 0.0118684 - sys: 0.006925769467099229 + sys: 0.0073574717819328995 - stat: 0.0134677 - sys: 0.008045478371171437 + sys: 0.007766161740953237 - stat: 0.0156306 - sys: 0.011808083761866825 + sys: 0.012102913340413406 - stat: 0.0205952 - sys: 0.016122165035993685 + sys: 0.013179386943377048 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data.yaml deleted file mode 100644 index abf475cab6..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data.yaml +++ /dev/null @@ -1,11 +0,0 @@ -data_central: -- 0.0443981248147512 -- 0.05032651537285408 -- 0.05255892003804129 -- 0.04569909540525989 -- 0.06801606008348796 -- 0.08043204764516268 -- 0.09278792276471445 -- 0.09569170285417186 -- 0.1531694684173874 -- 0.2550024245863873 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..0968393759 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nlo.yaml @@ -0,0 +1,11 @@ +data_central: +- -0.0032896208242740154 +- 0.0011094544711352586 +- 0.0015433501535003754 +- -0.008212093961884048 +- 0.009146455530973135 +- 0.013294002253626612 +- 0.011464005209333213 +- -0.009012403743313612 +- 0.009072167254553816 +- 0.01365485719876894 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..beafd09845 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/data_nnlo.yaml @@ -0,0 +1,11 @@ +data_central: +- 0.04523771273338371 +- 0.04337092345884777 +- 0.054264909073250205 +- 0.047857018033756915 +- 0.06910671819059226 +- 0.07761070440844701 +- 0.10437177539727426 +- 0.09482473224300435 +- 0.17641930084290647 +- 0.24133405857546933 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py index fd117219f8..f97a67944d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/filter.py @@ -15,9 +15,18 @@ if __name__ == "__main__": input_txt = Path("./rawdata/EIC_5_100_A1c_100fb-1.txt") df = read_txt_data(input_txt) - cv_preds = read_central_values(Path("./rawdata/EIC_NC_67GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - # Flat systematic error of 3.2% due to beam polarization - # from Yuxiang suggestion - sys_error = 0.032 - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True, sys_error=sys_error) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/EIC_NC_67GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.032 + write_data( + df, + asym=False, + abserr=fluctuated_cv, + add_fluctuate=True, + sys_error=sys_error, + suffix=pto.lower(), + ) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/metadata.yaml index 938eb656ba..493a31606d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "G1F1CHARMRATIO" + - observable_name: "G1F1CHARMRATIO-NLO" observable: - description: "EIC projection measurements on polarized ep scattering at 67GeV" + description: "EIC projection measurements on polarized ep scattering at 67GeV using NL0 theory" label: "$g_1^c / F_1^c$" units: "" process_type: "DIS_POL" @@ -43,9 +43,43 @@ implemented_observables: Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - EIC_NC_67GEV_EP_G1 + operation: "null" + - observable_name: "G1F1CHARMRATIO-NNLO" + observable: + description: "EIC projection measurements on polarized ep scattering at 67GeV using NNL0 theory" + label: "$g_1^c / F_1^c$" + units: "" + process_type: "DIS_POL" + ndata: 10 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "EIC 67GeV (g1c/F1c)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$g_{1,p}^c(x, Q^2) / F_{1,p}^c(x, Q^2)$" + kinematic_coverage: [x, Q2] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP.yaml deleted file mode 100644 index 10c4f36fc0..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP.yaml +++ /dev/null @@ -1,11 +0,0 @@ -predictions_central: -- 0.038477148642204514 -- 0.04122391783958661 -- 0.04364196302371736 -- 0.04720812082155384 -- 0.05298713966547486 -- 0.06232287799851626 -- 0.07804457079764979 -- 0.1036319042996319 -- 0.14661428760618397 -- 0.2566190603194965 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NLO.yaml new file mode 100644 index 0000000000..e1b98583cf --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NLO.yaml @@ -0,0 +1,11 @@ +predictions_central: +- -0.0092105969968207 +- -0.007993143062132217 +- -0.007373606860823555 +- -0.006703068545590098 +- -0.005882464887039964 +- -0.004815167393019804 +- -0.0032793467577314508 +- -0.0010722022978535714 +- 0.0025169864433503843 +- 0.015271492931878133 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..cf09552a83 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/rawdata/EIC_NC_67GEV_EP_NNLO.yaml @@ -0,0 +1,11 @@ +predictions_central: +- 0.0458850121194167 +- 0.047556082653857336 +- 0.04967354600374477 +- 0.05332300646804743 +- 0.05928980207609092 +- 0.06876717837791826 +- 0.08457096592293155 +- 0.10962926568062316 +- 0.14992987068112984 +- 0.2355239842986943 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..f6861be55c --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,30 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.0044181 + sys: -0.0001052678663767685 +- stat: 0.00523863 + sys: 3.550254307632827e-05 +- stat: 0.00594865 + sys: 4.9387204912012014e-05 +- stat: 0.00659991 + sys: -0.00026278700678028955 +- stat: 0.00739964 + sys: 0.0002926865769911403 +- stat: 0.00834399 + sys: 0.0004254080721160516 +- stat: 0.00923507 + sys: 0.0003668481666986628 +- stat: 0.0103193 + sys: -0.0002883969197860356 +- stat: 0.0115804 + sys: 0.00029030935214572213 +- stat: 0.0135544 + sys: 0.0004369554303606061 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nnlo.yaml similarity index 56% rename from nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml rename to nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nnlo.yaml index b5e7cfcbf4..19e8ee7d8d 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EIC_NC_67GEV_EP/uncertainties_nnlo.yaml @@ -9,22 +9,22 @@ definitions: type: CORR bins: - stat: 0.0044181 - sys: 0.0014207399940720385 + sys: 0.0014476068074682786 - stat: 0.00523863 - sys: 0.0016104484919313307 + sys: 0.0013878695506831288 - stat: 0.00594865 - sys: 0.0016818854412173213 + sys: 0.0017364770903440065 - stat: 0.00659991 - sys: 0.0014623710529683164 + sys: 0.0015314245770802213 - stat: 0.00739964 - sys: 0.0021765139226716146 + sys: 0.0022114149820989526 - stat: 0.00834399 - sys: 0.002573825524645206 + sys: 0.0024835425410703045 - stat: 0.00923507 - sys: 0.0029692135284708626 + sys: 0.003339896812712776 - stat: 0.0103193 - sys: 0.0030621344913334997 + sys: 0.003034391431776139 - stat: 0.0115804 - sys: 0.004901422989356397 + sys: 0.005645417626973007 - stat: 0.0135544 - sys: 0.008160077586764392 + sys: 0.007722689874415018 From 2ac1b8151f56fa26e7eb0c4e0a5c0f102e0cdd7e Mon Sep 17 00:00:00 2001 From: Radonirinaunimi Date: Fri, 24 May 2024 18:35:49 +0200 Subject: [PATCH 3/3] add flat syst for EIcC and include NLO & NNLO variants --- .../new_commondata/EICC_NC_15GEV_EP/data.yaml | 21 -------- .../EICC_NC_15GEV_EP/data_nlo.yaml | 21 ++++++++ .../EICC_NC_15GEV_EP/data_nnlo.yaml | 21 ++++++++ .../new_commondata/EICC_NC_15GEV_EP/filter.py | 18 +++++-- .../EICC_NC_15GEV_EP/metadata.yaml | 42 ++++++++++++++-- .../rawdata/EICC_NC_15GEV_EP.yaml | 21 -------- .../rawdata/EICC_NC_15GEV_EP_NLO.yaml | 21 ++++++++ .../rawdata/EICC_NC_15GEV_EP_NNLO.yaml | 21 ++++++++ .../rawdata/EIcC_3_20_A1c_100fb-1.txt | 20 -------- .../rawdata/EIcC_NC_15GEV_EP.yaml | 21 -------- .../EICC_NC_15GEV_EP/uncertainties.yaml | 50 ------------------- .../EICC_NC_15GEV_EP/uncertainties_nlo.yaml | 50 +++++++++++++++++++ .../EICC_NC_15GEV_EP/uncertainties_nnlo.yaml | 50 +++++++++++++++++++ .../new_commondata/EICC_NC_22GEV_EP/data.yaml | 21 -------- .../EICC_NC_22GEV_EP/data_nlo.yaml | 21 ++++++++ .../EICC_NC_22GEV_EP/data_nnlo.yaml | 21 ++++++++ .../new_commondata/EICC_NC_22GEV_EP/filter.py | 18 +++++-- .../EICC_NC_22GEV_EP/metadata.yaml | 42 ++++++++++++++-- .../rawdata/EICC_NC_22GEV_EP.yaml | 21 -------- .../rawdata/EICC_NC_22GEV_EP_NLO.yaml | 21 ++++++++ .../rawdata/EICC_NC_22GEV_EP_NNLO.yaml | 21 ++++++++ .../rawdata/EIcC_5_25_A1c_100fb-1.txt | 20 -------- .../rawdata/EIcC_NC_22GEV_EP.yaml | 21 -------- .../EICC_NC_22GEV_EP/uncertainties.yaml | 50 ------------------- .../EICC_NC_22GEV_EP/uncertainties_nlo.yaml | 50 +++++++++++++++++++ .../EICC_NC_22GEV_EP/uncertainties_nnlo.yaml | 50 +++++++++++++++++++ 26 files changed, 474 insertions(+), 280 deletions(-) delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_3_20_A1c_100fb-1.txt delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_NC_15GEV_EP.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nnlo.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NLO.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NNLO.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_5_25_A1c_100fb-1.txt delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_NC_22GEV_EP.yaml delete mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nlo.yaml create mode 100644 nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nnlo.yaml diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data.yaml deleted file mode 100644 index ebeaff7258..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data.yaml +++ /dev/null @@ -1,21 +0,0 @@ -data_central: -- 0.028752536850912856 -- 0.11568706061804443 -- 0.17844536683656656 -- 0.21318446913040082 -- 0.3047908293137794 -- 0.36254691759476054 -- 0.40618149963926686 -- 0.4171399804244003 -- 0.48999487985235063 -- 0.5206809711013558 -- 0.5665869991056949 -- 0.5996527775301302 -- 0.6754620629478063 -- 0.69124681516166 -- 0.7867842832642818 -- 0.827410800327948 -- 0.9043448851250105 -- 0.8145577736761249 -- 0.9128153924039215 -- 0.6331589029324559 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..d8ea16c67d --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nlo.yaml @@ -0,0 +1,21 @@ +data_central: +- 0.028210496511775596 +- 0.03096850302069775 +- 0.028405214684745425 +- 0.0031665906441841023 +- 0.03813398704512427 +- 0.04244941465988825 +- 0.03395072969615667 +- -0.005556107683203207 +- 0.01825684505621425 +- 0.0063719846735700286 +- 0.006106962503821987 +- -0.006758105867902573 +- 0.02560844071973423 +- -0.008759632019291676 +- 0.04107561191577555 +- 0.035788966870756375 +- 0.06851722723586647 +- -0.03574387083780241 +- 0.07755847113097429 +- 0.004509355592291467 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..67c701856f --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/data_nnlo.yaml @@ -0,0 +1,21 @@ +data_central: +- 0.022150955423378773 +- 0.11064663829869174 +- 0.19055515624028524 +- 0.23223430658861016 +- 0.30739887788814296 +- 0.35414350508835424 +- 0.4308815798230844 +- 0.447739711257262 +- 0.465814133492104 +- 0.5389832976785235 +- 0.5720400569186944 +- 0.6070984096401357 +- 0.6403726085326178 +- 0.652022714098933 +- 0.7049357934993605 +- 0.6962202977759955 +- 0.7345431060084674 +- 0.7329213926296617 +- 0.6371952442378601 +- 0.1503768622983805 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py index bc1f17f37d..b94ee28a87 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/filter.py @@ -15,6 +15,18 @@ if __name__ == "__main__": input_txt = Path("./rawdata/EICC_3_20_A1c_100fb-1.txt") df = read_txt_data(input_txt) - cv_preds = read_central_values(Path("./rawdata/EICC_NC_15GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/EICC_NC_15GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.050 + write_data( + df, + asym=False, + abserr=fluctuated_cv, + add_fluctuate=True, + sys_error=sys_error, + suffix=pto.lower(), + ) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/metadata.yaml index 3e65192de3..dca98b9928 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "G1F1CHARMRATIO" + - observable_name: "G1F1CHARMRATIO-NLO" observable: - description: "EICC projection measurements on polarized ep scattering at 15GeV" + description: "EICC projection measurements on polarized ep scattering at 15GeV using NLO theory" label: "$g_1^c / F_1^c$" units: "" process_type: "DIS_POL" @@ -43,9 +43,43 @@ implemented_observables: Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - EIcC_NC_15GEV_EP_G1 + operation: "null" + - observable_name: "G1F1CHARMRATIO-NNLO" + observable: + description: "EICC projection measurements on polarized ep scattering at 15GeV using NNLO theory" + label: "$g_1^c / F_1^c$" + units: "" + process_type: "DIS_POL" + ndata: 20 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "EICC 15GeV (g1c/F1c)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$g_{1,p}^c(x, Q^2) / F_{1,p}^c(x, Q^2)$" + kinematic_coverage: [x, Q2] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP.yaml deleted file mode 100644 index 0562a740c6..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP.yaml +++ /dev/null @@ -1,21 +0,0 @@ -predictions_central: -- 0.011097089442581837 -- 0.09180508550690122 -- 0.15658771839531252 -- 0.21658542437898215 -- 0.2733648433555605 -- 0.32709314037346454 -- 0.3795997648037312 -- 0.43046049493249394 -- 0.4799201187391007 -- 0.5228764488739448 -- 0.5694608817943462 -- 0.6157591489415317 -- 0.6595102861408507 -- 0.7098349904876488 -- 0.7554780740416784 -- 0.8009837395209464 -- 0.8441110005347789 -- 0.8568572809328947 -- 0.8381534635862304 -- 0.6154780492789568 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NLO.yaml new file mode 100644 index 0000000000..49b6970100 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NLO.yaml @@ -0,0 +1,21 @@ +predictions_central: +- 0.010555049103444576 +- 0.007086527909554543 +- 0.006547566243491389 +- 0.006567545892765427 +- 0.00670800108690537 +- 0.006995637438592223 +- 0.007368994860621027 +- 0.007764406824890421 +- 0.008182083942964291 +- 0.008567462446159062 +- 0.00898084519247325 +- 0.009348265543498852 +- 0.009656663912778592 +- 0.009828543306697114 +- 0.009769402693172113 +- 0.009361906063754795 +- 0.008283342645634911 +- 0.006555636418967348 +- 0.002896542313283272 +- -0.013171498061207662 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..976d0094cb --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EICC_NC_15GEV_EP_NNLO.yaml @@ -0,0 +1,21 @@ +predictions_central: +- 0.03897899400867568 +- 0.12181248092748868 +- 0.18619698924227923 +- 0.24465145008218833 +- 0.29854301454322285 +- 0.34851807502101745 +- 0.3964844353133432 +- 0.44183763775436 +- 0.4847243439040604 +- 0.5197528272036527 +- 0.5571224773329402 +- 0.592577237802076 +- 0.6235427919188653 +- 0.6580416532417295 +- 0.6846068194659319 +- 0.7062840853754252 +- 0.7185271667037855 +- 0.6930629357128841 +- 0.6108911277189878 +- 0.15523776948470808 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_3_20_A1c_100fb-1.txt b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_3_20_A1c_100fb-1.txt deleted file mode 100644 index 5186e33a69..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_3_20_A1c_100fb-1.txt +++ /dev/null @@ -1,20 +0,0 @@ -0.0118543 2.33943 0.0131741 -0.0147498 2.67647 0.0137443 -0.0170879 2.92672 0.0145816 -0.0193576 3.14972 0.0148745 -0.0216843 3.38092 0.0154729 -0.024134 3.61084 0.0163357 -0.026757 3.83911 0.0166505 -0.029609 4.07714 0.0173117 -0.0327378 4.32469 0.0177981 -0.036235 4.62301 0.0184076 -0.0401922 4.91469 0.0196155 -0.0447057 5.22312 0.0201606 -0.0498705 5.57079 0.0206674 -0.0559157 5.90818 0.0224443 -0.063158 6.30866 0.0235975 -0.0719283 6.76403 0.0249343 -0.082977 7.29287 0.028093 -0.098045 8.23912 0.0294843 -0.122323 9.93854 0.03264 -0.194617 15.7033 0.0412479 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_NC_15GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_NC_15GEV_EP.yaml deleted file mode 100644 index 0562a740c6..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/rawdata/EIcC_NC_15GEV_EP.yaml +++ /dev/null @@ -1,21 +0,0 @@ -predictions_central: -- 0.011097089442581837 -- 0.09180508550690122 -- 0.15658771839531252 -- 0.21658542437898215 -- 0.2733648433555605 -- 0.32709314037346454 -- 0.3795997648037312 -- 0.43046049493249394 -- 0.4799201187391007 -- 0.5228764488739448 -- 0.5694608817943462 -- 0.6157591489415317 -- 0.6595102861408507 -- 0.7098349904876488 -- 0.7554780740416784 -- 0.8009837395209464 -- 0.8441110005347789 -- 0.8568572809328947 -- 0.8381534635862304 -- 0.6154780492789568 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties.yaml deleted file mode 100644 index 941789bd9a..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,50 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: ADD - type: UNCORR -bins: -- stat: 0.0131741 - sys: 0.0 -- stat: 0.0137443 - sys: 0.0 -- stat: 0.0145816 - sys: 0.0 -- stat: 0.0148745 - sys: 0.0 -- stat: 0.0154729 - sys: 0.0 -- stat: 0.0163357 - sys: 0.0 -- stat: 0.0166505 - sys: 0.0 -- stat: 0.0173117 - sys: 0.0 -- stat: 0.0177981 - sys: 0.0 -- stat: 0.0184076 - sys: 0.0 -- stat: 0.0196155 - sys: 0.0 -- stat: 0.0201606 - sys: 0.0 -- stat: 0.0206674 - sys: 0.0 -- stat: 0.0224443 - sys: 0.0 -- stat: 0.0235975 - sys: 0.0 -- stat: 0.0249343 - sys: 0.0 -- stat: 0.028093 - sys: 0.0 -- stat: 0.0294843 - sys: 0.0 -- stat: 0.03264 - sys: 0.0 -- stat: 0.0412479 - sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..0ce01a2472 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,50 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.0131741 + sys: 0.0014105248255887799 +- stat: 0.0137443 + sys: 0.0015484251510348877 +- stat: 0.0145816 + sys: 0.0014202607342372713 +- stat: 0.0148745 + sys: 0.00015832953220920511 +- stat: 0.0154729 + sys: 0.0019066993522562133 +- stat: 0.0163357 + sys: 0.0021224707329944126 +- stat: 0.0166505 + sys: 0.0016975364848078338 +- stat: 0.0173117 + sys: -0.00027780538416016033 +- stat: 0.0177981 + sys: 0.0009128422528107125 +- stat: 0.0184076 + sys: 0.00031859923367850144 +- stat: 0.0196155 + sys: 0.0003053481251910994 +- stat: 0.0201606 + sys: -0.00033790529339512867 +- stat: 0.0206674 + sys: 0.0012804220359867117 +- stat: 0.0224443 + sys: -0.0004379816009645838 +- stat: 0.0235975 + sys: 0.0020537805957887775 +- stat: 0.0249343 + sys: 0.0017894483435378188 +- stat: 0.028093 + sys: 0.0034258613617933233 +- stat: 0.0294843 + sys: -0.0017871935418901205 +- stat: 0.03264 + sys: 0.003877923556548715 +- stat: 0.0412479 + sys: 0.00022546777961457337 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..723800b684 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_15GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,50 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.0131741 + sys: 0.0011075477711689388 +- stat: 0.0137443 + sys: 0.005532331914934588 +- stat: 0.0145816 + sys: 0.009527757812014263 +- stat: 0.0148745 + sys: 0.011611715329430509 +- stat: 0.0154729 + sys: 0.01536994389440715 +- stat: 0.0163357 + sys: 0.01770717525441771 +- stat: 0.0166505 + sys: 0.021544078991154222 +- stat: 0.0173117 + sys: 0.0223869855628631 +- stat: 0.0177981 + sys: 0.0232907066746052 +- stat: 0.0184076 + sys: 0.026949164883926176 +- stat: 0.0196155 + sys: 0.028602002845934723 +- stat: 0.0201606 + sys: 0.03035492048200679 +- stat: 0.0206674 + sys: 0.03201863042663089 +- stat: 0.0224443 + sys: 0.03260113570494665 +- stat: 0.0235975 + sys: 0.035246789674968027 +- stat: 0.0249343 + sys: 0.03481101488879978 +- stat: 0.028093 + sys: 0.03672715530042337 +- stat: 0.0294843 + sys: 0.036646069631483084 +- stat: 0.03264 + sys: 0.03185976221189301 +- stat: 0.0412479 + sys: 0.007518843114919025 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data.yaml deleted file mode 100644 index faa319c9c4..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data.yaml +++ /dev/null @@ -1,21 +0,0 @@ -data_central: -- 0.028410350030637896 -- 0.053949708486563094 -- 0.07194127121328957 -- 0.07521904482145485 -- 0.12166021006378017 -- 0.14760044208935755 -- 0.16631652447017 -- 0.1636371208703117 -- 0.20767820900152353 -- 0.2279363767574925 -- 0.26022782871750655 -- 0.28451580310664837 -- 0.34258842800631895 -- 0.3562698920241001 -- 0.4389981141059839 -- 0.4891750588140542 -- 0.5723154347450254 -- 0.5595837507085588 -- 0.7172734276507937 -- 0.6075154941525787 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nlo.yaml new file mode 100644 index 0000000000..9fab552f10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nlo.yaml @@ -0,0 +1,21 @@ +data_central: +- 0.012139295118318866 +- 0.015881923267071163 +- 0.015025438739859292 +- -0.0018559180431728783 +- 0.023354842834581318 +- 0.026716499133527406 +- 0.021219606967907232 +- -0.006946119807084017 +- 0.01068558625610119 +- 0.00245698795840778 +- 0.002824525819833377 +- -0.006174841310678665 +- 0.018692649060262165 +- -0.006032539800718114 +- 0.032002508970857 +- 0.029917270643032443 +- 0.05513378124431281 +- -0.021526440690078245 +- 0.07276655142983106 +- 0.020494357342881263 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nnlo.yaml new file mode 100644 index 0000000000..5f2aa34b32 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/data_nnlo.yaml @@ -0,0 +1,21 @@ +data_central: +- 0.01915625983251583 +- 0.045565668548131225 +- 0.07621253481153509 +- 0.08554666124576508 +- 0.12253111555176993 +- 0.14319323507338874 +- 0.18820757810167846 +- 0.19289512487355306 +- 0.20041872727596283 +- 0.25561415985484603 +- 0.28241754864061247 +- 0.31305623798990323 +- 0.3444297479038784 +- 0.36041583075572375 +- 0.41706166643797105 +- 0.43546921702585184 +- 0.4957827859586372 +- 0.5521973898800456 +- 0.5558161217086459 +- 0.29298754964313634 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py index 649371c595..42b755799a 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/filter.py @@ -15,6 +15,18 @@ if __name__ == "__main__": input_txt = Path("./rawdata/EICC_5_25_A1c_100fb-1.txt") df = read_txt_data(input_txt) - cv_preds = read_central_values(Path("./rawdata/EICC_NC_22GEV_EP.yaml")) - fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) - write_data(df, asym=False, abserr=fluctuated_cv, add_fluctuate=True) + + for pto in ["NLO", "NNLO"]: + cv_preds = read_central_values(Path(f"./rawdata/EICC_NC_22GEV_EP_{pto}.yaml")) + fluctuated_cv = fluctuate_data(cv_preds, df["abs"].values) + # Flat systematic error of 3.2% due to beam polarization + # from Yuxiang suggestion + sys_error = 0.050 + write_data( + df, + asym=False, + abserr=fluctuated_cv, + add_fluctuate=True, + sys_error=sys_error, + suffix=pto.lower(), + ) diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/metadata.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/metadata.yaml index d4b3fa8cac..6496bd25c9 100644 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/metadata.yaml +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/metadata.yaml @@ -17,9 +17,9 @@ nnpdf_metadata: experiment: "EIC" implemented_observables: - - observable_name: "G1F1CHARMRATIO" + - observable_name: "G1F1CHARMRATIO-NLO" observable: - description: "EICC projection measurements on polarized ep scattering at 22GeV" + description: "EICC projection measurements on polarized ep scattering at 22GeV using NLO theory" label: "$g_1^c / F_1^c$" units: "" process_type: "DIS_POL" @@ -43,9 +43,43 @@ implemented_observables: Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } file: kinematics.yaml - data_central: data.yaml + data_central: data_nlo.yaml data_uncertainties: - - uncertainties.yaml + - uncertainties_nlo.yaml + + theory: + FK_tables: + - - EIcC_NC_22GEV_EP_G1 + operation: "null" + - observable_name: "G1F1CHARMRATIO-NNLO" + observable: + description: "EICC projection measurements on polarized ep scattering at 22GeV using NNLO theory" + label: "$g_1^c / F_1^c$" + units: "" + process_type: "DIS_POL" + ndata: 20 + tables: [] + npoints: [] # number of datapoints in each table + + # Plotting information + plotting: + kinematics_override: dis_sqrt_scale + dataset_label: "EICC 22GeV (g1c/F1c)" + plot_x: x + line_by: [Q2] + figure_by: [] + y_label: "$g_{1,p}^c(x, Q^2) / F_{1,p}^c(x, Q^2)$" + kinematic_coverage: [x, Q2] + + kinematics: + variables: + x: { description: "momentum fraction", label: "$x$", units: "" } + Q2: { description: "virtuality", label: "$Q^2$", units: "$GeV^2$" } + file: kinematics.yaml + + data_central: data_nnlo.yaml + data_uncertainties: + - uncertainties_nnlo.yaml theory: FK_tables: diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP.yaml deleted file mode 100644 index 5f704ee5f1..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP.yaml +++ /dev/null @@ -1,21 +0,0 @@ -predictions_central: -- 0.01690140150151845 -- 0.03799297384460928 -- 0.05710275561329077 -- 0.07762258926087376 -- 0.09932086711226819 -- 0.12242792820252063 -- 0.14721385100561526 -- 0.17330143241808899 -- 0.20034418866162207 -- 0.22955441987873032 -- 0.2623011177652174 -- 0.29644478865289314 -- 0.33054992057959237 -- 0.36998374710481025 -- 0.4157827639813768 -- 0.4692028046680297 -- 0.5282138881409599 -- 0.5929997918872923 -- 0.6562638351062493 -- 0.5928517692404429 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NLO.yaml new file mode 100644 index 0000000000..a817ceeb10 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NLO.yaml @@ -0,0 +1,21 @@ +predictions_central: +- 0.0006303465891994216 +- -7.481137488265633e-05 +- 0.0001869231398604902 +- 0.0005476263962460332 +- 0.001015499883069344 +- 0.0015439852466904804 +- 0.0021169335033524805 +- 0.0027181917406932645 +- 0.0033515659161997163 +- 0.004075031079645603 +- 0.004897814867544263 +- 0.0057541442355661205 +- 0.006654141633535571 +- 0.007681315279992049 +- 0.00878715884624993 +- 0.009945016497007951 +- 0.011032234640247248 +- 0.01188960048865527 +- 0.011756958885286706 +- 0.005830632430745554 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NNLO.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NNLO.yaml new file mode 100644 index 0000000000..3e47f323e4 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EICC_NC_22GEV_EP_NNLO.yaml @@ -0,0 +1,21 @@ +predictions_central: +- 0.03012585043223239 +- 0.05302612301441176 +- 0.07325390322950008 +- 0.09432218283191537 +- 0.1162358741341445 +- 0.13919912703785883 +- 0.16348844581975241 +- 0.18861304724995465 +- 0.2141845988667748 +- 0.241441513309061 +- 0.27165564298049844 +- 0.3023013109770983 +- 0.33172860026703577 +- 0.36485644193440786 +- 0.4019865659521754 +- 0.44307492562414474 +- 0.48405636820460335 +- 0.520709745601668 +- 0.5343218547311718 +- 0.29701897296695445 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_5_25_A1c_100fb-1.txt b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_5_25_A1c_100fb-1.txt deleted file mode 100644 index 12b9a0b461..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_5_25_A1c_100fb-1.txt +++ /dev/null @@ -1,20 +0,0 @@ -0.0068164 2.35927 0.00858772 -0.00867301 2.70472 0.00918325 -0.0101997 2.9482 0.00989902 -0.0116997 3.18471 0.0105122 -0.0132466 3.41175 0.010999 -0.0148812 3.63892 0.0115985 -0.01666 3.8813 0.0119657 -0.018605 4.1459 0.01256 -0.0207568 4.43653 0.0129563 -0.0232027 4.74319 0.0135662 -0.0260104 5.05546 0.0141511 -0.0292666 5.42151 0.0149317 -0.0330757 5.86492 0.0155973 -0.0377102 6.34746 0.0165588 -0.0434833 6.871 0.0174989 -0.0507568 7.45673 0.0188441 -0.0604552 8.18451 0.0205689 -0.0743193 9.18998 0.0232922 -0.096939 10.822 0.0266716 -0.165807 17.5539 0.0342092 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_NC_22GEV_EP.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_NC_22GEV_EP.yaml deleted file mode 100644 index 5f704ee5f1..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/rawdata/EIcC_NC_22GEV_EP.yaml +++ /dev/null @@ -1,21 +0,0 @@ -predictions_central: -- 0.01690140150151845 -- 0.03799297384460928 -- 0.05710275561329077 -- 0.07762258926087376 -- 0.09932086711226819 -- 0.12242792820252063 -- 0.14721385100561526 -- 0.17330143241808899 -- 0.20034418866162207 -- 0.22955441987873032 -- 0.2623011177652174 -- 0.29644478865289314 -- 0.33054992057959237 -- 0.36998374710481025 -- 0.4157827639813768 -- 0.4692028046680297 -- 0.5282138881409599 -- 0.5929997918872923 -- 0.6562638351062493 -- 0.5928517692404429 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties.yaml deleted file mode 100644 index c4cd8c3422..0000000000 --- a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties.yaml +++ /dev/null @@ -1,50 +0,0 @@ -definitions: - stat: - description: statistical uncertainty - treatment: ADD - type: UNCORR - sys: - description: systematic uncertainty - treatment: ADD - type: UNCORR -bins: -- stat: 0.00858772 - sys: 0.0 -- stat: 0.00918325 - sys: 0.0 -- stat: 0.00989902 - sys: 0.0 -- stat: 0.0105122 - sys: 0.0 -- stat: 0.010999 - sys: 0.0 -- stat: 0.0115985 - sys: 0.0 -- stat: 0.0119657 - sys: 0.0 -- stat: 0.01256 - sys: 0.0 -- stat: 0.0129563 - sys: 0.0 -- stat: 0.0135662 - sys: 0.0 -- stat: 0.0141511 - sys: 0.0 -- stat: 0.0149317 - sys: 0.0 -- stat: 0.0155973 - sys: 0.0 -- stat: 0.0165588 - sys: 0.0 -- stat: 0.0174989 - sys: 0.0 -- stat: 0.0188441 - sys: 0.0 -- stat: 0.0205689 - sys: 0.0 -- stat: 0.0232922 - sys: 0.0 -- stat: 0.0266716 - sys: 0.0 -- stat: 0.0342092 - sys: 0.0 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nlo.yaml new file mode 100644 index 0000000000..2d5bbe6631 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nlo.yaml @@ -0,0 +1,50 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.00858772 + sys: 0.0006069647559159433 +- stat: 0.00918325 + sys: 0.0007940961633535582 +- stat: 0.00989902 + sys: 0.0007512719369929646 +- stat: 0.0105122 + sys: -9.279590215864391e-05 +- stat: 0.010999 + sys: 0.001167742141729066 +- stat: 0.0115985 + sys: 0.0013358249566763703 +- stat: 0.0119657 + sys: 0.0010609803483953616 +- stat: 0.01256 + sys: -0.0003473059903542009 +- stat: 0.0129563 + sys: 0.0005342793128050594 +- stat: 0.0135662 + sys: 0.000122849397920389 +- stat: 0.0141511 + sys: 0.00014122629099166885 +- stat: 0.0149317 + sys: -0.00030874206553393324 +- stat: 0.0155973 + sys: 0.0009346324530131083 +- stat: 0.0165588 + sys: -0.00030162699003590573 +- stat: 0.0174989 + sys: 0.00160012544854285 +- stat: 0.0188441 + sys: 0.0014958635321516223 +- stat: 0.0205689 + sys: 0.0027566890622156407 +- stat: 0.0232922 + sys: -0.0010763220345039123 +- stat: 0.0266716 + sys: 0.003638327571491553 +- stat: 0.0342092 + sys: 0.0010247178671440632 diff --git a/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nnlo.yaml b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nnlo.yaml new file mode 100644 index 0000000000..d0d58a1065 --- /dev/null +++ b/nnpdf_data/nnpdf_data/new_commondata/EICC_NC_22GEV_EP/uncertainties_nnlo.yaml @@ -0,0 +1,50 @@ +definitions: + stat: + description: statistical uncertainty + treatment: ADD + type: UNCORR + sys: + description: systematic uncertainty + treatment: MULT + type: CORR +bins: +- stat: 0.00858772 + sys: 0.0009578129916257915 +- stat: 0.00918325 + sys: 0.0022782834274065614 +- stat: 0.00989902 + sys: 0.0038106267405767546 +- stat: 0.0105122 + sys: 0.004277333062288255 +- stat: 0.010999 + sys: 0.006126555777588497 +- stat: 0.0115985 + sys: 0.007159661753669437 +- stat: 0.0119657 + sys: 0.009410378905083923 +- stat: 0.01256 + sys: 0.009644756243677654 +- stat: 0.0129563 + sys: 0.010020936363798142 +- stat: 0.0135662 + sys: 0.012780707992742302 +- stat: 0.0141511 + sys: 0.014120877432030624 +- stat: 0.0149317 + sys: 0.01565281189949516 +- stat: 0.0155973 + sys: 0.017221487395193923 +- stat: 0.0165588 + sys: 0.01802079153778619 +- stat: 0.0174989 + sys: 0.020853083321898554 +- stat: 0.0188441 + sys: 0.021773460851292593 +- stat: 0.0205689 + sys: 0.02478913929793186 +- stat: 0.0232922 + sys: 0.027609869494002282 +- stat: 0.0266716 + sys: 0.027790806085432298 +- stat: 0.0342092 + sys: 0.014649377482156818