diff --git a/analyses/pluginLEP/OPAL_2002_S5361494.cc b/analyses/pluginLEP/OPAL_2002_S5361494.cc
--- a/analyses/pluginLEP/OPAL_2002_S5361494.cc
+++ b/analyses/pluginLEP/OPAL_2002_S5361494.cc
@@ -1,139 +1,158 @@
 // -*- C++ -*-
 #include "Rivet/Analysis.hh"
 #include "Rivet/Projections/Beam.hh"
 #include "Rivet/Projections/FinalState.hh"
 #include "Rivet/Projections/ChargedFinalState.hh"
 #include "Rivet/Projections/Sphericity.hh"
 #include "Rivet/Projections/Thrust.hh"
 #include "Rivet/Projections/FastJets.hh"
 #include "Rivet/Projections/ParisiTensor.hh"
 #include "Rivet/Projections/Hemispheres.hh"
 #include "Rivet/Projections/InitialQuarks.hh"
 #include <cmath>
 
 namespace Rivet {
 
 
   /// @brief OPAL multiplicities at various energies
   /// @author Peter Richardson
   class OPAL_2002_S5361494 : public Analysis {
   public:
 
     /// Constructor
     OPAL_2002_S5361494()
       : Analysis("OPAL_2002_S5361494"),
-        _weightedTotalChargedPartNumLight(0.),
-        _weightedTotalChargedPartNumCharm(0.),
-        _weightedTotalChargedPartNumBottom(0.),
         _weightLight(0.),_weightCharm(0.),_weightBottom(0.)
     {}
 
     /// @name Analysis methods
     //@{
 
 
     void init() {
       // Projections
       declare(Beam(), "Beams");
       declare(ChargedFinalState(), "CFS");
       declare(InitialQuarks(), "IQF");
-
+      _cLight  = bookCounter("/TMP/CLIGHT" );
+      _cCharm  = bookCounter("/TMP/CCHARM" );
+      _cBottom = bookCounter("/TMP/CBOTTOM");
     }
 
 
     void analyze(const Event& event) {
       const double weight = event.weight();
       // Even if we only generate hadronic events, we still need a cut on numCharged >= 2.
       const FinalState& cfs = apply<FinalState>(event, "CFS");
       if (cfs.size() < 2) vetoEvent;
 
 
       int flavour = 0;
       const InitialQuarks& iqf = apply<InitialQuarks>(event, "IQF");
 
       // If we only have two quarks (qqbar), just take the flavour.
       // If we have more than two quarks, look for the highest energetic q-qbar pair.
       if (iqf.particles().size() == 2) {
         flavour = iqf.particles().front().abspid();
       }
       else {
         map<int, double> quarkmap;
         foreach (const Particle& p, iqf.particles()) {
           if (quarkmap[p.pid()] < p.E()) {
             quarkmap[p.pid()] = p.E();
           }
         }
         double maxenergy = 0.;
         for (int i = 1; i <= 5; ++i) {
           if (quarkmap[i]+quarkmap[-i] > maxenergy) {
             flavour = i;
           }
         }
       }
       const size_t numParticles = cfs.particles().size();
       switch (flavour) {
       case 1: case 2: case 3:
-        _weightLight  += weight;
-        _weightedTotalChargedPartNumLight  += numParticles * weight;
+	_weightLight  += weight;
+        _cLight->fill(  numParticles * weight );
         break;
       case 4:
         _weightCharm  += weight;
-        _weightedTotalChargedPartNumCharm  += numParticles * weight;
+	_cCharm->fill(  numParticles * weight );
         break;
       case 5:
         _weightBottom += weight;
-        _weightedTotalChargedPartNumBottom += numParticles * weight;
+        _cBottom->fill( numParticles * weight );
         break;
       }
 
     }
 
 
     void finalize() {
-      Histo1D temphisto(refData(1, 1, 1));
-
-      const double avgNumPartsBottom = _weightBottom != 0. ? _weightedTotalChargedPartNumBottom / _weightBottom : 0.;
-      const double avgNumPartsCharm  = _weightCharm  != 0. ? _weightedTotalChargedPartNumCharm  / _weightCharm  : 0.;
-      const double avgNumPartsLight  =  _weightLight != 0. ? _weightedTotalChargedPartNumLight  / _weightLight  : 0.;
-      Scatter2DPtr h_bottom = bookScatter2D(1, 1, 1);
-      Scatter2DPtr h_charm  = bookScatter2D(1, 1, 2);
-      Scatter2DPtr h_light  = bookScatter2D(1, 1, 3);
-      Scatter2DPtr h_diff   = bookScatter2D(1, 1, 4);  // bottom minus light
-      for (size_t b = 0; b < temphisto.numBins(); b++) {
-        const double x  = temphisto.bin(b).xMid();
-        const double ex = temphisto.bin(b).xWidth()/2.;
-        if (inRange(sqrtS()/GeV, x-ex, x+ex)) {
-          // @TODO: Fix y-error:
-          h_bottom->addPoint(x, avgNumPartsBottom, ex, 0.);
-          h_charm->addPoint(x, avgNumPartsCharm, ex, 0.);
-          h_light->addPoint(x, avgNumPartsLight, ex, 0.);
-          h_diff->addPoint(x, avgNumPartsBottom-avgNumPartsLight, ex, 0.);
-        }
+      // calculate the averages and diffs
+      if(_weightLight!=0)  scale( _cLight, 1./_weightLight);
+      if(_weightCharm !=0) scale( _cCharm, 1./_weightCharm);
+      if(_weightBottom!=0) scale(_cBottom,1./_weightBottom);
+      Counter _cDiff = *_cBottom - *_cLight;
+      // fill the histograms
+      for(unsigned int ix=1;ix<5;++ix) {
+	double val(0.), err(0.0);
+	if(ix==1) {
+	  val = _cBottom->val();
+	  err = _cBottom->err();
+	}
+	else if(ix==2) {
+	  val = _cCharm->val();
+	  err = _cCharm->err();
+	}
+	else if(ix==3) {
+	  val = _cLight->val();
+	  err = _cLight->err();
+	}
+	else if(ix==4) {
+	  val = _cDiff.val();
+	  err = _cDiff.err();
+	}
+	Scatter2D temphisto(refData(1, 1, ix));
+	Scatter2DPtr  mult = bookScatter2D(1, 1, ix);
+	for (size_t b = 0; b < temphisto.numPoints(); b++) {
+	  const double x  = temphisto.point(b).x();
+	  pair<double,double> ex = temphisto.point(b).xErrs();
+	  pair<double,double> ex2 = ex;
+	  if(ex2.first ==0.) ex2. first=0.0001;
+	  if(ex2.second==0.) ex2.second=0.0001;
+	  if (inRange(sqrtS()/GeV, x-ex2.first, x+ex2.second)) {
+	    mult->addPoint(x, val, ex, make_pair(err,err));
+	  }
+	  else {
+	    mult->addPoint(x, 0., ex, make_pair(0.,.0));
+	  }
+	}
       }
     }
 
     //@}
 
 
   private:
 
     /// @name Multiplicities
     //@{
-    double _weightedTotalChargedPartNumLight;
-    double _weightedTotalChargedPartNumCharm;
-    double _weightedTotalChargedPartNumBottom;
+    CounterPtr _cLight;
+    CounterPtr _cCharm;
+    CounterPtr _cBottom;
     //@}
 
     /// @name Weights
     //@{
     double _weightLight;
     double _weightCharm;
     double _weightBottom;
     //@}
   };
 
 
   // The hook for the plugin system
   DECLARE_RIVET_PLUGIN(OPAL_2002_S5361494);
 
 }
diff --git a/analyses/pluginLEP/OPAL_2002_S5361494.info b/analyses/pluginLEP/OPAL_2002_S5361494.info
--- a/analyses/pluginLEP/OPAL_2002_S5361494.info
+++ b/analyses/pluginLEP/OPAL_2002_S5361494.info
@@ -1,54 +1,54 @@
 Name: OPAL_2002_S5361494
 Year: 2002
 Summary: Charged particle multiplicities in heavy and light quark initiated events above the $Z^0$ peak 
 Experiment: OPAL
 Collider: LEP 2
 SpiresID: 5361494
 InspireID: 601225
 Status: VALIDATED
 Authors:
  - Peter Richardson <Peter.Richardson@durham.ac.uk>
 References:
  - Phys.Lett. B550 (2002) 33-46
  - hep-ex/0211007
 RunInfo:
-  Hadronic Z decay events generated on the Z pole ($\sqrt{s} = 91.2$ GeV)
+  Hadronic Z decay events generated above the Z pole
 NumEvents: 1000000
 Beams: [e+, e-]
 Energies: [130,136,161,172,183,189,192,196,200,202,206]
 PtCuts: [0]
 Description: Measurements of the mean charged multiplicities separately for $b\bar b$,
   $c\bar c$ and light quark ($uds$) initiated events in $e^+e^-$ interactions at energies
   above the $Z^0$ mass. The data is from the LEP running periods between 1995 and 2000.
 BibKey: Abbiendi:2002vn
 BibTeX: '@article{Abbiendi:2002vn,
       author         = "Abbiendi, G. and others",
       title          = "{Charged particle multiplicities in heavy and light quark
                         initiated events above the Z0 peak}",
       collaboration  = "OPAL Collaboration",
       journal        = "Phys.Lett.",
       volume         = "B550",
       pages          = "33-46",
       doi            = "10.1016/S0370-2693(02)02935-0",
       year           = "2002",
       note           = "18 pages, 5 figures Report-no: CERN-EP-2002-0079",
       eprint         = "hep-ex/0211007",
       archivePrefix  = "arXiv",
       primaryClass   = "hep-ex",
       reportNumber   = "CERN-EP-2002-079",
       SLACcitation   = "%%CITATION = HEP-EX/0211007;%%",
 }'
 
 Validation:
  - $A LEP-130
  - $A-2 LEP-136
  - $A-3 LEP-161
  - $A-4 LEP-172
  - $A-5 LEP-183
  - $A-6 LEP-189
  - $A-7 LEP-192
  - $A-8 LEP-196
  - $A-9 LEP-200
  - $A-10 LEP-202
  - $A-11 LEP-206
 
diff --git a/analyses/pluginLEP/OPAL_2002_S5361494.plot b/analyses/pluginLEP/OPAL_2002_S5361494.plot
--- a/analyses/pluginLEP/OPAL_2002_S5361494.plot
+++ b/analyses/pluginLEP/OPAL_2002_S5361494.plot
@@ -1,36 +1,48 @@
 # BEGIN PLOT /OPAL_2002_S5361494/d01-x01-y01
 Title=Charged multiplicity as a function of energy in $b$ events
 XLabel=$E_\mathrm{CMS}/GeV$
 YLabel=$\langle n\rangle_{b\bar b}$
 LegendXPos=0.20
 LegendYPos=0.85
 FullRange=1
+ConnectGaps=1
+XMin=128
+XMax=210
 LogY=0
 # END PLOT
 # BEGIN PLOT /OPAL_2002_S5361494/d01-x01-y02
 Title=Charged multiplicity as a function of energy in $c$ events
 XLabel=$E_\mathrm{CMS}/GeV$
 YLabel=$\langle n\rangle_{c\bar c}$
 LegendXPos=0.20
 LegendYPos=0.85
 FullRange=1
 LogY=0
+ConnectGaps=1
+XMin=128
+XMax=210
 # END PLOT
 # BEGIN PLOT /OPAL_2002_S5361494/d01-x01-y03
 Title=Charged multiplicity as a function of energy in $uds$ events
 XLabel=$E_\mathrm{CMS}/GeV$
 YLabel=$\langle n\rangle_{l\bar l}$
 LegendXPos=0.20
 LegendYPos=0.85
 FullRange=1
 LogY=0
+ConnectGaps=1
+XMin=128
+XMax=210
 # END PLOT
 # BEGIN PLOT /OPAL_2002_S5361494/d01-x01-y04
 Title=Difference in Charged multiplicity as a function of energy between $b$ and $uds$ events
 XLabel=$E_\mathrm{CMS}/GeV$
 YLabel=$\delta_{bl}$
 LegendXPos=0.20
 LegendYPos=0.85
 FullRange=1
 LogY=0
+ConnectGaps=1
+XMin=128
+XMax=210
 # END PLOT
diff --git a/analyses/pluginLEP/OPAL_2002_S5361494.yoda b/analyses/pluginLEP/OPAL_2002_S5361494.yoda
--- a/analyses/pluginLEP/OPAL_2002_S5361494.yoda
+++ b/analyses/pluginLEP/OPAL_2002_S5361494.yoda
@@ -1,79 +1,88 @@
 BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y01
+Variations: [""]
+ErrorBreakdown: {0: {stat: {dn: -1.2, up: 1.2}, sys: {dn: -0.4, up: 0.4}}, 1: {stat: {dn: -1.6, up: 1.6}, sys: {dn: -0.5, up: 0.5}}, 2: {stat: {dn: -1.6, up: 1.6}, sys: {dn: -0.5, up: 0.5}}, 3: {stat: {dn: -2.1, up: 2.1}, sys: {dn: -0.5, up: 0.5}}, 4: {stat: {dn: -1.1, up: 1.1}, sys: {dn: -0.5, up: 0.5}}, 5: {stat: {dn: -0.6, up: 0.6}, sys: {dn: -0.49, up: 0.49}}, 6: {stat: {dn: -1.2, up: 1.2}, sys: {dn: -0.7, up: 0.7}}, 7: {stat: {dn: -1.4, up: 1.4}, sys: {dn: -0.6, up: 0.6}}, 8: {stat: {dn: -1.1, up: 1.1}, sys: {dn: -0.6, up: 0.6}}, 9: {stat: {dn: -1.6, up: 1.6}, sys: {dn: -0.6, up: 0.6}}, 10: {stat: {dn: -0.85, up: 0.85}, sys: {dn: -0.63, up: 0.63}}}
+
 IsRef: 1
 Path: /REF/OPAL_2002_S5361494/d01-x01-y01
-Title: ~
+Title: doi:10.17182/hepdata.49792.v1/t1
 Type: Scatter2D
 ---
-# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+
-1.300000e+02	3.000000e+00	3.000000e+00	2.590000e+01	1.264911e+00	1.264911e+00
-1.360000e+02	3.000000e+00	1.250000e+01	2.570000e+01	1.676305e+00	1.676305e+00
-1.610000e+02	1.250000e+01	5.500000e+00	2.410000e+01	1.676305e+00	1.676305e+00
-1.720000e+02	5.500000e+00	5.500000e+00	2.880000e+01	2.158703e+00	2.158703e+00
-1.830000e+02	5.500000e+00	3.000000e+00	2.830000e+01	1.208305e+00	1.208305e+00
-1.890000e+02	3.000000e+00	1.500000e+00	2.889000e+01	7.746612e-01	7.746612e-01
-1.920000e+02	1.500000e+00	2.000000e+00	2.850000e+01	1.389244e+00	1.389244e+00
-1.960000e+02	2.000000e+00	2.000000e+00	3.130000e+01	1.523155e+00	1.523155e+00
-2.000000e+02	2.000000e+00	1.000000e+00	3.030000e+01	1.252996e+00	1.252996e+00
-2.020000e+02	1.000000e+00	2.000000e+00	2.990000e+01	1.708801e+00	1.708801e+00
-2.060000e+02	2.000000e+00	2.000000e+00	3.008000e+01	1.058017e+00	1.058017e+00
+# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+	
+1.300000e+02	0.000000e+00	0.000000e+00	2.590000e+01	1.264911e+00	1.264911e+00
+1.360000e+02	0.000000e+00	0.000000e+00	2.570000e+01	1.676305e+00	1.676305e+00
+1.610000e+02	0.000000e+00	0.000000e+00	2.410000e+01	1.676305e+00	1.676305e+00
+1.720000e+02	0.000000e+00	0.000000e+00	2.880000e+01	2.158703e+00	2.158703e+00
+1.830000e+02	0.000000e+00	0.000000e+00	2.830000e+01	1.208305e+00	1.208305e+00
+1.890000e+02	0.000000e+00	0.000000e+00	2.889000e+01	7.746612e-01	7.746612e-01
+1.920000e+02	0.000000e+00	0.000000e+00	2.850000e+01	1.389244e+00	1.389244e+00
+1.960000e+02	0.000000e+00	0.000000e+00	3.130000e+01	1.523155e+00	1.523155e+00
+2.000000e+02	0.000000e+00	0.000000e+00	3.030000e+01	1.252996e+00	1.252996e+00
+2.020000e+02	0.000000e+00	0.000000e+00	2.990000e+01	1.708801e+00	1.708801e+00
+2.060000e+02	0.000000e+00	0.000000e+00	3.008000e+01	1.058017e+00	1.058017e+00
 END YODA_SCATTER2D_V2
+BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y02
+Variations: [""]
+ErrorBreakdown: {0: {stat: {dn: -4.5, up: 4.5}, sys: {dn: -1.7, up: 1.7}}, 1: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -2.1, up: 2.1}}, 2: {stat: {dn: -5.0, up: 5.0}, sys: {dn: -2.0, up: 2.0}}, 3: {stat: {dn: -5.5, up: 5.5}, sys: {dn: -1.9, up: 1.9}}, 4: {stat: {dn: -2.8, up: 2.8}, sys: {dn: -2.0, up: 2.0}}, 5: {stat: {dn: -1.8, up: 1.8}, sys: {dn: -1.9, up: 1.9}}, 6: {stat: {dn: -4.4, up: 4.4}, sys: {dn: -2.1, up: 2.1}}, 7: {stat: {dn: -3.3, up: 3.3}, sys: {dn: -1.9, up: 1.9}}, 8: {stat: {dn: -3.2, up: 3.2}, sys: {dn: -2.9, up: 2.9}}, 9: {stat: {dn: -4.7, up: 4.7}, sys: {dn: -2.3, up: 2.3}}, 10: {stat: {dn: -2.2, up: 2.2}, sys: {dn: -2.0, up: 2.0}}}
 
-BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y02
 IsRef: 1
 Path: /REF/OPAL_2002_S5361494/d01-x01-y02
-Title: ~
+Title: doi:10.17182/hepdata.49792.v1/t1
 Type: Scatter2D
 ---
-# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+
-1.300000e+02	3.000000e+00	3.000000e+00	3.150000e+01	4.810405e+00	4.810405e+00
-1.360000e+02	3.000000e+00	1.250000e+01	2.620000e+01	4.517743e+00	4.517743e+00
-1.610000e+02	1.250000e+01	5.500000e+00	3.650000e+01	5.385165e+00	5.385165e+00
-1.720000e+02	5.500000e+00	5.500000e+00	2.170000e+01	5.818935e+00	5.818935e+00
-1.830000e+02	5.500000e+00	3.000000e+00	2.580000e+01	3.440930e+00	3.440930e+00
-1.890000e+02	3.000000e+00	1.500000e+00	2.980000e+01	2.617250e+00	2.617250e+00
-1.920000e+02	1.500000e+00	2.000000e+00	3.310000e+01	4.875449e+00	4.875449e+00
-1.960000e+02	2.000000e+00	2.000000e+00	2.360000e+01	3.807887e+00	3.807887e+00
-2.000000e+02	2.000000e+00	1.000000e+00	3.100000e+01	4.318565e+00	4.318565e+00
-2.020000e+02	1.000000e+00	2.000000e+00	3.420000e+01	5.232590e+00	5.232590e+00
-2.060000e+02	2.000000e+00	2.000000e+00	3.040000e+01	2.973214e+00	2.973214e+00
+# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+	
+1.300000e+02	0.000000e+00	0.000000e+00	3.150000e+01	4.810405e+00	4.810405e+00
+1.360000e+02	0.000000e+00	0.000000e+00	2.620000e+01	4.517743e+00	4.517743e+00
+1.610000e+02	0.000000e+00	0.000000e+00	3.650000e+01	5.385165e+00	5.385165e+00
+1.720000e+02	0.000000e+00	0.000000e+00	2.170000e+01	5.818935e+00	5.818935e+00
+1.830000e+02	0.000000e+00	0.000000e+00	2.580000e+01	3.440930e+00	3.440930e+00
+1.890000e+02	0.000000e+00	0.000000e+00	2.980000e+01	2.617250e+00	2.617250e+00
+1.920000e+02	0.000000e+00	0.000000e+00	3.310000e+01	4.875449e+00	4.875449e+00
+1.960000e+02	0.000000e+00	0.000000e+00	2.360000e+01	3.807887e+00	3.807887e+00
+2.000000e+02	0.000000e+00	0.000000e+00	3.100000e+01	4.318565e+00	4.318565e+00
+2.020000e+02	0.000000e+00	0.000000e+00	3.420000e+01	5.232590e+00	5.232590e+00
+2.060000e+02	0.000000e+00	0.000000e+00	3.040000e+01	2.973214e+00	2.973214e+00
 END YODA_SCATTER2D_V2
+BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y03
+Variations: [""]
+ErrorBreakdown: {0: {stat: {dn: -1.4, up: 1.4}, sys: {dn: -0.2, up: 0.2}}, 1: {stat: {dn: -1.4, up: 1.4}, sys: {dn: -0.8, up: 0.8}}, 2: {stat: {dn: -1.9, up: 1.9}, sys: {dn: -0.9, up: 0.9}}, 3: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -0.8, up: 0.8}}, 4: {stat: {dn: -1.2, up: 1.2}, sys: {dn: -1.0, up: 1.0}}, 5: {stat: {dn: -0.72, up: 0.72}, sys: {dn: -0.76, up: 0.76}}, 6: {stat: {dn: -1.7, up: 1.7}, sys: {dn: -0.9, up: 0.9}}, 7: {stat: {dn: -1.3, up: 1.3}, sys: {dn: -0.9, up: 0.9}}, 8: {stat: {dn: -1.3, up: 1.3}, sys: {dn: -0.8, up: 0.8}}, 9: {stat: {dn: -1.9, up: 1.9}, sys: {dn: -0.6, up: 0.6}}, 10: {stat: {dn: -0.83, up: 0.83}, sys: {dn: -1.1, up: 1.1}}}
 
-BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y03
 IsRef: 1
 Path: /REF/OPAL_2002_S5361494/d01-x01-y03
-Title: ~
+Title: doi:10.17182/hepdata.49792.v1/t1
 Type: Scatter2D
 ---
-# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+
-1.300000e+02	3.000000e+00	3.000000e+00	2.100000e+01	1.414214e+00	1.414214e+00
-1.360000e+02	3.000000e+00	1.250000e+01	2.300000e+01	1.612452e+00	1.612452e+00
-1.610000e+02	1.250000e+01	5.500000e+00	2.110000e+01	2.102380e+00	2.102380e+00
-1.720000e+02	5.500000e+00	5.500000e+00	2.680000e+01	2.154066e+00	2.154066e+00
-1.830000e+02	5.500000e+00	3.000000e+00	2.680000e+01	1.562050e+00	1.562050e+00
-1.890000e+02	3.000000e+00	1.500000e+00	2.541000e+01	1.046900e+00	1.046900e+00
-1.920000e+02	1.500000e+00	2.000000e+00	2.440000e+01	1.923538e+00	1.923538e+00
-1.960000e+02	2.000000e+00	2.000000e+00	2.860000e+01	1.581139e+00	1.581139e+00
-2.000000e+02	2.000000e+00	1.000000e+00	2.560000e+01	1.526434e+00	1.526434e+00
-2.020000e+02	1.000000e+00	2.000000e+00	2.550000e+01	1.992486e+00	1.992486e+00
-2.060000e+02	2.000000e+00	2.000000e+00	2.653000e+01	1.378006e+00	1.378006e+00
+# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+	
+1.300000e+02	0.000000e+00	0.000000e+00	2.100000e+01	1.414214e+00	1.414214e+00
+1.360000e+02	0.000000e+00	0.000000e+00	2.300000e+01	1.612452e+00	1.612452e+00
+1.610000e+02	0.000000e+00	0.000000e+00	2.110000e+01	2.102380e+00	2.102380e+00
+1.720000e+02	0.000000e+00	0.000000e+00	2.680000e+01	2.154066e+00	2.154066e+00
+1.830000e+02	0.000000e+00	0.000000e+00	2.680000e+01	1.562050e+00	1.562050e+00
+1.890000e+02	0.000000e+00	0.000000e+00	2.541000e+01	1.046900e+00	1.046900e+00
+1.920000e+02	0.000000e+00	0.000000e+00	2.440000e+01	1.923538e+00	1.923538e+00
+1.960000e+02	0.000000e+00	0.000000e+00	2.860000e+01	1.581139e+00	1.581139e+00
+2.000000e+02	0.000000e+00	0.000000e+00	2.560000e+01	1.526434e+00	1.526434e+00
+2.020000e+02	0.000000e+00	0.000000e+00	2.550000e+01	1.992486e+00	1.992486e+00
+2.060000e+02	0.000000e+00	0.000000e+00	2.653000e+01	1.378006e+00	1.378006e+00
 END YODA_SCATTER2D_V2
+BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y04
+Variations: [""]
+ErrorBreakdown: {0: {stat: {dn: -1.5, up: 1.5}, sys: {dn: -0.4, up: 0.4}}, 1: {stat: {dn: -1.8, up: 1.8}, sys: {dn: -1.0, up: 1.0}}, 2: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -1.1, up: 1.1}}, 3: {stat: {dn: -2.3, up: 2.3}, sys: {dn: -1.0, up: 1.0}}, 4: {stat: {dn: -1.3, up: 1.3}, sys: {dn: -1.0, up: 1.0}}, 5: {stat: {dn: -0.77, up: 0.77}, sys: {dn: -0.98, up: 0.98}}, 6: {stat: {dn: -1.7, up: 1.7}, sys: {dn: -1.1, up: 1.1}}, 7: {stat: {dn: -1.5, up: 1.5}, sys: {dn: -0.9, up: 0.9}}, 8: {stat: {dn: -1.3, up: 1.3}, sys: {dn: -1.3, up: 1.3}}, 9: {stat: {dn: -1.9, up: 1.9}, sys: {dn: -0.5, up: 0.5}}, 10: {stat: {dn: -0.92, up: 0.92}, sys: {dn: -0.84, up: 0.84}}}
 
-BEGIN YODA_SCATTER2D_V2 /REF/OPAL_2002_S5361494/d01-x01-y04
 IsRef: 1
 Path: /REF/OPAL_2002_S5361494/d01-x01-y04
-Title: ~
+Title: doi:10.17182/hepdata.49792.v1/t1
 Type: Scatter2D
 ---
-# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+
-1.300000e+02	3.000000e+00	3.000000e+00	4.900000e+00	1.552417e+00	1.552417e+00
-1.360000e+02	3.000000e+00	1.250000e+01	2.800000e+00	2.059126e+00	2.059126e+00
-1.610000e+02	1.250000e+01	5.500000e+00	2.900000e+00	2.282542e+00	2.282542e+00
-1.720000e+02	5.500000e+00	5.500000e+00	2.100000e+00	2.507987e+00	2.507987e+00
-1.830000e+02	5.500000e+00	3.000000e+00	1.500000e+00	1.640122e+00	1.640122e+00
-1.890000e+02	3.000000e+00	1.500000e+00	3.480000e+00	1.246315e+00	1.246315e+00
-1.920000e+02	1.500000e+00	2.000000e+00	4.100000e+00	2.024846e+00	2.024846e+00
-1.960000e+02	2.000000e+00	2.000000e+00	2.700000e+00	1.749286e+00	1.749286e+00
-2.000000e+02	2.000000e+00	1.000000e+00	4.700000e+00	1.838478e+00	1.838478e+00
-2.020000e+02	1.000000e+00	2.000000e+00	4.400000e+00	1.964688e+00	1.964688e+00
-2.060000e+02	2.000000e+00	2.000000e+00	3.550000e+00	1.245793e+00	1.245793e+00
+# xval	 xerr-	 xerr+	 yval	 yerr-	 yerr+	
+1.300000e+02	0.000000e+00	0.000000e+00	4.900000e+00	1.552417e+00	1.552417e+00
+1.360000e+02	0.000000e+00	0.000000e+00	2.800000e+00	2.059126e+00	2.059126e+00
+1.610000e+02	0.000000e+00	0.000000e+00	2.900000e+00	2.282542e+00	2.282542e+00
+1.720000e+02	0.000000e+00	0.000000e+00	2.100000e+00	2.507987e+00	2.507987e+00
+1.830000e+02	0.000000e+00	0.000000e+00	1.500000e+00	1.640122e+00	1.640122e+00
+1.890000e+02	0.000000e+00	0.000000e+00	3.480000e+00	1.246315e+00	1.246315e+00
+1.920000e+02	0.000000e+00	0.000000e+00	4.100000e+00	2.024846e+00	2.024846e+00
+1.960000e+02	0.000000e+00	0.000000e+00	2.700000e+00	1.749286e+00	1.749286e+00
+2.000000e+02	0.000000e+00	0.000000e+00	4.700000e+00	1.838478e+00	1.838478e+00
+2.020000e+02	0.000000e+00	0.000000e+00	4.400000e+00	1.964688e+00	1.964688e+00
+2.060000e+02	0.000000e+00	0.000000e+00	3.550000e+00	1.245793e+00	1.245793e+00
 END YODA_SCATTER2D_V2