diff --git a/analyses/pluginHERA/HERA_2015_I1353667.cc b/analyses/pluginHERA/HERA_2015_I1353667.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.cc @@ -0,0 +1,99 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/FinalState.hh" +#include "Rivet/Projections/DISKinematics.hh" +#include "Rivet/Projections/UnstableFinalState.hh" + +namespace Rivet { + + + /// @brief Combined H1/ZEUS D* production cross-sections in DIS + class HERA_2015_I1353667 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(HERA_2015_I1353667); + + + /// @name Analysis methods + //@{ + + /// Book histograms and initialise projections before the run + void init() { + + // Initialise and register projections + // declare(FinalState(Cuts::abseta < 5 && Cuts::pT > 100*MeV), "FS"); + // FinalState fs; + declare(DISKinematics(), "Kinematics"); + declare(UnstableParticles(), "Dstars"); + //Cuts::abspid == PID::DSTARPLUS + + // Book histograms + _h_pTD = bookHisto1D(1, 1, 1); + _h_etaD = bookHisto1D(2, 1, 1); + _h_zD = bookHisto1D(3, 1, 1); + _h_Q2 = bookHisto1D(4, 1, 1); + _h_y = bookHisto1D(5, 1, 1); + // _h_Q2y = bookHisto2D(6, 1, 1); + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + + // Determine kinematics, including event orientation + const DISKinematics& kin = apply(event, "Kinematics"); + //const int orientation = kin.orientation(); + + // Q2 and inelasticity cuts + if (!inRange(kin.Q2(), 1.5*GeV2, 1000*GeV2)) vetoEvent; + if (!inRange(kin.y(), 0.02, 0.7)) vetoEvent; + + + // D* reconstruction + const Particles unstables = apply(event, "Dstars") + .particles(Cuts::pT > 1.5*GeV && Cuts::abseta < 1.5); + const Particles dstars = filter_select(unstables, [](const Particle& p){ return p.abspid() == PID::DSTARPLUS; }); + if (dstars.empty()) vetoEvent; + MSG_DEBUG("#D* = " << dstars.size()); + const Particle& dstar = dstars.front(); + const double zD = (dstar.E() - dstar.pz()) / (2*kin.beamLepton().E()*kin.y()); + + // Single-differential histograms with higher low-Q2 cut + if (kin.Q2() > 5*GeV2) { + _h_pTD->fill(dstar.pT()/GeV, event.weight()); + _h_etaD->fill(dstar.eta(), event.weight()); + _h_zD->fill(zD/GeV, event.weight()); + _h_Q2->fill(kin.Q2()/GeV2, event.weight()); + _h_y->fill(kin.y(), event.weight()); + } + + // // Double-differential (y,Q2) histograms + // _h_Q2y->fill(kin.Q2()/GeV2, kin.y(), event.weight()); + + } + + + /// Normalise histograms etc., after the run + void finalize() { + scale({_h_pTD, _h_etaD, _h_zD, _h_Q2, _h_y}, crossSection()/nanobarn/sumOfWeights()); + } + + //@} + + + /// @name Histograms + //@{ + Histo1DPtr _h_pTD, _h_etaD, _h_zD, _h_Q2, _h_y; + Histo2DPtr _h_Q2y; + //@} + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(HERA_2015_I1353667); + + +} diff --git a/analyses/pluginHERA/HERA_2015_I1353667.cc~ b/analyses/pluginHERA/HERA_2015_I1353667.cc~ new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.cc~ @@ -0,0 +1,99 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/FinalState.hh" +#include "Rivet/Projections/DISKinematics.hh" +#include "Rivet/Projections/UnstableFinalState.hh" + +namespace Rivet { + + + /// @brief Combined H1/ZEUS D* production in DIS events + class HERA_2015_I1353667 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(HERA_2015_I1353667); + + + /// @name Analysis methods + //@{ + + /// Book histograms and initialise projections before the run + void init() { + + // Initialise and register projections + // declare(FinalState(Cuts::abseta < 5 && Cuts::pT > 100*MeV), "FS"); + // FinalState fs; + declare(DISKinematics(), "Kinematics"); + declare(UnstableParticles(), "Dstars"); + //Cuts::abspid == PID::DSTARPLUS + + // Book histograms + _h_pTD = bookHisto1D(1, 1, 1); + _h_etaD = bookHisto1D(2, 1, 1); + _h_zD = bookHisto1D(3, 1, 1); + _h_Q2 = bookHisto1D(4, 1, 1); + _h_y = bookHisto1D(5, 1, 1); + // _h_Q2y = bookHisto2D(6, 1, 1); + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + + // Determine kinematics, including event orientation + const DISKinematics& kin = apply(event, "Kinematics"); + //const int orientation = kin.orientation(); + + // Q2 and inelasticity cuts + if (!inRange(kin.Q2(), 1.5*GeV2, 1000*GeV2)) vetoEvent; + if (!inRange(kin.y(), 0.02, 0.7)) vetoEvent; + + + // D* reconstruction + const Particles unstables = apply(event, "Dstars") + .particles(Cuts::pT > 1.5*GeV && Cuts::abseta < 1.5); + const Particles dstars = filter_select(unstables, [](const Particle& p){ return p.abspid() == PID::DSTARPLUS; }); + if (dstars.empty()) vetoEvent; + MSG_DEBUG("#D* = " << dstars.size()); + const Particle& dstar = dstars.front(); + const double zD = (dstar.E() - dstar.pz()) / (2*kin.beamLepton().E()*kin.y()); + + // Single-differential histograms with higher low-Q2 cut + if (kin.Q2() > 5*GeV2) { + _h_pTD->fill(dstar.pT()/GeV, event.weight()); + _h_etaD->fill(dstar.eta(), event.weight()); + _h_zD->fill(zD/GeV, event.weight()); + _h_Q2->fill(kin.Q2()/GeV2, event.weight()); + _h_y->fill(kin.y(), event.weight()); + } + + // // Double-differential (y,Q2) histograms + // _h_Q2y->fill(kin.Q2()/GeV2, kin.y(), event.weight()); + + } + + + /// Normalise histograms etc., after the run + void finalize() { + scale({_h_pTD, _h_etaD, _h_zD, _h_Q2, _h_y}, crossSection()/nanobarn/sumOfWeights()); + } + + //@} + + + /// @name Histograms + //@{ + Histo1DPtr _h_pTD, _h_etaD, _h_zD, _h_Q2, _h_y; + Histo2DPtr _h_Q2y; + //@} + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(HERA_2015_I1353667); + + +} diff --git a/analyses/pluginHERA/HERA_2015_I1353667.info b/analyses/pluginHERA/HERA_2015_I1353667.info new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.info @@ -0,0 +1,47 @@ +Name: HERA_2015_I1353667 +Year: 2015 +Summary: Combined H1/ZEUS $D^*$ production cross-sections in DIS +Experiment: H1/ZEUS +Collider: HERA +InspireID: 1353667 +Status: UNVALIDATED +Authors: + - Andy Buckley +References: +- 'JHEP 1509 (2015) 149' +- 'DOI:10.1007/JHEP09(2015)149' +- 'DESY-15-037' +- 'arxiv:1503.06042' +- 'http://www-h1.desy.de/publications/htmlsplit/DESY-15-037.long.poster.html' +RunInfo: 'Inclusive DIS events. $Q^2$ cut must be lower than 1.5 $\GeV^2$.' +NeedCrossSection: yes +Beams: [[p+, e-], [p+, e+]] +Energies: [318] +Description: + 'H1 and ZEUS combined differential cross-sections for inclusive $D^{*\pm}$ + production in deep-inelastic $ep$ scattering at HERA. The cross-sections + are combined in the common visible phase-space region of photon virtuality + $Q^2 > 5 \GeV^2$, electron inelasticity $0.02 < y < 0.7$, and the $D^{*\pm}$ + meson's transverse momentum $p_T(D^*) > 1.5 \GeV$ and pseudorapidity + $|\eta(D^*)| < 1.5$. The combination procedure takes into account all + correlations. Double-differential cross sections $d2\sigma/dQ^2 dy$ + are combined with earlier $D^{∗\pm}$ data, extending the kinematic range + down to $Q^2 > 1.5 \GeV^2$. +Keywords: [ep dis dstar] +BibKey: H1:2015dma +BibTeX: '@article{H1:2015dma, + author = "Abramowicz, H. and others", + title = "{Combination of differential D$^{∗\pm}$ cross-section + measurements in deep-inelastic ep scattering at HERA}", + collaboration = "H1, ZEUS", + journal = "JHEP", + volume = "09", + year = "2015", + pages = "149", + doi = "10.1007/JHEP09(2015)149", + eprint = "1503.06042", + archivePrefix = "arXiv", + primaryClass = "hep-ex", + reportNumber = "DESY-15-037", + SLACcitation = "%%CITATION = ARXIV:1503.06042;%%" +}' diff --git a/analyses/pluginHERA/HERA_2015_I1353667.info~ b/analyses/pluginHERA/HERA_2015_I1353667.info~ new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.info~ @@ -0,0 +1,46 @@ +Name: HERA_2015_I1353667 +Year: 2015 +Summary: +Experiment: HERA +Collider: +InspireID: 1353667 +Status: UNVALIDATED +Authors: + - Your Name +#References: +#- '' +#- '' +#- '' +RunInfo: +NeedCrossSection: no +#Beams: +#Energies: +#Luminosity_fb: +Description: + ' 50\;\GeV$.>' +Keywords: [] +BibKey: H1:2015dma +BibTeX: '%%% contains utf-8, see: http://inspirehep.net/info/faq/general#utf8 +%%% add \usepackage[utf8]{inputenc} to your latex preamble + +@article{H1:2015dma, + author = "Abramowicz, H. and others", + title = "{Combination of differential D$^{∗\pm}$ cross-section + measurements in deep-inelastic ep scattering at HERA}", + collaboration = "H1, ZEUS", + journal = "JHEP", + volume = "09", + year = "2015", + pages = "149", + doi = "10.1007/JHEP09(2015)149", + eprint = "1503.06042", + archivePrefix = "arXiv", + primaryClass = "hep-ex", + reportNumber = "DESY-15-037", + SLACcitation = "%%CITATION = ARXIV:1503.06042;%%" +}' +ToDo: + - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-) + diff --git a/analyses/pluginHERA/HERA_2015_I1353667.plot b/analyses/pluginHERA/HERA_2015_I1353667.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.plot @@ -0,0 +1,31 @@ +BEGIN PLOT /HERA_2015_I1353667/d01-x01-y01 +Title= +XLabel=$p_\perp(D^*)$ [GeV] +YLabel=$\mathrm{d}\sigma/\mathrm{d}p_\perp(D^*)$ [GeV$^{-1}$] +LogX=1 +END PLOT + +BEGIN PLOT /HERA_2015_I1353667/d02-x01-y01 +Title= +XLabel=$\eta(D^*)$ +YLabel=$\mathrm{d}\sigma/\mathrm{d}\eta(D^*)$ +END PLOT + +BEGIN PLOT /HERA_2015_I1353667/d03-x01-y01 +Title= +XLabel=$z(D^*)$ +YLabel=$\mathrm{d}\sigma/\mathrm{d}z(D^*)$ +END PLOT + +BEGIN PLOT /HERA_2015_I1353667/d04-x01-y01 +Title= +XLabel=$Q^2$ [GeV$^2$] +YLabel=$\mathrm{d}\sigma/\mathrm{d}Q^2$ [GeV$^{-2}$] +LogX=1 +END PLOT + +BEGIN PLOT /HERA_2015_I1353667/d05-x01-y01 +Title= +XLabel=$y$ +YLabel=$\mathrm{d}\sigma/\mathrm{d}y$ +END PLOT diff --git a/analyses/pluginHERA/HERA_2015_I1353667.plot~ b/analyses/pluginHERA/HERA_2015_I1353667.plot~ new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.plot~ @@ -0,0 +1,8 @@ +BEGIN PLOT /HERA_2015_I1353667/d01-x01-y01 +Title=[Insert title for histogram d01-x01-y01 here] +XLabel=[Insert $x$-axis label for histogram d01-x01-y01 here] +YLabel=[Insert $y$-axis label for histogram d01-x01-y01 here] +# + any additional plot settings you might like, see make-plots documentation +END PLOT + +# ... add more histograms as you need them ... diff --git a/analyses/pluginHERA/HERA_2015_I1353667.yoda b/analyses/pluginHERA/HERA_2015_I1353667.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginHERA/HERA_2015_I1353667.yoda @@ -0,0 +1,154 @@ +BEGIN YODA_SCATTER2D_V2 /REF/HERA_2015_I1353667/d01-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.1504, up: 0.1504}, 'sys,cor': {dn: -0.11045, up: 0.11045}}, 1: {stat: {dn: -0.10878000000000002, up: 0.10878000000000002}, 'sys,cor': {dn: -0.09324, up: 0.09324}}, 2: {stat: {dn: -0.07325999999999999, up: 0.07325999999999999}, 'sys,cor': {dn: -0.07919999999999999, up: 0.07919999999999999}}, 3: {stat: {dn: -0.05425, up: 0.05425}, 'sys,cor': {dn: -0.057350000000000005, up: 0.057350000000000005}}, 4: {stat: {dn: -0.0444, up: 0.0444}, 'sys,cor': {dn: -0.042, up: 0.042}}, 5: {stat: {dn: -0.029728, up: 0.029728}, 'sys,cor': {dn: -0.031585999999999996, up: 0.031585999999999996}}, 6: {stat: {dn: -0.01842, up: 0.01842}, 'sys,cor': {dn: -0.02149, up: 0.02149}}, 7: {stat: {dn: -0.009889, up: 0.009889}, 'sys,cor': {dn: -0.010527, up: 0.010527}}, 8: {stat: {dn: -0.00437, up: 0.00437}, 'sys,cor': {dn: -0.004255, up: 0.004255}}, 9: {stat: {dn: -0.0017928, up: 0.0017928}, 'sys,cor': {dn: -0.0012284, up: 0.0012284}}, 10: {stat: {dn: -0.0003952, up: 0.0003952}, 'sys,cor': {dn: -0.00024320000000000003, up: 0.00024320000000000003}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d01-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.690000e+00 1.900000e-01 1.900000e-01 2.350000e+00 1.865995e-01 1.865995e-01 +2.080000e+00 2.000000e-01 2.000000e-01 2.220000e+00 1.432717e-01 1.432717e-01 +2.480000e+00 2.000000e-01 2.000000e-01 1.980000e+00 1.078873e-01 1.078873e-01 +2.880000e+00 2.000000e-01 2.000000e-01 1.550000e+00 7.894356e-02 7.894356e-02 +3.290000e+00 2.100000e-01 2.100000e-01 1.200000e+00 6.111759e-02 6.111759e-02 +3.750000e+00 2.500000e-01 2.500000e-01 9.290000e-01 4.337545e-02 4.337545e-02 +4.375000e+00 3.750000e-01 3.750000e-01 6.140000e-01 2.830400e-02 2.830400e-02 +5.375000e+00 6.250000e-01 6.250000e-01 3.190000e-01 1.444334e-02 1.444334e-02 +7.000000e+00 1.000000e+00 1.000000e+00 1.150000e-01 6.099338e-03 6.099338e-03 +9.500000e+00 1.500000e+00 1.500000e+00 3.320000e-02 2.173269e-03 2.173269e-03 +1.550000e+01 4.500000e+00 4.500000e+00 3.800000e-03 4.640359e-04 4.640359e-04 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/HERA_2015_I1353667/d02-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.07888, up: 0.07888}, 'sys,cor': {dn: -0.058480000000000004, up: 0.058480000000000004}}, 1: {stat: {dn: -0.06992, up: 0.06992}, 'sys,cor': {dn: -0.0608, up: 0.0608}}, 2: {stat: {dn: -0.07314, up: 0.07314}, 'sys,cor': {dn: -0.0636, up: 0.0636}}, 3: {stat: {dn: -0.06802, up: 0.06802}, 'sys,cor': {dn: -0.06265, up: 0.06265}}, 4: {stat: {dn: -0.06954, up: 0.06954}, 'sys,cor': {dn: -0.06039, up: 0.06039}}, 5: {stat: {dn: -0.07182, up: 0.07182}, 'sys,cor': {dn: -0.06993, up: 0.06993}}, 6: {stat: {dn: -0.07440000000000001, up: 0.07440000000000001}, 'sys,cor': {dn: -0.06324, up: 0.06324}}, 7: {stat: {dn: -0.07519999999999999, up: 0.07519999999999999}, 'sys,cor': {dn: -0.06767999999999999, up: 0.06767999999999999}}, 8: {stat: {dn: -0.07830999999999999, up: 0.07830999999999999}, 'sys,cor': {dn: -0.06684999999999999, up: 0.06684999999999999}}, 9: {stat: {dn: -0.08256, up: 0.08256}, 'sys,cor': {dn: -0.0768, up: 0.0768}}, 10: {stat: {dn: -0.09776, up: 0.09776}, 'sys,cor': {dn: -0.0832, up: 0.0832}}, 11: {stat: {dn: -0.11403, up: 0.11403}, 'sys,cor': {dn: -0.08688, up: 0.08688}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d02-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-1.375000e+00 1.250000e-01 1.250000e-01 1.360000e+00 9.819351e-02 9.819351e-02 +-1.125000e+00 1.250000e-01 1.250000e-01 1.520000e+00 9.265768e-02 9.265768e-02 +-8.750000e-01 1.250000e-01 1.250000e-01 1.590000e+00 9.692481e-02 9.692481e-02 +-6.250000e-01 1.250000e-01 1.250000e-01 1.790000e+00 9.247563e-02 9.247563e-02 +-3.750000e-01 1.250000e-01 1.250000e-01 1.830000e+00 9.210192e-02 9.210192e-02 +-1.250000e-01 1.250000e-01 1.250000e-01 1.890000e+00 1.002413e-01 1.002413e-01 +1.250000e-01 1.250000e-01 1.250000e-01 1.860000e+00 9.764557e-02 9.764557e-02 +3.750000e-01 1.250000e-01 1.250000e-01 1.880000e+00 1.011713e-01 1.011713e-01 +6.250000e-01 1.250000e-01 1.250000e-01 1.910000e+00 1.029630e-01 1.029630e-01 +8.750000e-01 1.250000e-01 1.250000e-01 1.920000e+00 1.127581e-01 1.127581e-01 +1.125000e+00 1.250000e-01 1.250000e-01 2.080000e+00 1.283716e-01 1.283716e-01 +1.375000e+00 1.250000e-01 1.250000e-01 1.810000e+00 1.433561e-01 1.433561e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/HERA_2015_I1353667/d03-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.3116, up: 0.3116}, 'sys,cor': {dn: -0.19352, up: 0.19352}}, 1: {stat: {dn: -0.35279999999999995, up: 0.35279999999999995}, 'sys,cor': {dn: -0.46304999999999996, up: 0.46304999999999996}}, 2: {stat: {dn: -0.30135, up: 0.30135}, 'sys,cor': {dn: -0.39605999999999997, up: 0.39605999999999997}}, 3: {stat: {dn: -0.24084000000000003, up: 0.24084000000000003}, 'sys,cor': {dn: -0.34788, up: 0.34788}}, 4: {stat: {dn: -0.15894, up: 0.15894}, 'sys,cor': {dn: -0.3532, up: 0.3532}}, 5: {stat: {dn: -0.11472, up: 0.11472}, 'sys,cor': {dn: -0.24378, up: 0.24378}}, 6: {stat: {dn: -0.05103, up: 0.05103}, 'sys,cor': {dn: -0.06426, up: 0.06426}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d03-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-02 5.000000e-02 5.000000e-02 3.280000e+00 3.668031e-01 3.668031e-01 +1.500000e-01 5.000000e-02 5.000000e-02 7.350000e+00 5.821367e-01 5.821367e-01 +2.600000e-01 6.000000e-02 6.000000e-02 8.610000e+00 4.976699e-01 4.976699e-01 +3.850000e-01 6.500000e-02 6.500000e-02 8.920000e+00 4.231128e-01 4.231128e-01 +5.100000e-01 6.000000e-02 6.000000e-02 8.830000e+00 3.873140e-01 3.873140e-01 +6.850000e-01 1.150000e-01 1.150000e-01 4.780000e+00 2.694241e-01 2.694241e-01 +9.000000e-01 1.000000e-01 1.000000e-01 6.300000e-01 8.205735e-02 8.205735e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/HERA_2015_I1353667/d04-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.018959999999999998, up: 0.018959999999999998}, 'sys,cor': {dn: -0.0237, up: 0.0237}}, 1: {stat: {dn: -0.012728, up: 0.012728}, 'sys,cor': {dn: -0.011248, up: 0.011248}}, 2: {stat: {dn: -0.008055999999999999, up: 0.008055999999999999}, 'sys,cor': {dn: -0.00848, up: 0.00848}}, 3: {stat: {dn: -0.003968, up: 0.003968}, 'sys,cor': {dn: -0.004712, up: 0.004712}}, 4: {stat: {dn: -0.002541, up: 0.002541}, 'sys,cor': {dn: -0.0026135999999999998, up: 0.0026135999999999998}}, 5: {stat: {dn: -0.0014689, up: 0.0014689}, 'sys,cor': {dn: -0.001588, up: 0.001588}}, 6: {stat: {dn: -0.0007216000000000001, up: 0.0007216000000000001}, 'sys,cor': {dn: -0.0007708000000000001, up: 0.0007708000000000001}}, 7: {stat: {dn: -0.0003874, up: 0.0003874}, 'sys,cor': {dn: -0.00029055, up: 0.00029055}}, 8: {stat: {dn: -0.00014975999999999998, up: 0.00014975999999999998}, 'sys,cor': {dn: -0.00011023999999999999, up: 0.00011023999999999999}}, 9: {stat: {dn: -6.7032e-05, up: 6.7032e-05}, 'sys,cor': {dn: -4.41e-05, up: 4.41e-05}}, 10: {stat: {dn: -8.999999999999999e-06, up: 8.999999999999999e-06}, 'sys,cor': {dn: -5.024999999999999e-06, up: 5.024999999999999e-06}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d04-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.500000e+00 1.500000e+00 1.500000e+00 4.740000e-01 3.035081e-02 3.035081e-02 +9.000000e+00 1.000000e+00 1.000000e+00 2.960000e-01 1.698586e-02 1.698586e-02 +1.150000e+01 1.500000e+00 1.500000e+00 2.120000e-01 1.169656e-02 1.169656e-02 +1.600000e+01 3.000000e+00 3.000000e+00 1.240000e-01 6.160192e-03 6.160192e-03 +2.350000e+01 4.500000e+00 4.500000e+00 7.260000e-02 3.645214e-03 3.645214e-03 +3.400000e+01 6.000000e+00 6.000000e+00 3.970000e-02 2.163195e-03 2.163195e-03 +5.000000e+01 1.000000e+01 1.000000e+01 1.640000e-02 1.055859e-03 1.055859e-03 +8.000000e+01 2.000000e+01 2.000000e+01 7.450000e-03 4.842500e-04 4.842500e-04 +1.290000e+02 2.900000e+01 2.900000e+01 2.080000e-03 1.859594e-04 1.859594e-04 +2.045000e+02 4.650000e+01 4.650000e+01 8.820000e-04 8.023777e-05 8.023777e-05 +6.255000e+02 3.745000e+02 3.745000e+02 7.500000e-05 1.030779e-05 1.030779e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/HERA_2015_I1353667/d05-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.7018, up: 0.7018}, 'sys,cor': {dn: -1.1011, up: 1.1011}}, 1: {stat: {dn: -0.7332, up: 0.7332}, 'sys,cor': {dn: -0.8647999999999999, up: 0.8647999999999999}}, 2: {stat: {dn: -0.5780000000000001, up: 0.5780000000000001}, 'sys,cor': {dn: -0.731, up: 0.731}}, 3: {stat: {dn: -0.4958000000000001, up: 0.4958000000000001}, 'sys,cor': {dn: -0.5628000000000001, up: 0.5628000000000001}}, 4: {stat: {dn: -0.38079999999999997, up: 0.38079999999999997}, 'sys,cor': {dn: -0.4144, up: 0.4144}}, 5: {stat: {dn: -0.28305, up: 0.28305}, 'sys,cor': {dn: -0.32130000000000003, up: 0.32130000000000003}}, 6: {stat: {dn: -0.1912, up: 0.1912}, 'sys,cor': {dn: -0.25334, up: 0.25334}}, 7: {stat: {dn: -0.14839999999999998, up: 0.14839999999999998}, 'sys,cor': {dn: -0.1696, up: 0.1696}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d05-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.500000e-02 1.500000e-02 1.500000e-02 1.210000e+01 1.305735e+00 1.305735e+00 +7.000000e-02 2.000000e-02 2.000000e-02 1.880000e+01 1.133782e+00 1.133782e+00 +1.100000e-01 2.000000e-02 2.000000e-02 1.700000e+01 9.319040e-01 9.319040e-01 +1.550000e-01 2.500000e-02 2.500000e-02 1.340000e+01 7.500410e-01 7.500410e-01 +2.200000e-01 4.000000e-02 4.000000e-02 1.120000e+01 5.627930e-01 5.627930e-01 +3.100000e-01 5.000000e-02 5.000000e-02 7.650000e+00 4.281950e-01 4.281950e-01 +4.300000e-01 7.000000e-02 7.000000e-02 4.780000e+00 3.173934e-01 3.173934e-01 +6.000000e-01 1.000000e-01 1.000000e-01 2.650000e+00 2.253591e-01 2.253591e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER3D_V2 /REF/HERA_2015_I1353667/d06-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.6140399999999999, up: 0.6140399999999999}, 'sys,cor': {dn: -0.119, up: 0.119}}, 1: {stat: {dn: -0.6215, up: 0.6215}, 'sys,cor': {dn: -0.14300000000000002, up: 0.14300000000000002}}, 2: {stat: {dn: -0.36, up: 0.36}, 'sys,cor': {dn: -0.078, up: 0.078}}, 3: {stat: {dn: -0.18880500000000003, up: 0.18880500000000003}, 'sys,cor': {dn: -0.023025000000000004, up: 0.023025000000000004}}, 4: {stat: {dn: -0.25086, up: 0.25086}, 'sys,cor': {dn: -0.06216, up: 0.06216}}, 5: {stat: {dn: -0.15642, up: 0.15642}, 'sys,cor': {dn: -0.05346, up: 0.05346}}, 6: {stat: {dn: -0.22018, up: 0.22018}, 'sys,cor': {dn: -0.02943, up: 0.02943}}, 7: {stat: {dn: -0.05066199999999999, up: 0.05066199999999999}, 'sys,cor': {dn: -0.009021999999999999, up: 0.009021999999999999}}, 8: {stat: {dn: -0.13038, up: 0.13038}, 'sys,cor': {dn: -0.04664, up: 0.04664}}, 9: {stat: {dn: -0.11388, up: 0.11388}, 'sys,cor': {dn: -0.05986, up: 0.05986}}, 10: {stat: {dn: -0.07128000000000001, up: 0.07128000000000001}, 'sys,cor': {dn: -0.05676, up: 0.05676}}, 11: {stat: {dn: -0.037877, up: 0.037877}, 'sys,cor': {dn: -0.030147, up: 0.030147}}, 12: {stat: {dn: -0.014055999999999999, up: 0.014055999999999999}, 'sys,cor': {dn: -0.010542000000000001, up: 0.010542000000000001}}, 13: {stat: {dn: -0.0676, up: 0.0676}, 'sys,cor': {dn: -0.034319999999999996, up: 0.034319999999999996}}, 14: {stat: {dn: -0.050688, up: 0.050688}, 'sys,cor': {dn: -0.029952, up: 0.029952}}, 15: {stat: {dn: -0.026173999999999996, up: 0.026173999999999996}, 'sys,cor': {dn: -0.015931999999999998, up: 0.015931999999999998}}, 16: {stat: {dn: -0.018951999999999997, up: 0.018951999999999997}, 'sys,cor': {dn: -0.012771999999999999, up: 0.012771999999999999}}, 17: {stat: {dn: -0.008456, up: 0.008456}, 'sys,cor': {dn: -0.00604, up: 0.00604}}, 18: {stat: {dn: -0.026106, up: 0.026106}, 'sys,cor': {dn: -0.014426999999999999, up: 0.014426999999999999}}, 19: {stat: {dn: -0.024569999999999998, up: 0.024569999999999998}, 'sys,cor': {dn: -0.015497999999999998, up: 0.015497999999999998}}, 20: {stat: {dn: -0.013919999999999998, up: 0.013919999999999998}, 'sys,cor': {dn: -0.009569999999999999, up: 0.009569999999999999}}, 21: {stat: {dn: -0.0093, up: 0.0093}, 'sys,cor': {dn: -0.006324, up: 0.006324}}, 22: {stat: {dn: -0.004290400000000001, up: 0.004290400000000001}, 'sys,cor': {dn: -0.0030448000000000003, up: 0.0030448000000000003}}, 23: {stat: {dn: -0.010226800000000001, up: 0.010226800000000001}, 'sys,cor': {dn: -0.0056662, up: 0.0056662}}, 24: {stat: {dn: -0.007257, up: 0.007257}, 'sys,cor': {dn: -0.004428, up: 0.004428}}, 25: {stat: {dn: -0.0050160000000000005, up: 0.0050160000000000005}, 'sys,cor': {dn: -0.00342, up: 0.00342}}, 26: {stat: {dn: -0.0031906, up: 0.0031906}, 'sys,cor': {dn: -0.002226, up: 0.002226}}, 27: {stat: {dn: -0.0016691999999999998, up: 0.0016691999999999998}, 'sys,cor': {dn: -0.0011876999999999999, up: 0.0011876999999999999}}, 28: {stat: {dn: -0.0020635999999999996, up: 0.0020635999999999996}, 'sys,cor': {dn: -0.0006837599999999999, up: 0.0006837599999999999}}, 29: {stat: {dn: -0.00297, up: 0.00297}, 'sys,cor': {dn: -0.001188, up: 0.001188}}, 30: {stat: {dn: -0.00164, up: 0.00164}, 'sys,cor': {dn: -0.0007585000000000001, up: 0.0007585000000000001}}, 31: {stat: {dn: -0.0010746000000000002, up: 0.0010746000000000002}, 'sys,cor': {dn: -0.0006368000000000001, up: 0.0006368000000000001}}, 32: {stat: {dn: -0.0005409599999999999, up: 0.0005409599999999999}, 'sys,cor': {dn: -0.0003136, up: 0.0003136}}, 33: {stat: {dn: -0.00033784, up: 0.00033784}, 'sys,cor': {dn: -0.00016892, up: 0.00016892}}, 34: {stat: {dn: -0.00024198, up: 0.00024198}, 'sys,cor': {dn: -8.938e-05, up: 8.938e-05}}, 35: {stat: {dn: -0.00018257999999999998, up: 0.00018257999999999998}, 'sys,cor': {dn: -7.876e-05, up: 7.876e-05}}, 36: {stat: {dn: -0.00010764799999999998, up: 0.00010764799999999998}, 'sys,cor': {dn: -4.2687999999999995e-05, up: 4.2687999999999995e-05}}, 37: {stat: {dn: -1.8995000000000004e-05, up: 1.8995000000000004e-05}, 'sys,cor': {dn: -6.157000000000001e-06, up: 6.157000000000001e-06}}, 38: {stat: {dn: -1.4985999999999998e-05, up: 1.4985999999999998e-05}, 'sys,cor': {dn: -5.899999999999999e-06, up: 5.899999999999999e-06}}} + +IsRef: 1 +Path: /REF/HERA_2015_I1353667/d06-x01-y01 +Title: doi:10.17182/hepdata.73328.v1/t6 +Type: Scatter3D +--- +# xval xerr- xerr+ yval yerr- yerr+ zval zerr- zerr+ +2.500000e+00 1.000000e+00 1.000000e+00 5.500000e-02 3.500000e-02 3.500000e-02 4.760000e+00 6.254647e-01 6.254647e-01 +2.500000e+00 1.000000e+00 1.000000e+00 1.250000e-01 3.500000e-02 3.500000e-02 5.500000e+00 6.377392e-01 6.377392e-01 +2.500000e+00 1.000000e+00 1.000000e+00 2.400000e-01 8.000000e-02 8.000000e-02 3.000000e+00 3.683531e-01 3.683531e-01 +2.500000e+00 1.000000e+00 1.000000e+00 5.100000e-01 1.900000e-01 1.900000e-01 9.210000e-01 1.902038e-01 1.902038e-01 +4.500000e+00 1.000000e+00 1.000000e+00 5.500000e-02 3.500000e-02 3.500000e-02 2.220000e+00 2.584465e-01 2.584465e-01 +4.500000e+00 1.000000e+00 1.000000e+00 1.250000e-01 3.500000e-02 3.500000e-02 1.980000e+00 1.653033e-01 1.653033e-01 +4.500000e+00 1.000000e+00 1.000000e+00 2.400000e-01 8.000000e-02 8.000000e-02 1.090000e+00 2.221381e-01 2.221381e-01 +4.500000e+00 1.000000e+00 1.000000e+00 5.100000e-01 1.900000e-01 1.900000e-01 3.470000e-01 5.145906e-02 5.145906e-02 +7.250000e+00 1.750000e+00 1.750000e+00 3.500000e-02 1.500000e-02 1.500000e-02 1.060000e+00 1.384711e-01 1.384711e-01 +7.250000e+00 1.750000e+00 1.750000e+00 7.000000e-02 2.000000e-02 2.000000e-02 1.460000e+00 1.286541e-01 1.286541e-01 +7.250000e+00 1.750000e+00 1.750000e+00 1.250000e-01 3.500000e-02 3.500000e-02 1.320000e+00 9.111825e-02 9.111825e-02 +7.250000e+00 1.750000e+00 1.750000e+00 2.400000e-01 8.000000e-02 8.000000e-02 7.730000e-01 4.840980e-02 4.840980e-02 +7.250000e+00 1.750000e+00 1.750000e+00 5.100000e-01 1.900000e-01 1.900000e-01 2.510000e-01 1.757000e-02 1.757000e-02 +1.150000e+01 2.500000e+00 2.500000e+00 3.500000e-02 1.500000e-02 1.500000e-02 5.200000e-01 7.581308e-02 7.581308e-02 +1.150000e+01 2.500000e+00 2.500000e+00 7.000000e-02 2.000000e-02 2.000000e-02 7.680000e-01 5.887610e-02 5.887610e-02 +1.150000e+01 2.500000e+00 2.500000e+00 1.250000e-01 3.500000e-02 3.500000e-02 5.690000e-01 3.064159e-02 3.064159e-02 +1.150000e+01 2.500000e+00 2.500000e+00 2.400000e-01 8.000000e-02 8.000000e-02 4.120000e-01 2.285393e-02 2.285393e-02 +1.150000e+01 2.500000e+00 2.500000e+00 5.100000e-01 1.900000e-01 1.900000e-01 1.510000e-01 1.039161e-02 1.039161e-02 +1.850000e+01 4.500000e+00 4.500000e+00 3.500000e-02 1.500000e-02 1.500000e-02 2.290000e-01 2.982720e-02 2.982720e-02 +1.850000e+01 4.500000e+00 4.500000e+00 7.000000e-02 2.000000e-02 2.000000e-02 3.780000e-01 2.904949e-02 2.904949e-02 +1.850000e+01 4.500000e+00 4.500000e+00 1.250000e-01 3.500000e-02 3.500000e-02 2.900000e-01 1.689234e-02 1.689234e-02 +1.850000e+01 4.500000e+00 4.500000e+00 2.400000e-01 8.000000e-02 8.000000e-02 1.860000e-01 1.124647e-02 1.124647e-02 +1.850000e+01 4.500000e+00 4.500000e+00 5.100000e-01 1.900000e-01 1.900000e-01 6.920000e-02 5.261021e-03 5.261021e-03 +3.400000e+01 1.100000e+01 1.100000e+01 3.500000e-02 1.500000e-02 1.500000e-02 6.910000e-02 1.169159e-02 1.169159e-02 +3.400000e+01 1.100000e+01 1.100000e+01 7.000000e-02 2.000000e-02 2.000000e-02 1.230000e-01 8.501249e-03 8.501249e-03 +3.400000e+01 1.100000e+01 1.100000e+01 1.250000e-01 3.500000e-02 3.500000e-02 1.140000e-01 6.070968e-03 6.070968e-03 +3.400000e+01 1.100000e+01 1.100000e+01 2.400000e-01 8.000000e-02 8.000000e-02 7.420000e-02 3.890373e-03 3.890373e-03 +3.400000e+01 1.100000e+01 1.100000e+01 5.100000e-01 1.900000e-01 1.900000e-01 3.210000e-02 2.048624e-03 2.048624e-03 +7.250000e+01 2.750000e+01 2.750000e+01 3.500000e-02 1.500000e-02 1.500000e-02 6.160000e-03 2.173930e-03 2.173930e-03 +7.250000e+01 2.750000e+01 2.750000e+01 7.000000e-02 2.000000e-02 2.000000e-02 2.700000e-02 3.198788e-03 3.198788e-03 +7.250000e+01 2.750000e+01 2.750000e+01 1.250000e-01 3.500000e-02 3.500000e-02 2.050000e-02 1.806910e-03 1.806910e-03 +7.250000e+01 2.750000e+01 2.750000e+01 2.400000e-01 8.000000e-02 8.000000e-02 1.990000e-02 1.249111e-03 1.249111e-03 +7.250000e+01 2.750000e+01 2.750000e+01 5.100000e-01 1.900000e-01 1.900000e-01 7.840000e-03 6.252861e-04 6.252861e-04 +1.290000e+02 2.900000e+01 2.900000e+01 1.700000e-01 1.500000e-01 1.500000e-01 4.120000e-03 3.777166e-04 3.777166e-04 +1.290000e+02 2.900000e+01 2.900000e+01 5.100000e-01 1.900000e-01 1.900000e-01 2.180000e-03 2.579595e-04 2.579595e-04 +2.045000e+02 4.650000e+01 4.650000e+01 1.600000e-01 1.400000e-01 1.400000e-01 1.790000e-03 1.988431e-04 1.988431e-04 +2.045000e+02 4.650000e+01 4.650000e+01 5.000000e-01 2.000000e-01 2.000000e-01 9.280000e-04 1.158031e-04 1.158031e-04 +6.255000e+02 3.745000e+02 3.745000e+02 1.400000e-01 1.200000e-01 1.200000e-01 1.310000e-04 1.996794e-05 1.996794e-05 +6.255000e+02 3.745000e+02 3.745000e+02 4.800000e-01 2.200000e-01 2.200000e-01 1.180000e-04 1.610560e-05 1.610560e-05 +END YODA_SCATTER3D_V2