diff --git a/analyses/pluginBABAR/BABAR_2005_S6181155.cc b/analyses/pluginBABAR/BABAR_2005_S6181155.cc --- a/analyses/pluginBABAR/BABAR_2005_S6181155.cc +++ b/analyses/pluginBABAR/BABAR_2005_S6181155.cc @@ -1,145 +1,128 @@ // -*- C++ -*- #include "Rivet/Analysis.hh" #include "Rivet/Projections/Beam.hh" #include "Rivet/Projections/UnstableParticles.hh" namespace Rivet { /// @brief BABAR Xi_c baryons from fragmentation /// @author Peter Richardson class BABAR_2005_S6181155 : public Analysis { public: BABAR_2005_S6181155() : Analysis("BABAR_2005_S6181155") { } void init() { declare(Beam(), "Beams"); declare(UnstableParticles(), "UFS"); _histOnResonanceA = bookHisto1D(1,1,1); _histOnResonanceB = bookHisto1D(2,1,1); _histOffResonance = bookHisto1D(2,1,2); _sigma = bookHisto1D(3,1,1); - _histOnResonanceA_norm = bookHisto1D(4,1,1); - _histOnResonanceB_norm = bookHisto1D(5,1,1); - _histOffResonance_norm = bookHisto1D(5,1,2); - } void analyze(const Event& e) { const double weight = e.weight(); // Loop through unstable FS particles and look for charmed mesons/baryons const UnstableParticles& ufs = apply(e, "UFS"); const Beam beamproj = apply(e, "Beams"); const ParticlePair& beams = beamproj.beams(); const FourMomentum mom_tot = beams.first.momentum() + beams.second.momentum(); const LorentzTransform cms_boost = LorentzTransform::mkFrameTransformFromBeta(mom_tot.betaVec()); const double s = sqr(beamproj.sqrtS()); const bool onresonance = fuzzyEquals(beamproj.sqrtS()/GeV, 10.58, 2E-3); foreach (const Particle& p, ufs.particles()) { // 3-momentum in CMS frame const double mom = cms_boost.transform(p.momentum()).vector3().mod(); // Only looking at Xi_c^0 if (p.abspid() != 4132 ) continue; - if (onresonance) { - _histOnResonanceA_norm->fill(mom,weight); - _histOnResonanceB_norm->fill(mom,weight); - } - else { - _histOffResonance_norm->fill(mom,s/sqr(10.58)*weight); - } MSG_DEBUG("mom = " << mom); // off-resonance cross section if (checkDecay(p.genParticle())) { if (onresonance) { _histOnResonanceA->fill(mom,weight); _histOnResonanceB->fill(mom,weight); } else { _histOffResonance->fill(mom,s/sqr(10.58)*weight); - _sigma->fill(10.6,weight); + _sigma->fill(10.58,weight); } } } } void finalize() { - scale(_histOnResonanceA, crossSection()/femtobarn/sumOfWeights()); - scale(_histOnResonanceB, crossSection()/femtobarn/sumOfWeights()); - scale(_histOffResonance, crossSection()/femtobarn/sumOfWeights()); + scale(_histOnResonanceA, crossSection()/femtobarn/sumOfWeights()*0.2); + scale(_histOnResonanceB, crossSection()/femtobarn/sumOfWeights()*0.45); + scale(_histOffResonance, crossSection()/femtobarn/sumOfWeights()*0.45); scale(_sigma , crossSection()/femtobarn/sumOfWeights()); - normalize(_histOnResonanceA_norm); - normalize(_histOnResonanceB_norm); - normalize(_histOffResonance_norm); } private: //@{ /// Histograms Histo1DPtr _histOnResonanceA; Histo1DPtr _histOnResonanceB; Histo1DPtr _histOffResonance; Histo1DPtr _sigma ; - Histo1DPtr _histOnResonanceA_norm; - Histo1DPtr _histOnResonanceB_norm; - Histo1DPtr _histOffResonance_norm; //@} bool checkDecay(const GenParticle* p) { unsigned int nstable = 0, npip = 0, npim = 0; unsigned int nXim = 0, nXip = 0; findDecayProducts(p, nstable, npip, npim, nXip, nXim); int id = p->pdg_id(); // Xi_c if (id == 4132) { if (nstable == 2 && nXim == 1 && npip == 1) return true; } else if (id == -4132) { if (nstable == 2 && nXip == 1 && npim == 1) return true; } return false; } void findDecayProducts(const GenParticle* p, unsigned int& nstable, unsigned int& npip, unsigned int& npim, unsigned int& nXip, unsigned int& nXim) { const GenVertex* dv = p->end_vertex(); /// @todo Use better looping for (GenVertex::particles_out_const_iterator pp = dv->particles_out_const_begin(); pp != dv->particles_out_const_end(); ++pp) { int id = (*pp)->pdg_id(); if (id==3312) { ++nXim; ++nstable; } else if (id == -3312) { ++nXip; ++nstable; } else if(id == 111 || id == 221) { ++nstable; } else if ((*pp)->end_vertex()) { findDecayProducts(*pp, nstable, npip, npim, nXip, nXim); } else { if (id != 22) ++nstable; if (id == 211) ++npip; else if(id == -211) ++npim; } } } }; // The hook for the plugin system DECLARE_RIVET_PLUGIN(BABAR_2005_S6181155); } diff --git a/analyses/pluginBABAR/BABAR_2005_S6181155.plot b/analyses/pluginBABAR/BABAR_2005_S6181155.plot --- a/analyses/pluginBABAR/BABAR_2005_S6181155.plot +++ b/analyses/pluginBABAR/BABAR_2005_S6181155.plot @@ -1,42 +1,24 @@ # BEGIN PLOT /BABAR_2005_S6181155/d01-x01-y01 Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ with $\Xi_c^0\to\Xi^-\pi^+$ at the $\Upsilon(4S)$ XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [fb/GeV] +YLabel=$\sigma$ [fb] LogY=0 # END PLOT # BEGIN PLOT /BABAR_2005_S6181155/d02-x01-y01 Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ with $\Xi_c^0\to\Xi^-\pi^+$ at the $\Upsilon(4S)$ XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [fb/GeV] +YLabel=$\sigma$ [fb] LogY=0 # END PLOT # BEGIN PLOT /BABAR_2005_S6181155/d02-x01-y02 Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ with $\Xi_c^0\to\Xi^-\pi^+$ in the continuum region XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [fb/GeV] +YLabel=$\sigma$ [fb] LogY=0 # END PLOT # BEGIN PLOT /BABAR_2005_S6181155/d03-x01-y01 Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ with $\Xi_c^0\to\Xi^-\pi^+$ XLabel=$\sqrt{s}$ [GeV] YLabel=$\sigma$ [fb] LogY=0 # END PLOT -# BEGIN PLOT /BABAR_2005_S6181155/d04-x01-y01 -Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ at the $\Upsilon(4S)$ -XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$1/\sigma\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [$\text{GeV}^{-1}$] -LogY=0 -# END PLOT -# BEGIN PLOT /BABAR_2005_S6181155/d05-x01-y01 -Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ at the $\Upsilon(4S)$ -XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$1/\sigma\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [$\text{GeV}^{-1}$] -LogY=0 -# END PLOT -# BEGIN PLOT /BABAR_2005_S6181155/d05-x01-y02 -Title=$\sigma(e^+e^-\to \Xi_c^0+\bar{\Xi}_c^0+X)$ in the continuum region -XLabel=$p_{\Xi_c^0}$ [GeV] -YLabel=$1/\sigma\text{d}\sigma/\text{d}p_{\Xi_c^0}$ [$\text{GeV}^{-1}$] -LogY=0 -# END PLOT diff --git a/analyses/pluginBABAR/BABAR_2005_S6181155.yoda b/analyses/pluginBABAR/BABAR_2005_S6181155.yoda --- a/analyses/pluginBABAR/BABAR_2005_S6181155.yoda +++ b/analyses/pluginBABAR/BABAR_2005_S6181155.yoda @@ -1,149 +1,88 @@ BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d01-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -1.0, up: 1.0}}, 1: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -5.0, up: 5.0}}, 2: {stat: {dn: -6.0, up: 6.0}, sys: {dn: -8.0, up: 8.0}}, 3: {stat: {dn: -6.0, up: 6.0}, sys: {dn: -8.0, up: 8.0}}, 4: {stat: {dn: -6.0, up: 6.0}, sys: {dn: -7.0, up: 7.0}}, 5: {stat: {dn: -5.0, up: 5.0}, sys: {dn: -5.0, up: 5.0}}, 6: {stat: {dn: -5.0, up: 5.0}, sys: {dn: -2.0, up: 2.0}}, 7: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -2.0, up: 2.0}}, 8: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -2.0, up: 2.0}}, 9: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -2.0, up: 2.0}}, 10: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -2.0, up: 2.0}}, 11: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -2.0, up: 2.0}}, 12: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -3.0, up: 3.0}}, 13: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -3.0, up: 3.0}}, 14: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -3.0, up: 3.0}}, 15: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -4.0, up: 4.0}}, 16: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -3.0, up: 3.0}}, 17: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -3.0, up: 3.0}}, 18: {stat: {dn: -2.0, up: 2.0}, sys: {dn: -2.0, up: 2.0}}, 19: {stat: {dn: -1.0, up: 1.0}, sys: {dn: -2.0, up: 2.0}}, 20: {stat: {dn: -1.0, up: 1.0}, sys: {dn: -2.0, up: 2.0}}, 21: {stat: {dn: -0.5, up: 0.5}, sys: {dn: -0.3, up: 0.3}}, 22: {stat: {dn: -0.3, up: 0.3}, sys: {dn: -0.2, up: 0.2}}, 23: {stat: {dn: -0.1, up: 0.1}, sys: {dn: -0.1, up: 0.1}}, 24: {stat: {dn: -0.2, up: 0.2}, sys: {dn: -0.1, up: 0.1}}} + IsRef: 1 Path: /REF/BABAR_2005_S6181155/d01-x01-y01 -Title: ~ +Title: doi:10.17182/hepdata.27164.v1/t1 Type: Scatter2D --- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 5.000000e+01 1.118034e+01 1.118034e+01 -3.000000e-01 1.000000e-01 1.000000e-01 2.800000e+02 3.201562e+01 3.201562e+01 -5.000000e-01 1.000000e-01 1.000000e-01 5.050000e+02 5.000000e+01 5.000000e+01 -7.000000e-01 1.000000e-01 1.000000e-01 5.100000e+02 5.000000e+01 5.000000e+01 -9.000000e-01 1.000000e-01 1.000000e-01 4.200000e+02 4.609772e+01 4.609772e+01 -1.100000e+00 1.000000e-01 1.000000e-01 3.250000e+02 3.535534e+01 3.535534e+01 -1.300000e+00 1.000000e-01 1.000000e-01 1.400000e+02 2.692582e+01 2.692582e+01 -1.500000e+00 1.000000e-01 1.000000e-01 1.150000e+02 2.236068e+01 2.236068e+01 -1.700000e+00 1.000000e-01 1.000000e-01 1.050000e+02 2.236068e+01 2.236068e+01 -1.900000e+00 1.000000e-01 1.000000e-01 1.000000e+02 1.802776e+01 1.802776e+01 -2.100000e+00 1.000000e-01 1.000000e-01 1.150000e+02 1.802776e+01 1.802776e+01 -2.300000e+00 1.000000e-01 1.000000e-01 1.300000e+02 1.802776e+01 1.802776e+01 -2.500000e+00 1.000000e-01 1.000000e-01 1.700000e+02 2.121320e+01 2.121320e+01 -2.700000e+00 1.000000e-01 1.000000e-01 1.850000e+02 2.121320e+01 2.121320e+01 -2.900000e+00 1.000000e-01 1.000000e-01 2.200000e+02 2.121320e+01 2.121320e+01 -3.100000e+00 1.000000e-01 1.000000e-01 2.300000e+02 2.236068e+01 2.236068e+01 -3.300000e+00 1.000000e-01 1.000000e-01 2.100000e+02 1.802776e+01 1.802776e+01 -3.500000e+00 1.000000e-01 1.000000e-01 1.950000e+02 1.802776e+01 1.802776e+01 -3.700000e+00 1.000000e-01 1.000000e-01 1.100000e+02 1.414214e+01 1.414214e+01 -3.900000e+00 1.000000e-01 1.000000e-01 1.000000e+02 1.118034e+01 1.118034e+01 -4.100000e+00 1.000000e-01 1.000000e-01 5.500000e+01 1.118034e+01 1.118034e+01 -4.300000e+00 1.000000e-01 1.000000e-01 1.100000e+01 2.915476e+00 2.915476e+00 -4.500000e+00 1.000000e-01 1.000000e-01 4.000000e+00 1.802776e+00 1.802776e+00 -4.700000e+00 1.000000e-01 1.000000e-01 0.000000e+00 7.071068e-01 7.071068e-01 -4.900000e+00 1.000000e-01 1.000000e-01 1.000000e+00 1.118034e+00 1.118034e+00 +# xval xerr- xerr+ yval yerr- yerr+ +1.000000e-01 1.000000e-01 1.000000e-01 1.000000e+01 2.236068e+00 2.236068e+00 +3.000000e-01 1.000000e-01 1.000000e-01 5.600000e+01 6.403124e+00 6.403124e+00 +5.000000e-01 1.000000e-01 1.000000e-01 1.010000e+02 1.000000e+01 1.000000e+01 +7.000000e-01 1.000000e-01 1.000000e-01 1.020000e+02 1.000000e+01 1.000000e+01 +9.000000e-01 1.000000e-01 1.000000e-01 8.400000e+01 9.219544e+00 9.219544e+00 +1.100000e+00 1.000000e-01 1.000000e-01 6.500000e+01 7.071068e+00 7.071068e+00 +1.300000e+00 1.000000e-01 1.000000e-01 2.800000e+01 5.385165e+00 5.385165e+00 +1.500000e+00 1.000000e-01 1.000000e-01 2.300000e+01 4.472136e+00 4.472136e+00 +1.700000e+00 1.000000e-01 1.000000e-01 2.100000e+01 4.472136e+00 4.472136e+00 +1.900000e+00 1.000000e-01 1.000000e-01 2.000000e+01 3.605551e+00 3.605551e+00 +2.100000e+00 1.000000e-01 1.000000e-01 2.300000e+01 3.605551e+00 3.605551e+00 +2.300000e+00 1.000000e-01 1.000000e-01 2.600000e+01 3.605551e+00 3.605551e+00 +2.500000e+00 1.000000e-01 1.000000e-01 3.400000e+01 4.242641e+00 4.242641e+00 +2.700000e+00 1.000000e-01 1.000000e-01 3.700000e+01 4.242641e+00 4.242641e+00 +2.900000e+00 1.000000e-01 1.000000e-01 4.400000e+01 4.242641e+00 4.242641e+00 +3.100000e+00 1.000000e-01 1.000000e-01 4.600000e+01 4.472136e+00 4.472136e+00 +3.300000e+00 1.000000e-01 1.000000e-01 4.200000e+01 3.605551e+00 3.605551e+00 +3.500000e+00 1.000000e-01 1.000000e-01 3.900000e+01 3.605551e+00 3.605551e+00 +3.700000e+00 1.000000e-01 1.000000e-01 2.200000e+01 2.828427e+00 2.828427e+00 +3.900000e+00 1.000000e-01 1.000000e-01 2.000000e+01 2.236068e+00 2.236068e+00 +4.100000e+00 1.000000e-01 1.000000e-01 1.100000e+01 2.236068e+00 2.236068e+00 +4.300000e+00 1.000000e-01 1.000000e-01 2.200000e+00 5.830952e-01 5.830952e-01 +4.500000e+00 1.000000e-01 1.000000e-01 8.000000e-01 3.605551e-01 3.605551e-01 +4.700000e+00 1.000000e-01 1.000000e-01 0.000000e+00 1.414214e-01 1.414214e-01 +4.900000e+00 1.000000e-01 1.000000e-01 2.000000e-01 2.236068e-01 2.236068e-01 END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d02-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -5.0, up: 5.0}, sys: {dn: -7.0, up: 7.0}}, 1: {stat: {dn: -9.0, up: 9.0}, sys: {dn: -17.0, up: 17.0}}, 2: {stat: {dn: -8.0, up: 8.0}, sys: {dn: -10.0, up: 10.0}}, 3: {stat: {dn: -6.0, up: 6.0}, sys: {dn: -4.0, up: 4.0}}, 4: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -3.0, up: 3.0}}, 5: {stat: {dn: -5.0, up: 5.0}, sys: {dn: -6.0, up: 6.0}}, 6: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -10.0, up: 10.0}}, 7: {stat: {dn: -3.0, up: 3.0}, sys: {dn: -8.0, up: 8.0}}, 8: {stat: {dn: -1.0, up: 1.0}, sys: {dn: -1.0, up: 1.0}}} -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d02-x01-y01 IsRef: 1 Path: /REF/BABAR_2005_S6181155/d02-x01-y01 -Title: ~ +Title: doi:10.17182/hepdata.27164.v1/t2 Type: Scatter2D --- -# xval xerr- xerr+ yval yerr- yerr+ -2.250000e-01 2.250000e-01 2.250000e-01 1.955556e+02 1.911628e+01 1.911628e+01 -6.750000e-01 2.250000e-01 2.250000e-01 4.844444e+02 4.274530e+01 4.274530e+01 -1.125000e+00 2.250000e-01 2.250000e-01 2.844444e+02 2.845833e+01 2.845833e+01 -1.575000e+00 2.250000e-01 2.250000e-01 1.133333e+02 1.602467e+01 1.602467e+01 -1.975000e+00 1.750000e-01 1.750000e-01 1.057143e+02 1.428571e+01 1.428571e+01 -2.425000e+00 2.750000e-01 2.750000e-01 1.509091e+02 1.420045e+01 1.420045e+01 -3.000000e+00 3.000000e-01 3.000000e-01 2.216667e+02 1.795055e+01 1.795055e+01 -3.650000e+00 3.500000e-01 3.500000e-01 1.414286e+02 1.220572e+01 1.220572e+01 -4.350000e+00 3.500000e-01 3.500000e-01 2.000000e+01 2.020305e+00 2.020305e+00 +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.250000e-01 2.250000e-01 8.800000e+01 8.602325e+00 8.602325e+00 +6.750000e-01 2.250000e-01 2.250000e-01 2.180000e+02 1.923538e+01 1.923538e+01 +1.125000e+00 2.250000e-01 2.250000e-01 1.280000e+02 1.280625e+01 1.280625e+01 +1.575000e+00 2.250000e-01 2.250000e-01 5.100000e+01 7.211103e+00 7.211103e+00 +1.975000e+00 1.750000e-01 1.750000e-01 3.700000e+01 5.000000e+00 5.000000e+00 +2.425000e+00 2.750000e-01 2.750000e-01 8.300000e+01 7.810250e+00 7.810250e+00 +3.000000e+00 3.000000e-01 3.000000e-01 1.330000e+02 1.077033e+01 1.077033e+01 +3.650000e+00 3.500000e-01 3.500000e-01 9.900000e+01 8.544004e+00 8.544004e+00 +4.350000e+00 3.500000e-01 3.500000e-01 1.400000e+01 1.414214e+00 1.414214e+00 END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d02-x01-y02 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -12.0, up: 12.0}, sys: {dn: -1.0, up: 1.0}}, 1: {stat: {dn: -21.0, up: 21.0}, sys: {dn: -2.0, up: 2.0}}, 2: {stat: {dn: -20.0, up: 20.0}, sys: {dn: -2.0, up: 2.0}}, 3: {stat: {dn: -18.0, up: 18.0}, sys: {dn: -2.0, up: 2.0}}, 4: {stat: {dn: -13.0, up: 13.0}, sys: {dn: -2.0, up: 2.0}}, 5: {stat: {dn: -16.0, up: 16.0}, sys: {dn: -7.0, up: 7.0}}, 6: {stat: {dn: -15.0, up: 15.0}, sys: {dn: -13.0, up: 13.0}}, 7: {stat: {dn: -10.0, up: 10.0}, sys: {dn: -7.0, up: 7.0}}, 8: {stat: {dn: -4.0, up: 4.0}, sys: {dn: -2.0, up: 2.0}}} -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d02-x01-y02 IsRef: 1 Path: /REF/BABAR_2005_S6181155/d02-x01-y02 -Title: ~ +Title: doi:10.17182/hepdata.27164.v1/t2 Type: Scatter2D --- -# xval xerr- xerr+ yval yerr- yerr+ -2.250000e-01 2.250000e-01 2.250000e-01 2.222222e+01 2.675910e+01 2.675910e+01 -6.750000e-01 2.250000e-01 2.250000e-01 3.555556e+01 4.687783e+01 4.687783e+01 -1.125000e+00 2.250000e-01 2.250000e-01 -1.555556e+01 4.466611e+01 4.466611e+01 -1.575000e+00 2.250000e-01 2.250000e-01 3.555556e+01 4.024616e+01 4.024616e+01 -1.975000e+00 1.750000e-01 1.750000e-01 6.571429e+01 3.757985e+01 3.757985e+01 -2.425000e+00 2.750000e-01 2.750000e-01 1.654545e+02 3.175318e+01 3.175318e+01 -3.000000e+00 3.000000e-01 3.000000e-01 2.800000e+02 3.308239e+01 3.308239e+01 -3.650000e+00 3.500000e-01 3.500000e-01 1.271429e+02 1.743794e+01 1.743794e+01 -4.350000e+00 3.500000e-01 3.500000e-01 2.428571e+01 6.388766e+00 6.388766e+00 +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.250000e-01 2.250000e-01 1.000000e+01 1.204159e+01 1.204159e+01 +6.750000e-01 2.250000e-01 2.250000e-01 1.600000e+01 2.109502e+01 2.109502e+01 +1.125000e+00 2.250000e-01 2.250000e-01 -7.000000e+00 2.009975e+01 2.009975e+01 +1.575000e+00 2.250000e-01 2.250000e-01 1.600000e+01 1.811077e+01 1.811077e+01 +1.975000e+00 1.750000e-01 1.750000e-01 2.300000e+01 1.315295e+01 1.315295e+01 +2.425000e+00 2.750000e-01 2.750000e-01 9.100000e+01 1.746425e+01 1.746425e+01 +3.000000e+00 3.000000e-01 3.000000e-01 1.680000e+02 1.984943e+01 1.984943e+01 +3.650000e+00 3.500000e-01 3.500000e-01 8.900000e+01 1.220656e+01 1.220656e+01 +4.350000e+00 3.500000e-01 3.500000e-01 1.700000e+01 4.472136e+00 4.472136e+00 END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d03-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -39.0, up: 39.0}, sys: {dn: -41.0, up: 41.0}}} -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d03-x01-y01 IsRef: 1 Path: /REF/BABAR_2005_S6181155/d03-x01-y01 -Title: ~ +Title: doi:10.17182/hepdata.27164.v1/t3 Type: Scatter2D --- -# xval xerr- xerr+ yval yerr- yerr+ +# xval xerr- xerr+ yval yerr- yerr+ 1.058000e+01 5.000000e-01 5.000000e-01 3.880000e+02 5.658622e+01 5.658622e+01 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d04-x01-y01 -IsRef: 1 -Path: /REF/BABAR_2005_S6181155/d04-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 5.832944e-02 1.304286e-02 1.304286e-02 -3.000000e-01 1.000000e-01 1.000000e-01 3.266449e-01 3.734907e-02 3.734907e-02 -5.000000e-01 1.000000e-01 1.000000e-01 5.891274e-01 5.832944e-02 5.832944e-02 -7.000000e-01 1.000000e-01 1.000000e-01 5.949603e-01 5.832944e-02 5.832944e-02 -9.000000e-01 1.000000e-01 1.000000e-01 4.899673e-01 5.377709e-02 5.377709e-02 -1.100000e+00 1.000000e-01 1.000000e-01 3.791414e-01 4.124515e-02 4.124515e-02 -1.300000e+00 1.000000e-01 1.000000e-01 1.633224e-01 3.141136e-02 3.141136e-02 -1.500000e+00 1.000000e-01 1.000000e-01 1.341577e-01 2.608572e-02 2.608572e-02 -1.700000e+00 1.000000e-01 1.000000e-01 1.224918e-01 2.608572e-02 2.608572e-02 -1.900000e+00 1.000000e-01 1.000000e-01 1.166589e-01 2.103098e-02 2.103098e-02 -2.100000e+00 1.000000e-01 1.000000e-01 1.341577e-01 2.103098e-02 2.103098e-02 -2.300000e+00 1.000000e-01 1.000000e-01 1.516566e-01 2.103098e-02 2.103098e-02 -2.500000e+00 1.000000e-01 1.000000e-01 1.983201e-01 2.474708e-02 2.474708e-02 -2.700000e+00 1.000000e-01 1.000000e-01 2.158189e-01 2.474708e-02 2.474708e-02 -2.900000e+00 1.000000e-01 1.000000e-01 2.566496e-01 2.474708e-02 2.474708e-02 -3.100000e+00 1.000000e-01 1.000000e-01 2.683154e-01 2.608572e-02 2.608572e-02 -3.300000e+00 1.000000e-01 1.000000e-01 2.449837e-01 2.103098e-02 2.103098e-02 -3.500000e+00 1.000000e-01 1.000000e-01 2.274848e-01 2.103098e-02 2.103098e-02 -3.700000e+00 1.000000e-01 1.000000e-01 1.283248e-01 1.649806e-02 1.649806e-02 -3.900000e+00 1.000000e-01 1.000000e-01 1.166589e-01 1.304286e-02 1.304286e-02 -4.100000e+00 1.000000e-01 1.000000e-01 6.416239e-02 1.304286e-02 1.304286e-02 -4.300000e+00 1.000000e-01 1.000000e-01 1.283248e-02 3.401162e-03 3.401162e-03 -4.500000e+00 1.000000e-01 1.000000e-01 4.666356e-03 2.103098e-03 2.103098e-03 -4.700000e+00 1.000000e-01 1.000000e-01 0.000000e+00 8.249029e-04 8.249029e-04 -4.900000e+00 1.000000e-01 1.000000e-01 1.166589e-03 1.304286e-03 1.304286e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d05-x01-y01 -IsRef: 1 -Path: /REF/BABAR_2005_S6181155/d05-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.250000e-01 2.250000e-01 2.250000e-01 2.297951e-01 2.246331e-02 2.246331e-02 -6.750000e-01 2.250000e-01 2.250000e-01 5.692649e-01 5.022949e-02 5.022949e-02 -1.125000e+00 2.250000e-01 2.250000e-01 3.342472e-01 3.344105e-02 3.344105e-02 -1.575000e+00 2.250000e-01 2.250000e-01 1.331766e-01 1.883040e-02 1.883040e-02 -1.975000e+00 1.750000e-01 1.750000e-01 1.242236e-01 1.678697e-02 1.678697e-02 -2.425000e+00 2.750000e-01 2.750000e-01 1.773315e-01 1.668678e-02 1.668678e-02 -3.000000e+00 3.000000e-01 3.000000e-01 2.604779e-01 2.109348e-02 2.109348e-02 -3.650000e+00 3.500000e-01 3.500000e-01 1.661911e-01 1.434280e-02 1.434280e-02 -4.350000e+00 3.500000e-01 3.500000e-01 2.350176e-02 2.374036e-03 2.374036e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/BABAR_2005_S6181155/d05-x01-y02 -IsRef: 1 -Path: /REF/BABAR_2005_S6181155/d05-x01-y02 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.250000e-01 2.250000e-01 2.250000e-01 5.253480e-02 6.326028e-02 6.326028e-02 -6.750000e-01 2.250000e-01 2.250000e-01 8.405570e-02 1.108223e-01 1.108223e-01 -1.125000e+00 2.250000e-01 2.250000e-01 -3.677437e-02 1.055936e-01 1.055936e-01 -1.575000e+00 2.250000e-01 2.250000e-01 8.405570e-02 9.514459e-02 9.514459e-02 -1.975000e+00 1.750000e-01 1.750000e-01 1.553529e-01 8.884125e-02 8.884125e-02 -2.425000e+00 2.750000e-01 2.750000e-01 3.911454e-01 7.506662e-02 7.506662e-02 -3.000000e+00 3.000000e-01 3.000000e-01 6.619385e-01 7.820896e-02 7.820896e-02 -3.650000e+00 3.500000e-01 3.500000e-01 3.005742e-01 4.122444e-02 4.122444e-02 -4.350000e+00 3.500000e-01 3.500000e-01 5.741303e-02 1.510347e-02 1.510347e-02 -END YODA_SCATTER2D_V2