diff --git a/analyses/pluginALICE/ALICE_2018_I1684320.cc b/analyses/pluginALICE/ALICE_2018_I1684320.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2018_I1684320.cc @@ -0,0 +1,172 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/ChargedFinalState.hh" +#include "Rivet/Projections/CentralityProjection.hh" +#include "Rivet/Projections/AliceCommon.hh" +#include "Rivet/Tools/AliceCommon.hh" +namespace Rivet { + + /// Used resonances. + class PrimaryPK : public Rivet::PrimaryParticles { + public: + PrimaryPK(const Cut& c=Cuts::open()) + : Rivet::PrimaryParticles({},c) {} + + virtual int compare(const Projection& p) const { + return UNDEFINED; + } + + virtual std::unique_ptr clone() const { + return std::unique_ptr(new PrimaryPK(*this)); + } + protected: + bool isPrimaryPID(const HepMC::GenParticle* p) const + { + int pdg = PID::abspid(p->pdg_id()); + if (pdg > 1000000000) return true; + + switch (pdg) { + case 313: // K*0 (892) + case 333: // phi + return true; + } + return false; + } + }; + /// @brief Strangeness spectra + class ALICE_2018_I1684320 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ALICE_2018_I1684320); + + int profileIndex(vector cBins, double c) { + int index = 100; + if (c > 0 && c <= cBins[0]) return cBins.size() - 1; + for (size_t i = 0; i < cBins.size() - 1; ++i) { + if (c > cBins[i] && c <= cBins[i + 1]) { + index = i; + break; + } + } + return max(0, int(cBins.size() - index - 2)); + } + + /// Book histograms and initialise projections before the run + void init() { + // Centrality projection. + declareCentrality(ALICE::V0MMultiplicity(), + "ALICE_2015_PPCentrality","V0M","V0M"); + // Central primary particles + declare(ChargedFinalState(Cuts::abseta < 1.0),"PP"); + declare(ALICE::PrimaryParticles(Cuts::absrap < 0.5),"PPy"); + declare(PrimaryPK(Cuts::absrap < 0.5),"PRy"); + centralityBins = {1.,5.,10.,15.,20., 30., 40., 50., 70., 100.}; + centralityBinsPhi = {1.,5.,10.,20., 30., 40., 50., 70., 100.}; + + // Book histograms + for (int i = 0; i < 10; ++i) { + chargedpT[centralityBins[i]] = bookHisto1D(i+1,1,1); + pipT[centralityBins[i]] = bookHisto1D(i+11,1,1); + KpmpT[centralityBins[i]] = bookHisto1D(i+21,1,1); + ppT[centralityBins[i]] = bookHisto1D(i+31,1,1); + sow[centralityBins[i]] = bookCounter("sow_" + toString(i)); + } + for (int i = 0; i < 9; ++i) { + KstarpT[centralityBinsPhi[i]] = bookHisto1D(i+41,1,1); + phipT[centralityBinsPhi[i]] = bookHisto1D(i+49,1,1); + sowPhi[centralityBinsPhi[i]] = bookCounter("sowPhi_" + toString(i)); + } + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + if (apply(event,"PP").particles().size() < 1) vetoEvent; + const ALICE::PrimaryParticles& prim = apply(event,"PPy"); + const PrimaryPK& primR = apply(event,"PRy"); + const double weight = event.weight(); + const CentralityProjection& cent = apply(event,"V0M"); + double c = cent(); + // Find the correct histograms + auto cItr = chargedpT.upper_bound(c); + if (cItr == chargedpT.end()) return; + auto piItr = pipT.upper_bound(c); + if (piItr == pipT.end()) return; + auto kItr = KpmpT.upper_bound(c); + if (kItr == KpmpT.end()) return; + auto pItr = ppT.upper_bound(c); + if (pItr == ppT.end()) return; + auto ksItr = KstarpT.upper_bound(c); + if (ksItr == KstarpT.end()) return; + auto phiItr = phipT.upper_bound(c); + if (phiItr == phipT.end()) return; + // Fill the sow. + auto sowItr = sow.upper_bound(c); + if (sowItr == sow.end()) return; + auto sowPhiItr = sowPhi.upper_bound(c); + if (sowPhiItr == sowPhi.end()) return; + sowItr->second->fill(weight); + sowPhiItr->second->fill(weight); + // Fill the pt histograms. + for (auto p : prim.particles()) { + const double pT = p.pT(); + const int pid = abs(p.pid()); + if (p.charge() != 0) cItr->second->fill(pT, weight); + if (pid == 211) piItr->second->fill(pT, weight); + else if (pid == 321) kItr->second->fill(pT, weight); + else if (pid == 2212) pItr->second->fill(pT, weight); + } + for (auto p : primR.particles()) { + const double pT = p.pT(); + const int pid = abs(p.pid()); + if (pid == 313) ksItr->second->fill(pT, weight); + else if (pid == 333) phiItr->second->fill(pT, weight); + } + } + + + /// Normalise histograms etc., after the run + void finalize() { + // Normalize the spectra + for (int i = 0; i < 10; ++i) { + chargedpT[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + pipT[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + KpmpT[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + ppT[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + } + for (int i = 0; i < 9; ++i) { + KstarpT[centralityBinsPhi[i]]->scaleW(1./sowPhi[centralityBinsPhi[i]]->sumW()); + phipT[centralityBinsPhi[i]]->scaleW(1./sowPhi[centralityBinsPhi[i]]->sumW()); + } + + } + + //@} + + + /// @name Histograms + //@{ + // Histograms ordered in centrality classes + vector centralityBins; + vector centralityBinsPhi; + + // pT spectra + map chargedpT; + map pipT; + map KpmpT; + map ppT; + map KstarpT; + map phipT; + map sow; + map sowPhi; + + //@} + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ALICE_2018_I1684320); + + +} diff --git a/analyses/pluginALICE/ALICE_2018_I1684320.info b/analyses/pluginALICE/ALICE_2018_I1684320.info new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2018_I1684320.info @@ -0,0 +1,46 @@ +Name: ALICE_2018_I1684320 +Year: 2018 +Summary: +Experiment: ALICE +Collider: LHC +InspireID: 1684320 +Status: UNVALIDATED +Authors: + - Your Name +#References: +#- '' +#- '' +#- '' +RunInfo: +NeedCrossSection: no +#Beams: +#Energies: +#Luminosity_fb: +Description: + ' 50\;\GeV$.>' +Keywords: [] +Options: + - cent=REF,GEN,IMP,USR +BibKey: Acharya:2018orn +BibTeX: '@article{Acharya:2018orn, + author = "Acharya, Shreyasi and others", + title = "{Multiplicity dependence of light-flavor hadron + production in pp collisions at $\sqrt{s}$ = 7 TeV}", + collaboration = "ALICE", + journal = "Phys. Rev.", + volume = "C99", + year = "2019", + number = "2", + pages = "024906", + doi = "10.1103/PhysRevC.99.024906", + eprint = "1807.11321", + archivePrefix = "arXiv", + primaryClass = "nucl-ex", + reportNumber = "CERN-EP-2018-209", + SLACcitation = "%%CITATION = ARXIV:1807.11321;%%" +}' +ToDo: + - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-) + diff --git a/analyses/pluginALICE/ALICE_2018_I1684320.plot b/analyses/pluginALICE/ALICE_2018_I1684320.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2018_I1684320.plot @@ -0,0 +1,8 @@ +BEGIN PLOT /ALICE_2018_I1684320/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/pluginALICE/ALICE_2018_I1684320.yoda b/analyses/pluginALICE/ALICE_2018_I1684320.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2018_I1684320.yoda @@ -0,0 +1,4123 @@ +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d01-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -2.05116, up: 2.05116}, stat: {dn: -0.03990868, up: 0.03990868}, unc. syst.: {dn: -0.6155034, up: 0.6155034}}, 1: {full syst.: {dn: -1.881397, up: 1.881397}, stat: {dn: -0.03851815, up: 0.03851815}, unc. syst.: {dn: -0.6187706, up: 0.6187706}}, 2: {full syst.: {dn: -1.766402, up: 1.766402}, stat: {dn: -0.02388721, up: 0.02388721}, unc. syst.: {dn: -0.6150425, up: 0.6150425}}, 3: {full syst.: {dn: -1.721357, up: 1.721357}, stat: {dn: -0.02261692, up: 0.02261692}, unc. syst.: {dn: -0.5788915, up: 0.5788915}}, 4: {full syst.: {dn: -1.632133, up: 1.632133}, stat: {dn: -0.02131684, up: 0.02131684}, unc. syst.: {dn: -0.5324026, up: 0.5324026}}, 5: {full syst.: {dn: -1.51791, up: 1.51791}, stat: {dn: -0.01993666, up: 0.01993666}, unc. syst.: {dn: -0.4829623, up: 0.4829623}}, 6: {full syst.: {dn: -1.383995, up: 1.383995}, stat: {dn: -0.01877799, up: 0.01877799}, unc. syst.: {dn: -0.4379406, up: 0.4379406}}, 7: {full syst.: {dn: -1.235035, up: 1.235035}, stat: {dn: -0.01764341, up: 0.01764341}, unc. syst.: {dn: -0.3945705, up: 0.3945705}}, 8: {full syst.: {dn: -1.104923, up: 1.104923}, stat: {dn: -0.01672977, up: 0.01672977}, unc. syst.: {dn: -0.3575726, up: 0.3575726}}, 9: {full syst.: {dn: -0.9796931, up: 0.9796931}, stat: {dn: -0.01583813, up: 0.01583813}, unc. syst.: {dn: -0.3227672, up: 0.3227672}}, 10: {full syst.: {dn: -0.8714685, up: 0.8714685}, stat: {dn: -0.01500443, up: 0.01500443}, unc. syst.: {dn: -0.2911438, up: 0.2911438}}, 11: {full syst.: {dn: -0.7804102, up: 0.7804102}, stat: {dn: -0.01430059, up: 0.01430059}, unc. syst.: {dn: -0.2646334, up: 0.2646334}}, 12: {full syst.: {dn: -0.6963129, up: 0.6963129}, stat: {dn: -0.01360602, up: 0.01360602}, unc. syst.: {dn: -0.2394811, up: 0.2394811}}, 13: {full syst.: {dn: -0.6251785, up: 0.6251785}, stat: {dn: -0.01297884, up: 0.01297884}, unc. syst.: {dn: -0.2174135, up: 0.2174135}}, 14: {full syst.: {dn: -0.5647723, up: 0.5647723}, stat: {dn: -0.01239077, up: 0.01239077}, unc. syst.: {dn: -0.1976681, up: 0.1976681}}, 15: {full syst.: {dn: -0.5123682, up: 0.5123682}, stat: {dn: -0.01187102, up: 0.01187102}, unc. syst.: {dn: -0.1804293, up: 0.1804293}}, 16: {full syst.: {dn: -0.4654522, up: 0.4654522}, stat: {dn: -0.01136178, up: 0.01136178}, unc. syst.: {dn: -0.1644064, up: 0.1644064}}, 17: {full syst.: {dn: -0.4255972, up: 0.4255972}, stat: {dn: -0.01086957, up: 0.01086957}, unc. syst.: {dn: -0.1499247, up: 0.1499247}}, 18: {full syst.: {dn: -0.3699559, up: 0.3699559}, stat: {dn: -0.007157897, up: 0.007157897}, unc. syst.: {dn: -0.1299804, up: 0.1299804}}, 19: {full syst.: {dn: -0.3092, up: 0.3092}, stat: {dn: -0.006524551, up: 0.006524551}, unc. syst.: {dn: -0.1081251, up: 0.1081251}}, 20: {full syst.: {dn: -0.261901, up: 0.261901}, stat: {dn: -0.005978002, up: 0.005978002}, unc. syst.: {dn: -0.09042476, up: 0.09042476}}, 21: {full syst.: {dn: -0.2263912, up: 0.2263912}, stat: {dn: -0.005472695, up: 0.005472695}, unc. syst.: {dn: -0.07561773, up: 0.07561773}}, 22: {full syst.: {dn: -0.1954102, up: 0.1954102}, stat: {dn: -0.005025462, up: 0.005025462}, unc. syst.: {dn: -0.06361799, up: 0.06361799}}, 23: {full syst.: {dn: -0.169845, up: 0.169845}, stat: {dn: -0.004606055, up: 0.004606055}, unc. syst.: {dn: -0.05335676, up: 0.05335676}}, 24: {full syst.: {dn: -0.1443977, up: 0.1443977}, stat: {dn: -0.004229829, up: 0.004229829}, unc. syst.: {dn: -0.04489447, up: 0.04489447}}, 25: {full syst.: {dn: -0.1236234, up: 0.1236234}, stat: {dn: -0.003873806, up: 0.003873806}, unc. syst.: {dn: -0.03767952, up: 0.03767952}}, 26: {full syst.: {dn: -0.1055008, up: 0.1055008}, stat: {dn: -0.003557007, up: 0.003557007}, unc. syst.: {dn: -0.03184909, up: 0.03184909}}, 27: {full syst.: {dn: -0.08860324, up: 0.08860324}, stat: {dn: -0.003274448, up: 0.003274448}, unc. syst.: {dn: -0.02685199, up: 0.02685199}}, 28: {full syst.: {dn: -0.07038415, up: 0.07038415}, stat: {dn: -0.002078326, up: 0.002078326}, unc. syst.: {dn: -0.0211894, up: 0.0211894}}, 29: {full syst.: {dn: -0.0515943, up: 0.0515943}, stat: {dn: -0.001786173, up: 0.001786173}, unc. syst.: {dn: -0.01551392, up: 0.01551392}}, 30: {full syst.: {dn: -0.03774531, up: 0.03774531}, stat: {dn: -0.001534721, up: 0.001534721}, unc. syst.: {dn: -0.01145472, up: 0.01145472}}, 31: {full syst.: {dn: -0.02790855, up: 0.02790855}, stat: {dn: -0.001332457, up: 0.001332457}, unc. syst.: {dn: -0.008585844, up: 0.008585844}}, 32: {full syst.: {dn: -0.02055909, up: 0.02055909}, stat: {dn: -0.001154887, up: 0.001154887}, unc. syst.: {dn: -0.006439811, up: 0.006439811}}, 33: {full syst.: {dn: -0.01565254, up: 0.01565254}, stat: {dn: -0.001006376, up: 0.001006376}, unc. syst.: {dn: -0.00489956, up: 0.00489956}}, 34: {full syst.: {dn: -0.01210543, up: 0.01210543}, stat: {dn: -0.0008845952, up: 0.0008845952}, unc. syst.: {dn: -0.003805123, up: 0.003805123}}, 35: {full syst.: {dn: -0.009285264, up: 0.009285264}, stat: {dn: -0.0007742183, up: 0.0007742183}, unc. syst.: {dn: -0.002923703, up: 0.002923703}}, 36: {full syst.: {dn: -0.007254379, up: 0.007254379}, stat: {dn: -0.0006873625, up: 0.0006873625}, unc. syst.: {dn: -0.002301379, up: 0.002301379}}, 37: {full syst.: {dn: -0.005667086, up: 0.005667086}, stat: {dn: -0.0006070246, up: 0.0006070246}, unc. syst.: {dn: -0.001808834, up: 0.001808834}}, 38: {full syst.: {dn: -0.003773997, up: 0.003773997}, stat: {dn: -0.0003036248, up: 0.0003036248}, unc. syst.: {dn: -0.001209872, up: 0.001209872}}, 39: {full syst.: {dn: -0.002259411, up: 0.002259411}, stat: {dn: -0.0002352654, up: 0.0002352654}, unc. syst.: {dn: -0.000732267, up: 0.000732267}}, 40: {full syst.: {dn: -0.001125456, up: 0.001125456}, stat: {dn: -0.0001175404, up: 0.0001175404}, unc. syst.: {dn: -0.0003646391, up: 0.0003646391}}, 41: {full syst.: {dn: -0.0003587933, up: 0.0003587933}, stat: {dn: -4.693651e-05, up: 4.693651e-05}, unc. syst.: {dn: -0.0001168695, up: 0.0001168695}}, 42: {full syst.: {dn: -0.0001019742, up: 0.0001019742}, stat: {dn: -2.492301e-05, up: 2.492301e-05}, unc. syst.: {dn: -3.321377e-05, up: 3.321377e-05}}, 43: {full syst.: {dn: -2.298144e-05, up: 2.298144e-05}, stat: {dn: -7.389368e-06, up: 7.389368e-06}, unc. syst.: {dn: -7.313844e-06, up: 7.313844e-06}}, 44: {full syst.: {dn: -2.87204e-06, up: 2.87204e-06}, stat: {dn: -1.775223e-06, up: 1.775223e-06}, unc. syst.: {dn: -8.426938e-07, up: 8.426938e-07}}, 45: {full syst.: {dn: -3.320358e-07, up: 3.320358e-07}, stat: {dn: -4.967088e-07, up: 4.967088e-07}, unc. syst.: {dn: -7.659818e-08, up: 7.659818e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d01-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 2.947727e+01 2.141890e+00 2.141890e+00 +1.900000e-01 1.000000e-02 1.000000e-02 2.963374e+01 1.980913e+00 1.980913e+00 +2.250000e-01 2.500000e-02 2.500000e-02 2.945519e+01 1.870568e+00 1.870568e+00 +2.750000e-01 2.500000e-02 2.500000e-02 2.772387e+01 1.816231e+00 1.816231e+00 +3.250000e-01 2.500000e-02 2.500000e-02 2.549746e+01 1.716906e+00 1.716906e+00 +3.750000e-01 2.500000e-02 2.500000e-02 2.312970e+01 1.593016e+00 1.593016e+00 +4.250000e-01 2.500000e-02 2.500000e-02 2.097355e+01 1.451753e+00 1.451753e+00 +4.750000e-01 2.500000e-02 2.500000e-02 1.889650e+01 1.296653e+00 1.296653e+00 +5.250000e-01 2.500000e-02 2.500000e-02 1.712462e+01 1.161462e+00 1.161462e+00 +5.750000e-01 2.500000e-02 2.500000e-02 1.545775e+01 1.031614e+00 1.031614e+00 +6.250000e-01 2.500000e-02 2.500000e-02 1.394326e+01 9.189381e-01 9.189381e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.267364e+01 8.241817e-01 8.241817e-01 +7.250000e-01 2.500000e-02 2.500000e-02 1.146906e+01 7.364699e-01 7.364699e-01 +7.750000e-01 2.500000e-02 2.500000e-02 1.041222e+01 6.620311e-01 6.620311e-01 +8.250000e-01 2.500000e-02 2.500000e-02 9.466583e+00 5.984931e-01 5.984931e-01 +8.750000e-01 2.500000e-02 2.500000e-02 8.640995e+00 5.433386e-01 5.433386e-01 +9.250000e-01 2.500000e-02 2.500000e-02 7.873640e+00 4.937654e-01 4.937654e-01 +9.750000e-01 2.500000e-02 2.500000e-02 7.180090e+00 4.513630e-01 4.513630e-01 +1.050000e+00 5.000000e-02 5.000000e-02 6.224933e+00 3.921907e-01 3.921907e-01 +1.150000e+00 5.000000e-02 5.000000e-02 5.178251e+00 3.276252e-01 3.276252e-01 +1.250000e+00 5.000000e-02 5.000000e-02 4.330561e+00 2.771363e-01 2.771363e-01 +1.350000e+00 5.000000e-02 5.000000e-02 3.621432e+00 2.387488e-01 2.387488e-01 +1.450000e+00 5.000000e-02 5.000000e-02 3.046749e+00 2.055667e-01 2.055667e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.555325e+00 1.780884e-01 1.780884e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.150055e+00 1.512749e-01 1.512749e-01 +1.750000e+00 5.000000e-02 5.000000e-02 1.804522e+00 1.292962e-01 1.292962e-01 +1.850000e+00 5.000000e-02 5.000000e-02 1.525295e+00 1.102608e-01 1.102608e-01 +1.950000e+00 5.000000e-02 5.000000e-02 1.285977e+00 9.264063e-02 9.264063e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.014788e+00 7.353393e-02 7.353393e-02 +2.300000e+00 1.000000e-01 1.000000e-01 7.429820e-01 5.390588e-02 5.390588e-02 +2.500000e+00 1.000000e-01 1.000000e-01 5.485818e-01 3.947498e-02 3.947498e-02 +2.700000e+00 1.000000e-01 1.000000e-01 4.111873e-01 2.922977e-02 2.922977e-02 +2.900000e+00 1.000000e-01 1.000000e-01 3.084110e-01 2.157501e-02 2.157501e-02 +3.100000e+00 1.000000e-01 1.000000e-01 2.346464e-01 1.643230e-02 1.643230e-02 +3.300000e+00 1.000000e-01 1.000000e-01 1.822323e-01 1.272018e-02 1.272018e-02 +3.500000e+00 1.000000e-01 1.000000e-01 1.400200e-01 9.765428e-03 9.765428e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.102161e-01 7.641651e-03 7.641651e-03 +3.900000e+00 1.000000e-01 1.000000e-01 8.662745e-02 5.979651e-03 5.979651e-03 +4.250000e+00 2.500000e-01 2.500000e-01 5.794235e-02 3.974800e-03 3.974800e-03 +4.750000e+00 2.500000e-01 2.500000e-01 3.506923e-02 2.386735e-03 2.386735e-03 +5.500000e+00 5.000000e-01 5.000000e-01 1.746304e-02 1.188877e-03 1.188877e-03 +7.000000e+00 1.000000e+00 1.000000e+00 5.597032e-03 3.802554e-04 3.802554e-04 +9.000000e+00 1.000000e+00 1.000000e+00 1.590651e-03 1.101047e-04 1.101047e-04 +1.250000e+01 2.500000e+00 2.500000e+00 3.502696e-04 2.522383e-05 2.522383e-05 +2.000000e+01 5.000000e+00 5.000000e+00 4.035771e-05 3.479966e-06 3.479966e-06 +3.250000e+01 7.500000e+00 7.500000e+00 3.668387e-06 6.023576e-07 6.023576e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d02-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.658926, up: 1.658926}, stat: {dn: -0.02044152, up: 0.02044152}, unc. syst.: {dn: -0.4978037, up: 0.4978037}}, 1: {full syst.: {dn: -1.525835, up: 1.525835}, stat: {dn: -0.01943697, up: 0.01943697}, unc. syst.: {dn: -0.5018301, up: 0.5018301}}, 2: {full syst.: {dn: -1.434767, up: 1.434767}, stat: {dn: -0.01192245, up: 0.01192245}, unc. syst.: {dn: -0.4995705, up: 0.4995705}}, 3: {full syst.: {dn: -1.394673, up: 1.394673}, stat: {dn: -0.01111536, up: 0.01111536}, unc. syst.: {dn: -0.4690278, up: 0.4690278}}, 4: {full syst.: {dn: -1.316589, up: 1.316589}, stat: {dn: -0.01038292, up: 0.01038292}, unc. syst.: {dn: -0.4294721, up: 0.4294721}}, 5: {full syst.: {dn: -1.218963, up: 1.218963}, stat: {dn: -0.00961585, up: 0.00961585}, unc. syst.: {dn: -0.3878445, up: 0.3878445}}, 6: {full syst.: {dn: -1.106357, up: 1.106357}, stat: {dn: -0.008995082, up: 0.008995082}, unc. syst.: {dn: -0.350087, up: 0.350087}}, 7: {full syst.: {dn: -0.9827848, up: 0.9827848}, stat: {dn: -0.008400241, up: 0.008400241}, unc. syst.: {dn: -0.3139813, up: 0.3139813}}, 8: {full syst.: {dn: -0.8730824, up: 0.8730824}, stat: {dn: -0.007924921, up: 0.007924921}, unc. syst.: {dn: -0.2825449, up: 0.2825449}}, 9: {full syst.: {dn: -0.7693641, up: 0.7693641}, stat: {dn: -0.007470731, up: 0.007470731}, unc. syst.: {dn: -0.2534727, up: 0.2534727}}, 10: {full syst.: {dn: -0.6816996, up: 0.6816996}, stat: {dn: -0.0070626, up: 0.0070626}, unc. syst.: {dn: -0.227745, up: 0.227745}}, 11: {full syst.: {dn: -0.6045729, up: 0.6045729}, stat: {dn: -0.006701173, up: 0.006701173}, unc. syst.: {dn: -0.2050078, up: 0.2050078}}, 12: {full syst.: {dn: -0.5376713, up: 0.5376713}, stat: {dn: -0.006373442, up: 0.006373442}, unc. syst.: {dn: -0.1849199, up: 0.1849199}}, 13: {full syst.: {dn: -0.4806429, up: 0.4806429}, stat: {dn: -0.006075785, up: 0.006075785}, unc. syst.: {dn: -0.1671494, up: 0.1671494}}, 14: {full syst.: {dn: -0.4321316, up: 0.4321316}, stat: {dn: -0.005792816, up: 0.005792816}, unc. syst.: {dn: -0.1512444, up: 0.1512444}}, 15: {full syst.: {dn: -0.3889053, up: 0.3889053}, stat: {dn: -0.005540356, up: 0.005540356}, unc. syst.: {dn: -0.1369521, up: 0.1369521}}, 16: {full syst.: {dn: -0.3519306, up: 0.3519306}, stat: {dn: -0.005301561, up: 0.005301561}, unc. syst.: {dn: -0.1243085, up: 0.1243085}}, 17: {full syst.: {dn: -0.3202467, up: 0.3202467}, stat: {dn: -0.005066077, up: 0.005066077}, unc. syst.: {dn: -0.112813, up: 0.112813}}, 18: {full syst.: {dn: -0.2763923, up: 0.2763923}, stat: {dn: -0.003326542, up: 0.003326542}, unc. syst.: {dn: -0.09710777, up: 0.09710777}}, 19: {full syst.: {dn: -0.2288535, up: 0.2288535}, stat: {dn: -0.003021494, up: 0.003021494}, unc. syst.: {dn: -0.08002845, up: 0.08002845}}, 20: {full syst.: {dn: -0.1925699, up: 0.1925699}, stat: {dn: -0.002763465, up: 0.002763465}, unc. syst.: {dn: -0.06648729, up: 0.06648729}}, 21: {full syst.: {dn: -0.1654219, up: 0.1654219}, stat: {dn: -0.002524541, up: 0.002524541}, unc. syst.: {dn: -0.05525315, up: 0.05525315}}, 22: {full syst.: {dn: -0.1413683, up: 0.1413683}, stat: {dn: -0.002308435, up: 0.002308435}, unc. syst.: {dn: -0.04602406, up: 0.04602406}}, 23: {full syst.: {dn: -0.1222592, up: 0.1222592}, stat: {dn: -0.002111857, up: 0.002111857}, unc. syst.: {dn: -0.03840769, up: 0.03840769}}, 24: {full syst.: {dn: -0.103034, up: 0.103034}, stat: {dn: -0.00193035, up: 0.00193035}, unc. syst.: {dn: -0.03203416, up: 0.03203416}}, 25: {full syst.: {dn: -0.08795899, up: 0.08795899}, stat: {dn: -0.001765192, up: 0.001765192}, unc. syst.: {dn: -0.02680926, up: 0.02680926}}, 26: {full syst.: {dn: -0.07431083, up: 0.07431083}, stat: {dn: -0.001608337, up: 0.001608337}, unc. syst.: {dn: -0.02243332, up: 0.02243332}}, 27: {full syst.: {dn: -0.06227415, up: 0.06227415}, stat: {dn: -0.001482273, up: 0.001482273}, unc. syst.: {dn: -0.01887272, up: 0.01887272}}, 28: {full syst.: {dn: -0.04890873, up: 0.04890873}, stat: {dn: -0.0009434079, up: 0.0009434079}, unc. syst.: {dn: -0.01472415, up: 0.01472415}}, 29: {full syst.: {dn: -0.03558113, up: 0.03558113}, stat: {dn: -0.0008068388, up: 0.0008068388}, unc. syst.: {dn: -0.01069891, up: 0.01069891}}, 30: {full syst.: {dn: -0.0258145, up: 0.0258145}, stat: {dn: -0.0006874691, up: 0.0006874691}, unc. syst.: {dn: -0.007834032, up: 0.007834032}}, 31: {full syst.: {dn: -0.01894397, up: 0.01894397}, stat: {dn: -0.0005934391, up: 0.0005934391}, unc. syst.: {dn: -0.005827963, up: 0.005827963}}, 32: {full syst.: {dn: -0.01391471, up: 0.01391471}, stat: {dn: -0.0005134648, up: 0.0005134648}, unc. syst.: {dn: -0.004358562, up: 0.004358562}}, 33: {full syst.: {dn: -0.01058995, up: 0.01058995}, stat: {dn: -0.000445997, up: 0.000445997}, unc. syst.: {dn: -0.003314867, up: 0.003314867}}, 34: {full syst.: {dn: -0.008035232, up: 0.008035232}, stat: {dn: -0.0003864205, up: 0.0003864205}, unc. syst.: {dn: -0.00252573, up: 0.00252573}}, 35: {full syst.: {dn: -0.006178816, up: 0.006178816}, stat: {dn: -0.0003380571, up: 0.0003380571}, unc. syst.: {dn: -0.001945559, up: 0.001945559}}, 36: {full syst.: {dn: -0.004798262, up: 0.004798262}, stat: {dn: -0.0002987781, up: 0.0002987781}, unc. syst.: {dn: -0.0015222, up: 0.0015222}}, 37: {full syst.: {dn: -0.003732546, up: 0.003732546}, stat: {dn: -0.000262179, up: 0.000262179}, unc. syst.: {dn: -0.001191363, up: 0.001191363}}, 38: {full syst.: {dn: -0.00251811, up: 0.00251811}, stat: {dn: -0.0001262207, up: 0.0001262207}, unc. syst.: {dn: -0.0008072582, up: 0.0008072582}}, 39: {full syst.: {dn: -0.001467383, up: 0.001467383}, stat: {dn: -9.574923e-05, up: 9.574923e-05}, unc. syst.: {dn: -0.0004755736, up: 0.0004755736}}, 40: {full syst.: {dn: -0.0007344154, up: 0.0007344154}, stat: {dn: -4.806647e-05, up: 4.806647e-05}, unc. syst.: {dn: -0.000237945, up: 0.000237945}}, 41: {full syst.: {dn: -0.0002404787, up: 0.0002404787}, stat: {dn: -1.93674e-05, up: 1.93674e-05}, unc. syst.: {dn: -7.833092e-05, up: 7.833092e-05}}, 42: {full syst.: {dn: -6.489405e-05, up: 6.489405e-05}, stat: {dn: -9.940438e-06, up: 9.940438e-06}, unc. syst.: {dn: -2.113649e-05, up: 2.113649e-05}}, 43: {full syst.: {dn: -1.488913e-05, up: 1.488913e-05}, stat: {dn: -2.971325e-06, up: 2.971325e-06}, unc. syst.: {dn: -4.738466e-06, up: 4.738466e-06}}, 44: {full syst.: {dn: -1.776636e-06, up: 1.776636e-06}, stat: {dn: -6.962065e-07, up: 6.962065e-07}, unc. syst.: {dn: -5.21288e-07, up: 5.21288e-07}}, 45: {full syst.: {dn: -2.308682e-07, up: 2.308682e-07}, stat: {dn: -2.091525e-07, up: 2.091525e-07}, unc. syst.: {dn: -5.325958e-08, up: 5.325958e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d02-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 2.384047e+01 1.732126e+00 1.732126e+00 +1.900000e-01 1.000000e-02 1.000000e-02 2.403330e+01 1.606357e+00 1.606357e+00 +2.250000e-01 2.500000e-02 2.500000e-02 2.392509e+01 1.519299e+00 1.519299e+00 +2.750000e-01 2.500000e-02 2.500000e-02 2.246236e+01 1.471470e+00 1.471470e+00 +3.250000e-01 2.500000e-02 2.500000e-02 2.056798e+01 1.384905e+00 1.384905e+00 +3.750000e-01 2.500000e-02 2.500000e-02 1.857438e+01 1.279213e+00 1.279213e+00 +4.250000e-01 2.500000e-02 2.500000e-02 1.676613e+01 1.160460e+00 1.160460e+00 +4.750000e-01 2.500000e-02 2.500000e-02 1.503698e+01 1.031756e+00 1.031756e+00 +5.250000e-01 2.500000e-02 2.500000e-02 1.353145e+01 9.176967e-01 9.176967e-01 +5.750000e-01 2.500000e-02 2.500000e-02 1.213914e+01 8.100774e-01 8.100774e-01 +6.250000e-01 2.500000e-02 2.500000e-02 1.090701e+01 7.187712e-01 7.187712e-01 +6.750000e-01 2.500000e-02 2.500000e-02 9.818094e+00 6.384211e-01 6.384211e-01 +7.250000e-01 2.500000e-02 2.500000e-02 8.856057e+00 5.686180e-01 5.686180e-01 +7.750000e-01 2.500000e-02 2.500000e-02 8.005006e+00 5.089140e-01 5.089140e-01 +8.250000e-01 2.500000e-02 2.500000e-02 7.243291e+00 4.578713e-01 4.578713e-01 +8.750000e-01 2.500000e-02 2.500000e-02 6.558815e+00 4.123517e-01 4.123517e-01 +9.250000e-01 2.500000e-02 2.500000e-02 5.953296e+00 3.732772e-01 3.732772e-01 +9.750000e-01 2.500000e-02 2.500000e-02 5.402761e+00 3.395738e-01 3.395738e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.650619e+00 2.929739e-01 2.929739e-01 +1.150000e+00 5.000000e-02 5.000000e-02 3.832668e+00 2.424616e-01 2.424616e-01 +1.250000e+00 5.000000e-02 5.000000e-02 3.184164e+00 2.037434e-01 2.037434e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.646146e+00 1.744239e-01 1.744239e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.204153e+00 1.486894e-01 1.486894e-01 +1.550000e+00 5.000000e-02 5.000000e-02 1.839395e+00 1.281676e-01 1.281676e-01 +1.650000e+00 5.000000e-02 5.000000e-02 1.534158e+00 1.079163e-01 1.079163e-01 +1.750000e+00 5.000000e-02 5.000000e-02 1.283931e+00 9.197084e-02 9.197084e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.074361e+00 7.763981e-02 7.763981e-02 +1.950000e+00 5.000000e-02 5.000000e-02 9.038396e-01 6.508799e-02 6.508799e-02 +2.100000e+00 1.000000e-01 1.000000e-01 7.051588e-01 5.108576e-02 5.108576e-02 +2.300000e+00 1.000000e-01 1.000000e-01 5.123849e-01 3.716362e-02 3.716362e-02 +2.500000e+00 1.000000e-01 1.000000e-01 3.751821e-01 2.698579e-02 2.698579e-02 +2.700000e+00 1.000000e-01 1.000000e-01 2.791088e-01 1.982905e-02 1.982905e-02 +2.900000e+00 1.000000e-01 1.000000e-01 2.087373e-01 1.459040e-02 1.459040e-02 +3.100000e+00 1.000000e-01 1.000000e-01 1.587534e-01 1.110560e-02 1.110560e-02 +3.300000e+00 1.000000e-01 1.000000e-01 1.209605e-01 8.431701e-03 8.431701e-03 +3.500000e+00 1.000000e-01 1.000000e-01 9.317535e-02 6.486698e-03 6.486698e-03 +3.700000e+00 1.000000e-01 1.000000e-01 7.290018e-02 5.042785e-03 5.042785e-03 +3.900000e+00 1.000000e-01 1.000000e-01 5.705595e-02 3.926829e-03 3.926829e-03 +4.250000e+00 2.500000e-01 2.500000e-01 3.866066e-02 2.647353e-03 2.647353e-03 +4.750000e+00 2.500000e-01 2.500000e-01 2.277584e-02 1.545494e-03 1.545494e-03 +5.500000e+00 5.000000e-01 5.000000e-01 1.139550e-02 7.734948e-04 7.734948e-04 +7.000000e+00 1.000000e+00 1.000000e+00 3.751371e-03 2.536550e-04 2.536550e-04 +9.000000e+00 1.000000e+00 1.000000e+00 1.012254e-03 6.896957e-05 6.896957e-05 +1.250000e+01 2.500000e+00 2.500000e+00 2.269314e-04 1.590497e-05 1.590497e-05 +2.000000e+01 5.000000e+00 5.000000e+00 2.496517e-05 1.978100e-06 1.978100e-06 +3.250000e+01 7.500000e+00 7.500000e+00 2.550671e-06 3.160403e-07 3.160403e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d03-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.392532, up: 1.392532}, stat: {dn: -0.01687055, up: 0.01687055}, unc. syst.: {dn: -0.4178652, up: 0.4178652}}, 1: {full syst.: {dn: -1.280798, up: 1.280798}, stat: {dn: -0.01602614, up: 0.01602614}, unc. syst.: {dn: -0.4212402, up: 0.4212402}}, 2: {full syst.: {dn: -1.2084, up: 1.2084}, stat: {dn: -0.009844468, up: 0.009844468}, unc. syst.: {dn: -0.420752, up: 0.420752}}, 3: {full syst.: {dn: -1.173444, up: 1.173444}, stat: {dn: -0.009163723, up: 0.009163723}, unc. syst.: {dn: -0.3946286, up: 0.3946286}}, 4: {full syst.: {dn: -1.106352, up: 1.106352}, stat: {dn: -0.00854951, up: 0.00854951}, unc. syst.: {dn: -0.3608927, up: 0.3608927}}, 5: {full syst.: {dn: -1.019969, up: 1.019969}, stat: {dn: -0.007893646, up: 0.007893646}, unc. syst.: {dn: -0.3245296, up: 0.3245296}}, 6: {full syst.: {dn: -0.9217089, up: 0.9217089}, stat: {dn: -0.007362679, up: 0.007362679}, unc. syst.: {dn: -0.2916583, up: 0.2916583}}, 7: {full syst.: {dn: -0.8141863, up: 0.8141863}, stat: {dn: -0.006851445, up: 0.006851445}, unc. syst.: {dn: -0.2601172, up: 0.2601172}}, 8: {full syst.: {dn: -0.7204314, up: 0.7204314}, stat: {dn: -0.006448074, up: 0.006448074}, unc. syst.: {dn: -0.2331443, up: 0.2331443}}, 9: {full syst.: {dn: -0.6316452, up: 0.6316452}, stat: {dn: -0.006060118, up: 0.006060118}, unc. syst.: {dn: -0.2081002, up: 0.2081002}}, 10: {full syst.: {dn: -0.5571216, up: 0.5571216}, stat: {dn: -0.005713531, up: 0.005713531}, unc. syst.: {dn: -0.1861254, up: 0.1861254}}, 11: {full syst.: {dn: -0.4922153, up: 0.4922153}, stat: {dn: -0.005409106, up: 0.005409106}, unc. syst.: {dn: -0.1669079, up: 0.1669079}}, 12: {full syst.: {dn: -0.4352885, up: 0.4352885}, stat: {dn: -0.005127573, up: 0.005127573}, unc. syst.: {dn: -0.1497076, up: 0.1497076}}, 13: {full syst.: {dn: -0.3875652, up: 0.3875652}, stat: {dn: -0.004876624, up: 0.004876624}, unc. syst.: {dn: -0.1347805, up: 0.1347805}}, 14: {full syst.: {dn: -0.3463684, up: 0.3463684}, stat: {dn: -0.004632935, up: 0.004632935}, unc. syst.: {dn: -0.1212276, up: 0.1212276}}, 15: {full syst.: {dn: -0.3104608, up: 0.3104608}, stat: {dn: -0.004420464, up: 0.004420464}, unc. syst.: {dn: -0.109328, up: 0.109328}}, 16: {full syst.: {dn: -0.2798852, up: 0.2798852}, stat: {dn: -0.004220224, up: 0.004220224}, unc. syst.: {dn: -0.09886067, up: 0.09886067}}, 17: {full syst.: {dn: -0.2536867, up: 0.2536867}, stat: {dn: -0.004023213, up: 0.004023213}, unc. syst.: {dn: -0.08936594, up: 0.08936594}}, 18: {full syst.: {dn: -0.2179059, up: 0.2179059}, stat: {dn: -0.002634133, up: 0.002634133}, unc. syst.: {dn: -0.07655913, up: 0.07655913}}, 19: {full syst.: {dn: -0.1788574, up: 0.1788574}, stat: {dn: -0.002379914, up: 0.002379914}, unc. syst.: {dn: -0.06254518, up: 0.06254518}}, 20: {full syst.: {dn: -0.1492791, up: 0.1492791}, stat: {dn: -0.002165842, up: 0.002165842}, unc. syst.: {dn: -0.05154056, up: 0.05154056}}, 21: {full syst.: {dn: -0.1274887, up: 0.1274887}, stat: {dn: -0.001971499, up: 0.001971499}, unc. syst.: {dn: -0.04258295, up: 0.04258295}}, 22: {full syst.: {dn: -0.1083968, up: 0.1083968}, stat: {dn: -0.001797037, up: 0.001797037}, unc. syst.: {dn: -0.03528982, up: 0.03528982}}, 23: {full syst.: {dn: -0.09300159, up: 0.09300159}, stat: {dn: -0.001636031, up: 0.001636031}, unc. syst.: {dn: -0.02921642, up: 0.02921642}}, 24: {full syst.: {dn: -0.07806553, up: 0.07806553}, stat: {dn: -0.001491767, up: 0.001491767}, unc. syst.: {dn: -0.02427124, up: 0.02427124}}, 25: {full syst.: {dn: -0.0659729, up: 0.0659729}, stat: {dn: -0.001355712, up: 0.001355712}, unc. syst.: {dn: -0.02010806, up: 0.02010806}}, 26: {full syst.: {dn: -0.05562853, up: 0.05562853}, stat: {dn: -0.001234036, up: 0.001234036}, unc. syst.: {dn: -0.01679342, up: 0.01679342}}, 27: {full syst.: {dn: -0.04635591, up: 0.04635591}, stat: {dn: -0.001133148, up: 0.001133148}, unc. syst.: {dn: -0.01404856, up: 0.01404856}}, 28: {full syst.: {dn: -0.0362582, up: 0.0362582}, stat: {dn: -0.0007188293, up: 0.0007188293}, unc. syst.: {dn: -0.01091566, up: 0.01091566}}, 29: {full syst.: {dn: -0.02615218, up: 0.02615218}, stat: {dn: -0.0006115548, up: 0.0006115548}, unc. syst.: {dn: -0.007863715, up: 0.007863715}}, 30: {full syst.: {dn: -0.01891144, up: 0.01891144}, stat: {dn: -0.0005202349, up: 0.0005202349}, unc. syst.: {dn: -0.00573913, up: 0.00573913}}, 31: {full syst.: {dn: -0.01374783, up: 0.01374783}, stat: {dn: -0.0004465663, up: 0.0004465663}, unc. syst.: {dn: -0.004229412, up: 0.004229412}}, 32: {full syst.: {dn: -0.01010047, up: 0.01010047}, stat: {dn: -0.0003864592, up: 0.0003864592}, unc. syst.: {dn: -0.003163812, up: 0.003163812}}, 33: {full syst.: {dn: -0.007655099, up: 0.007655099}, stat: {dn: -0.0003349577, up: 0.0003349577}, unc. syst.: {dn: -0.0023962, up: 0.0023962}}, 34: {full syst.: {dn: -0.005765789, up: 0.005765789}, stat: {dn: -0.0002890838, up: 0.0002890838}, unc. syst.: {dn: -0.001812372, up: 0.001812372}}, 35: {full syst.: {dn: -0.004462615, up: 0.004462615}, stat: {dn: -0.0002539536, up: 0.0002539536}, unc. syst.: {dn: -0.001405169, up: 0.001405169}}, 36: {full syst.: {dn: -0.003430717, up: 0.003430717}, stat: {dn: -0.0002231445, up: 0.0002231445}, unc. syst.: {dn: -0.00108836, up: 0.00108836}}, 37: {full syst.: {dn: -0.002679926, up: 0.002679926}, stat: {dn: -0.0001964042, up: 0.0001964042}, unc. syst.: {dn: -0.0008553852, up: 0.0008553852}}, 38: {full syst.: {dn: -0.001801424, up: 0.001801424}, stat: {dn: -9.500369e-05, up: 9.500369e-05}, unc. syst.: {dn: -0.0005775025, up: 0.0005775025}}, 39: {full syst.: {dn: -0.001038284, up: 0.001038284}, stat: {dn: -7.174468e-05, up: 7.174468e-05}, unc. syst.: {dn: -0.0003365042, up: 0.0003365042}}, 40: {full syst.: {dn: -0.0005206856, up: 0.0005206856}, stat: {dn: -3.603807e-05, up: 3.603807e-05}, unc. syst.: {dn: -0.0001686982, up: 0.0001686982}}, 41: {full syst.: {dn: -0.0001676415, up: 0.0001676415}, stat: {dn: -1.440657e-05, up: 1.440657e-05}, unc. syst.: {dn: -5.460573e-05, up: 5.460573e-05}}, 42: {full syst.: {dn: -4.649756e-05, up: 4.649756e-05}, stat: {dn: -7.509124e-06, up: 7.509124e-06}, unc. syst.: {dn: -1.514461e-05, up: 1.514461e-05}}, 43: {full syst.: {dn: -1.077265e-05, up: 1.077265e-05}, stat: {dn: -2.255928e-06, up: 2.255928e-06}, unc. syst.: {dn: -3.428396e-06, up: 3.428396e-06}}, 44: {full syst.: {dn: -1.242444e-06, up: 1.242444e-06}, stat: {dn: -5.197874e-07, up: 5.197874e-07}, unc. syst.: {dn: -3.645491e-07, up: 3.645491e-07}}, 45: {full syst.: {dn: -1.616515e-07, up: 1.616515e-07}, stat: {dn: -1.575089e-07, up: 1.575089e-07}, unc. syst.: {dn: -3.729179e-08, up: 3.729179e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d03-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 2.001212e+01 1.453974e+00 1.453974e+00 +1.900000e-01 1.000000e-02 1.000000e-02 2.017374e+01 1.348386e+00 1.348386e+00 +2.250000e-01 2.500000e-02 2.500000e-02 2.015037e+01 1.279594e+00 1.279594e+00 +2.750000e-01 2.500000e-02 2.500000e-02 1.889928e+01 1.238058e+00 1.238058e+00 +3.250000e-01 2.500000e-02 2.500000e-02 1.728363e+01 1.163757e+00 1.163757e+00 +3.750000e-01 2.500000e-02 2.500000e-02 1.554215e+01 1.070382e+00 1.070382e+00 +4.250000e-01 2.500000e-02 2.500000e-02 1.396790e+01 9.667813e-01 9.667813e-01 +4.750000e-01 2.500000e-02 2.500000e-02 1.245736e+01 8.547557e-01 8.547557e-01 +5.250000e-01 2.500000e-02 2.500000e-02 1.116559e+01 7.572445e-01 7.572445e-01 +5.750000e-01 2.500000e-02 2.500000e-02 9.966193e+00 6.650700e-01 6.650700e-01 +6.250000e-01 2.500000e-02 2.500000e-02 8.913792e+00 5.874179e-01 5.874179e-01 +6.750000e-01 2.500000e-02 2.500000e-02 7.993438e+00 5.197725e-01 5.197725e-01 +7.250000e-01 2.500000e-02 2.500000e-02 7.169695e+00 4.603420e-01 4.603420e-01 +7.750000e-01 2.500000e-02 2.500000e-02 6.454817e+00 4.103612e-01 4.103612e-01 +8.250000e-01 2.500000e-02 2.500000e-02 5.805748e+00 3.669995e-01 3.669995e-01 +8.750000e-01 2.500000e-02 2.500000e-02 5.235863e+00 3.291779e-01 3.291779e-01 +9.250000e-01 2.500000e-02 2.500000e-02 4.734568e+00 2.968619e-01 2.968619e-01 +9.750000e-01 2.500000e-02 2.500000e-02 4.279852e+00 2.689970e-01 2.689970e-01 +1.050000e+00 5.000000e-02 5.000000e-02 3.666517e+00 2.309788e-01 2.309788e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.995371e+00 1.894928e-01 1.894928e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.468345e+00 1.579410e-01 1.579410e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.039353e+00 1.344268e-01 1.344268e-01 +1.450000e+00 5.000000e-02 5.000000e-02 1.690076e+00 1.140108e-01 1.140108e-01 +1.550000e+00 5.000000e-02 5.000000e-02 1.399213e+00 9.749652e-02 9.749652e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.162382e+00 8.176518e-02 8.176518e-02 +1.750000e+00 5.000000e-02 5.000000e-02 9.630016e-01 6.898257e-02 6.898257e-02 +1.850000e+00 5.000000e-02 5.000000e-02 8.042588e-01 5.812121e-02 5.812121e-02 +1.950000e+00 5.000000e-02 5.000000e-02 6.728042e-01 4.845118e-02 4.845118e-02 +2.100000e+00 1.000000e-01 1.000000e-01 5.227653e-01 3.787249e-02 3.787249e-02 +2.300000e+00 1.000000e-01 1.000000e-01 3.766037e-01 2.731572e-02 2.731572e-02 +2.500000e+00 1.000000e-01 1.000000e-01 2.748545e-01 1.976995e-02 1.976995e-02 +2.700000e+00 1.000000e-01 1.000000e-01 2.025521e-01 1.439063e-02 1.439063e-02 +2.900000e+00 1.000000e-01 1.000000e-01 1.515191e-01 1.059144e-02 1.059144e-02 +3.100000e+00 1.000000e-01 1.000000e-01 1.147572e-01 8.028357e-03 8.028357e-03 +3.300000e+00 1.000000e-01 1.000000e-01 8.679686e-02 6.050833e-03 6.050833e-03 +3.500000e+00 1.000000e-01 1.000000e-01 6.729537e-02 4.685502e-03 4.685502e-03 +3.700000e+00 1.000000e-01 1.000000e-01 5.212301e-02 3.606125e-03 3.606125e-03 +3.900000e+00 1.000000e-01 1.000000e-01 4.096552e-02 2.819975e-03 2.819975e-03 +4.250000e+00 2.500000e-01 2.500000e-01 2.765735e-02 1.894113e-03 1.894113e-03 +4.750000e+00 2.500000e-01 2.500000e-01 1.611563e-02 1.093808e-03 1.093808e-03 +5.500000e+00 5.000000e-01 5.000000e-01 8.079177e-03 5.485174e-04 5.485174e-04 +7.000000e+00 1.000000e+00 1.000000e+00 2.615140e-03 1.768983e-04 1.768983e-04 +9.000000e+00 1.000000e+00 1.000000e+00 7.252954e-04 4.947494e-05 4.947494e-05 +1.250000e+01 2.500000e+00 2.500000e+00 1.641904e-04 1.152793e-05 1.152793e-05 +2.000000e+01 5.000000e+00 5.000000e+00 1.745874e-05 1.395257e-06 1.395257e-06 +3.250000e+01 7.500000e+00 7.500000e+00 1.785953e-06 2.287596e-07 2.287596e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d04-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.215329, up: 1.215329}, stat: {dn: -0.01539759, up: 0.01539759}, unc. syst.: {dn: -0.3646907, up: 0.3646907}}, 1: {full syst.: {dn: -1.120724, up: 1.120724}, stat: {dn: -0.01468755, up: 0.01468755}, unc. syst.: {dn: -0.3685936, up: 0.3685936}}, 2: {full syst.: {dn: -1.059199, up: 1.059199}, stat: {dn: -0.009047796, up: 0.009047796}, unc. syst.: {dn: -0.368802, up: 0.368802}}, 3: {full syst.: {dn: -1.029612, up: 1.029612}, stat: {dn: -0.008445761, up: 0.008445761}, unc. syst.: {dn: -0.3462578, up: 0.3462578}}, 4: {full syst.: {dn: -0.9677513, up: 0.9677513}, stat: {dn: -0.007873118, up: 0.007873118}, unc. syst.: {dn: -0.315681, up: 0.315681}}, 5: {full syst.: {dn: -0.8908419, up: 0.8908419}, stat: {dn: -0.007271614, up: 0.007271614}, unc. syst.: {dn: -0.2834443, up: 0.2834443}}, 6: {full syst.: {dn: -0.8022021, up: 0.8022021}, stat: {dn: -0.006773662, up: 0.006773662}, unc. syst.: {dn: -0.2538425, up: 0.2538425}}, 7: {full syst.: {dn: -0.7070683, up: 0.7070683}, stat: {dn: -0.006299568, up: 0.006299568}, unc. syst.: {dn: -0.225895, up: 0.225895}}, 8: {full syst.: {dn: -0.6220603, up: 0.6220603}, stat: {dn: -0.005910405, up: 0.005910405}, unc. syst.: {dn: -0.2013097, up: 0.2013097}}, 9: {full syst.: {dn: -0.5440592, up: 0.5440592}, stat: {dn: -0.005548107, up: 0.005548107}, unc. syst.: {dn: -0.1792444, up: 0.1792444}}, 10: {full syst.: {dn: -0.4774282, up: 0.4774282}, stat: {dn: -0.005215615, up: 0.005215615}, unc. syst.: {dn: -0.1595012, up: 0.1595012}}, 11: {full syst.: {dn: -0.4205254, up: 0.4205254}, stat: {dn: -0.004928549, up: 0.004928549}, unc. syst.: {dn: -0.1425982, up: 0.1425982}}, 12: {full syst.: {dn: -0.3703808, up: 0.3703808}, stat: {dn: -0.004660035, up: 0.004660035}, unc. syst.: {dn: -0.1273841, up: 0.1273841}}, 13: {full syst.: {dn: -0.3283069, up: 0.3283069}, stat: {dn: -0.004419168, up: 0.004419168}, unc. syst.: {dn: -0.1141727, up: 0.1141727}}, 14: {full syst.: {dn: -0.2924426, up: 0.2924426}, stat: {dn: -0.004189534, up: 0.004189534}, unc. syst.: {dn: -0.1023538, up: 0.1023538}}, 15: {full syst.: {dn: -0.261374, up: 0.261374}, stat: {dn: -0.003988758, up: 0.003988758}, unc. syst.: {dn: -0.09204226, up: 0.09204226}}, 16: {full syst.: {dn: -0.2347854, up: 0.2347854}, stat: {dn: -0.003798679, up: 0.003798679}, unc. syst.: {dn: -0.0829306, up: 0.0829306}}, 17: {full syst.: {dn: -0.2123704, up: 0.2123704}, stat: {dn: -0.003616057, up: 0.003616057}, unc. syst.: {dn: -0.0748115, up: 0.0748115}}, 18: {full syst.: {dn: -0.1815655, up: 0.1815655}, stat: {dn: -0.002360706, up: 0.002360706}, unc. syst.: {dn: -0.06379127, up: 0.06379127}}, 19: {full syst.: {dn: -0.1479113, up: 0.1479113}, stat: {dn: -0.002122953, up: 0.002122953}, unc. syst.: {dn: -0.05172354, up: 0.05172354}}, 20: {full syst.: {dn: -0.1226943, up: 0.1226943}, stat: {dn: -0.001924395, up: 0.001924395}, unc. syst.: {dn: -0.04236181, up: 0.04236181}}, 21: {full syst.: {dn: -0.1043729, up: 0.1043729}, stat: {dn: -0.00174727, up: 0.00174727}, unc. syst.: {dn: -0.03486197, up: 0.03486197}}, 22: {full syst.: {dn: -0.0880414, up: 0.0880414}, stat: {dn: -0.00158488, up: 0.00158488}, unc. syst.: {dn: -0.02866287, up: 0.02866287}}, 23: {full syst.: {dn: -0.07528468, up: 0.07528468}, stat: {dn: -0.001439845, up: 0.001439845}, unc. syst.: {dn: -0.02365066, up: 0.02365066}}, 24: {full syst.: {dn: -0.06298472, up: 0.06298472}, stat: {dn: -0.001310407, up: 0.001310407}, unc. syst.: {dn: -0.01958249, up: 0.01958249}}, 25: {full syst.: {dn: -0.05327587, up: 0.05327587}, stat: {dn: -0.001191676, up: 0.001191676}, unc. syst.: {dn: -0.0162381, up: 0.0162381}}, 26: {full syst.: {dn: -0.0445521, up: 0.0445521}, stat: {dn: -0.001080101, up: 0.001080101}, unc. syst.: {dn: -0.01344961, up: 0.01344961}}, 27: {full syst.: {dn: -0.03696494, up: 0.03696494}, stat: {dn: -0.000988807, up: 0.000988807}, unc. syst.: {dn: -0.01120255, up: 0.01120255}}, 28: {full syst.: {dn: -0.02884622, up: 0.02884622}, stat: {dn: -0.0006249033, up: 0.0006249033}, unc. syst.: {dn: -0.008684258, up: 0.008684258}}, 29: {full syst.: {dn: -0.02070295, up: 0.02070295}, stat: {dn: -0.0005302549, up: 0.0005302549}, unc. syst.: {dn: -0.006225182, up: 0.006225182}}, 30: {full syst.: {dn: -0.01483626, up: 0.01483626}, stat: {dn: -0.0004491561, up: 0.0004491561}, unc. syst.: {dn: -0.004502421, up: 0.004502421}}, 31: {full syst.: {dn: -0.01079585, up: 0.01079585}, stat: {dn: -0.0003860346, up: 0.0003860346}, unc. syst.: {dn: -0.003321258, up: 0.003321258}}, 32: {full syst.: {dn: -0.007882126, up: 0.007882126}, stat: {dn: -0.0003328447, up: 0.0003328447}, unc. syst.: {dn: -0.002468952, up: 0.002468952}}, 33: {full syst.: {dn: -0.005901194, up: 0.005901194}, stat: {dn: -0.0002867024, up: 0.0002867024}, unc. syst.: {dn: -0.001847192, up: 0.001847192}}, 34: {full syst.: {dn: -0.004469298, up: 0.004469298}, stat: {dn: -0.0002485693, up: 0.0002485693}, unc. syst.: {dn: -0.001404843, up: 0.001404843}}, 35: {full syst.: {dn: -0.003429837, up: 0.003429837}, stat: {dn: -0.0002173842, up: 0.0002173842}, unc. syst.: {dn: -0.001079972, up: 0.001079972}}, 36: {full syst.: {dn: -0.002673508, up: 0.002673508}, stat: {dn: -0.0001926454, up: 0.0001926454}, unc. syst.: {dn: -0.0008481437, up: 0.0008481437}}, 37: {full syst.: {dn: -0.002085713, up: 0.002085713}, stat: {dn: -0.0001696365, up: 0.0001696365}, unc. syst.: {dn: -0.0006657231, up: 0.0006657231}}, 38: {full syst.: {dn: -0.001398457, up: 0.001398457}, stat: {dn: -8.309134e-05, up: 8.309134e-05}, unc. syst.: {dn: -0.0004483188, up: 0.0004483188}}, 39: {full syst.: {dn: -0.0008048456, up: 0.0008048456}, stat: {dn: -6.285155e-05, up: 6.285155e-05}, unc. syst.: {dn: -0.0002608476, up: 0.0002608476}}, 40: {full syst.: {dn: -0.0004055518, up: 0.0004055518}, stat: {dn: -3.162545e-05, up: 3.162545e-05}, unc. syst.: {dn: -0.0001313957, up: 0.0001313957}}, 41: {full syst.: {dn: -0.0001311381, up: 0.0001311381}, stat: {dn: -1.268934e-05, up: 1.268934e-05}, unc. syst.: {dn: -4.27155e-05, up: 4.27155e-05}}, 42: {full syst.: {dn: -3.5492e-05, up: 3.5492e-05}, stat: {dn: -6.548406e-06, up: 6.548406e-06}, unc. syst.: {dn: -1.156002e-05, up: 1.156002e-05}}, 43: {full syst.: {dn: -7.843652e-06, up: 7.843652e-06}, stat: {dn: -1.921716e-06, up: 1.921716e-06}, unc. syst.: {dn: -2.496243e-06, up: 2.496243e-06}}, 44: {full syst.: {dn: -9.393236e-07, up: 9.393236e-07}, stat: {dn: -4.515367e-07, up: 4.515367e-07}, unc. syst.: {dn: -2.756097e-07, up: 2.756097e-07}}, 45: {full syst.: {dn: -1.208729e-07, up: 1.208729e-07}, stat: {dn: -1.352595e-07, up: 1.352595e-07}, unc. syst.: {dn: -2.788448e-08, up: 2.788448e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d04-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 1.746552e+01 1.268961e+00 1.268961e+00 +1.900000e-01 1.000000e-02 1.000000e-02 1.765243e+01 1.179873e+00 1.179873e+00 +2.250000e-01 2.500000e-02 2.500000e-02 1.766241e+01 1.121606e+00 1.121606e+00 +2.750000e-01 2.500000e-02 2.500000e-02 1.658274e+01 1.086309e+00 1.086309e+00 +3.250000e-01 2.500000e-02 2.500000e-02 1.511838e+01 1.017968e+00 1.017968e+00 +3.750000e-01 2.500000e-02 2.500000e-02 1.357452e+01 9.348758e-01 9.348758e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.215685e+01 8.414334e-01 8.414334e-01 +4.750000e-01 2.500000e-02 2.500000e-02 1.081841e+01 7.423030e-01 7.423030e-01 +5.250000e-01 2.500000e-02 2.500000e-02 9.640986e+00 6.538498e-01 6.538498e-01 +5.750000e-01 2.500000e-02 2.500000e-02 8.584248e+00 5.728523e-01 5.728523e-01 +6.250000e-01 2.500000e-02 2.500000e-02 7.638720e+00 5.033940e-01 5.033940e-01 +6.750000e-01 2.500000e-02 2.500000e-02 6.829214e+00 4.440722e-01 4.440722e-01 +7.250000e-01 2.500000e-02 2.500000e-02 6.100592e+00 3.917019e-01 3.917019e-01 +7.750000e-01 2.500000e-02 2.500000e-02 5.467883e+00 3.476210e-01 3.476210e-01 +8.250000e-01 2.500000e-02 2.500000e-02 4.901856e+00 3.098653e-01 3.098653e-01 +8.750000e-01 2.500000e-02 2.500000e-02 4.408025e+00 2.771354e-01 2.771354e-01 +9.250000e-01 2.500000e-02 2.500000e-02 3.971655e+00 2.490303e-01 2.490303e-01 +9.750000e-01 2.500000e-02 2.500000e-02 3.582821e+00 2.251911e-01 2.251911e-01 +1.050000e+00 5.000000e-02 5.000000e-02 3.055048e+00 1.924602e-01 1.924602e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.477108e+00 1.567086e-01 1.567086e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.028763e+00 1.298157e-01 1.298157e-01 +1.350000e+00 5.000000e-02 5.000000e-02 1.669586e+00 1.100550e-01 1.100550e-01 +1.450000e+00 5.000000e-02 5.000000e-02 1.372703e+00 9.260324e-02 9.260324e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.132661e+00 7.892534e-02 7.892534e-02 +1.650000e+00 5.000000e-02 5.000000e-02 9.378311e-01 6.597171e-02 6.597171e-02 +1.750000e+00 5.000000e-02 5.000000e-02 7.776639e-01 5.570830e-02 5.570830e-02 +1.850000e+00 5.000000e-02 5.000000e-02 6.441195e-01 4.655049e-02 4.655049e-02 +1.950000e+00 5.000000e-02 5.000000e-02 5.365047e-01 3.863783e-02 3.863783e-02 +2.100000e+00 1.000000e-01 1.000000e-01 4.159005e-01 3.013157e-02 3.013157e-02 +2.300000e+00 1.000000e-01 1.000000e-01 2.981321e-01 2.162513e-02 2.162513e-02 +2.500000e+00 1.000000e-01 1.000000e-01 2.156269e-01 1.551090e-02 1.551090e-02 +2.700000e+00 1.000000e-01 1.000000e-01 1.590594e-01 1.130178e-02 1.130178e-02 +2.900000e+00 1.000000e-01 1.000000e-01 1.182414e-01 8.266464e-03 8.266464e-03 +3.100000e+00 1.000000e-01 1.000000e-01 8.846446e-02 6.190186e-03 6.190186e-03 +3.300000e+00 1.000000e-01 1.000000e-01 6.727979e-02 4.691481e-03 4.691481e-03 +3.500000e+00 1.000000e-01 1.000000e-01 5.172128e-02 3.602413e-03 3.602413e-03 +3.700000e+00 1.000000e-01 1.000000e-01 4.061872e-02 2.811424e-03 2.811424e-03 +3.900000e+00 1.000000e-01 1.000000e-01 3.188235e-02 2.195942e-03 2.195942e-03 +4.250000e+00 2.500000e-01 2.500000e-01 2.147058e-02 1.470910e-03 1.470910e-03 +4.750000e+00 2.500000e-01 2.500000e-01 1.249233e-02 8.483916e-04 8.483916e-04 +5.500000e+00 5.000000e-01 5.000000e-01 6.292711e-03 4.274778e-04 4.274778e-04 +7.000000e+00 1.000000e+00 1.000000e+00 2.045701e-03 1.385021e-04 1.385021e-04 +9.000000e+00 1.000000e+00 1.000000e+00 5.536245e-04 3.789720e-05 3.789720e-05 +1.250000e+01 2.500000e+00 2.500000e+00 1.195483e-04 8.452639e-06 8.452639e-06 +2.000000e+01 5.000000e+00 5.000000e+00 1.319931e-05 1.078042e-06 1.078042e-06 +3.250000e+01 7.500000e+00 7.500000e+00 1.335425e-06 1.835291e-07 1.835291e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d05-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.085487, up: 1.085487}, stat: {dn: -0.01429253, up: 0.01429253}, unc. syst.: {dn: -0.3256274, up: 0.3256274}}, 1: {full syst.: {dn: -1.002893, up: 1.002893}, stat: {dn: -0.01367563, up: 0.01367563}, unc. syst.: {dn: -0.3297175, up: 0.3297175}}, 2: {full syst.: {dn: -0.9495617, up: 0.9495617}, stat: {dn: -0.008445214, up: 0.008445214}, unc. syst.: {dn: -0.3304895, up: 0.3304895}}, 3: {full syst.: {dn: -0.9224096, up: 0.9224096}, stat: {dn: -0.007893492, up: 0.007893492}, unc. syst.: {dn: -0.3100852, up: 0.3100852}}, 4: {full syst.: {dn: -0.8663429, up: 0.8663429}, stat: {dn: -0.007361363, up: 0.007361363}, unc. syst.: {dn: -0.2824982, up: 0.2824982}}, 5: {full syst.: {dn: -0.7960467, up: 0.7960467}, stat: {dn: -0.006798354, up: 0.006798354}, unc. syst.: {dn: -0.2531946, up: 0.2531946}}, 6: {full syst.: {dn: -0.7152247, up: 0.7152247}, stat: {dn: -0.006328508, up: 0.006328508}, unc. syst.: {dn: -0.2262422, up: 0.2262422}}, 7: {full syst.: {dn: -0.6277275, up: 0.6277275}, stat: {dn: -0.005874231, up: 0.005874231}, unc. syst.: {dn: -0.2004768, up: 0.2004768}}, 8: {full syst.: {dn: -0.5513553, up: 0.5513553}, stat: {dn: -0.005507611, up: 0.005507611}, unc. syst.: {dn: -0.1783641, up: 0.1783641}}, 9: {full syst.: {dn: -0.4796206, up: 0.4796206}, stat: {dn: -0.005154904, up: 0.005154904}, unc. syst.: {dn: -0.1579556, up: 0.1579556}}, 10: {full syst.: {dn: -0.4204797, up: 0.4204797}, stat: {dn: -0.004843705, up: 0.004843705}, unc. syst.: {dn: -0.1404217, up: 0.1404217}}, 11: {full syst.: {dn: -0.3685649, up: 0.3685649}, stat: {dn: -0.004564086, up: 0.004564086}, unc. syst.: {dn: -0.1249292, up: 0.1249292}}, 12: {full syst.: {dn: -0.3242499, up: 0.3242499}, stat: {dn: -0.004312095, up: 0.004312095}, unc. syst.: {dn: -0.1114731, up: 0.1114731}}, 13: {full syst.: {dn: -0.2860612, up: 0.2860612}, stat: {dn: -0.004077388, up: 0.004077388}, unc. syst.: {dn: -0.09943992, up: 0.09943992}}, 14: {full syst.: {dn: -0.2546105, up: 0.2546105}, stat: {dn: -0.003863339, up: 0.003863339}, unc. syst.: {dn: -0.08907513, up: 0.08907513}}, 15: {full syst.: {dn: -0.2265113, up: 0.2265113}, stat: {dn: -0.003667146, up: 0.003667146}, unc. syst.: {dn: -0.07973142, up: 0.07973142}}, 16: {full syst.: {dn: -0.2029274, up: 0.2029274}, stat: {dn: -0.003486303, up: 0.003486303}, unc. syst.: {dn: -0.07164699, up: 0.07164699}}, 17: {full syst.: {dn: -0.1829902, up: 0.1829902}, stat: {dn: -0.003312171, up: 0.003312171}, unc. syst.: {dn: -0.06443426, up: 0.06443426}}, 18: {full syst.: {dn: -0.1555679, up: 0.1555679}, stat: {dn: -0.002155131, up: 0.002155131}, unc. syst.: {dn: -0.05463407, up: 0.05463407}}, 19: {full syst.: {dn: -0.1262725, up: 0.1262725}, stat: {dn: -0.001933841, up: 0.001933841}, unc. syst.: {dn: -0.04413803, up: 0.04413803}}, 20: {full syst.: {dn: -0.1043397, up: 0.1043397}, stat: {dn: -0.001748821, up: 0.001748821}, unc. syst.: {dn: -0.03600989, up: 0.03600989}}, 21: {full syst.: {dn: -0.08819718, up: 0.08819718}, stat: {dn: -0.001581864, up: 0.001581864}, unc. syst.: {dn: -0.02944775, up: 0.02944775}}, 22: {full syst.: {dn: -0.07408969, up: 0.07408969}, stat: {dn: -0.00143131, up: 0.00143131}, unc. syst.: {dn: -0.02411195, up: 0.02411195}}, 23: {full syst.: {dn: -0.06314378, up: 0.06314378}, stat: {dn: -0.001297813, up: 0.001297813}, unc. syst.: {dn: -0.01982987, up: 0.01982987}}, 24: {full syst.: {dn: -0.05260132, up: 0.05260132}, stat: {dn: -0.00117826, up: 0.00117826}, unc. syst.: {dn: -0.01634876, up: 0.01634876}}, 25: {full syst.: {dn: -0.04439292, up: 0.04439292}, stat: {dn: -0.001070265, up: 0.001070265}, unc. syst.: {dn: -0.01352632, up: 0.01352632}}, 26: {full syst.: {dn: -0.03692845, up: 0.03692845}, stat: {dn: -0.0009676543, up: 0.0009676543}, unc. syst.: {dn: -0.01114465, up: 0.01114465}}, 27: {full syst.: {dn: -0.0305816, up: 0.0305816}, stat: {dn: -0.0008846002, up: 0.0008846002}, unc. syst.: {dn: -0.009265093, up: 0.009265093}}, 28: {full syst.: {dn: -0.02377381, up: 0.02377381}, stat: {dn: -0.0005568739, up: 0.0005568739}, unc. syst.: {dn: -0.007154959, up: 0.007154959}}, 29: {full syst.: {dn: -0.01696169, up: 0.01696169}, stat: {dn: -0.0004710596, up: 0.0004710596}, unc. syst.: {dn: -0.005098633, up: 0.005098633}}, 30: {full syst.: {dn: -0.01212667, up: 0.01212667}, stat: {dn: -0.0003988422, up: 0.0003988422}, unc. syst.: {dn: -0.003678963, up: 0.003678963}}, 31: {full syst.: {dn: -0.008788418, up: 0.008788418}, stat: {dn: -0.0003421438, up: 0.0003421438}, unc. syst.: {dn: -0.002702807, up: 0.002702807}}, 32: {full syst.: {dn: -0.006407767, up: 0.006407767}, stat: {dn: -0.0002948011, up: 0.0002948011}, unc. syst.: {dn: -0.002006455, up: 0.002006455}}, 33: {full syst.: {dn: -0.004813342, up: 0.004813342}, stat: {dn: -0.0002546373, up: 0.0002546373}, unc. syst.: {dn: -0.001506165, up: 0.001506165}}, 34: {full syst.: {dn: -0.003644073, up: 0.003644073}, stat: {dn: -0.0002209093, up: 0.0002209093}, unc. syst.: {dn: -0.001145059, up: 0.001145059}}, 35: {full syst.: {dn: -0.002776885, up: 0.002776885}, stat: {dn: -0.0001924981, up: 0.0001924981}, unc. syst.: {dn: -0.0008740751, up: 0.0008740751}}, 36: {full syst.: {dn: -0.002161617, up: 0.002161617}, stat: {dn: -0.0001704996, up: 0.0001704996}, unc. syst.: {dn: -0.0006855139, up: 0.0006855139}}, 37: {full syst.: {dn: -0.001667365, up: 0.001667365}, stat: {dn: -0.0001493111, up: 0.0001493111}, unc. syst.: {dn: -0.0005320072, up: 0.0005320072}}, 38: {full syst.: {dn: -0.001118036, up: 0.001118036}, stat: {dn: -7.389478e-05, up: 7.389478e-05}, unc. syst.: {dn: -0.0003582945, up: 0.0003582945}}, 39: {full syst.: {dn: -0.0006424509, up: 0.0006424509}, stat: {dn: -5.594641e-05, up: 5.594641e-05}, unc. syst.: {dn: -0.0002081408, up: 0.0002081408}}, 40: {full syst.: {dn: -0.0003226733, up: 0.0003226733}, stat: {dn: -2.808799e-05, up: 2.808799e-05}, unc. syst.: {dn: -0.0001045059, up: 0.0001045059}}, 41: {full syst.: {dn: -0.0001035844, up: 0.0001035844}, stat: {dn: -1.124046e-05, up: 1.124046e-05}, unc. syst.: {dn: -3.372816e-05, up: 3.372816e-05}}, 42: {full syst.: {dn: -2.744909e-05, up: 2.744909e-05}, stat: {dn: -5.749926e-06, up: 5.749926e-06}, unc. syst.: {dn: -8.93712e-06, up: 8.93712e-06}}, 43: {full syst.: {dn: -6.310802e-06, up: 6.310802e-06}, stat: {dn: -1.721593e-06, up: 1.721593e-06}, unc. syst.: {dn: -2.007713e-06, up: 2.007713e-06}}, 44: {full syst.: {dn: -7.299499e-07, up: 7.299499e-07}, stat: {dn: -3.977274e-07, up: 3.977274e-07}, unc. syst.: {dn: -2.141134e-07, up: 2.141134e-07}}, 45: {full syst.: {dn: -7.746982e-08, up: 7.746982e-08}, stat: {dn: -1.065462e-07, up: 1.065462e-07}, unc. syst.: {dn: -1.786844e-08, up: 1.786844e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d05-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 1.559472e+01 1.133366e+00 1.133366e+00 +1.900000e-01 1.000000e-02 1.000000e-02 1.579061e+01 1.055791e+00 1.055791e+00 +2.250000e-01 2.500000e-02 2.500000e-02 1.582758e+01 1.005466e+00 1.005466e+00 +2.750000e-01 2.500000e-02 2.500000e-02 1.485039e+01 9.731673e-01 9.731673e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.352921e+01 9.112680e-01 9.112680e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.212582e+01 8.353706e-01 8.353706e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.083504e+01 7.501813e-01 7.501813e-01 +4.750000e-01 2.500000e-02 2.500000e-02 9.601096e+00 6.589896e-01 6.589896e-01 +5.250000e-01 2.500000e-02 2.500000e-02 8.542090e+00 5.795142e-01 5.795142e-01 +5.750000e-01 2.500000e-02 2.500000e-02 7.564703e+00 5.049876e-01 5.049876e-01 +6.250000e-01 2.500000e-02 2.500000e-02 6.724978e+00 4.433338e-01 4.433338e-01 +6.750000e-01 2.500000e-02 2.500000e-02 5.983025e+00 3.891892e-01 3.891892e-01 +7.250000e-01 2.500000e-02 2.500000e-02 5.338591e+00 3.429035e-01 3.429035e-01 +7.750000e-01 2.500000e-02 2.500000e-02 4.762308e+00 3.028794e-01 3.028794e-01 +8.250000e-01 2.500000e-02 2.500000e-02 4.265925e+00 2.697699e-01 2.697699e-01 +8.750000e-01 2.500000e-02 2.500000e-02 3.818442e+00 2.401623e-01 2.401623e-01 +9.250000e-01 2.500000e-02 2.500000e-02 3.431269e+00 2.152324e-01 2.152324e-01 +9.750000e-01 2.500000e-02 2.500000e-02 3.085841e+00 1.940313e-01 1.940313e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.616497e+00 1.648966e-01 1.648966e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.113828e+00 1.337784e-01 1.337784e-01 +1.250000e+00 5.000000e-02 5.000000e-02 1.724561e+00 1.103927e-01 1.103927e-01 +1.350000e+00 5.000000e-02 5.000000e-02 1.410292e+00 9.299685e-02 9.299685e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.154753e+00 7.792764e-02 7.792764e-02 +1.550000e+00 5.000000e-02 5.000000e-02 9.496784e-01 6.619702e-02 6.619702e-02 +1.650000e+00 5.000000e-02 5.000000e-02 7.829638e-01 5.509600e-02 5.509600e-02 +1.750000e+00 5.000000e-02 5.000000e-02 6.477931e-01 4.642023e-02 4.642023e-02 +1.850000e+00 5.000000e-02 5.000000e-02 5.337320e-01 3.858562e-02 3.858562e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.437175e-01 3.196653e-02 3.196653e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.426604e-01 2.483340e-02 2.483340e-02 +2.300000e+00 1.000000e-01 1.000000e-01 2.441802e-01 1.771770e-02 1.771770e-02 +2.500000e+00 1.000000e-01 1.000000e-01 1.761904e-01 1.267872e-02 1.267872e-02 +2.700000e+00 1.000000e-01 1.000000e-01 1.294410e-01 9.201006e-03 9.201006e-03 +2.900000e+00 1.000000e-01 1.000000e-01 9.609177e-02 6.721030e-03 6.721030e-03 +3.100000e+00 1.000000e-01 1.000000e-01 7.213223e-02 5.049914e-03 5.049914e-03 +3.300000e+00 1.000000e-01 1.000000e-01 5.483840e-02 3.826125e-03 3.826125e-03 +3.500000e+00 1.000000e-01 1.000000e-01 4.186061e-02 2.917559e-03 2.917559e-03 +3.700000e+00 1.000000e-01 1.000000e-01 3.283016e-02 2.274112e-03 2.274112e-03 +3.900000e+00 1.000000e-01 1.000000e-01 2.547852e-02 1.756540e-03 1.756540e-03 +4.250000e+00 2.500000e-01 2.500000e-01 1.715920e-02 1.176367e-03 1.176367e-03 +4.750000e+00 2.500000e-01 2.500000e-01 9.968138e-03 6.776398e-04 6.776398e-04 +5.500000e+00 5.000000e-01 5.000000e-01 5.004927e-03 3.403358e-04 3.403358e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.615286e-03 1.095156e-04 1.095156e-04 +9.000000e+00 1.000000e+00 1.000000e+00 4.280104e-04 2.943444e-05 2.943444e-05 +1.250000e+01 2.500000e+00 2.500000e+00 9.615203e-05 6.842588e-06 6.842588e-06 +2.000000e+01 5.000000e+00 5.000000e+00 1.025417e-05 8.584046e-07 8.584046e-07 +3.250000e+01 7.500000e+00 7.500000e+00 8.557430e-07 1.329396e-07 1.329396e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d06-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.9322823, up: 0.9322823}, stat: {dn: -0.01030856, up: 0.01030856}, unc. syst.: {dn: -0.2796687, up: 0.2796687}}, 1: {full syst.: {dn: -0.8631389, up: 0.8631389}, stat: {dn: -0.009779558, up: 0.009779558}, unc. syst.: {dn: -0.2837711, up: 0.2837711}}, 2: {full syst.: {dn: -0.8197449, up: 0.8197449}, stat: {dn: -0.00600787, up: 0.00600787}, unc. syst.: {dn: -0.2853076, up: 0.2853076}}, 3: {full syst.: {dn: -0.7975782, up: 0.7975782}, stat: {dn: -0.005567976, up: 0.005567976}, unc. syst.: {dn: -0.2681208, up: 0.2681208}}, 4: {full syst.: {dn: -0.7485669, up: 0.7485669}, stat: {dn: -0.005165198, up: 0.005165198}, unc. syst.: {dn: -0.2440936, up: 0.2440936}}, 5: {full syst.: {dn: -0.6858235, up: 0.6858235}, stat: {dn: -0.004734842, up: 0.004734842}, unc. syst.: {dn: -0.2181365, up: 0.2181365}}, 6: {full syst.: {dn: -0.6143382, up: 0.6143382}, stat: {dn: -0.004383498, up: 0.004383498}, unc. syst.: {dn: -0.1943295, up: 0.1943295}}, 7: {full syst.: {dn: -0.5363424, up: 0.5363424}, stat: {dn: -0.004042952, up: 0.004042952}, unc. syst.: {dn: -0.1712912, up: 0.1712912}}, 8: {full syst.: {dn: -0.4696224, up: 0.4696224}, stat: {dn: -0.003777983, up: 0.003777983}, unc. syst.: {dn: -0.1519234, up: 0.1519234}}, 9: {full syst.: {dn: -0.4070845, up: 0.4070845}, stat: {dn: -0.003524247, up: 0.003524247}, unc. syst.: {dn: -0.134067, up: 0.134067}}, 10: {full syst.: {dn: -0.3547365, up: 0.3547365}, stat: {dn: -0.003297812, up: 0.003297812}, unc. syst.: {dn: -0.1184663, up: 0.1184663}}, 11: {full syst.: {dn: -0.3096388, up: 0.3096388}, stat: {dn: -0.003099582, up: 0.003099582}, unc. syst.: {dn: -0.1049555, up: 0.1049555}}, 12: {full syst.: {dn: -0.270928, up: 0.270928}, stat: {dn: -0.00292013, up: 0.00292013}, unc. syst.: {dn: -0.09314166, up: 0.09314166}}, 13: {full syst.: {dn: -0.2382849, up: 0.2382849}, stat: {dn: -0.002757643, up: 0.002757643}, unc. syst.: {dn: -0.08283201, up: 0.08283201}}, 14: {full syst.: {dn: -0.2107474, up: 0.2107474}, stat: {dn: -0.002603762, up: 0.002603762}, unc. syst.: {dn: -0.07372969, up: 0.07372969}}, 15: {full syst.: {dn: -0.187016, up: 0.187016}, stat: {dn: -0.002470662, up: 0.002470662}, unc. syst.: {dn: -0.06582917, up: 0.06582917}}, 16: {full syst.: {dn: -0.1669329, up: 0.1669329}, stat: {dn: -0.00234529, up: 0.00234529}, unc. syst.: {dn: -0.05893853, up: 0.05893853}}, 17: {full syst.: {dn: -0.1495603, up: 0.1495603}, stat: {dn: -0.002220488, up: 0.002220488}, unc. syst.: {dn: -0.05266297, up: 0.05266297}}, 18: {full syst.: {dn: -0.1265509, up: 0.1265509}, stat: {dn: -0.0014406, up: 0.0014406}, unc. syst.: {dn: -0.04444357, up: 0.04444357}}, 19: {full syst.: {dn: -0.1020961, up: 0.1020961}, stat: {dn: -0.00128802, up: 0.00128802}, unc. syst.: {dn: -0.03568726, up: 0.03568726}}, 20: {full syst.: {dn: -0.08374642, up: 0.08374642}, stat: {dn: -0.001159934, up: 0.001159934}, unc. syst.: {dn: -0.0289027, up: 0.0289027}}, 21: {full syst.: {dn: -0.07033717, up: 0.07033717}, stat: {dn: -0.001045162, up: 0.001045162}, unc. syst.: {dn: -0.02348456, up: 0.02348456}}, 22: {full syst.: {dn: -0.05885097, up: 0.05885097}, stat: {dn: -0.00094339, up: 0.00094339}, unc. syst.: {dn: -0.01915262, up: 0.01915262}}, 23: {full syst.: {dn: -0.04992608, up: 0.04992608}, stat: {dn: -0.0008529483, up: 0.0008529483}, unc. syst.: {dn: -0.01567894, up: 0.01567894}}, 24: {full syst.: {dn: -0.04130256, up: 0.04130256}, stat: {dn: -0.0007708173, up: 0.0007708173}, unc. syst.: {dn: -0.01283705, up: 0.01283705}}, 25: {full syst.: {dn: -0.03468158, up: 0.03468158}, stat: {dn: -0.0006977189, up: 0.0006977189}, unc. syst.: {dn: -0.01056732, up: 0.01056732}}, 26: {full syst.: {dn: -0.02884988, up: 0.02884988}, stat: {dn: -0.0006297599, up: 0.0006297599}, unc. syst.: {dn: -0.008706616, up: 0.008706616}}, 27: {full syst.: {dn: -0.02382491, up: 0.02382491}, stat: {dn: -0.0005751534, up: 0.0005751534}, unc. syst.: {dn: -0.007218068, up: 0.007218068}}, 28: {full syst.: {dn: -0.01834515, up: 0.01834515}, stat: {dn: -0.0003614541, up: 0.0003614541}, unc. syst.: {dn: -0.005521153, up: 0.005521153}}, 29: {full syst.: {dn: -0.01302098, up: 0.01302098}, stat: {dn: -0.0003044614, up: 0.0003044614}, unc. syst.: {dn: -0.003914069, up: 0.003914069}}, 30: {full syst.: {dn: -0.009262697, up: 0.009262697}, stat: {dn: -0.0002564053, up: 0.0002564053}, unc. syst.: {dn: -0.002810098, up: 0.002810098}}, 31: {full syst.: {dn: -0.00669803, up: 0.00669803}, stat: {dn: -0.0002194015, up: 0.0002194015}, unc. syst.: {dn: -0.002059925, up: 0.002059925}}, 32: {full syst.: {dn: -0.004848192, up: 0.004848192}, stat: {dn: -0.0001881642, up: 0.0001881642}, unc. syst.: {dn: -0.001518107, up: 0.001518107}}, 33: {full syst.: {dn: -0.003652386, up: 0.003652386}, stat: {dn: -0.0001625212, up: 0.0001625212}, unc. syst.: {dn: -0.001142885, up: 0.001142885}}, 34: {full syst.: {dn: -0.002743354, up: 0.002743354}, stat: {dn: -0.0001400661, up: 0.0001400661}, unc. syst.: {dn: -0.0008620309, up: 0.0008620309}}, 35: {full syst.: {dn: -0.002102516, up: 0.002102516}, stat: {dn: -0.0001223385, up: 0.0001223385}, unc. syst.: {dn: -0.0006618054, up: 0.0006618054}}, 36: {full syst.: {dn: -0.001612171, up: 0.001612171}, stat: {dn: -0.0001073408, up: 0.0001073408}, unc. syst.: {dn: -0.000511268, up: 0.000511268}}, 37: {full syst.: {dn: -0.001251653, up: 0.001251653}, stat: {dn: -9.416794e-05, up: 9.416794e-05}, unc. syst.: {dn: -0.0003993658, up: 0.0003993658}}, 38: {full syst.: {dn: -0.0008341349, up: 0.0008341349}, stat: {dn: -4.552026e-05, up: 4.552026e-05}, unc. syst.: {dn: -0.0002673133, up: 0.0002673133}}, 39: {full syst.: {dn: -0.0004878669, up: 0.0004878669}, stat: {dn: -3.466329e-05, up: 3.466329e-05}, unc. syst.: {dn: -0.0001580588, up: 0.0001580588}}, 40: {full syst.: {dn: -0.0002420339, up: 0.0002420339}, stat: {dn: -1.731112e-05, up: 1.731112e-05}, unc. syst.: {dn: -7.838881e-05, up: 7.838881e-05}}, 41: {full syst.: {dn: -7.665184e-05, up: 7.665184e-05}, stat: {dn: -6.864913e-06, up: 6.864913e-06}, unc. syst.: {dn: -2.495863e-05, up: 2.495863e-05}}, 42: {full syst.: {dn: -2.124123e-05, up: 2.124123e-05}, stat: {dn: -3.579786e-06, up: 3.579786e-06}, unc. syst.: {dn: -6.915909e-06, up: 6.915909e-06}}, 43: {full syst.: {dn: -4.588482e-06, up: 4.588482e-06}, stat: {dn: -1.038342e-06, up: 1.038342e-06}, unc. syst.: {dn: -1.459776e-06, up: 1.459776e-06}}, 44: {full syst.: {dn: -5.257461e-07, up: 5.257461e-07}, stat: {dn: -2.385659e-07, up: 2.385659e-07}, unc. syst.: {dn: -1.542151e-07, up: 1.542151e-07}}, 45: {full syst.: {dn: -6.134522e-08, up: 6.134522e-08}, stat: {dn: -6.80097e-08, up: 6.80097e-08}, unc. syst.: {dn: -1.414929e-08, up: 1.414929e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d06-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t6 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 1.339370e+01 9.733813e-01 9.733813e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.359017e+01 9.086421e-01 9.086421e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.366375e+01 8.679967e-01 8.679967e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.284066e+01 8.414575e-01 8.414575e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.168996e+01 7.873759e-01 7.873759e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.044684e+01 7.196943e-01 7.196943e-01 +4.250000e-01 2.500000e-02 2.500000e-02 9.306693e+00 6.443560e-01 6.443560e-01 +4.750000e-01 2.500000e-02 2.500000e-02 8.203360e+00 5.630455e-01 5.630455e-01 +5.250000e-01 2.500000e-02 2.500000e-02 7.275811e+00 4.935992e-01 4.935992e-01 +5.750000e-01 2.500000e-02 2.500000e-02 6.420644e+00 4.286072e-01 4.286072e-01 +6.250000e-01 2.500000e-02 2.500000e-02 5.673509e+00 3.740095e-01 3.740095e-01 +6.750000e-01 2.500000e-02 2.500000e-02 5.026459e+00 3.269579e-01 3.269579e-01 +7.250000e-01 2.500000e-02 2.500000e-02 4.460677e+00 2.865063e-01 2.865063e-01 +7.750000e-01 2.500000e-02 2.500000e-02 3.966934e+00 2.522864e-01 2.522864e-01 +8.250000e-01 2.500000e-02 2.500000e-02 3.531012e+00 2.232875e-01 2.232875e-01 +8.750000e-01 2.500000e-02 2.500000e-02 3.152646e+00 1.982790e-01 1.982790e-01 +9.250000e-01 2.500000e-02 2.500000e-02 2.822644e+00 1.770476e-01 1.770476e-01 +9.750000e-01 2.500000e-02 2.500000e-02 2.522099e+00 1.585768e-01 1.585768e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.128461e+00 1.341359e-01 1.341359e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.709110e+00 1.081612e-01 1.081612e-01 +1.250000e+00 5.000000e-02 5.000000e-02 1.384188e+00 8.860121e-02 8.860121e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.124706e+00 7.416154e-02 7.416154e-02 +1.450000e+00 5.000000e-02 5.000000e-02 9.172440e-01 6.189628e-02 6.189628e-02 +1.550000e+00 5.000000e-02 5.000000e-02 7.508851e-01 5.233708e-02 5.233708e-02 +1.650000e+00 5.000000e-02 5.000000e-02 6.147833e-01 4.325836e-02 4.325836e-02 +1.750000e+00 5.000000e-02 5.000000e-02 5.060828e-01 3.626247e-02 3.626247e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.169713e-01 3.014162e-02 3.014162e-02 +1.950000e+00 5.000000e-02 5.000000e-02 3.456828e-01 2.490096e-02 2.490096e-02 +2.100000e+00 1.000000e-01 1.000000e-01 2.644153e-01 1.916138e-02 1.916138e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.874499e-01 1.359995e-02 1.359995e-02 +2.500000e+00 1.000000e-01 1.000000e-01 1.345793e-01 9.682972e-03 9.682972e-03 +2.700000e+00 1.000000e-01 1.000000e-01 9.865253e-02 7.011065e-03 7.011065e-03 +2.900000e+00 1.000000e-01 1.000000e-01 7.270416e-02 5.083800e-03 5.083800e-03 +3.100000e+00 1.000000e-01 1.000000e-01 5.473426e-02 3.830473e-03 3.830473e-03 +3.300000e+00 1.000000e-01 1.000000e-01 4.128379e-02 2.879011e-03 2.879011e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.169473e-02 2.207607e-03 2.207607e-03 +3.700000e+00 1.000000e-01 1.000000e-01 2.448530e-02 1.694701e-03 1.694701e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.912615e-02 1.317192e-03 1.317192e-03 +4.250000e+00 2.500000e-01 2.500000e-01 1.280199e-02 8.771029e-04 8.771029e-04 +4.750000e+00 2.500000e-01 2.500000e-01 7.569644e-03 5.140022e-04 5.140022e-04 +5.500000e+00 5.000000e-01 5.000000e-01 3.754143e-03 2.549998e-04 2.549998e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.195302e-03 8.090466e-05 8.090466e-05 +9.000000e+00 1.000000e+00 1.000000e+00 3.312120e-04 2.262376e-05 2.262376e-05 +1.250000e+01 2.500000e+00 2.500000e+00 6.991059e-05 4.925776e-06 4.925776e-06 +2.000000e+01 5.000000e+00 5.000000e+00 7.385562e-06 5.975826e-07 5.975826e-07 +3.250000e+01 7.500000e+00 7.500000e+00 6.776283e-07 9.267555e-08 9.267555e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d07-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.7692236, up: 0.7692236}, stat: {dn: -0.009009547, up: 0.009009547}, unc. syst.: {dn: -0.2306349, up: 0.2306349}}, 1: {full syst.: {dn: -0.7147057, up: 0.7147057}, stat: {dn: -0.008598539, up: 0.008598539}, unc. syst.: {dn: -0.2348258, up: 0.2348258}}, 2: {full syst.: {dn: -0.6808973, up: 0.6808973}, stat: {dn: -0.005306889, up: 0.005306889}, unc. syst.: {dn: -0.236818, up: 0.236818}}, 3: {full syst.: {dn: -0.665217, up: 0.665217}, stat: {dn: -0.004948491, up: 0.004948491}, unc. syst.: {dn: -0.2234803, up: 0.2234803}}, 4: {full syst.: {dn: -0.6237211, up: 0.6237211}, stat: {dn: -0.004595847, up: 0.004595847}, unc. syst.: {dn: -0.2032598, up: 0.2032598}}, 5: {full syst.: {dn: -0.5704538, up: 0.5704538}, stat: {dn: -0.004217326, up: 0.004217326}, unc. syst.: {dn: -0.1813363, up: 0.1813363}}, 6: {full syst.: {dn: -0.5086743, up: 0.5086743}, stat: {dn: -0.003899016, up: 0.003899016}, unc. syst.: {dn: -0.1608133, up: 0.1608133}}, 7: {full syst.: {dn: -0.4419885, up: 0.4419885}, stat: {dn: -0.00359039, up: 0.00359039}, unc. syst.: {dn: -0.141075, up: 0.141075}}, 8: {full syst.: {dn: -0.3845841, up: 0.3845841}, stat: {dn: -0.003344493, up: 0.003344493}, unc. syst.: {dn: -0.1243388, up: 0.1243388}}, 9: {full syst.: {dn: -0.3314415, up: 0.3314415}, stat: {dn: -0.003110775, up: 0.003110775}, unc. syst.: {dn: -0.1090873, up: 0.1090873}}, 10: {full syst.: {dn: -0.2870756, up: 0.2870756}, stat: {dn: -0.002901242, up: 0.002901242}, unc. syst.: {dn: -0.09580932, up: 0.09580932}}, 11: {full syst.: {dn: -0.249273, up: 0.249273}, stat: {dn: -0.002718511, up: 0.002718511}, unc. syst.: {dn: -0.08443828, up: 0.08443828}}, 12: {full syst.: {dn: -0.21652, up: 0.21652}, stat: {dn: -0.002549694, up: 0.002549694}, unc. syst.: {dn: -0.07438647, up: 0.07438647}}, 13: {full syst.: {dn: -0.189369, up: 0.189369}, stat: {dn: -0.002399259, up: 0.002399259}, unc. syst.: {dn: -0.06578245, up: 0.06578245}}, 14: {full syst.: {dn: -0.1665789, up: 0.1665789}, stat: {dn: -0.00225791, up: 0.00225791}, unc. syst.: {dn: -0.05823654, up: 0.05823654}}, 15: {full syst.: {dn: -0.1469384, up: 0.1469384}, stat: {dn: -0.002133625, up: 0.002133625}, unc. syst.: {dn: -0.05168524, up: 0.05168524}}, 16: {full syst.: {dn: -0.1300602, up: 0.1300602}, stat: {dn: -0.002014577, up: 0.002014577}, unc. syst.: {dn: -0.04588719, up: 0.04588719}}, 17: {full syst.: {dn: -0.1159234, up: 0.1159234}, stat: {dn: -0.001901172, up: 0.001901172}, unc. syst.: {dn: -0.0407898, up: 0.0407898}}, 18: {full syst.: {dn: -0.09740175, up: 0.09740175}, stat: {dn: -0.001228439, up: 0.001228439}, unc. syst.: {dn: -0.03418247, up: 0.03418247}}, 19: {full syst.: {dn: -0.077796, up: 0.077796}, stat: {dn: -0.001091847, up: 0.001091847}, unc. syst.: {dn: -0.02717424, up: 0.02717424}}, 20: {full syst.: {dn: -0.06325693, up: 0.06325693}, stat: {dn: -0.0009781082, up: 0.0009781082}, unc. syst.: {dn: -0.02181644, up: 0.02181644}}, 21: {full syst.: {dn: -0.05261757, up: 0.05261757}, stat: {dn: -0.0008763903, up: 0.0008763903}, unc. syst.: {dn: -0.01755702, up: 0.01755702}}, 22: {full syst.: {dn: -0.04362173, up: 0.04362173}, stat: {dn: -0.0007868285, up: 0.0007868285}, unc. syst.: {dn: -0.01418776, up: 0.01418776}}, 23: {full syst.: {dn: -0.03674058, up: 0.03674058}, stat: {dn: -0.000708484, up: 0.000708484}, unc. syst.: {dn: -0.01153161, up: 0.01153161}}, 24: {full syst.: {dn: -0.03025229, up: 0.03025229}, stat: {dn: -0.0006387664, up: 0.0006387664}, unc. syst.: {dn: -0.009397367, up: 0.009397367}}, 25: {full syst.: {dn: -0.0251736, up: 0.0251736}, stat: {dn: -0.0005753593, up: 0.0005753593}, unc. syst.: {dn: -0.0076662, up: 0.0076662}}, 26: {full syst.: {dn: -0.02084011, up: 0.02084011}, stat: {dn: -0.000518513, up: 0.000518513}, unc. syst.: {dn: -0.006286063, up: 0.006286063}}, 27: {full syst.: {dn: -0.01710689, up: 0.01710689}, stat: {dn: -0.0004716497, up: 0.0004716497}, unc. syst.: {dn: -0.005180031, up: 0.005180031}}, 28: {full syst.: {dn: -0.01314962, up: 0.01314962}, stat: {dn: -0.0002952196, up: 0.0002952196}, unc. syst.: {dn: -0.003955451, up: 0.003955451}}, 29: {full syst.: {dn: -0.009273827, up: 0.009273827}, stat: {dn: -0.0002479705, up: 0.0002479705}, unc. syst.: {dn: -0.002786242, up: 0.002786242}}, 30: {full syst.: {dn: -0.00654225, up: 0.00654225}, stat: {dn: -0.000208238, up: 0.000208238}, unc. syst.: {dn: -0.001983728, up: 0.001983728}}, 31: {full syst.: {dn: -0.004697419, up: 0.004697419}, stat: {dn: -0.0001776364, up: 0.0001776364}, unc. syst.: {dn: -0.00144387, up: 0.00144387}}, 32: {full syst.: {dn: -0.003417792, up: 0.003417792}, stat: {dn: -0.0001528609, up: 0.0001528609}, unc. syst.: {dn: -0.001069607, up: 0.001069607}}, 33: {full syst.: {dn: -0.002531777, up: 0.002531777}, stat: {dn: -0.0001309466, up: 0.0001309466}, unc. syst.: {dn: -0.0007917857, up: 0.0007917857}}, 34: {full syst.: {dn: -0.001888667, up: 0.001888667}, stat: {dn: -0.0001126254, up: 0.0001126254}, unc. syst.: {dn: -0.000593131, up: 0.000593131}}, 35: {full syst.: {dn: -0.001454019, up: 0.001454019}, stat: {dn: -9.870348e-05, up: 9.870348e-05}, unc. syst.: {dn: -0.0004574191, up: 0.0004574191}}, 36: {full syst.: {dn: -0.001120504, up: 0.001120504}, stat: {dn: -8.692207e-05, up: 8.692207e-05}, unc. syst.: {dn: -0.0003551407, up: 0.0003551407}}, 37: {full syst.: {dn: -0.0008627254, up: 0.0008627254}, stat: {dn: -7.603403e-05, up: 7.603403e-05}, unc. syst.: {dn: -0.0002751098, up: 0.0002751098}}, 38: {full syst.: {dn: -0.0005718126, up: 0.0005718126}, stat: {dn: -3.734472e-05, up: 3.734472e-05}, unc. syst.: {dn: -0.0001831396, up: 0.0001831396}}, 39: {full syst.: {dn: -0.000329003, up: 0.000329003}, stat: {dn: -2.828792e-05, up: 2.828792e-05}, unc. syst.: {dn: -0.0001065261, up: 0.0001065261}}, 40: {full syst.: {dn: -0.0001636628, up: 0.0001636628}, stat: {dn: -1.413273e-05, up: 1.413273e-05}, unc. syst.: {dn: -5.29745e-05, up: 5.29745e-05}}, 41: {full syst.: {dn: -5.11093e-05, up: 5.11093e-05}, stat: {dn: -5.57651e-06, up: 5.57651e-06}, unc. syst.: {dn: -1.663161e-05, up: 1.663161e-05}}, 42: {full syst.: {dn: -1.417892e-05, up: 1.417892e-05}, stat: {dn: -2.919236e-06, up: 2.919236e-06}, unc. syst.: {dn: -4.613696e-06, up: 4.613696e-06}}, 43: {full syst.: {dn: -3.234077e-06, up: 3.234077e-06}, stat: {dn: -8.705994e-07, up: 8.705994e-07}, unc. syst.: {dn: -1.02829e-06, up: 1.02829e-06}}, 44: {full syst.: {dn: -3.525302e-07, up: 3.525302e-07}, stat: {dn: -1.952443e-07, up: 1.952443e-07}, unc. syst.: {dn: -1.033553e-07, up: 1.033553e-07}}, 45: {full syst.: {dn: -3.415311e-08, up: 3.415311e-08}, stat: {dn: -4.95835e-08, up: 4.95835e-08}, unc. syst.: {dn: -7.875023e-09, up: 7.875023e-09}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d07-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t7 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 1.104541e+01 8.031056e-01 8.031056e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.124612e+01 7.523439e-01 7.523439e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.134153e+01 7.209244e-01 7.209244e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.070277e+01 7.017703e-01 7.017703e-01 +3.250000e-01 2.500000e-02 2.500000e-02 9.734381e+00 6.560211e-01 6.560211e-01 +3.750000e-01 2.500000e-02 2.500000e-02 8.684432e+00 5.985968e-01 5.985968e-01 +4.250000e-01 2.500000e-02 2.500000e-02 7.701559e+00 5.335032e-01 5.335032e-01 +4.750000e-01 2.500000e-02 2.500000e-02 6.756266e+00 4.639708e-01 4.639708e-01 +5.250000e-01 2.500000e-02 2.500000e-02 5.954748e+00 4.041983e-01 4.041983e-01 +5.750000e-01 2.500000e-02 2.500000e-02 5.224334e+00 3.489458e-01 3.489458e-01 +6.250000e-01 2.500000e-02 2.500000e-02 4.588434e+00 3.026553e-01 3.026553e-01 +6.750000e-01 2.500000e-02 2.500000e-02 4.043860e+00 2.632000e-01 2.632000e-01 +7.250000e-01 2.500000e-02 2.500000e-02 3.562466e+00 2.289558e-01 2.289558e-01 +7.750000e-01 2.500000e-02 2.500000e-02 3.150408e+00 2.004837e-01 2.004837e-01 +8.250000e-01 2.500000e-02 2.500000e-02 2.789025e+00 1.764798e-01 1.764798e-01 +8.750000e-01 2.500000e-02 2.500000e-02 2.475274e+00 1.557781e-01 1.557781e-01 +9.250000e-01 2.500000e-02 2.500000e-02 2.197598e+00 1.379324e-01 1.379324e-01 +9.750000e-01 2.500000e-02 2.500000e-02 1.953477e+00 1.229051e-01 1.229051e-01 +1.050000e+00 5.000000e-02 5.000000e-02 1.637044e+00 1.032330e-01 1.032330e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.301410e+00 8.241268e-02 8.241268e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.044818e+00 6.692050e-02 6.692050e-02 +1.350000e+00 5.000000e-02 5.000000e-02 8.408288e-01 5.547635e-02 5.547635e-02 +1.450000e+00 5.000000e-02 5.000000e-02 6.794704e-01 4.587774e-02 4.587774e-02 +1.550000e+00 5.000000e-02 5.000000e-02 5.522637e-01 3.851429e-02 3.851429e-02 +1.650000e+00 5.000000e-02 5.000000e-02 4.500523e-01 3.168469e-02 3.168469e-02 +1.750000e+00 5.000000e-02 5.000000e-02 3.671444e-01 2.632132e-02 2.632132e-02 +1.850000e+00 5.000000e-02 5.000000e-02 3.010478e-01 2.177369e-02 2.177369e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.480785e-01 1.788018e-02 1.788018e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.894318e-01 1.373482e-02 1.373482e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.334368e-01 9.686511e-03 9.686511e-03 +2.500000e+00 1.000000e-01 1.000000e-01 9.500333e-02 6.839560e-03 6.839560e-03 +2.700000e+00 1.000000e-01 1.000000e-01 6.914885e-02 4.917526e-03 4.917526e-03 +2.900000e+00 1.000000e-01 1.000000e-01 5.122489e-02 3.584512e-03 3.584512e-03 +3.100000e+00 1.000000e-01 1.000000e-01 3.791966e-02 2.655930e-03 2.655930e-03 +3.300000e+00 1.000000e-01 1.000000e-01 2.840583e-02 1.982814e-03 1.982814e-03 +3.500000e+00 1.000000e-01 1.000000e-01 2.190640e-02 1.527464e-03 1.527464e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.700816e-02 1.178647e-03 1.178647e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.317537e-02 9.087143e-04 9.087143e-04 +4.250000e+00 2.500000e-01 2.500000e-01 8.770798e-03 6.015849e-04 6.015849e-04 +4.750000e+00 2.500000e-01 2.500000e-01 5.101674e-03 3.469740e-04 3.469740e-04 +5.500000e+00 5.000000e-01 5.000000e-01 2.537018e-03 1.726023e-04 1.726023e-04 +7.000000e+00 1.000000e+00 1.000000e+00 7.965097e-04 5.403581e-05 5.403581e-05 +9.000000e+00 1.000000e+00 1.000000e+00 2.209559e-04 1.519375e-05 1.519375e-05 +1.250000e+01 2.500000e+00 2.500000e+00 4.924616e-05 3.503509e-06 3.503509e-06 +2.000000e+01 5.000000e+00 5.000000e+00 4.949823e-06 4.160291e-07 4.160291e-07 +3.250000e+01 7.500000e+00 7.500000e+00 3.771452e-07 6.072046e-08 6.072046e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d08-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.6393403, up: 0.6393403}, stat: {dn: -0.007946556, up: 0.007946556}, unc. syst.: {dn: -0.1915541, up: 0.1915541}}, 1: {full syst.: {dn: -0.5945224, up: 0.5945224}, stat: {dn: -0.007612636, up: 0.007612636}, unc. syst.: {dn: -0.1951689, up: 0.1951689}}, 2: {full syst.: {dn: -0.5702601, up: 0.5702601}, stat: {dn: -0.004729476, up: 0.004729476}, unc. syst.: {dn: -0.1981457, up: 0.1981457}}, 3: {full syst.: {dn: -0.5589846, up: 0.5589846}, stat: {dn: -0.004432687, up: 0.004432687}, unc. syst.: {dn: -0.1876215, up: 0.1876215}}, 4: {full syst.: {dn: -0.5241762, up: 0.5241762}, stat: {dn: -0.004123711, up: 0.004123711}, unc. syst.: {dn: -0.1706745, up: 0.1706745}}, 5: {full syst.: {dn: -0.4783508, up: 0.4783508}, stat: {dn: -0.003786124, up: 0.003786124}, unc. syst.: {dn: -0.1519353, up: 0.1519353}}, 6: {full syst.: {dn: -0.4245249, up: 0.4245249}, stat: {dn: -0.003494965, up: 0.003494965}, unc. syst.: {dn: -0.1341026, up: 0.1341026}}, 7: {full syst.: {dn: -0.3676562, up: 0.3676562}, stat: {dn: -0.003215835, up: 0.003215835}, unc. syst.: {dn: -0.1172535, up: 0.1172535}}, 8: {full syst.: {dn: -0.3178758, up: 0.3178758}, stat: {dn: -0.00298626, up: 0.00298626}, unc. syst.: {dn: -0.1026854, up: 0.1026854}}, 9: {full syst.: {dn: -0.272225, up: 0.272225}, stat: {dn: -0.002768828, up: 0.002768828}, unc. syst.: {dn: -0.08951958, up: 0.08951958}}, 10: {full syst.: {dn: -0.2341838, up: 0.2341838}, stat: {dn: -0.002572944, up: 0.002572944}, unc. syst.: {dn: -0.07808731, up: 0.07808731}}, 11: {full syst.: {dn: -0.2019913, up: 0.2019913}, stat: {dn: -0.002401886, up: 0.002401886}, unc. syst.: {dn: -0.0683592, up: 0.0683592}}, 12: {full syst.: {dn: -0.1744321, up: 0.1744321}, stat: {dn: -0.0022451, up: 0.0022451}, unc. syst.: {dn: -0.05987028, up: 0.05987028}}, 13: {full syst.: {dn: -0.1512578, up: 0.1512578}, stat: {dn: -0.002101901, up: 0.002101901}, unc. syst.: {dn: -0.05249267, up: 0.05249267}}, 14: {full syst.: {dn: -0.1325273, up: 0.1325273}, stat: {dn: -0.001973613, up: 0.001973613}, unc. syst.: {dn: -0.04628661, up: 0.04628661}}, 15: {full syst.: {dn: -0.1161, up: 0.1161}, stat: {dn: -0.001856863, up: 0.001856863}, unc. syst.: {dn: -0.0407974, up: 0.0407974}}, 16: {full syst.: {dn: -0.1022004, up: 0.1022004}, stat: {dn: -0.001747462, up: 0.001747462}, unc. syst.: {dn: -0.03602188, up: 0.03602188}}, 17: {full syst.: {dn: -0.09061693, up: 0.09061693}, stat: {dn: -0.001644068, up: 0.001644068}, unc. syst.: {dn: -0.03185361, up: 0.03185361}}, 18: {full syst.: {dn: -0.07549935, up: 0.07549935}, stat: {dn: -0.001057343, up: 0.001057343}, unc. syst.: {dn: -0.02646982, up: 0.02646982}}, 19: {full syst.: {dn: -0.05950674, up: 0.05950674}, stat: {dn: -0.0009328281, up: 0.0009328281}, unc. syst.: {dn: -0.02076545, up: 0.02076545}}, 20: {full syst.: {dn: -0.04788054, up: 0.04788054}, stat: {dn: -0.0008307621, up: 0.0008307621}, unc. syst.: {dn: -0.01649759, up: 0.01649759}}, 21: {full syst.: {dn: -0.03952709, up: 0.03952709}, stat: {dn: -0.000741338, up: 0.000741338}, unc. syst.: {dn: -0.01317732, up: 0.01317732}}, 22: {full syst.: {dn: -0.03248573, up: 0.03248573}, stat: {dn: -0.0006624595, up: 0.0006624595}, unc. syst.: {dn: -0.01055687, up: 0.01055687}}, 23: {full syst.: {dn: -0.02723747, up: 0.02723747}, stat: {dn: -0.0005951263, up: 0.0005951263}, unc. syst.: {dn: -0.008542153, up: 0.008542153}}, 24: {full syst.: {dn: -0.02216137, up: 0.02216137}, stat: {dn: -0.0005331505, up: 0.0005331505}, unc. syst.: {dn: -0.006878732, up: 0.006878732}}, 25: {full syst.: {dn: -0.01839951, up: 0.01839951}, stat: {dn: -0.0004798739, up: 0.0004798739}, unc. syst.: {dn: -0.005599097, up: 0.005599097}}, 26: {full syst.: {dn: -0.01513751, up: 0.01513751}, stat: {dn: -0.0004314218, up: 0.0004314218}, unc. syst.: {dn: -0.00456264, up: 0.00456264}}, 27: {full syst.: {dn: -0.01233311, up: 0.01233311}, stat: {dn: -0.000390667, up: 0.000390667}, unc. syst.: {dn: -0.003731764, up: 0.003731764}}, 28: {full syst.: {dn: -0.009419163, up: 0.009419163}, stat: {dn: -0.0002430611, up: 0.0002430611}, unc. syst.: {dn: -0.002831262, up: 0.002831262}}, 29: {full syst.: {dn: -0.006562636, up: 0.006562636}, stat: {dn: -0.0002029431, up: 0.0002029431}, unc. syst.: {dn: -0.001970261, up: 0.001970261}}, 30: {full syst.: {dn: -0.004617357, up: 0.004617357}, stat: {dn: -0.0001704747, up: 0.0001704747}, unc. syst.: {dn: -0.001399034, up: 0.001399034}}, 31: {full syst.: {dn: -0.003279098, up: 0.003279098}, stat: {dn: -0.0001446768, up: 0.0001446768}, unc. syst.: {dn: -0.00100715, up: 0.00100715}}, 32: {full syst.: {dn: -0.002381356, up: 0.002381356}, stat: {dn: -0.0001243942, up: 0.0001243942}, unc. syst.: {dn: -0.0007446666, up: 0.0007446666}}, 33: {full syst.: {dn: -0.00176708, up: 0.00176708}, stat: {dn: -0.0001068261, up: 0.0001068261}, unc. syst.: {dn: -0.0005522018, up: 0.0005522018}}, 34: {full syst.: {dn: -0.001308491, up: 0.001308491}, stat: {dn: -9.164818e-05, up: 9.164818e-05}, unc. syst.: {dn: -0.0004106033, up: 0.0004106033}}, 35: {full syst.: {dn: -0.001006535, up: 0.001006535}, stat: {dn: -8.032844e-05, up: 8.032844e-05}, unc. syst.: {dn: -0.0003163941, up: 0.0003163941}}, 36: {full syst.: {dn: -0.0007790614, up: 0.0007790614}, stat: {dn: -7.094569e-05, up: 7.094569e-05}, unc. syst.: {dn: -0.0002467226, up: 0.0002467226}}, 37: {full syst.: {dn: -0.0005976731, up: 0.0005976731}, stat: {dn: -6.202445e-05, up: 6.202445e-05}, unc. syst.: {dn: -0.0001904333, up: 0.0001904333}}, 38: {full syst.: {dn: -0.0003930112, up: 0.0003930112}, stat: {dn: -3.076044e-05, up: 3.076044e-05}, unc. syst.: {dn: -0.0001257698, up: 0.0001257698}}, 39: {full syst.: {dn: -0.0002242451, up: 0.0002242451}, stat: {dn: -2.325327e-05, up: 2.325327e-05}, unc. syst.: {dn: -7.254609e-05, up: 7.254609e-05}}, 40: {full syst.: {dn: -0.0001120379, up: 0.0001120379}, stat: {dn: -1.163542e-05, up: 1.163542e-05}, unc. syst.: {dn: -3.623405e-05, up: 3.623405e-05}}, 41: {full syst.: {dn: -3.525641e-05, up: 3.525641e-05}, stat: {dn: -4.615638e-06, up: 4.615638e-06}, unc. syst.: {dn: -1.146314e-05, up: 1.146314e-05}}, 42: {full syst.: {dn: -9.488864e-06, up: 9.488864e-06}, stat: {dn: -2.384793e-06, up: 2.384793e-06}, unc. syst.: {dn: -3.084972e-06, up: 3.084972e-06}}, 43: {full syst.: {dn: -2.013995e-06, up: 2.013995e-06}, stat: {dn: -6.861852e-07, up: 6.861852e-07}, unc. syst.: {dn: -6.398402e-07, up: 6.398402e-07}}, 44: {full syst.: {dn: -2.205107e-07, up: 2.205107e-07}, stat: {dn: -1.543372e-07, up: 1.543372e-07}, unc. syst.: {dn: -6.460511e-08, up: 6.460511e-08}}, 45: {full syst.: {dn: -2.82287e-08, up: 2.82287e-08}, stat: {dn: -4.53533e-08, up: 4.53533e-08}, unc. syst.: {dn: -6.506196e-09, up: 6.506196e-09}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d08-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t8 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 9.173776e+00 6.674670e-01 6.674670e-01 +1.900000e-01 1.000000e-02 1.000000e-02 9.346897e+00 6.257841e-01 6.257841e-01 +2.250000e-01 2.500000e-02 2.500000e-02 9.489460e+00 6.037223e-01 6.037223e-01 +2.750000e-01 2.500000e-02 2.500000e-02 8.985442e+00 5.896484e-01 5.896484e-01 +3.250000e-01 2.500000e-02 2.500000e-02 8.173825e+00 5.512780e-01 5.512780e-01 +3.750000e-01 2.500000e-02 2.500000e-02 7.276381e+00 5.019145e-01 5.019145e-01 +4.250000e-01 2.500000e-02 2.500000e-02 6.422347e+00 4.452158e-01 4.452158e-01 +4.750000e-01 2.500000e-02 2.500000e-02 5.615426e+00 3.859142e-01 3.859142e-01 +5.250000e-01 2.500000e-02 2.500000e-02 4.917739e+00 3.340632e-01 3.340632e-01 +5.750000e-01 2.500000e-02 2.500000e-02 4.287210e+00 2.865796e-01 2.865796e-01 +6.250000e-01 2.500000e-02 2.500000e-02 3.739704e+00 2.468730e-01 2.468730e-01 +6.750000e-01 2.500000e-02 2.500000e-02 3.273812e+00 2.132586e-01 2.132586e-01 +7.250000e-01 2.500000e-02 2.500000e-02 2.867266e+00 1.844344e-01 1.844344e-01 +7.750000e-01 2.500000e-02 2.500000e-02 2.513943e+00 1.601213e-01 1.601213e-01 +8.250000e-01 2.500000e-02 2.500000e-02 2.216727e+00 1.403917e-01 1.403917e-01 +8.750000e-01 2.500000e-02 2.500000e-02 1.953841e+00 1.230735e-01 1.230735e-01 +9.250000e-01 2.500000e-02 2.500000e-02 1.725135e+00 1.083769e-01 1.083769e-01 +9.750000e-01 2.500000e-02 2.500000e-02 1.525511e+00 9.606656e-02 9.606656e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.267674e+00 8.001201e-02 8.001201e-02 +1.150000e+00 5.000000e-02 5.000000e-02 9.944848e-01 6.303274e-02 6.303274e-02 +1.250000e+00 5.000000e-02 5.000000e-02 7.900911e-01 5.064984e-02 5.064984e-02 +1.350000e+00 5.000000e-02 5.000000e-02 6.310792e-01 4.167232e-02 4.167232e-02 +1.450000e+00 5.000000e-02 5.000000e-02 5.055823e-01 3.416444e-02 3.416444e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.090949e-01 2.855175e-02 2.855175e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.294315e-01 2.321050e-02 2.321050e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.681481e-01 1.923856e-02 1.923856e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.185108e-01 1.581607e-02 1.581607e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.787191e-01 1.289125e-02 1.289125e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.355928e-01 9.838483e-03 9.838483e-03 +2.300000e+00 1.000000e-01 1.000000e-01 9.435837e-02 6.855020e-03 6.855020e-03 +2.500000e+00 1.000000e-01 1.000000e-01 6.700156e-02 4.827664e-03 4.827664e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.823374e-02 3.433332e-03 3.433332e-03 +2.900000e+00 1.000000e-01 1.000000e-01 3.566306e-02 2.498171e-03 2.498171e-03 +3.100000e+00 1.000000e-01 1.000000e-01 2.644567e-02 1.854430e-03 1.854430e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.966433e-02 1.374461e-03 1.374461e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.515253e-02 1.058145e-03 1.058145e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.181587e-02 8.202695e-04 8.202695e-04 +3.900000e+00 1.000000e-01 1.000000e-01 9.120103e-03 6.303372e-04 6.303372e-04 +4.250000e+00 2.500000e-01 2.500000e-01 6.023281e-03 4.137899e-04 4.137899e-04 +4.750000e+00 2.500000e-01 2.500000e-01 3.474327e-03 2.368322e-04 2.368322e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.735296e-03 1.183249e-04 1.183249e-04 +7.000000e+00 1.000000e+00 1.000000e+00 5.489848e-04 3.735936e-05 3.735936e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.477433e-04 1.025879e-05 1.025879e-05 +1.250000e+01 2.500000e+00 2.500000e+00 3.064279e-05 2.221806e-06 2.221806e-06 +2.000000e+01 5.000000e+00 5.000000e+00 3.094024e-06 2.768009e-07 2.768009e-07 +3.250000e+01 7.500000e+00 7.500000e+00 3.115903e-07 5.381554e-08 5.381554e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d09-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.4898914, up: 0.4898914}, stat: {dn: -0.005329258, up: 0.005329258}, unc. syst.: {dn: -0.1464761, up: 0.1464761}}, 1: {full syst.: {dn: -0.4600088, up: 0.4600088}, stat: {dn: -0.00509883, up: 0.00509883}, unc. syst.: {dn: -0.1506392, up: 0.1506392}}, 2: {full syst.: {dn: -0.4442749, up: 0.4442749}, stat: {dn: -0.003164794, up: 0.003164794}, unc. syst.: {dn: -0.1539445, up: 0.1539445}}, 3: {full syst.: {dn: -0.4376473, up: 0.4376473}, stat: {dn: -0.002953572, up: 0.002953572}, unc. syst.: {dn: -0.146517, up: 0.146517}}, 4: {full syst.: {dn: -0.411599, up: 0.411599}, stat: {dn: -0.002741585, up: 0.002741585}, unc. syst.: {dn: -0.133694, up: 0.133694}}, 5: {full syst.: {dn: -0.3746064, up: 0.3746064}, stat: {dn: -0.002500028, up: 0.002500028}, unc. syst.: {dn: -0.1187093, up: 0.1187093}}, 6: {full syst.: {dn: -0.3312307, up: 0.3312307}, stat: {dn: -0.002294059, up: 0.002294059}, unc. syst.: {dn: -0.1043933, up: 0.1043933}}, 7: {full syst.: {dn: -0.2841385, up: 0.2841385}, stat: {dn: -0.002091536, up: 0.002091536}, unc. syst.: {dn: -0.09040727, up: 0.09040727}}, 8: {full syst.: {dn: -0.2433103, up: 0.2433103}, stat: {dn: -0.001927208, up: 0.001927208}, unc. syst.: {dn: -0.07841059, up: 0.07841059}}, 9: {full syst.: {dn: -0.2064158, up: 0.2064158}, stat: {dn: -0.001773815, up: 0.001773815}, unc. syst.: {dn: -0.06771086, up: 0.06771086}}, 10: {full syst.: {dn: -0.175636, up: 0.175636}, stat: {dn: -0.001635701, up: 0.001635701}, unc. syst.: {dn: -0.05841607, up: 0.05841607}}, 11: {full syst.: {dn: -0.1497159, up: 0.1497159}, stat: {dn: -0.001515234, up: 0.001515234}, unc. syst.: {dn: -0.05053526, up: 0.05053526}}, 12: {full syst.: {dn: -0.1278663, up: 0.1278663}, stat: {dn: -0.001406546, up: 0.001406546}, unc. syst.: {dn: -0.04376941, up: 0.04376941}}, 13: {full syst.: {dn: -0.1098586, up: 0.1098586}, stat: {dn: -0.001309384, up: 0.001309384}, unc. syst.: {dn: -0.03802055, up: 0.03802055}}, 14: {full syst.: {dn: -0.09487467, up: 0.09487467}, stat: {dn: -0.001218561, up: 0.001218561}, unc. syst.: {dn: -0.03304369, up: 0.03304369}}, 15: {full syst.: {dn: -0.08235143, up: 0.08235143}, stat: {dn: -0.001140543, up: 0.001140543}, unc. syst.: {dn: -0.02885659, up: 0.02885659}}, 16: {full syst.: {dn: -0.07172212, up: 0.07172212}, stat: {dn: -0.001066493, up: 0.001066493}, unc. syst.: {dn: -0.02520768, up: 0.02520768}}, 17: {full syst.: {dn: -0.0628958, up: 0.0628958}, stat: {dn: -0.0009966708, up: 0.0009966708}, unc. syst.: {dn: -0.0220467, up: 0.0220467}}, 18: {full syst.: {dn: -0.05155651, up: 0.05155651}, stat: {dn: -0.0006344621, up: 0.0006344621}, unc. syst.: {dn: -0.0180248, up: 0.0180248}}, 19: {full syst.: {dn: -0.04001135, up: 0.04001135}, stat: {dn: -0.0005542913, up: 0.0005542913}, unc. syst.: {dn: -0.01392351, up: 0.01392351}}, 20: {full syst.: {dn: -0.03170199, up: 0.03170199}, stat: {dn: -0.0004889862, up: 0.0004889862}, unc. syst.: {dn: -0.01089353, up: 0.01089353}}, 21: {full syst.: {dn: -0.02572643, up: 0.02572643}, stat: {dn: -0.0004318275, up: 0.0004318275}, unc. syst.: {dn: -0.008554753, up: 0.008554753}}, 22: {full syst.: {dn: -0.02089332, up: 0.02089332}, stat: {dn: -0.0003830681, up: 0.0003830681}, unc. syst.: {dn: -0.006773302, up: 0.006773302}}, 23: {full syst.: {dn: -0.01728519, up: 0.01728519}, stat: {dn: -0.0003413829, up: 0.0003413829}, unc. syst.: {dn: -0.005408754, up: 0.005408754}}, 24: {full syst.: {dn: -0.01395862, up: 0.01395862}, stat: {dn: -0.0003043425, up: 0.0003043425}, unc. syst.: {dn: -0.004323115, up: 0.004323115}}, 25: {full syst.: {dn: -0.01141591, up: 0.01141591}, stat: {dn: -0.0002714556, up: 0.0002714556}, unc. syst.: {dn: -0.003466585, up: 0.003466585}}, 26: {full syst.: {dn: -0.009315467, up: 0.009315467}, stat: {dn: -0.0002427082, up: 0.0002427082}, unc. syst.: {dn: -0.002801969, up: 0.002801969}}, 27: {full syst.: {dn: -0.007552025, up: 0.007552025}, stat: {dn: -0.0002191674, up: 0.0002191674}, unc. syst.: {dn: -0.002280316, up: 0.002280316}}, 28: {full syst.: {dn: -0.005693453, up: 0.005693453}, stat: {dn: -0.000135506, up: 0.000135506}, unc. syst.: {dn: -0.001707833, up: 0.001707833}}, 29: {full syst.: {dn: -0.003919575, up: 0.003919575}, stat: {dn: -0.0001122898, up: 0.0001122898}, unc. syst.: {dn: -0.001174325, up: 0.001174325}}, 30: {full syst.: {dn: -0.002735107, up: 0.002735107}, stat: {dn: -9.379882e-05, up: 9.379882e-05}, unc. syst.: {dn: -0.0008269827, up: 0.0008269827}}, 31: {full syst.: {dn: -0.001926629, up: 0.001926629}, stat: {dn: -7.918866e-05, up: 7.918866e-05}, unc. syst.: {dn: -0.0005904733, up: 0.0005904733}}, 32: {full syst.: {dn: -0.001381062, up: 0.001381062}, stat: {dn: -6.757696e-05, up: 6.757696e-05}, unc. syst.: {dn: -0.0004309023, up: 0.0004309023}}, 33: {full syst.: {dn: -0.001016118, up: 0.001016118}, stat: {dn: -5.772439e-05, up: 5.772439e-05}, unc. syst.: {dn: -0.0003168218, up: 0.0003168218}}, 34: {full syst.: {dn: -0.0007609901, up: 0.0007609901}, stat: {dn: -4.980662e-05, up: 4.980662e-05}, unc. syst.: {dn: -0.0002382605, up: 0.0002382605}}, 35: {full syst.: {dn: -0.0005680261, up: 0.0005680261}, stat: {dn: -4.292119e-05, up: 4.292119e-05}, unc. syst.: {dn: -0.00017815, up: 0.00017815}}, 36: {full syst.: {dn: -0.000438106, up: 0.000438106}, stat: {dn: -3.782912e-05, up: 3.782912e-05}, unc. syst.: {dn: -0.0001384267, up: 0.0001384267}}, 37: {full syst.: {dn: -0.000333359, up: 0.000333359}, stat: {dn: -3.290736e-05, up: 3.290736e-05}, unc. syst.: {dn: -0.0001059699, up: 0.0001059699}}, 38: {full syst.: {dn: -0.0002214578, up: 0.0002214578}, stat: {dn: -1.634909e-05, up: 1.634909e-05}, unc. syst.: {dn: -7.070411e-05, up: 7.070411e-05}}, 39: {full syst.: {dn: -0.0001262986, up: 0.0001262986}, stat: {dn: -1.234827e-05, up: 1.234827e-05}, unc. syst.: {dn: -4.076144e-05, up: 4.076144e-05}}, 40: {full syst.: {dn: -6.071226e-05, up: 6.071226e-05}, stat: {dn: -6.059301e-06, up: 6.059301e-06}, unc. syst.: {dn: -1.958795e-05, up: 1.958795e-05}}, 41: {full syst.: {dn: -1.898443e-05, up: 1.898443e-05}, stat: {dn: -2.395326e-06, up: 2.395326e-06}, unc. syst.: {dn: -6.157618e-06, up: 6.157618e-06}}, 42: {full syst.: {dn: -5.06494e-06, up: 5.06494e-06}, stat: {dn: -1.23176e-06, up: 1.23176e-06}, unc. syst.: {dn: -1.64271e-06, up: 1.64271e-06}}, 43: {full syst.: {dn: -1.060676e-06, up: 1.060676e-06}, stat: {dn: -3.52043e-07, up: 3.52043e-07}, unc. syst.: {dn: -3.361963e-07, up: 3.361963e-07}}, 44: {full syst.: {dn: -1.095682e-07, up: 1.095682e-07}, stat: {dn: -7.691991e-08, up: 7.691991e-08}, unc. syst.: {dn: -3.203821e-08, up: 3.203821e-08}}, 45: {full syst.: {dn: -1.293468e-08, up: 1.293468e-08}, stat: {dn: -2.214056e-08, up: 2.214056e-08}, unc. syst.: {dn: -2.977581e-09, up: 2.977581e-09}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d09-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t9 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 7.014934e+00 5.113484e-01 5.113484e-01 +1.900000e-01 1.000000e-02 1.000000e-02 7.214307e+00 4.840726e-01 4.840726e-01 +2.250000e-01 2.500000e-02 2.500000e-02 7.372605e+00 4.702011e-01 4.702011e-01 +2.750000e-01 2.500000e-02 2.500000e-02 7.016890e+00 4.615313e-01 4.615313e-01 +3.250000e-01 2.500000e-02 2.500000e-02 6.402783e+00 4.327763e-01 4.327763e-01 +3.750000e-01 2.500000e-02 2.500000e-02 5.685145e+00 3.929734e-01 3.929734e-01 +4.250000e-01 2.500000e-02 2.500000e-02 4.999534e+00 3.472996e-01 3.472996e-01 +4.750000e-01 2.500000e-02 2.500000e-02 4.329723e+00 2.981821e-01 2.981821e-01 +5.250000e-01 2.500000e-02 2.500000e-02 3.755186e+00 2.556401e-01 2.556401e-01 +5.750000e-01 2.500000e-02 2.500000e-02 3.242762e+00 2.172450e-01 2.172450e-01 +6.250000e-01 2.500000e-02 2.500000e-02 2.797622e+00 1.851030e-01 1.851030e-01 +6.750000e-01 2.500000e-02 2.500000e-02 2.420200e+00 1.580220e-01 1.580220e-01 +7.250000e-01 2.500000e-02 2.500000e-02 2.096174e+00 1.351574e-01 1.351574e-01 +7.750000e-01 2.500000e-02 2.500000e-02 1.820854e+00 1.162591e-01 1.162591e-01 +8.250000e-01 2.500000e-02 2.500000e-02 1.582506e+00 1.004718e-01 1.004718e-01 +8.750000e-01 2.500000e-02 2.500000e-02 1.381980e+00 8.726833e-02 8.726833e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.207229e+00 7.603043e-02 7.603043e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.055845e+00 6.665532e-02 6.665532e-02 +1.050000e+00 5.000000e-02 5.000000e-02 8.632312e-01 5.462023e-02 5.462023e-02 +1.150000e+00 5.000000e-02 5.000000e-02 6.668154e-01 4.236838e-02 4.236838e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.217054e-01 3.352498e-02 3.352498e-02 +1.350000e+00 5.000000e-02 5.000000e-02 4.096984e-01 2.711493e-02 2.711493e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.243824e-01 2.196714e-02 2.196714e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.590323e-01 1.811488e-02 1.811488e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.070397e-01 1.461592e-02 1.461592e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.660193e-01 1.193373e-02 1.193373e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.341900e-01 9.730769e-03 9.730769e-03 +1.950000e+00 5.000000e-02 5.000000e-02 1.092073e-01 7.891828e-03 7.891828e-03 +2.100000e+00 1.000000e-01 1.000000e-01 8.179036e-02 5.945625e-03 5.945625e-03 +2.300000e+00 1.000000e-01 1.000000e-01 5.623998e-02 4.093253e-03 4.093253e-03 +2.500000e+00 1.000000e-01 1.000000e-01 3.960529e-02 2.858935e-03 2.858935e-03 +2.700000e+00 1.000000e-01 1.000000e-01 2.827854e-02 2.016638e-03 2.016638e-03 +2.900000e+00 1.000000e-01 1.000000e-01 2.063648e-02 1.448301e-03 1.448301e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.517301e-02 1.065929e-03 1.065929e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.141061e-02 7.989710e-04 7.989710e-04 +3.500000e+00 1.000000e-01 1.000000e-01 8.531839e-03 5.968528e-04 5.968528e-04 +3.700000e+00 1.000000e-01 1.000000e-01 6.629436e-03 4.610096e-04 4.610096e-04 +3.900000e+00 1.000000e-01 1.000000e-01 5.075038e-03 3.513413e-04 3.513413e-04 +4.250000e+00 2.500000e-01 2.500000e-01 3.386113e-03 2.330449e-04 2.330449e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.952119e-03 1.332866e-04 1.332866e-04 +5.500000e+00 5.000000e-01 5.000000e-01 9.380928e-04 6.408105e-05 6.408105e-05 +7.000000e+00 1.000000e+00 1.000000e+00 2.948964e-04 2.010130e-05 2.010130e-05 +9.000000e+00 1.000000e+00 1.000000e+00 7.867155e-05 5.465286e-06 5.465286e-06 +1.250000e+01 2.500000e+00 2.500000e+00 1.610088e-05 1.167046e-06 1.167046e-06 +2.000000e+01 5.000000e+00 5.000000e+00 1.534352e-06 1.376529e-07 1.376529e-07 +3.250000e+01 7.500000e+00 7.500000e+00 1.426002e-07 2.581427e-08 2.581427e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d10-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.3187597, up: 0.3187597}, stat: {dn: -0.00348403, up: 0.00348403}, unc. syst.: {dn: -0.09468895, up: 0.09468895}}, 1: {full syst.: {dn: -0.3036038, up: 0.3036038}, stat: {dn: -0.003365725, up: 0.003365725}, unc. syst.: {dn: -0.09864779, up: 0.09864779}}, 2: {full syst.: {dn: -0.2996326, up: 0.2996326}, stat: {dn: -0.002119494, up: 0.002119494}, unc. syst.: {dn: -0.1029219, up: 0.1029219}}, 3: {full syst.: {dn: -0.3007195, up: 0.3007195}, stat: {dn: -0.002003743, up: 0.002003743}, unc. syst.: {dn: -0.09985773, up: 0.09985773}}, 4: {full syst.: {dn: -0.2840704, up: 0.2840704}, stat: {dn: -0.001865643, up: 0.001865643}, unc. syst.: {dn: -0.09156438, up: 0.09156438}}, 5: {full syst.: {dn: -0.2579927, up: 0.2579927}, stat: {dn: -0.001698927, up: 0.001698927}, unc. syst.: {dn: -0.08115954, up: 0.08115954}}, 6: {full syst.: {dn: -0.2258926, up: 0.2258926}, stat: {dn: -0.001549117, up: 0.001549117}, unc. syst.: {dn: -0.0706807, up: 0.0706807}}, 7: {full syst.: {dn: -0.1913155, up: 0.1913155}, stat: {dn: -0.001400918, up: 0.001400918}, unc. syst.: {dn: -0.06042549, up: 0.06042549}}, 8: {full syst.: {dn: -0.1612287, up: 0.1612287}, stat: {dn: -0.00127807, up: 0.00127807}, unc. syst.: {dn: -0.05156691, up: 0.05156691}}, 9: {full syst.: {dn: -0.1339942, up: 0.1339942}, stat: {dn: -0.001161582, up: 0.001161582}, unc. syst.: {dn: -0.04361125, up: 0.04361125}}, 10: {full syst.: {dn: -0.111574, up: 0.111574}, stat: {dn: -0.001057214, up: 0.001057214}, unc. syst.: {dn: -0.03681155, up: 0.03681155}}, 11: {full syst.: {dn: -0.09282206, up: 0.09282206}, stat: {dn: -0.0009651329, up: 0.0009651329}, unc. syst.: {dn: -0.0310725, up: 0.0310725}}, 12: {full syst.: {dn: -0.07728848, up: 0.07728848}, stat: {dn: -0.0008823917, up: 0.0008823917}, unc. syst.: {dn: -0.02623169, up: 0.02623169}}, 13: {full syst.: {dn: -0.06463363, up: 0.06463363}, stat: {dn: -0.0008083142, up: 0.0008083142}, unc. syst.: {dn: -0.02217473, up: 0.02217473}}, 14: {full syst.: {dn: -0.05447771, up: 0.05447771}, stat: {dn: -0.0007416195, up: 0.0007416195}, unc. syst.: {dn: -0.01880722, up: 0.01880722}}, 15: {full syst.: {dn: -0.04604507, up: 0.04604507}, stat: {dn: -0.0006832151, up: 0.0006832151}, unc. syst.: {dn: -0.01599109, up: 0.01599109}}, 16: {full syst.: {dn: -0.03897696, up: 0.03897696}, stat: {dn: -0.0006283263, up: 0.0006283263}, unc. syst.: {dn: -0.01357643, up: 0.01357643}}, 17: {full syst.: {dn: -0.03342015, up: 0.03342015}, stat: {dn: -0.0005796649, up: 0.0005796649}, unc. syst.: {dn: -0.01161044, up: 0.01161044}}, 18: {full syst.: {dn: -0.02641018, up: 0.02641018}, stat: {dn: -0.0003614983, up: 0.0003614983}, unc. syst.: {dn: -0.009151594, up: 0.009151594}}, 19: {full syst.: {dn: -0.01956494, up: 0.01956494}, stat: {dn: -0.0003077594, up: 0.0003077594}, unc. syst.: {dn: -0.006748668, up: 0.006748668}}, 20: {full syst.: {dn: -0.01484456, up: 0.01484456}, stat: {dn: -0.0002651067, up: 0.0002651067}, unc. syst.: {dn: -0.005057291, up: 0.005057291}}, 21: {full syst.: {dn: -0.01161865, up: 0.01161865}, stat: {dn: -0.000229659, up: 0.000229659}, unc. syst.: {dn: -0.003832545, up: 0.003832545}}, 22: {full syst.: {dn: -0.009132497, up: 0.009132497}, stat: {dn: -0.0002002372, up: 0.0002002372}, unc. syst.: {dn: -0.002938044, up: 0.002938044}}, 23: {full syst.: {dn: -0.0072895, up: 0.0072895}, stat: {dn: -0.0001751057, up: 0.0001751057}, unc. syst.: {dn: -0.002264759, up: 0.002264759}}, 24: {full syst.: {dn: -0.005728007, up: 0.005728007}, stat: {dn: -0.0001539545, up: 0.0001539545}, unc. syst.: {dn: -0.001761658, up: 0.001761658}}, 25: {full syst.: {dn: -0.004580521, up: 0.004580521}, stat: {dn: -0.0001358086, up: 0.0001358086}, unc. syst.: {dn: -0.001381614, up: 0.001381614}}, 26: {full syst.: {dn: -0.003655301, up: 0.003655301}, stat: {dn: -0.0001201984, up: 0.0001201984}, unc. syst.: {dn: -0.001092237, up: 0.001092237}}, 27: {full syst.: {dn: -0.002903689, up: 0.002903689}, stat: {dn: -0.0001073326, up: 0.0001073326}, unc. syst.: {dn: -0.0008709534, up: 0.0008709534}}, 28: {full syst.: {dn: -0.002128244, up: 0.002128244}, stat: {dn: -6.516335e-05, up: 6.516335e-05}, unc. syst.: {dn: -0.0006342226, up: 0.0006342226}}, 29: {full syst.: {dn: -0.001420789, up: 0.001420789}, stat: {dn: -5.321398e-05, up: 5.321398e-05}, unc. syst.: {dn: -0.0004228989, up: 0.0004228989}}, 30: {full syst.: {dn: -0.0009531043, up: 0.0009531043}, stat: {dn: -4.363817e-05, up: 4.363817e-05}, unc. syst.: {dn: -0.0002862648, up: 0.0002862648}}, 31: {full syst.: {dn: -0.000661766, up: 0.000661766}, stat: {dn: -3.662789e-05, up: 3.662789e-05}, unc. syst.: {dn: -0.0002014341, up: 0.0002014341}}, 32: {full syst.: {dn: -0.0004612241, up: 0.0004612241}, stat: {dn: -3.081052e-05, up: 3.081052e-05}, unc. syst.: {dn: -0.0001428883, up: 0.0001428883}}, 33: {full syst.: {dn: -0.0003324085, up: 0.0003324085}, stat: {dn: -2.60939e-05, up: 2.60939e-05}, unc. syst.: {dn: -0.000102912, up: 0.000102912}}, 34: {full syst.: {dn: -0.0002413189, up: 0.0002413189}, stat: {dn: -2.219497e-05, up: 2.219497e-05}, unc. syst.: {dn: -7.501741e-05, up: 7.501741e-05}}, 35: {full syst.: {dn: -0.0001819103, up: 0.0001819103}, stat: {dn: -1.925839e-05, up: 1.925839e-05}, unc. syst.: {dn: -5.664505e-05, up: 5.664505e-05}}, 36: {full syst.: {dn: -0.0001349185, up: 0.0001349185}, stat: {dn: -1.663875e-05, up: 1.663875e-05}, unc. syst.: {dn: -4.232073e-05, up: 4.232073e-05}}, 37: {full syst.: {dn: -0.0001020394, up: 0.0001020394}, stat: {dn: -1.446416e-05, up: 1.446416e-05}, unc. syst.: {dn: -3.219889e-05, up: 3.219889e-05}}, 38: {full syst.: {dn: -6.577632e-05, up: 6.577632e-05}, stat: {dn: -7.217435e-06, up: 7.217435e-06}, unc. syst.: {dn: -2.084483e-05, up: 2.084483e-05}}, 39: {full syst.: {dn: -3.647948e-05, up: 3.647948e-05}, stat: {dn: -5.391757e-06, up: 5.391757e-06}, unc. syst.: {dn: -1.168435e-05, up: 1.168435e-05}}, 40: {full syst.: {dn: -1.710694e-05, up: 1.710694e-05}, stat: {dn: -2.611006e-06, up: 2.611006e-06}, unc. syst.: {dn: -5.477621e-06, up: 5.477621e-06}}, 41: {full syst.: {dn: -5.025979e-06, up: 5.025979e-06}, stat: {dn: -1.002308e-06, up: 1.002308e-06}, unc. syst.: {dn: -1.617737e-06, up: 1.617737e-06}}, 42: {full syst.: {dn: -1.262571e-06, up: 1.262571e-06}, stat: {dn: -5.016759e-07, up: 5.016759e-07}, unc. syst.: {dn: -4.063639e-07, up: 4.063639e-07}}, 43: {full syst.: {dn: -2.572354e-07, up: 2.572354e-07}, stat: {dn: -1.415123e-07, up: 1.415123e-07}, unc. syst.: {dn: -8.093973e-08, up: 8.093973e-08}}, 44: {full syst.: {dn: -2.849183e-08, up: 2.849183e-08}, stat: {dn: -3.205753e-08, up: 3.205753e-08}, unc. syst.: {dn: -8.279342e-09, up: 8.279342e-09}}, 45: {full syst.: {dn: -4.247022e-09, up: 4.247022e-09}, stat: {dn: -1.020165e-08, up: 1.020165e-08}, unc. syst.: {dn: -9.738896e-10, up: 9.738896e-10}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d10-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t10 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 4.534778e+00 3.325446e-01 3.325446e-01 +1.900000e-01 1.000000e-02 1.000000e-02 4.724372e+00 3.192460e-01 3.192460e-01 +2.250000e-01 2.500000e-02 2.500000e-02 4.929065e+00 3.168235e-01 3.168235e-01 +2.750000e-01 2.500000e-02 2.500000e-02 4.782318e+00 3.168719e-01 3.168719e-01 +3.250000e-01 2.500000e-02 2.500000e-02 4.385138e+00 2.984686e-01 2.984686e-01 +3.750000e-01 2.500000e-02 2.500000e-02 3.886837e+00 2.704625e-01 2.704625e-01 +4.250000e-01 2.500000e-02 2.500000e-02 3.384992e+00 2.366973e-01 2.366973e-01 +4.750000e-01 2.500000e-02 2.500000e-02 2.893856e+00 2.006360e-01 2.006360e-01 +5.250000e-01 2.500000e-02 2.500000e-02 2.469607e+00 1.692793e-01 1.692793e-01 +5.750000e-01 2.500000e-02 2.500000e-02 2.088600e+00 1.409175e-01 1.409175e-01 +6.250000e-01 2.500000e-02 2.500000e-02 1.762954e+00 1.174945e-01 1.174945e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.488103e+00 9.788956e-02 9.788956e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.256270e+00 8.162346e-02 8.162346e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.061977e+00 6.833651e-02 6.833651e-02 +8.250000e-01 2.500000e-02 2.500000e-02 9.007023e-01 5.763751e-02 5.763751e-02 +8.750000e-01 2.500000e-02 2.500000e-02 7.658343e-01 4.874762e-02 4.874762e-02 +9.250000e-01 2.500000e-02 2.500000e-02 6.501930e-01 4.127854e-02 4.127854e-02 +9.750000e-01 2.500000e-02 2.500000e-02 5.560394e-01 3.538424e-02 3.538424e-02 +1.050000e+00 5.000000e-02 5.000000e-02 4.382819e-01 2.795317e-02 2.795317e-02 +1.150000e+00 5.000000e-02 5.000000e-02 3.232026e-01 2.069846e-02 2.069846e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.422003e-01 1.568462e-02 1.568462e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.835456e-01 1.223659e-02 1.223659e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.407068e-01 9.595556e-03 9.595556e-03 +1.550000e+00 5.000000e-02 5.000000e-02 1.084623e-01 7.635221e-03 7.635221e-03 +1.650000e+00 5.000000e-02 5.000000e-02 8.436813e-02 5.994765e-03 5.994765e-03 +1.750000e+00 5.000000e-02 5.000000e-02 6.616730e-02 4.786280e-03 4.786280e-03 +1.850000e+00 5.000000e-02 5.000000e-02 5.230867e-02 3.816891e-03 3.816891e-03 +1.950000e+00 5.000000e-02 5.000000e-02 4.171110e-02 3.033396e-03 3.033396e-03 +2.100000e+00 1.000000e-01 1.000000e-01 3.037375e-02 2.221690e-03 2.221690e-03 +2.300000e+00 1.000000e-01 1.000000e-01 2.025318e-02 1.483346e-03 1.483346e-03 +2.500000e+00 1.000000e-01 1.000000e-01 1.370960e-02 9.961223e-04 9.961223e-04 +2.700000e+00 1.000000e-01 1.000000e-01 9.646945e-03 6.927132e-04 6.927132e-04 +2.900000e+00 1.000000e-01 1.000000e-01 6.843108e-03 4.838326e-04 4.838326e-04 +3.100000e+00 1.000000e-01 1.000000e-01 4.928593e-03 3.489515e-04 3.489515e-04 +3.300000e+00 1.000000e-01 1.000000e-01 3.592682e-03 2.536830e-04 2.536830e-04 +3.500000e+00 1.000000e-01 1.000000e-01 2.712806e-03 1.914965e-04 1.914965e-04 +3.700000e+00 1.000000e-01 1.000000e-01 2.026795e-03 1.423759e-04 1.423759e-04 +3.900000e+00 1.000000e-01 1.000000e-01 1.542047e-03 1.079723e-04 1.079723e-04 +4.250000e+00 2.500000e-01 2.500000e-01 9.982861e-04 6.937667e-05 6.937667e-05 +4.750000e+00 2.500000e-01 2.500000e-01 5.595789e-04 3.868265e-05 3.868265e-05 +5.500000e+00 5.000000e-01 5.000000e-01 2.623305e-04 1.815128e-05 1.815128e-05 +7.000000e+00 1.000000e+00 1.000000e+00 7.747557e-05 5.374212e-06 5.374212e-06 +9.000000e+00 1.000000e+00 1.000000e+00 1.946130e-05 1.418061e-06 1.418061e-06 +1.250000e+01 2.500000e+00 2.500000e+00 3.876310e-06 3.045440e-07 3.045440e-07 +2.000000e+01 5.000000e+00 5.000000e+00 3.965086e-07 4.368086e-08 4.368086e-08 +3.250000e+01 7.500000e+00 7.500000e+00 4.664085e-08 1.109321e-08 1.109321e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d11-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -2.708305, up: 2.708305}, stat: {dn: -0.0641991, up: 0.0641991}}, 1: {full syst.: {dn: -1.794927, up: 1.794927}, stat: {dn: -0.05693875, up: 0.05693875}}, 2: {full syst.: {dn: -1.725358, up: 1.725358}, stat: {dn: -0.05627015, up: 0.05627015}}, 3: {full syst.: {dn: -1.710798, up: 1.710798}, stat: {dn: -0.05554187, up: 0.05554187}}, 4: {full syst.: {dn: -1.67319, up: 1.67319}, stat: {dn: -0.05437998, up: 0.05437998}}, 5: {full syst.: {dn: -1.54174, up: 1.54174}, stat: {dn: -0.03272927, up: 0.03272927}}, 6: {full syst.: {dn: -1.14357, up: 1.14357}, stat: {dn: -0.05645772, up: 0.05645772}}, 7: {full syst.: {dn: -0.9979346, up: 0.9979346}, stat: {dn: -0.05452315, up: 0.05452315}}, 8: {full syst.: {dn: -0.8755116, up: 0.8755116}, stat: {dn: -0.04474366, up: 0.04474366}}, 9: {full syst.: {dn: -0.7708625, up: 0.7708625}, stat: {dn: -0.04167727, up: 0.04167727}}, 10: {full syst.: {dn: -0.67801, up: 0.67801}, stat: {dn: -0.03983651, up: 0.03983651}}, 11: {full syst.: {dn: -0.5949947, up: 0.5949947}, stat: {dn: -0.03756957, up: 0.03756957}}, 12: {full syst.: {dn: -0.514189, up: 0.514189}, stat: {dn: -0.03454517, up: 0.03454517}}, 13: {full syst.: {dn: -0.6661311, up: 0.6661311}, stat: {dn: -0.1033695, up: 0.1033695}}, 14: {full syst.: {dn: -0.5918062, up: 0.5918062}, stat: {dn: -0.08436273, up: 0.08436273}}, 15: {full syst.: {dn: -0.5205903, up: 0.5205903}, stat: {dn: -0.09025344, up: 0.09025344}}, 16: {full syst.: {dn: -0.467744, up: 0.467744}, stat: {dn: -0.07442675, up: 0.07442675}}, 17: {full syst.: {dn: -0.4077404, up: 0.4077404}, stat: {dn: -0.07302857, up: 0.07302857}}, 18: {full syst.: {dn: -0.3703793, up: 0.3703793}, stat: {dn: -0.06386414, up: 0.06386414}}, 19: {full syst.: {dn: -0.334821, up: 0.334821}, stat: {dn: -0.06101859, up: 0.06101859}}, 20: {full syst.: {dn: -0.3015836, up: 0.3015836}, stat: {dn: -0.03436703, up: 0.03436703}}, 21: {full syst.: {dn: -0.2547832, up: 0.2547832}, stat: {dn: -0.03473852, up: 0.03473852}}, 22: {full syst.: {dn: -0.2046038, up: 0.2046038}, stat: {dn: -0.02988506, up: 0.02988506}}, 23: {full syst.: {dn: -0.1693794, up: 0.1693794}, stat: {dn: -0.01253799, up: 0.01253799}}, 24: {full syst.: {dn: -0.1378147, up: 0.1378147}, stat: {dn: -0.01166303, up: 0.01166303}}, 25: {full syst.: {dn: -0.1145072, up: 0.1145072}, stat: {dn: -0.01084267, up: 0.01084267}}, 26: {full syst.: {dn: -0.0960206, up: 0.0960206}, stat: {dn: -0.009751087, up: 0.009751087}}, 27: {full syst.: {dn: -0.08016134, up: 0.08016134}, stat: {dn: -0.00874007, up: 0.00874007}}, 28: {full syst.: {dn: -0.06754969, up: 0.06754969}, stat: {dn: -0.007807443, up: 0.007807443}}, 29: {full syst.: {dn: -0.05611297, up: 0.05611297}, stat: {dn: -0.007026272, up: 0.007026272}}, 30: {full syst.: {dn: -0.0470572, up: 0.0470572}, stat: {dn: -0.005873454, up: 0.005873454}}, 31: {full syst.: {dn: -0.0307392, up: 0.0307392}, stat: {dn: -0.00205611, up: 0.00205611}}, 32: {full syst.: {dn: -0.02196745, up: 0.02196745}, stat: {dn: -0.001847233, up: 0.001847233}}, 33: {full syst.: {dn: -0.01610785, up: 0.01610785}, stat: {dn: -0.001664508, up: 0.001664508}}, 34: {full syst.: {dn: -0.01245482, up: 0.01245482}, stat: {dn: -0.0006132436, up: 0.0006132436}}, 35: {full syst.: {dn: -0.009128077, up: 0.009128077}, stat: {dn: -0.000528046, up: 0.000528046}}, 36: {full syst.: {dn: -0.006839932, up: 0.006839932}, stat: {dn: -0.0004582431, up: 0.0004582431}}, 37: {full syst.: {dn: -0.005209769, up: 0.005209769}, stat: {dn: -0.0003995779, up: 0.0003995779}}, 38: {full syst.: {dn: -0.003986405, up: 0.003986405}, stat: {dn: -0.0003472958, up: 0.0003472958}}, 39: {full syst.: {dn: -0.003099873, up: 0.003099873}, stat: {dn: -0.0003022932, up: 0.0003022932}}, 40: {full syst.: {dn: -0.002424653, up: 0.002424653}, stat: {dn: -0.0002560476, up: 0.0002560476}}, 41: {full syst.: {dn: -0.00165343, up: 0.00165343}, stat: {dn: -0.0001484235, up: 0.0001484235}}, 42: {full syst.: {dn: -0.0009926178, up: 0.0009926178}, stat: {dn: -0.0001067149, up: 0.0001067149}}, 43: {full syst.: {dn: -0.0005093859, up: 0.0005093859}, stat: {dn: -5.636647e-05, up: 5.636647e-05}}, 44: {full syst.: {dn: -0.0001767003, up: 0.0001767003}, stat: {dn: -2.358149e-05, up: 2.358149e-05}}, 45: {full syst.: {dn: -5.328013e-05, up: 5.328013e-05}, stat: {dn: -1.084133e-05, up: 1.084133e-05}}, 46: {full syst.: {dn: -1.329251e-05, up: 1.329251e-05}, stat: {dn: -3.695398e-06, up: 3.695398e-06}}, 47: {full syst.: {dn: -2.757731e-06, up: 2.757731e-06}, stat: {dn: -1.289679e-06, up: 1.289679e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d11-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t11 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 3.406246e+01 2.709066e+00 2.709066e+00 +1.300000e-01 1.000000e-02 1.000000e-02 3.556338e+01 1.795830e+00 1.795830e+00 +1.500000e-01 1.000000e-02 1.000000e-02 3.591064e+01 1.726275e+00 1.726275e+00 +1.700000e-01 1.000000e-02 1.000000e-02 3.561675e+01 1.711699e+00 1.711699e+00 +1.900000e-01 1.000000e-02 1.000000e-02 3.471669e+01 1.674073e+00 1.674073e+00 +2.250000e-01 2.500000e-02 2.500000e-02 3.215439e+01 1.542087e+00 1.542087e+00 +2.750000e-01 2.500000e-02 2.500000e-02 2.877749e+01 1.144963e+00 1.144963e+00 +3.250000e-01 2.500000e-02 2.500000e-02 2.535537e+01 9.994230e-01 9.994230e-01 +3.750000e-01 2.500000e-02 2.500000e-02 2.230152e+01 8.766542e-01 8.766542e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.968809e+01 7.719883e-01 7.719883e-01 +4.750000e-01 2.500000e-02 2.500000e-02 1.730464e+01 6.791793e-01 6.791793e-01 +5.250000e-01 2.500000e-02 2.500000e-02 1.525320e+01 5.961796e-01 5.961796e-01 +5.750000e-01 2.500000e-02 2.500000e-02 1.331957e+01 5.153481e-01 5.153481e-01 +6.250000e-01 2.500000e-02 2.500000e-02 1.233302e+01 6.741038e-01 6.741038e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.088267e+01 5.977890e-01 5.977890e-01 +7.250000e-01 2.500000e-02 2.500000e-02 9.645829e+00 5.283559e-01 5.283559e-01 +7.750000e-01 2.500000e-02 2.500000e-02 8.605029e+00 4.736283e-01 4.736283e-01 +8.250000e-01 2.500000e-02 2.500000e-02 7.530685e+00 4.142287e-01 4.142287e-01 +8.750000e-01 2.500000e-02 2.500000e-02 6.813022e+00 3.758450e-01 3.758450e-01 +9.250000e-01 2.500000e-02 2.500000e-02 6.168148e+00 3.403357e-01 3.403357e-01 +9.750000e-01 2.500000e-02 2.500000e-02 5.489153e+00 3.035354e-01 3.035354e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.665523e+00 2.571405e-01 2.571405e-01 +1.150000e+00 5.000000e-02 5.000000e-02 3.748615e+00 2.067748e-01 2.067748e-01 +1.250000e+00 5.000000e-02 5.000000e-02 3.031794e+00 1.698428e-01 1.698428e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.457626e+00 1.383073e-01 1.383073e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.032571e+00 1.150194e-01 1.150194e-01 +1.550000e+00 5.000000e-02 5.000000e-02 1.670462e+00 9.651445e-02 9.651445e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.369937e+00 8.063640e-02 8.063640e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.142829e+00 6.799939e-02 6.799939e-02 +1.850000e+00 5.000000e-02 5.000000e-02 9.512251e-01 5.655116e-02 5.655116e-02 +1.950000e+00 5.000000e-02 5.000000e-02 7.889037e-01 4.742233e-02 4.742233e-02 +2.100000e+00 1.000000e-01 1.000000e-01 6.116571e-01 3.080789e-02 3.080789e-02 +2.300000e+00 1.000000e-01 1.000000e-01 4.357195e-01 2.204498e-02 2.204498e-02 +2.500000e+00 1.000000e-01 1.000000e-01 3.168097e-01 1.619362e-02 1.619362e-02 +2.700000e+00 1.000000e-01 1.000000e-01 2.340543e-01 1.246991e-02 1.246991e-02 +2.900000e+00 1.000000e-01 1.000000e-01 1.743294e-01 9.143338e-03 9.143338e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.319153e-01 6.855265e-03 6.855265e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.009737e-01 5.225070e-03 5.225070e-03 +3.500000e+00 1.000000e-01 1.000000e-01 7.737338e-02 4.001505e-03 4.001505e-03 +3.700000e+00 1.000000e-01 1.000000e-01 6.030733e-02 3.114578e-03 3.114578e-03 +3.900000e+00 1.000000e-01 1.000000e-01 4.726208e-02 2.438135e-03 2.438135e-03 +4.250000e+00 2.500000e-01 2.500000e-01 3.222070e-02 1.660078e-03 1.660078e-03 +4.750000e+00 2.500000e-01 2.500000e-01 1.931230e-02 9.983377e-04 9.983377e-04 +5.500000e+00 5.000000e-01 5.000000e-01 9.750140e-03 5.124950e-04 5.124950e-04 +7.000000e+00 1.000000e+00 1.000000e+00 3.194737e-03 1.782669e-04 1.782669e-04 +9.000000e+00 1.000000e+00 1.000000e+00 8.933904e-04 5.437193e-05 5.437193e-05 +1.250000e+01 2.500000e+00 2.500000e+00 2.000741e-04 1.379662e-05 1.379662e-05 +1.750000e+01 2.500000e+00 2.500000e+00 3.671576e-05 3.044397e-06 3.044397e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d12-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -2.104818, up: 2.104818}, stat: {dn: -0.02971074, up: 0.02971074}}, 1: {full syst.: {dn: -1.333971, up: 1.333971}, stat: {dn: -0.02611024, up: 0.02611024}}, 2: {full syst.: {dn: -1.28233, up: 1.28233}, stat: {dn: -0.0258504, up: 0.0258504}}, 3: {full syst.: {dn: -1.273854, up: 1.273854}, stat: {dn: -0.02549853, up: 0.02549853}}, 4: {full syst.: {dn: -1.247885, up: 1.247885}, stat: {dn: -0.02494387, up: 0.02494387}}, 5: {full syst.: {dn: -1.148853, up: 1.148853}, stat: {dn: -0.01498919, up: 0.01498919}}, 6: {full syst.: {dn: -0.8200589, up: 0.8200589}, stat: {dn: -0.01463999, up: 0.01463999}}, 7: {full syst.: {dn: -0.7113885, up: 0.7113885}, stat: {dn: -0.01383709, up: 0.01383709}}, 8: {full syst.: {dn: -0.6217542, up: 0.6217542}, stat: {dn: -0.01222071, up: 0.01222071}}, 9: {full syst.: {dn: -0.5432503, up: 0.5432503}, stat: {dn: -0.01125191, up: 0.01125191}}, 10: {full syst.: {dn: -0.4741604, up: 0.4741604}, stat: {dn: -0.01077891, up: 0.01077891}}, 11: {full syst.: {dn: -0.4131297, up: 0.4131297}, stat: {dn: -0.01023514, up: 0.01023514}}, 12: {full syst.: {dn: -0.3570439, up: 0.3570439}, stat: {dn: -0.009175639, up: 0.009175639}}, 13: {full syst.: {dn: -0.4916832, up: 0.4916832}, stat: {dn: -0.02293377, up: 0.02293377}}, 14: {full syst.: {dn: -0.4271798, up: 0.4271798}, stat: {dn: -0.02163996, up: 0.02163996}}, 15: {full syst.: {dn: -0.380309, up: 0.380309}, stat: {dn: -0.01936702, up: 0.01936702}}, 16: {full syst.: {dn: -0.337043, up: 0.337043}, stat: {dn: -0.01774214, up: 0.01774214}}, 17: {full syst.: {dn: -0.2976921, up: 0.2976921}, stat: {dn: -0.01661067, up: 0.01661067}}, 18: {full syst.: {dn: -0.2645554, up: 0.2645554}, stat: {dn: -0.01541748, up: 0.01541748}}, 19: {full syst.: {dn: -0.2361443, up: 0.2361443}, stat: {dn: -0.01401703, up: 0.01401703}}, 20: {full syst.: {dn: -0.2116378, up: 0.2116378}, stat: {dn: -0.01294747, up: 0.01294747}}, 21: {full syst.: {dn: -0.1787329, up: 0.1787329}, stat: {dn: -0.007902317, up: 0.007902317}}, 22: {full syst.: {dn: -0.143209, up: 0.143209}, stat: {dn: -0.007398061, up: 0.007398061}}, 23: {full syst.: {dn: -0.1172609, up: 0.1172609}, stat: {dn: -0.006193823, up: 0.006193823}}, 24: {full syst.: {dn: -0.09530422, up: 0.09530422}, stat: {dn: -0.005783853, up: 0.005783853}}, 25: {full syst.: {dn: -0.07857874, up: 0.07857874}, stat: {dn: -0.00532518, up: 0.00532518}}, 26: {full syst.: {dn: -0.06590409, up: 0.06590409}, stat: {dn: -0.004738415, up: 0.004738415}}, 27: {full syst.: {dn: -0.0549238, up: 0.0549238}, stat: {dn: -0.004178744, up: 0.004178744}}, 28: {full syst.: {dn: -0.0467294, up: 0.0467294}, stat: {dn: -0.00358796, up: 0.00358796}}, 29: {full syst.: {dn: -0.0389167, up: 0.0389167}, stat: {dn: -0.003061653, up: 0.003061653}}, 30: {full syst.: {dn: -0.03171628, up: 0.03171628}, stat: {dn: -0.002643993, up: 0.002643993}}, 31: {full syst.: {dn: -0.02000941, up: 0.02000941}, stat: {dn: -0.0008883384, up: 0.0008883384}}, 32: {full syst.: {dn: -0.0142848, up: 0.0142848}, stat: {dn: -0.0008097965, up: 0.0008097965}}, 33: {full syst.: {dn: -0.0103969, up: 0.0103969}, stat: {dn: -0.000691886, up: 0.000691886}}, 34: {full syst.: {dn: -0.008040084, up: 0.008040084}, stat: {dn: -0.0002628521, up: 0.0002628521}}, 35: {full syst.: {dn: -0.005860535, up: 0.005860535}, stat: {dn: -0.0002261426, up: 0.0002261426}}, 36: {full syst.: {dn: -0.00434517, up: 0.00434517}, stat: {dn: -0.0001950019, up: 0.0001950019}}, 37: {full syst.: {dn: -0.003284221, up: 0.003284221}, stat: {dn: -0.0001693242, up: 0.0001693242}}, 38: {full syst.: {dn: -0.002526565, up: 0.002526565}, stat: {dn: -0.0001475759, up: 0.0001475759}}, 39: {full syst.: {dn: -0.001964839, up: 0.001964839}, stat: {dn: -0.0001282875, up: 0.0001282875}}, 40: {full syst.: {dn: -0.001537946, up: 0.001537946}, stat: {dn: -0.000109181, up: 0.000109181}}, 41: {full syst.: {dn: -0.00104477, up: 0.00104477}, stat: {dn: -6.28064e-05, up: 6.28064e-05}}, 42: {full syst.: {dn: -0.0006170702, up: 0.0006170702}, stat: {dn: -4.484657e-05, up: 4.484657e-05}}, 43: {full syst.: {dn: -0.0003143309, up: 0.0003143309}, stat: {dn: -2.342105e-05, up: 2.342105e-05}}, 44: {full syst.: {dn: -0.0001114975, up: 0.0001114975}, stat: {dn: -9.880037e-06, up: 9.880037e-06}}, 45: {full syst.: {dn: -3.336953e-05, up: 3.336953e-05}, stat: {dn: -4.444398e-06, up: 4.444398e-06}}, 46: {full syst.: {dn: -8.350246e-06, up: 8.350246e-06}, stat: {dn: -1.521548e-06, up: 1.521548e-06}}, 47: {full syst.: {dn: -1.613399e-06, up: 1.613399e-06}, stat: {dn: -5.068153e-07, up: 5.068153e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d12-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t12 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 2.725748e+01 2.105028e+00 2.105028e+00 +1.300000e-01 1.000000e-02 1.000000e-02 2.851608e+01 1.334227e+00 1.334227e+00 +1.500000e-01 1.000000e-02 1.000000e-02 2.902111e+01 1.282591e+00 1.282591e+00 +1.700000e-01 1.000000e-02 1.000000e-02 2.883533e+01 1.274109e+00 1.274109e+00 +1.900000e-01 1.000000e-02 1.000000e-02 2.814025e+01 1.248134e+00 1.248134e+00 +2.250000e-01 2.500000e-02 2.500000e-02 2.606352e+01 1.148951e+00 1.148951e+00 +2.750000e-01 2.500000e-02 2.500000e-02 2.323442e+01 8.201896e-01 8.201896e-01 +3.250000e-01 2.500000e-02 2.500000e-02 2.039871e+01 7.115231e-01 7.115231e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.789137e+01 6.218743e-01 6.218743e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.567500e+01 5.433668e-01 5.433668e-01 +4.750000e-01 2.500000e-02 2.500000e-02 1.369939e+01 4.742829e-01 4.742829e-01 +5.250000e-01 2.500000e-02 2.500000e-02 1.201443e+01 4.132565e-01 4.132565e-01 +5.750000e-01 2.500000e-02 2.500000e-02 1.048092e+01 3.571618e-01 3.571618e-01 +6.250000e-01 2.500000e-02 2.500000e-02 9.589323e+00 4.922178e-01 4.922178e-01 +6.750000e-01 2.500000e-02 2.500000e-02 8.352993e+00 4.277276e-01 4.277276e-01 +7.250000e-01 2.500000e-02 2.500000e-02 7.379089e+00 3.808018e-01 3.808018e-01 +7.750000e-01 2.500000e-02 2.500000e-02 6.522435e+00 3.375097e-01 3.375097e-01 +8.250000e-01 2.500000e-02 2.500000e-02 5.772342e+00 2.981552e-01 2.981552e-01 +8.750000e-01 2.500000e-02 2.500000e-02 5.135016e+00 2.650043e-01 2.650043e-01 +9.250000e-01 2.500000e-02 2.500000e-02 4.578063e+00 2.365599e-01 2.365599e-01 +9.750000e-01 2.500000e-02 2.500000e-02 4.113922e+00 2.120335e-01 2.120335e-01 +1.050000e+00 5.000000e-02 5.000000e-02 3.448931e+00 1.789075e-01 1.789075e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.760544e+00 1.434000e-01 1.434000e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.217492e+00 1.174244e-01 1.174244e-01 +1.350000e+00 5.000000e-02 5.000000e-02 1.795056e+00 9.547956e-02 9.547956e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.467613e+00 7.875897e-02 7.875897e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.202081e+00 6.607421e-02 6.607421e-02 +1.650000e+00 5.000000e-02 5.000000e-02 9.813498e-01 5.508254e-02 5.508254e-02 +1.750000e+00 5.000000e-02 5.000000e-02 8.160475e-01 4.686694e-02 4.686694e-02 +1.850000e+00 5.000000e-02 5.000000e-02 6.758579e-01 3.903695e-02 3.903695e-02 +1.950000e+00 5.000000e-02 5.000000e-02 5.565333e-01 3.182630e-02 3.182630e-02 +2.100000e+00 1.000000e-01 1.000000e-01 4.266635e-01 2.002912e-02 2.002912e-02 +2.300000e+00 1.000000e-01 1.000000e-01 3.035480e-01 1.430774e-02 1.430774e-02 +2.500000e+00 1.000000e-01 1.000000e-01 2.191466e-01 1.041990e-02 1.041990e-02 +2.700000e+00 1.000000e-01 1.000000e-01 1.605714e-01 8.044380e-03 8.044380e-03 +2.900000e+00 1.000000e-01 1.000000e-01 1.191538e-01 5.864897e-03 5.864897e-03 +3.100000e+00 1.000000e-01 1.000000e-01 8.937804e-02 4.349543e-03 4.349543e-03 +3.300000e+00 1.000000e-01 1.000000e-01 6.799542e-02 3.288583e-03 3.288583e-03 +3.500000e+00 1.000000e-01 1.000000e-01 5.247041e-02 2.530871e-03 2.530871e-03 +3.700000e+00 1.000000e-01 1.000000e-01 4.092694e-02 1.969023e-03 1.969023e-03 +3.900000e+00 1.000000e-01 1.000000e-01 3.209363e-02 1.541817e-03 1.541817e-03 +4.250000e+00 2.500000e-01 2.500000e-01 2.177278e-02 1.046656e-03 1.046656e-03 +4.750000e+00 2.500000e-01 2.500000e-01 1.282958e-02 6.186977e-04 6.186977e-04 +5.500000e+00 5.000000e-01 5.000000e-01 6.412595e-03 3.152023e-04 3.152023e-04 +7.000000e+00 1.000000e+00 1.000000e+00 2.120564e-03 1.119344e-04 1.119344e-04 +9.000000e+00 1.000000e+00 1.000000e+00 5.825571e-04 3.366420e-05 3.366420e-05 +1.250000e+01 2.500000e+00 2.500000e+00 1.329172e-04 8.487739e-06 8.487739e-06 +1.750000e+01 2.500000e+00 2.500000e+00 2.290997e-05 1.691129e-06 1.691129e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d13-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.740253, up: 1.740253}, stat: {dn: -0.02422685, up: 0.02422685}}, 1: {full syst.: {dn: -1.106096, up: 1.106096}, stat: {dn: -0.02134902, up: 0.02134902}}, 2: {full syst.: {dn: -1.066617, up: 1.066617}, stat: {dn: -0.0211751, up: 0.0211751}}, 3: {full syst.: {dn: -1.063575, up: 1.063575}, stat: {dn: -0.02092678, up: 0.02092678}}, 4: {full syst.: {dn: -1.040678, up: 1.040678}, stat: {dn: -0.02045696, up: 0.02045696}}, 5: {full syst.: {dn: -0.961891, up: 0.961891}, stat: {dn: -0.01231537, up: 0.01231537}}, 6: {full syst.: {dn: -0.6849385, up: 0.6849385}, stat: {dn: -0.01007068, up: 0.01007068}}, 7: {full syst.: {dn: -0.5923443, up: 0.5923443}, stat: {dn: -0.009360411, up: 0.009360411}}, 8: {full syst.: {dn: -0.5150211, up: 0.5150211}, stat: {dn: -0.008451617, up: 0.008451617}}, 9: {full syst.: {dn: -0.4480671, up: 0.4480671}, stat: {dn: -0.007777734, up: 0.007777734}}, 10: {full syst.: {dn: -0.3880928, up: 0.3880928}, stat: {dn: -0.007293405, up: 0.007293405}}, 11: {full syst.: {dn: -0.3364346, up: 0.3364346}, stat: {dn: -0.006923136, up: 0.006923136}}, 12: {full syst.: {dn: -0.289283, up: 0.289283}, stat: {dn: -0.006270581, up: 0.006270581}}, 13: {full syst.: {dn: -0.3946706, up: 0.3946706}, stat: {dn: -0.01502336, up: 0.01502336}}, 14: {full syst.: {dn: -0.3481368, up: 0.3481368}, stat: {dn: -0.01385794, up: 0.01385794}}, 15: {full syst.: {dn: -0.3037133, up: 0.3037133}, stat: {dn: -0.01281211, up: 0.01281211}}, 16: {full syst.: {dn: -0.2685709, up: 0.2685709}, stat: {dn: -0.0119098, up: 0.0119098}}, 17: {full syst.: {dn: -0.236267, up: 0.236267}, stat: {dn: -0.01101855, up: 0.01101855}}, 18: {full syst.: {dn: -0.2097819, up: 0.2097819}, stat: {dn: -0.01020283, up: 0.01020283}}, 19: {full syst.: {dn: -0.1866919, up: 0.1866919}, stat: {dn: -0.009480803, up: 0.009480803}}, 20: {full syst.: {dn: -0.166228, up: 0.166228}, stat: {dn: -0.008664998, up: 0.008664998}}, 21: {full syst.: {dn: -0.1401409, up: 0.1401409}, stat: {dn: -0.005285268, up: 0.005285268}}, 22: {full syst.: {dn: -0.1103834, up: 0.1103834}, stat: {dn: -0.005090226, up: 0.005090226}}, 23: {full syst.: {dn: -0.09069608, up: 0.09069608}, stat: {dn: -0.00484516, up: 0.00484516}}, 24: {full syst.: {dn: -0.07323217, up: 0.07323217}, stat: {dn: -0.004497225, up: 0.004497225}}, 25: {full syst.: {dn: -0.06035879, up: 0.06035879}, stat: {dn: -0.004062683, up: 0.004062683}}, 26: {full syst.: {dn: -0.04965804, up: 0.04965804}, stat: {dn: -0.003670365, up: 0.003670365}}, 27: {full syst.: {dn: -0.04147187, up: 0.04147187}, stat: {dn: -0.003233289, up: 0.003233289}}, 28: {full syst.: {dn: -0.03419546, up: 0.03419546}, stat: {dn: -0.002826177, up: 0.002826177}}, 29: {full syst.: {dn: -0.02843633, up: 0.02843633}, stat: {dn: -0.002410344, up: 0.002410344}}, 30: {full syst.: {dn: -0.023842, up: 0.023842}, stat: {dn: -0.002001697, up: 0.002001697}}, 31: {full syst.: {dn: -0.01483719, up: 0.01483719}, stat: {dn: -0.0006706268, up: 0.0006706268}}, 32: {full syst.: {dn: -0.01054313, up: 0.01054313}, stat: {dn: -0.0005823627, up: 0.0005823627}}, 33: {full syst.: {dn: -0.007613108, up: 0.007613108}, stat: {dn: -0.0005918767, up: 0.0005918767}}, 34: {full syst.: {dn: -0.005848424, up: 0.005848424}, stat: {dn: -0.0001998284, up: 0.0001998284}}, 35: {full syst.: {dn: -0.004265576, up: 0.004265576}, stat: {dn: -0.0001719577, up: 0.0001719577}}, 36: {full syst.: {dn: -0.003149816, up: 0.003149816}, stat: {dn: -0.0001479055, up: 0.0001479055}}, 37: {full syst.: {dn: -0.002361755, up: 0.002361755}, stat: {dn: -0.0001277214, up: 0.0001277214}}, 38: {full syst.: {dn: -0.001821932, up: 0.001821932}, stat: {dn: -0.0001118323, up: 0.0001118323}}, 39: {full syst.: {dn: -0.001402878, up: 0.001402878}, stat: {dn: -9.653643e-05, up: 9.653643e-05}}, 40: {full syst.: {dn: -0.001101445, up: 0.001101445}, stat: {dn: -8.239123e-05, up: 8.239123e-05}}, 41: {full syst.: {dn: -0.0007495503, up: 0.0007495503}, stat: {dn: -4.748236e-05, up: 4.748236e-05}}, 42: {full syst.: {dn: -0.0004385601, up: 0.0004385601}, stat: {dn: -3.362784e-05, up: 3.362784e-05}}, 43: {full syst.: {dn: -0.0002242053, up: 0.0002242053}, stat: {dn: -1.764153e-05, up: 1.764153e-05}}, 44: {full syst.: {dn: -7.908202e-05, up: 7.908202e-05}, stat: {dn: -7.407954e-06, up: 7.407954e-06}}, 45: {full syst.: {dn: -2.372155e-05, up: 2.372155e-05}, stat: {dn: -3.347906e-06, up: 3.347906e-06}}, 46: {full syst.: {dn: -5.903366e-06, up: 5.903366e-06}, stat: {dn: -1.145586e-06, up: 1.145586e-06}}, 47: {full syst.: {dn: -1.051009e-06, up: 1.051009e-06}, stat: {dn: -3.538243e-07, up: 3.538243e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d13-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t13 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 2.258237e+01 1.740422e+00 1.740422e+00 +1.300000e-01 1.000000e-02 1.000000e-02 2.376863e+01 1.106302e+00 1.106302e+00 +1.500000e-01 1.000000e-02 1.000000e-02 2.427831e+01 1.066827e+00 1.066827e+00 +1.700000e-01 1.000000e-02 1.000000e-02 2.421408e+01 1.063781e+00 1.063781e+00 +1.900000e-01 1.000000e-02 1.000000e-02 2.360318e+01 1.040879e+00 1.040879e+00 +2.250000e-01 2.500000e-02 2.500000e-02 2.195040e+01 9.619698e-01 9.619698e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.955979e+01 6.850125e-01 6.850125e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.711829e+01 5.924183e-01 5.924183e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.494251e+01 5.150904e-01 5.150904e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.303017e+01 4.481346e-01 4.481346e-01 +4.750000e-01 2.500000e-02 2.500000e-02 1.130829e+01 3.881613e-01 3.881613e-01 +5.250000e-01 2.500000e-02 2.500000e-02 9.864828e+00 3.365058e-01 3.365058e-01 +5.750000e-01 2.500000e-02 2.500000e-02 8.571020e+00 2.893510e-01 2.893510e-01 +6.250000e-01 2.500000e-02 2.500000e-02 7.740657e+00 3.949564e-01 3.949564e-01 +6.750000e-01 2.500000e-02 2.500000e-02 6.790054e+00 3.484125e-01 3.484125e-01 +7.250000e-01 2.500000e-02 2.500000e-02 5.932122e+00 3.039834e-01 3.039834e-01 +7.750000e-01 2.500000e-02 2.500000e-02 5.220933e+00 2.688348e-01 2.688348e-01 +8.250000e-01 2.500000e-02 2.500000e-02 4.599029e+00 2.365238e-01 2.365238e-01 +8.750000e-01 2.500000e-02 2.500000e-02 4.073082e+00 2.100299e-01 2.100299e-01 +9.250000e-01 2.500000e-02 2.500000e-02 3.633385e+00 1.869325e-01 1.869325e-01 +9.750000e-01 2.500000e-02 2.500000e-02 3.237219e+00 1.664537e-01 1.664537e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.710957e+00 1.402405e-01 1.402405e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.144182e+00 1.105007e-01 1.105007e-01 +1.250000e+00 5.000000e-02 5.000000e-02 1.721091e+00 9.082541e-02 9.082541e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.383889e+00 7.337013e-02 7.337013e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.122140e+00 6.049536e-02 6.049536e-02 +1.550000e+00 5.000000e-02 5.000000e-02 9.122838e-01 4.979350e-02 4.979350e-02 +1.650000e+00 5.000000e-02 5.000000e-02 7.454087e-01 4.159772e-02 4.159772e-02 +1.750000e+00 5.000000e-02 5.000000e-02 6.085899e-01 3.431205e-02 3.431205e-02 +1.850000e+00 5.000000e-02 5.000000e-02 5.009128e-01 2.853830e-02 2.853830e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.178342e-01 2.392588e-02 2.392588e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.179274e-01 1.485234e-02 1.485234e-02 +2.300000e+00 1.000000e-01 1.000000e-01 2.247554e-01 1.055920e-02 1.055920e-02 +2.500000e+00 1.000000e-01 1.000000e-01 1.617015e-01 7.636081e-03 7.636081e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.172826e-01 5.851837e-03 5.851837e-03 +2.900000e+00 1.000000e-01 1.000000e-01 8.713423e-02 4.269041e-03 4.269041e-03 +3.100000e+00 1.000000e-01 1.000000e-01 6.511321e-02 3.153287e-03 3.153287e-03 +3.300000e+00 1.000000e-01 1.000000e-01 4.911867e-02 2.365206e-03 2.365206e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.798408e-02 1.825361e-03 1.825361e-03 +3.700000e+00 1.000000e-01 1.000000e-01 2.932855e-02 1.406196e-03 1.406196e-03 +3.900000e+00 1.000000e-01 1.000000e-01 2.306604e-02 1.104522e-03 1.104522e-03 +4.250000e+00 2.500000e-01 2.500000e-01 1.568283e-02 7.510527e-04 7.510527e-04 +4.750000e+00 2.500000e-01 2.500000e-01 9.161190e-03 4.398475e-04 4.398475e-04 +5.500000e+00 5.000000e-01 5.000000e-01 4.592041e-03 2.248983e-04 2.248983e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.508575e-03 7.942823e-05 7.942823e-05 +9.000000e+00 1.000000e+00 1.000000e+00 4.153944e-04 2.395664e-05 2.395664e-05 +1.250000e+01 2.500000e+00 2.500000e+00 9.284584e-05 6.013493e-06 6.013493e-06 +1.750000e+01 2.500000e+00 2.500000e+00 1.440835e-05 1.108969e-06 1.108969e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d14-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.504428, up: 1.504428}, stat: {dn: -0.02238349, up: 0.02238349}}, 1: {full syst.: {dn: -0.9570028, up: 0.9570028}, stat: {dn: -0.01978615, up: 0.01978615}}, 2: {full syst.: {dn: -0.9266634, up: 0.9266634}, stat: {dn: -0.01967812, up: 0.01967812}}, 3: {full syst.: {dn: -0.9244253, up: 0.9244253}, stat: {dn: -0.01945781, up: 0.01945781}}, 4: {full syst.: {dn: -0.908038, up: 0.908038}, stat: {dn: -0.01906475, up: 0.01906475}}, 5: {full syst.: {dn: -0.8388736, up: 0.8388736}, stat: {dn: -0.01147773, up: 0.01147773}}, 6: {full syst.: {dn: -0.5982547, up: 0.5982547}, stat: {dn: -0.008797218, up: 0.008797218}}, 7: {full syst.: {dn: -0.5158725, up: 0.5158725}, stat: {dn: -0.008164367, up: 0.008164367}}, 8: {full syst.: {dn: -0.4473187, up: 0.4473187}, stat: {dn: -0.007401481, up: 0.007401481}}, 9: {full syst.: {dn: -0.3884562, up: 0.3884562}, stat: {dn: -0.006814619, up: 0.006814619}}, 10: {full syst.: {dn: -0.3348634, up: 0.3348634}, stat: {dn: -0.006350927, up: 0.006350927}}, 11: {full syst.: {dn: -0.2888086, up: 0.2888086}, stat: {dn: -0.006016649, up: 0.006016649}}, 12: {full syst.: {dn: -0.2475534, up: 0.2475534}, stat: {dn: -0.005483937, up: 0.005483937}}, 13: {full syst.: {dn: -0.3387841, up: 0.3387841}, stat: {dn: -0.01224817, up: 0.01224817}}, 14: {full syst.: {dn: -0.2957427, up: 0.2957427}, stat: {dn: -0.01122999, up: 0.01122999}}, 15: {full syst.: {dn: -0.2578148, up: 0.2578148}, stat: {dn: -0.01071797, up: 0.01071797}}, 16: {full syst.: {dn: -0.2258053, up: 0.2258053}, stat: {dn: -0.009968946, up: 0.009968946}}, 17: {full syst.: {dn: -0.1987303, up: 0.1987303}, stat: {dn: -0.009251814, up: 0.009251814}}, 18: {full syst.: {dn: -0.1758265, up: 0.1758265}, stat: {dn: -0.008584731, up: 0.008584731}}, 19: {full syst.: {dn: -0.1564454, up: 0.1564454}, stat: {dn: -0.008004707, up: 0.008004707}}, 20: {full syst.: {dn: -0.1389747, up: 0.1389747}, stat: {dn: -0.007344459, up: 0.007344459}}, 21: {full syst.: {dn: -0.1162355, up: 0.1162355}, stat: {dn: -0.004432498, up: 0.004432498}}, 22: {full syst.: {dn: -0.09103824, up: 0.09103824}, stat: {dn: -0.004320372, up: 0.004320372}}, 23: {full syst.: {dn: -0.07419013, up: 0.07419013}, stat: {dn: -0.004222184, up: 0.004222184}}, 24: {full syst.: {dn: -0.05955181, up: 0.05955181}, stat: {dn: -0.00390366, up: 0.00390366}}, 25: {full syst.: {dn: -0.04878954, up: 0.04878954}, stat: {dn: -0.00351857, up: 0.00351857}}, 26: {full syst.: {dn: -0.04012303, up: 0.04012303}, stat: {dn: -0.003146971, up: 0.003146971}}, 27: {full syst.: {dn: -0.03401996, up: 0.03401996}, stat: {dn: -0.002756775, up: 0.002756775}}, 28: {full syst.: {dn: -0.02792228, up: 0.02792228}, stat: {dn: -0.002435078, up: 0.002435078}}, 29: {full syst.: {dn: -0.02302674, up: 0.02302674}, stat: {dn: -0.002060349, up: 0.002060349}}, 30: {full syst.: {dn: -0.01892955, up: 0.01892955}, stat: {dn: -0.001741166, up: 0.001741166}}, 31: {full syst.: {dn: -0.01177335, up: 0.01177335}, stat: {dn: -0.0005887622, up: 0.0005887622}}, 32: {full syst.: {dn: -0.008340044, up: 0.008340044}, stat: {dn: -0.0005102933, up: 0.0005102933}}, 33: {full syst.: {dn: -0.006005624, up: 0.006005624}, stat: {dn: -0.0004668826, up: 0.0004668826}}, 34: {full syst.: {dn: -0.004609131, up: 0.004609131}, stat: {dn: -0.0001755752, up: 0.0001755752}}, 35: {full syst.: {dn: -0.003335263, up: 0.003335263}, stat: {dn: -0.0001503497, up: 0.0001503497}}, 36: {full syst.: {dn: -0.002457548, up: 0.002457548}, stat: {dn: -0.0001291776, up: 0.0001291776}}, 37: {full syst.: {dn: -0.001849669, up: 0.001849669}, stat: {dn: -0.0001119597, up: 0.0001119597}}, 38: {full syst.: {dn: -0.001419683, up: 0.001419683}, stat: {dn: -9.754624e-05, up: 9.754624e-05}}, 39: {full syst.: {dn: -0.001098063, up: 0.001098063}, stat: {dn: -8.456847e-05, up: 8.456847e-05}}, 40: {full syst.: {dn: -0.0008565396, up: 0.0008565396}, stat: {dn: -7.191281e-05, up: 7.191281e-05}}, 41: {full syst.: {dn: -0.0005800018, up: 0.0005800018}, stat: {dn: -4.135817e-05, up: 4.135817e-05}}, 42: {full syst.: {dn: -0.0003403019, up: 0.0003403019}, stat: {dn: -2.930835e-05, up: 2.930835e-05}}, 43: {full syst.: {dn: -0.000174584, up: 0.000174584}, stat: {dn: -1.545557e-05, up: 1.545557e-05}}, 44: {full syst.: {dn: -6.047506e-05, up: 6.047506e-05}, stat: {dn: -6.430315e-06, up: 6.430315e-06}}, 45: {full syst.: {dn: -1.816947e-05, up: 1.816947e-05}, stat: {dn: -2.916837e-06, up: 2.916837e-06}}, 46: {full syst.: {dn: -4.39428e-06, up: 4.39428e-06}, stat: {dn: -9.786811e-07, up: 9.786811e-07}}, 47: {full syst.: {dn: -8.551863e-07, up: 8.551863e-07}, stat: {dn: -3.248301e-07, up: 3.248301e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d14-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t14 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 1.954171e+01 1.504595e+00 1.504595e+00 +1.300000e-01 1.000000e-02 1.000000e-02 2.061426e+01 9.572073e-01 9.572073e-01 +1.500000e-01 1.000000e-02 1.000000e-02 2.114922e+01 9.268723e-01 9.268723e-01 +1.700000e-01 1.000000e-02 1.000000e-02 2.110431e+01 9.246301e-01 9.246301e-01 +1.900000e-01 1.000000e-02 1.000000e-02 2.065087e+01 9.082381e-01 9.082381e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.919477e+01 8.389521e-01 8.389521e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.713063e+01 5.983194e-01 5.983194e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.495255e+01 5.159371e-01 5.159371e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.301473e+01 4.473799e-01 4.473799e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.132681e+01 3.885160e-01 3.885160e-01 +4.750000e-01 2.500000e-02 2.500000e-02 9.783008e+00 3.349236e-01 3.349236e-01 +5.250000e-01 2.500000e-02 2.500000e-02 8.489316e+00 2.888713e-01 2.888713e-01 +5.750000e-01 2.500000e-02 2.500000e-02 7.354805e+00 2.476141e-01 2.476141e-01 +6.250000e-01 2.500000e-02 2.500000e-02 6.648564e+00 3.390054e-01 3.390054e-01 +6.750000e-01 2.500000e-02 2.500000e-02 5.795441e+00 2.959558e-01 2.959558e-01 +7.250000e-01 2.500000e-02 2.500000e-02 5.042031e+00 2.580375e-01 2.580375e-01 +7.750000e-01 2.500000e-02 2.500000e-02 4.401023e+00 2.260252e-01 2.260252e-01 +8.250000e-01 2.500000e-02 2.500000e-02 3.868604e+00 1.989455e-01 1.989455e-01 +8.750000e-01 2.500000e-02 2.500000e-02 3.421596e+00 1.760360e-01 1.760360e-01 +9.250000e-01 2.500000e-02 2.500000e-02 3.037939e+00 1.566501e-01 1.566501e-01 +9.750000e-01 2.500000e-02 2.500000e-02 2.705001e+00 1.391686e-01 1.391686e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.251234e+00 1.163200e-01 1.163200e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.768656e+00 9.114070e-02 9.114070e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.409490e+00 7.431018e-02 7.431018e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.126767e+00 5.967962e-02 5.967962e-02 +1.450000e+00 5.000000e-02 5.000000e-02 9.084020e-01 4.891625e-02 4.891625e-02 +1.550000e+00 5.000000e-02 5.000000e-02 7.349959e-01 4.024625e-02 4.024625e-02 +1.650000e+00 5.000000e-02 5.000000e-02 6.053638e-01 3.413147e-02 3.413147e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.937446e-01 2.802826e-02 2.802826e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.025402e-01 2.311873e-02 2.311873e-02 +1.950000e+00 5.000000e-02 5.000000e-02 3.315643e-01 1.900946e-02 1.900946e-02 +2.100000e+00 1.000000e-01 1.000000e-01 2.527378e-01 1.178806e-02 1.178806e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.781190e-01 8.355641e-03 8.355641e-03 +2.500000e+00 1.000000e-01 1.000000e-01 1.270795e-01 6.023745e-03 6.023745e-03 +2.700000e+00 1.000000e-01 1.000000e-01 9.258805e-02 4.612474e-03 4.612474e-03 +2.900000e+00 1.000000e-01 1.000000e-01 6.820984e-02 3.338650e-03 3.338650e-03 +3.100000e+00 1.000000e-01 1.000000e-01 5.085371e-02 2.460941e-03 2.460941e-03 +3.300000e+00 1.000000e-01 1.000000e-01 3.852859e-02 1.853054e-03 1.853054e-03 +3.500000e+00 1.000000e-01 1.000000e-01 2.966516e-02 1.423030e-03 1.423030e-03 +3.700000e+00 1.000000e-01 1.000000e-01 2.300063e-02 1.101315e-03 1.101315e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.796529e-02 8.595531e-04 8.595531e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.215715e-02 5.814745e-04 5.814745e-04 +4.750000e+00 2.500000e-01 2.500000e-01 7.120033e-03 3.415617e-04 3.415617e-04 +5.500000e+00 5.000000e-01 5.000000e-01 3.584316e-03 1.752668e-04 1.752668e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.158181e-03 6.081597e-05 6.081597e-05 +9.000000e+00 1.000000e+00 1.000000e+00 3.184017e-04 1.840211e-05 1.840211e-05 +1.250000e+01 2.500000e+00 2.500000e+00 6.982653e-05 4.501946e-06 4.501946e-06 +1.750000e+01 2.500000e+00 2.500000e+00 1.189201e-05 9.147995e-07 9.147995e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d15-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.333838, up: 1.333838}, stat: {dn: -0.02096279, up: 0.02096279}}, 1: {full syst.: {dn: -0.8495531, up: 0.8495531}, stat: {dn: -0.01856531, up: 0.01856531}}, 2: {full syst.: {dn: -0.8224894, up: 0.8224894}, stat: {dn: -0.01846917, up: 0.01846917}}, 3: {full syst.: {dn: -0.8252411, up: 0.8252411}, stat: {dn: -0.01832115, up: 0.01832115}}, 4: {full syst.: {dn: -0.8105736, up: 0.8105736}, stat: {dn: -0.01795393, up: 0.01795393}}, 5: {full syst.: {dn: -0.7495387, up: 0.7495387}, stat: {dn: -0.01081819, up: 0.01081819}}, 6: {full syst.: {dn: -0.5348994, up: 0.5348994}, stat: {dn: -0.008016198, up: 0.008016198}}, 7: {full syst.: {dn: -0.4611286, up: 0.4611286}, stat: {dn: -0.007428799, up: 0.007428799}}, 8: {full syst.: {dn: -0.3986968, up: 0.3986968}, stat: {dn: -0.006768272, up: 0.006768272}}, 9: {full syst.: {dn: -0.3445868, up: 0.3445868}, stat: {dn: -0.006236547, up: 0.006236547}}, 10: {full syst.: {dn: -0.2962327, up: 0.2962327}, stat: {dn: -0.00577941, up: 0.00577941}}, 11: {full syst.: {dn: -0.2550495, up: 0.2550495}, stat: {dn: -0.005486526, up: 0.005486526}}, 12: {full syst.: {dn: -0.2171347, up: 0.2171347}, stat: {dn: -0.004996285, up: 0.004996285}}, 13: {full syst.: {dn: -0.2959671, up: 0.2959671}, stat: {dn: -0.01109984, up: 0.01109984}}, 14: {full syst.: {dn: -0.257491, up: 0.257491}, stat: {dn: -0.01022721, up: 0.01022721}}, 15: {full syst.: {dn: -0.2240686, up: 0.2240686}, stat: {dn: -0.009437767, up: 0.009437767}}, 16: {full syst.: {dn: -0.1965617, up: 0.1965617}, stat: {dn: -0.008862499, up: 0.008862499}}, 17: {full syst.: {dn: -0.1719226, up: 0.1719226}, stat: {dn: -0.008240178, up: 0.008240178}}, 18: {full syst.: {dn: -0.151431, up: 0.151431}, stat: {dn: -0.00760979, up: 0.00760979}}, 19: {full syst.: {dn: -0.1337985, up: 0.1337985}, stat: {dn: -0.007078188, up: 0.007078188}}, 20: {full syst.: {dn: -0.1187506, up: 0.1187506}, stat: {dn: -0.006494478, up: 0.006494478}}, 21: {full syst.: {dn: -0.09918124, up: 0.09918124}, stat: {dn: -0.004015875, up: 0.004015875}}, 22: {full syst.: {dn: -0.07745444, up: 0.07745444}, stat: {dn: -0.0037326, up: 0.0037326}}, 23: {full syst.: {dn: -0.06251893, up: 0.06251893}, stat: {dn: -0.003771223, up: 0.003771223}}, 24: {full syst.: {dn: -0.05011981, up: 0.05011981}, stat: {dn: -0.003480429, up: 0.003480429}}, 25: {full syst.: {dn: -0.04046248, up: 0.04046248}, stat: {dn: -0.003137956, up: 0.003137956}}, 26: {full syst.: {dn: -0.03406854, up: 0.03406854}, stat: {dn: -0.002756451, up: 0.002756451}}, 27: {full syst.: {dn: -0.02769676, up: 0.02769676}, stat: {dn: -0.002523418, up: 0.002523418}}, 28: {full syst.: {dn: -0.02306849, up: 0.02306849}, stat: {dn: -0.002135256, up: 0.002135256}}, 29: {full syst.: {dn: -0.01898961, up: 0.01898961}, stat: {dn: -0.001848713, up: 0.001848713}}, 30: {full syst.: {dn: -0.0155838, up: 0.0155838}, stat: {dn: -0.001577323, up: 0.001577323}}, 31: {full syst.: {dn: -0.009705255, up: 0.009705255}, stat: {dn: -0.0005260526, up: 0.0005260526}}, 32: {full syst.: {dn: -0.006839142, up: 0.006839142}, stat: {dn: -0.0004429498, up: 0.0004429498}}, 33: {full syst.: {dn: -0.004876394, up: 0.004876394}, stat: {dn: -0.0004499813, up: 0.0004499813}}, 34: {full syst.: {dn: -0.003746689, up: 0.003746689}, stat: {dn: -0.0001570835, up: 0.0001570835}}, 35: {full syst.: {dn: -0.002717893, up: 0.002717893}, stat: {dn: -0.0001346437, up: 0.0001346437}}, 36: {full syst.: {dn: -0.001998911, up: 0.001998911}, stat: {dn: -0.0001156081, up: 0.0001156081}}, 37: {full syst.: {dn: -0.001505085, up: 0.001505085}, stat: {dn: -0.0001002814, up: 0.0001002814}}, 38: {full syst.: {dn: -0.00114375, up: 0.00114375}, stat: {dn: -8.687662e-05, up: 8.687662e-05}}, 39: {full syst.: {dn: -0.0008877258, up: 0.0008877258}, stat: {dn: -7.544548e-05, up: 7.544548e-05}}, 40: {full syst.: {dn: -0.0006940838, up: 0.0006940838}, stat: {dn: -6.418894e-05, up: 6.418894e-05}}, 41: {full syst.: {dn: -0.0004681188, up: 0.0004681188}, stat: {dn: -3.693501e-05, up: 3.693501e-05}}, 42: {full syst.: {dn: -0.0002722352, up: 0.0002722352}, stat: {dn: -2.603867e-05, up: 2.603867e-05}}, 43: {full syst.: {dn: -0.0001394109, up: 0.0001394109}, stat: {dn: -1.371343e-05, up: 1.371343e-05}}, 44: {full syst.: {dn: -4.838243e-05, up: 4.838243e-05}, stat: {dn: -5.714499e-06, up: 5.714499e-06}}, 45: {full syst.: {dn: -1.434365e-05, up: 1.434365e-05}, stat: {dn: -2.55917e-06, up: 2.55917e-06}}, 46: {full syst.: {dn: -3.475853e-06, up: 3.475853e-06}, stat: {dn: -8.722418e-07, up: 8.722418e-07}}, 47: {full syst.: {dn: -6.328303e-07, up: 6.328303e-07}, stat: {dn: -2.770129e-07, up: 2.770129e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d15-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t15 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 1.733132e+01 1.334003e+00 1.334003e+00 +1.300000e-01 1.000000e-02 1.000000e-02 1.829909e+01 8.497559e-01 8.497559e-01 +1.500000e-01 1.000000e-02 1.000000e-02 1.877342e+01 8.226967e-01 8.226967e-01 +1.700000e-01 1.000000e-02 1.000000e-02 1.884143e+01 8.254444e-01 8.254444e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.843619e+01 8.107724e-01 8.107724e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.715389e+01 7.496168e-01 7.496168e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.532349e+01 5.349595e-01 5.349595e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.337373e+01 4.611884e-01 4.611884e-01 +3.750000e-01 2.500000e-02 2.500000e-02 1.160922e+01 3.987542e-01 3.987542e-01 +4.250000e-01 2.500000e-02 2.500000e-02 1.005774e+01 3.446432e-01 3.446432e-01 +4.750000e-01 2.500000e-02 2.500000e-02 8.662481e+00 2.962891e-01 2.962891e-01 +5.250000e-01 2.500000e-02 2.500000e-02 7.506222e+00 2.551085e-01 2.551085e-01 +5.750000e-01 2.500000e-02 2.500000e-02 6.461038e+00 2.171922e-01 2.171922e-01 +6.250000e-01 2.500000e-02 2.500000e-02 5.809574e+00 2.961752e-01 2.961752e-01 +6.750000e-01 2.500000e-02 2.500000e-02 5.041637e+00 2.576940e-01 2.576940e-01 +7.250000e-01 2.500000e-02 2.500000e-02 4.391143e+00 2.242673e-01 2.242673e-01 +7.750000e-01 2.500000e-02 2.500000e-02 3.831946e+00 1.967614e-01 1.967614e-01 +8.250000e-01 2.500000e-02 2.500000e-02 3.342740e+00 1.721200e-01 1.721200e-01 +8.750000e-01 2.500000e-02 2.500000e-02 2.947854e+00 1.516221e-01 1.516221e-01 +9.250000e-01 2.500000e-02 2.500000e-02 2.600934e+00 1.339856e-01 1.339856e-01 +9.750000e-01 2.500000e-02 2.500000e-02 2.316534e+00 1.189281e-01 1.189281e-01 +1.050000e+00 5.000000e-02 5.000000e-02 1.925103e+00 9.926251e-02 9.926251e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.502119e+00 7.754433e-02 7.754433e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.188646e+00 6.263257e-02 6.263257e-02 +1.350000e+00 5.000000e-02 5.000000e-02 9.489209e-01 5.024051e-02 5.024051e-02 +1.450000e+00 5.000000e-02 5.000000e-02 7.571934e-01 4.058398e-02 4.058398e-02 +1.550000e+00 5.000000e-02 5.000000e-02 6.173380e-01 3.417987e-02 3.417987e-02 +1.650000e+00 5.000000e-02 5.000000e-02 5.026015e-01 2.781148e-02 2.781148e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.057766e-01 2.316710e-02 2.316710e-02 +1.850000e+00 5.000000e-02 5.000000e-02 3.330540e-01 1.907939e-02 1.907939e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.744466e-01 1.566342e-02 1.566342e-02 +2.100000e+00 1.000000e-01 1.000000e-01 2.085705e-01 9.719501e-03 9.719501e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.461660e-01 6.853471e-03 6.853471e-03 +2.500000e+00 1.000000e-01 1.000000e-01 1.037369e-01 4.897112e-03 4.897112e-03 +2.700000e+00 1.000000e-01 1.000000e-01 7.537733e-02 3.749980e-03 3.749980e-03 +2.900000e+00 1.000000e-01 1.000000e-01 5.570117e-02 2.721226e-03 2.721226e-03 +3.100000e+00 1.000000e-01 1.000000e-01 4.144148e-02 2.002251e-03 2.002251e-03 +3.300000e+00 1.000000e-01 1.000000e-01 3.139486e-02 1.508422e-03 1.508422e-03 +3.500000e+00 1.000000e-01 1.000000e-01 2.391749e-02 1.147045e-03 1.147045e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.862280e-02 8.909260e-04 8.909260e-04 +3.900000e+00 1.000000e-01 1.000000e-01 1.457802e-02 6.970456e-04 6.970456e-04 +4.250000e+00 2.500000e-01 2.500000e-01 9.821342e-03 4.695736e-04 4.695736e-04 +4.750000e+00 2.500000e-01 2.500000e-01 5.694792e-03 2.734776e-04 2.734776e-04 +5.500000e+00 5.000000e-01 5.000000e-01 2.859412e-03 1.400838e-04 1.400838e-04 +7.000000e+00 1.000000e+00 1.000000e+00 9.227594e-04 4.871873e-05 4.871873e-05 +9.000000e+00 1.000000e+00 1.000000e+00 2.505089e-04 1.457016e-05 1.457016e-05 +1.250000e+01 2.500000e+00 2.500000e+00 5.492172e-05 3.583624e-06 3.583624e-06 +1.750000e+01 2.500000e+00 2.500000e+00 8.841456e-06 6.908041e-07 6.908041e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d16-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.13166, up: 1.13166}, stat: {dn: -0.01401854, up: 0.01401854}}, 1: {full syst.: {dn: -0.7252664, up: 0.7252664}, stat: {dn: -0.01234382, up: 0.01234382}}, 2: {full syst.: {dn: -0.7073991, up: 0.7073991}, stat: {dn: -0.01230705, up: 0.01230705}}, 3: {full syst.: {dn: -0.7089774, up: 0.7089774}, stat: {dn: -0.01218852, up: 0.01218852}}, 4: {full syst.: {dn: -0.6978688, up: 0.6978688}, stat: {dn: -0.01194532, up: 0.01194532}}, 5: {full syst.: {dn: -0.6470965, up: 0.6470965}, stat: {dn: -0.007198709, up: 0.007198709}}, 6: {full syst.: {dn: -0.4638084, up: 0.4638084}, stat: {dn: -0.005227625, up: 0.005227625}}, 7: {full syst.: {dn: -0.3993746, up: 0.3993746}, stat: {dn: -0.004830888, up: 0.004830888}}, 8: {full syst.: {dn: -0.3445676, up: 0.3445676}, stat: {dn: -0.00440764, up: 0.00440764}}, 9: {full syst.: {dn: -0.2962831, up: 0.2962831}, stat: {dn: -0.004041149, up: 0.004041149}}, 10: {full syst.: {dn: -0.2531391, up: 0.2531391}, stat: {dn: -0.003734657, up: 0.003734657}}, 11: {full syst.: {dn: -0.2171224, up: 0.2171224}, stat: {dn: -0.003536846, up: 0.003536846}}, 12: {full syst.: {dn: -0.1843593, up: 0.1843593}, stat: {dn: -0.003230424, up: 0.003230424}}, 13: {full syst.: {dn: -0.2490698, up: 0.2490698}, stat: {dn: -0.007030398, up: 0.007030398}}, 14: {full syst.: {dn: -0.2153436, up: 0.2153436}, stat: {dn: -0.006757662, up: 0.006757662}}, 15: {full syst.: {dn: -0.1865318, up: 0.1865318}, stat: {dn: -0.00625552, up: 0.00625552}}, 16: {full syst.: {dn: -0.1626789, up: 0.1626789}, stat: {dn: -0.00587619, up: 0.00587619}}, 17: {full syst.: {dn: -0.1421686, up: 0.1421686}, stat: {dn: -0.005461542, up: 0.005461542}}, 18: {full syst.: {dn: -0.1247944, up: 0.1247944}, stat: {dn: -0.005050982, up: 0.005050982}}, 19: {full syst.: {dn: -0.1096663, up: 0.1096663}, stat: {dn: -0.004682815, up: 0.004682815}}, 20: {full syst.: {dn: -0.09651012, up: 0.09651012}, stat: {dn: -0.004311391, up: 0.004311391}}, 21: {full syst.: {dn: -0.08004248, up: 0.08004248}, stat: {dn: -0.002576846, up: 0.002576846}}, 22: {full syst.: {dn: -0.06232958, up: 0.06232958}, stat: {dn: -0.002439734, up: 0.002439734}}, 23: {full syst.: {dn: -0.0500216, up: 0.0500216}, stat: {dn: -0.002585333, up: 0.002585333}}, 24: {full syst.: {dn: -0.03987658, up: 0.03987658}, stat: {dn: -0.002381491, up: 0.002381491}}, 25: {full syst.: {dn: -0.03224549, up: 0.03224549}, stat: {dn: -0.002129396, up: 0.002129396}}, 26: {full syst.: {dn: -0.02672678, up: 0.02672678}, stat: {dn: -0.001894865, up: 0.001894865}}, 27: {full syst.: {dn: -0.02200391, up: 0.02200391}, stat: {dn: -0.001658175, up: 0.001658175}}, 28: {full syst.: {dn: -0.01806734, up: 0.01806734}, stat: {dn: -0.001412867, up: 0.001412867}}, 29: {full syst.: {dn: -0.01492736, up: 0.01492736}, stat: {dn: -0.001193424, up: 0.001193424}}, 30: {full syst.: {dn: -0.0121559, up: 0.0121559}, stat: {dn: -0.001010929, up: 0.001010929}}, 31: {full syst.: {dn: -0.00750845, up: 0.00750845}, stat: {dn: -0.0003334156, up: 0.0003334156}}, 32: {full syst.: {dn: -0.005262884, up: 0.005262884}, stat: {dn: -0.000286124, up: 0.000286124}}, 33: {full syst.: {dn: -0.003752265, up: 0.003752265}, stat: {dn: -0.000287793, up: 0.000287793}}, 34: {full syst.: {dn: -0.002865008, up: 0.002865008}, stat: {dn: -9.867742e-05, up: 9.867742e-05}}, 35: {full syst.: {dn: -0.002058386, up: 0.002058386}, stat: {dn: -8.40821e-05, up: 8.40821e-05}}, 36: {full syst.: {dn: -0.001523868, up: 0.001523868}, stat: {dn: -7.250277e-05, up: 7.250277e-05}}, 37: {full syst.: {dn: -0.001142833, up: 0.001142833}, stat: {dn: -6.269928e-05, up: 6.269928e-05}}, 38: {full syst.: {dn: -0.000873616, up: 0.000873616}, stat: {dn: -5.453761e-05, up: 5.453761e-05}}, 39: {full syst.: {dn: -0.0006684543, up: 0.0006684543}, stat: {dn: -4.694491e-05, up: 4.694491e-05}}, 40: {full syst.: {dn: -0.0005189386, up: 0.0005189386}, stat: {dn: -3.981919e-05, up: 3.981919e-05}}, 41: {full syst.: {dn: -0.0003520357, up: 0.0003520357}, stat: {dn: -2.29154e-05, up: 2.29154e-05}}, 42: {full syst.: {dn: -0.0002064078, up: 0.0002064078}, stat: {dn: -1.627235e-05, up: 1.627235e-05}}, 43: {full syst.: {dn: -0.000104289, up: 0.000104289}, stat: {dn: -8.480619e-06, up: 8.480619e-06}}, 44: {full syst.: {dn: -3.555941e-05, up: 3.555941e-05}, stat: {dn: -3.501489e-06, up: 3.501489e-06}}, 45: {full syst.: {dn: -1.057202e-05, up: 1.057202e-05}, stat: {dn: -1.582377e-06, up: 1.582377e-06}}, 46: {full syst.: {dn: -2.484223e-06, up: 2.484223e-06}, stat: {dn: -5.224181e-07, up: 5.224181e-07}}, 47: {full syst.: {dn: -4.823746e-07, up: 4.823746e-07}, stat: {dn: -1.748035e-07, up: 1.748035e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d16-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t16 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 1.470862e+01 1.131747e+00 1.131747e+00 +1.300000e-01 1.000000e-02 1.000000e-02 1.558274e+01 7.253714e-01 7.253714e-01 +1.500000e-01 1.000000e-02 1.000000e-02 1.610118e+01 7.075061e-01 7.075061e-01 +1.700000e-01 1.000000e-02 1.000000e-02 1.614629e+01 7.090822e-01 7.090822e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.583599e+01 6.979710e-01 6.979710e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.477680e+01 6.471365e-01 6.471365e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.322897e+01 4.638379e-01 4.638379e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.153167e+01 3.994038e-01 3.994038e-01 +3.750000e-01 2.500000e-02 2.500000e-02 9.989908e+00 3.445958e-01 3.445958e-01 +4.250000e-01 2.500000e-02 2.500000e-02 8.611966e+00 2.963107e-01 2.963107e-01 +4.750000e-01 2.500000e-02 2.500000e-02 7.372968e+00 2.531666e-01 2.531666e-01 +5.250000e-01 2.500000e-02 2.500000e-02 6.362739e+00 2.171512e-01 2.171512e-01 +5.750000e-01 2.500000e-02 2.500000e-02 5.462486e+00 1.843876e-01 1.843876e-01 +6.250000e-01 2.500000e-02 2.500000e-02 4.888565e+00 2.491690e-01 2.491690e-01 +6.750000e-01 2.500000e-02 2.500000e-02 4.211371e+00 2.154496e-01 2.154496e-01 +7.250000e-01 2.500000e-02 2.500000e-02 3.644968e+00 1.866367e-01 1.866367e-01 +7.750000e-01 2.500000e-02 2.500000e-02 3.168990e+00 1.627850e-01 1.627850e-01 +8.250000e-01 2.500000e-02 2.500000e-02 2.766228e+00 1.422735e-01 1.422735e-01 +8.750000e-01 2.500000e-02 2.500000e-02 2.428392e+00 1.248966e-01 1.248966e-01 +9.250000e-01 2.500000e-02 2.500000e-02 2.134432e+00 1.097662e-01 1.097662e-01 +9.750000e-01 2.500000e-02 2.500000e-02 1.879911e+00 9.660637e-02 9.660637e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.552394e+00 8.008395e-02 8.008395e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.207918e+00 6.237731e-02 6.237731e-02 +1.250000e+00 5.000000e-02 5.000000e-02 9.505499e-01 5.008837e-02 5.008837e-02 +1.350000e+00 5.000000e-02 5.000000e-02 7.546340e-01 3.994763e-02 3.994763e-02 +1.450000e+00 5.000000e-02 5.000000e-02 6.014330e-01 3.231572e-02 3.231572e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.883662e-01 2.679387e-02 2.679387e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.943781e-01 2.206630e-02 2.206630e-02 +1.750000e+00 5.000000e-02 5.000000e-02 3.177570e-01 1.812250e-02 1.812250e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.601995e-01 1.497499e-02 1.497499e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.130940e-01 1.219786e-02 1.219786e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.613034e-01 7.515849e-03 7.515849e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.125118e-01 5.270656e-03 5.270656e-03 +2.500000e+00 1.000000e-01 1.000000e-01 7.993676e-02 3.763285e-03 3.763285e-03 +2.700000e+00 1.000000e-01 1.000000e-01 5.763153e-02 2.866707e-03 2.866707e-03 +2.900000e+00 1.000000e-01 1.000000e-01 4.214433e-02 2.060103e-03 2.060103e-03 +3.100000e+00 1.000000e-01 1.000000e-01 3.154877e-02 1.525592e-03 1.525592e-03 +3.300000e+00 1.000000e-01 1.000000e-01 2.380850e-02 1.144552e-03 1.144552e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.825133e-02 8.753167e-04 8.753167e-04 +3.700000e+00 1.000000e-01 1.000000e-01 1.400840e-02 6.701007e-04 6.701007e-04 +3.900000e+00 1.000000e-01 1.000000e-01 1.089013e-02 5.204641e-04 5.204641e-04 +4.250000e+00 2.500000e-01 2.500000e-01 7.385100e-03 3.527807e-04 3.527807e-04 +4.750000e+00 2.500000e-01 2.500000e-01 4.322146e-03 2.070482e-04 2.070482e-04 +5.500000e+00 5.000000e-01 5.000000e-01 2.144119e-03 1.046332e-04 1.046332e-04 +7.000000e+00 1.000000e+00 1.000000e+00 6.812746e-04 3.573139e-05 3.573139e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.867314e-04 1.068979e-05 1.068979e-05 +1.250000e+01 2.500000e+00 2.500000e+00 4.003252e-05 2.538560e-06 2.538560e-06 +1.750000e+01 2.500000e+00 2.500000e+00 6.843402e-06 5.130707e-07 5.130707e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d17-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.912407, up: 0.912407}, stat: {dn: -0.01245589, up: 0.01245589}}, 1: {full syst.: {dn: -0.5906053, up: 0.5906053}, stat: {dn: -0.01104011, up: 0.01104011}}, 2: {full syst.: {dn: -0.5759524, up: 0.5759524}, stat: {dn: -0.01100637, up: 0.01100637}}, 3: {full syst.: {dn: -0.5808942, up: 0.5808942}, stat: {dn: -0.01093789, up: 0.01093789}}, 4: {full syst.: {dn: -0.5743511, up: 0.5743511}, stat: {dn: -0.01074884, up: 0.01074884}}, 5: {full syst.: {dn: -0.5345643, up: 0.5345643}, stat: {dn: -0.006530842, up: 0.006530842}}, 6: {full syst.: {dn: -0.3851787, up: 0.3851787}, stat: {dn: -0.00469721, up: 0.00469721}}, 7: {full syst.: {dn: -0.3311604, up: 0.3311604}, stat: {dn: -0.004326867, up: 0.004326867}}, 8: {full syst.: {dn: -0.284637, up: 0.284637}, stat: {dn: -0.003943872, up: 0.003943872}}, 9: {full syst.: {dn: -0.2439158, up: 0.2439158}, stat: {dn: -0.00361567, up: 0.00361567}}, 10: {full syst.: {dn: -0.2074501, up: 0.2074501}, stat: {dn: -0.003330447, up: 0.003330447}}, 11: {full syst.: {dn: -0.1763727, up: 0.1763727}, stat: {dn: -0.003135342, up: 0.003135342}}, 12: {full syst.: {dn: -0.1489988, up: 0.1489988}, stat: {dn: -0.00285923, up: 0.00285923}}, 13: {full syst.: {dn: -0.1992455, up: 0.1992455}, stat: {dn: -0.00597666, up: 0.00597666}}, 14: {full syst.: {dn: -0.1714892, up: 0.1714892}, stat: {dn: -0.005694119, up: 0.005694119}}, 15: {full syst.: {dn: -0.1478733, up: 0.1478733}, stat: {dn: -0.005284288, up: 0.005284288}}, 16: {full syst.: {dn: -0.1274842, up: 0.1274842}, stat: {dn: -0.004877375, up: 0.004877375}}, 17: {full syst.: {dn: -0.1106212, up: 0.1106212}, stat: {dn: -0.004548714, up: 0.004548714}}, 18: {full syst.: {dn: -0.09663684, up: 0.09663684}, stat: {dn: -0.004204031, up: 0.004204031}}, 19: {full syst.: {dn: -0.08426079, up: 0.08426079}, stat: {dn: -0.003903457, up: 0.003903457}}, 20: {full syst.: {dn: -0.07375364, up: 0.07375364}, stat: {dn: -0.003565569, up: 0.003565569}}, 21: {full syst.: {dn: -0.06089225, up: 0.06089225}, stat: {dn: -0.002125091, up: 0.002125091}}, 22: {full syst.: {dn: -0.04683558, up: 0.04683558}, stat: {dn: -0.002057466, up: 0.002057466}}, 23: {full syst.: {dn: -0.03719464, up: 0.03719464}, stat: {dn: -0.002105129, up: 0.002105129}}, 24: {full syst.: {dn: -0.02950276, up: 0.02950276}, stat: {dn: -0.001930254, up: 0.001930254}}, 25: {full syst.: {dn: -0.02369287, up: 0.02369287}, stat: {dn: -0.001723357, up: 0.001723357}}, 26: {full syst.: {dn: -0.01919269, up: 0.01919269}, stat: {dn: -0.001536429, up: 0.001536429}}, 27: {full syst.: {dn: -0.01558821, up: 0.01558821}, stat: {dn: -0.001344948, up: 0.001344948}}, 28: {full syst.: {dn: -0.01304932, up: 0.01304932}, stat: {dn: -0.001145821, up: 0.001145821}}, 29: {full syst.: {dn: -0.01062393, up: 0.01062393}, stat: {dn: -0.0009809571, up: 0.0009809571}}, 30: {full syst.: {dn: -0.008605736, up: 0.008605736}, stat: {dn: -0.0008615243, up: 0.0008615243}}, 31: {full syst.: {dn: -0.005334091, up: 0.005334091}, stat: {dn: -0.0002807053, up: 0.0002807053}}, 32: {full syst.: {dn: -0.003700165, up: 0.003700165}, stat: {dn: -0.0002499286, up: 0.0002499286}}, 33: {full syst.: {dn: -0.002644389, up: 0.002644389}, stat: {dn: -0.0002427913, up: 0.0002427913}}, 34: {full syst.: {dn: -0.00199439, up: 0.00199439}, stat: {dn: -8.123395e-05, up: 8.123395e-05}}, 35: {full syst.: {dn: -0.001439029, up: 0.001439029}, stat: {dn: -6.953787e-05, up: 6.953787e-05}}, 36: {full syst.: {dn: -0.001044264, up: 0.001044264}, stat: {dn: -5.904975e-05, up: 5.904975e-05}}, 37: {full syst.: {dn: -0.000781197, up: 0.000781197}, stat: {dn: -5.169569e-05, up: 5.169569e-05}}, 38: {full syst.: {dn: -0.0006000472, up: 0.0006000472}, stat: {dn: -4.526509e-05, up: 4.526509e-05}}, 39: {full syst.: {dn: -0.0004603317, up: 0.0004603317}, stat: {dn: -3.864951e-05, up: 3.864951e-05}}, 40: {full syst.: {dn: -0.0003584341, up: 0.0003584341}, stat: {dn: -3.292204e-05, up: 3.292204e-05}}, 41: {full syst.: {dn: -0.0002403442, up: 0.0002403442}, stat: {dn: -1.877124e-05, up: 1.877124e-05}}, 42: {full syst.: {dn: -0.0001404965, up: 0.0001404965}, stat: {dn: -1.345687e-05, up: 1.345687e-05}}, 43: {full syst.: {dn: -7.012573e-05, up: 7.012573e-05}, stat: {dn: -6.89255e-06, up: 6.89255e-06}}, 44: {full syst.: {dn: -2.378305e-05, up: 2.378305e-05}, stat: {dn: -2.836472e-06, up: 2.836472e-06}}, 45: {full syst.: {dn: -7.043816e-06, up: 7.043816e-06}, stat: {dn: -1.298653e-06, up: 1.298653e-06}}, 46: {full syst.: {dn: -1.702343e-06, up: 1.702343e-06}, stat: {dn: -4.305936e-07, up: 4.305936e-07}}, 47: {full syst.: {dn: -3.035668e-07, up: 3.035668e-07}, stat: {dn: -1.361908e-07, up: 1.361908e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d17-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t17 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 1.185531e+01 9.124920e-01 9.124920e-01 +1.300000e-01 1.000000e-02 1.000000e-02 1.262576e+01 5.907085e-01 5.907085e-01 +1.500000e-01 1.000000e-02 1.000000e-02 1.304314e+01 5.760576e-01 5.760576e-01 +1.700000e-01 1.000000e-02 1.000000e-02 1.317244e+01 5.809972e-01 5.809972e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.297768e+01 5.744517e-01 5.744517e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.215486e+01 5.346042e-01 5.346042e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.091780e+01 3.852073e-01 3.852073e-01 +3.250000e-01 2.500000e-02 2.500000e-02 9.505972e+00 3.311887e-01 3.311887e-01 +3.750000e-01 2.500000e-02 2.500000e-02 8.202606e+00 2.846643e-01 2.846643e-01 +4.250000e-01 2.500000e-02 2.500000e-02 7.054085e+00 2.439426e-01 2.439426e-01 +4.750000e-01 2.500000e-02 2.500000e-02 6.011695e+00 2.074768e-01 2.074768e-01 +5.250000e-01 2.500000e-02 2.500000e-02 5.151574e+00 1.764006e-01 1.764006e-01 +5.750000e-01 2.500000e-02 2.500000e-02 4.392558e+00 1.490262e-01 1.490262e-01 +6.250000e-01 2.500000e-02 2.500000e-02 3.910463e+00 1.993351e-01 1.993351e-01 +6.750000e-01 2.500000e-02 2.500000e-02 3.355497e+00 1.715837e-01 1.715837e-01 +7.250000e-01 2.500000e-02 2.500000e-02 2.887609e+00 1.479677e-01 1.479677e-01 +7.750000e-01 2.500000e-02 2.500000e-02 2.486570e+00 1.275775e-01 1.275775e-01 +8.250000e-01 2.500000e-02 2.500000e-02 2.152564e+00 1.107147e-01 1.107147e-01 +8.750000e-01 2.500000e-02 2.500000e-02 1.880659e+00 9.672824e-02 9.672824e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.638941e+00 8.435116e-02 8.435116e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.435819e+00 7.383978e-02 7.383978e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.180286e+00 6.092932e-02 6.092932e-02 +1.150000e+00 5.000000e-02 5.000000e-02 9.080985e-01 4.688075e-02 4.688075e-02 +1.250000e+00 5.000000e-02 5.000000e-02 7.064000e-01 3.725417e-02 3.725417e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.582284e-01 2.956584e-02 2.956584e-02 +1.450000e+00 5.000000e-02 5.000000e-02 4.422860e-01 2.375546e-02 2.375546e-02 +1.550000e+00 5.000000e-02 5.000000e-02 3.532539e-01 1.925409e-02 1.925409e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.813111e-01 1.564612e-02 1.564612e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.295706e-01 1.309953e-02 1.309953e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.861099e-01 1.066912e-02 1.066912e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.526880e-01 8.648752e-03 8.648752e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.145382e-01 5.341472e-03 5.341472e-03 +2.300000e+00 1.000000e-01 1.000000e-01 7.923652e-02 3.708596e-03 3.708596e-03 +2.500000e+00 1.000000e-01 1.000000e-01 5.638034e-02 2.655511e-03 2.655511e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.011957e-02 1.996044e-03 1.996044e-03 +2.900000e+00 1.000000e-01 1.000000e-01 2.946864e-02 1.440708e-03 1.440708e-03 +3.100000e+00 1.000000e-01 1.000000e-01 2.164160e-02 1.045932e-03 1.045932e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.624196e-02 7.829056e-04 7.829056e-04 +3.500000e+00 1.000000e-01 1.000000e-01 1.249395e-02 6.017521e-04 6.017521e-04 +3.700000e+00 1.000000e-01 1.000000e-01 9.638997e-03 4.619514e-04 4.619514e-04 +3.900000e+00 1.000000e-01 1.000000e-01 7.512850e-03 3.599429e-04 3.599429e-04 +4.250000e+00 2.500000e-01 2.500000e-01 5.038974e-03 2.410761e-04 2.410761e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.926793e-03 1.411395e-04 1.411395e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.437791e-03 7.046364e-05 7.046364e-05 +7.000000e+00 1.000000e+00 1.000000e+00 4.549173e-04 2.395160e-05 2.395160e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.237111e-04 7.162531e-06 7.162531e-06 +1.250000e+01 2.500000e+00 2.500000e+00 2.712378e-05 1.755956e-06 1.755956e-06 +1.750000e+01 2.500000e+00 2.500000e+00 4.298836e-06 3.327172e-07 3.327172e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d18-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.7406171, up: 0.7406171}, stat: {dn: -0.01102085, up: 0.01102085}}, 1: {full syst.: {dn: -0.4877767, up: 0.4877767}, stat: {dn: -0.009810631, up: 0.009810631}}, 2: {full syst.: {dn: -0.480835, up: 0.480835}, stat: {dn: -0.009838581, up: 0.009838581}}, 3: {full syst.: {dn: -0.4843592, up: 0.4843592}, stat: {dn: -0.009785775, up: 0.009785775}}, 4: {full syst.: {dn: -0.4798415, up: 0.4798415}, stat: {dn: -0.009634959, up: 0.009634959}}, 5: {full syst.: {dn: -0.4481514, up: 0.4481514}, stat: {dn: -0.005836663, up: 0.005836663}}, 6: {full syst.: {dn: -0.3271865, up: 0.3271865}, stat: {dn: -0.00413587, up: 0.00413587}}, 7: {full syst.: {dn: -0.2814481, up: 0.2814481}, stat: {dn: -0.00382598, up: 0.00382598}}, 8: {full syst.: {dn: -0.2409543, up: 0.2409543}, stat: {dn: -0.003486087, up: 0.003486087}}, 9: {full syst.: {dn: -0.2053311, up: 0.2053311}, stat: {dn: -0.003195106, up: 0.003195106}}, 10: {full syst.: {dn: -0.1737549, up: 0.1737549}, stat: {dn: -0.002935391, up: 0.002935391}}, 11: {full syst.: {dn: -0.1469053, up: 0.1469053}, stat: {dn: -0.002759802, up: 0.002759802}}, 12: {full syst.: {dn: -0.1228367, up: 0.1228367}, stat: {dn: -0.002501827, up: 0.002501827}}, 13: {full syst.: {dn: -0.1609232, up: 0.1609232}, stat: {dn: -0.005098123, up: 0.005098123}}, 14: {full syst.: {dn: -0.1372516, up: 0.1372516}, stat: {dn: -0.004810596, up: 0.004810596}}, 15: {full syst.: {dn: -0.1176116, up: 0.1176116}, stat: {dn: -0.004509621, up: 0.004509621}}, 16: {full syst.: {dn: -0.100632, up: 0.100632}, stat: {dn: -0.004123735, up: 0.004123735}}, 17: {full syst.: {dn: -0.08716174, up: 0.08716174}, stat: {dn: -0.003833133, up: 0.003833133}}, 18: {full syst.: {dn: -0.07561266, up: 0.07561266}, stat: {dn: -0.003539196, up: 0.003539196}}, 19: {full syst.: {dn: -0.06555418, up: 0.06555418}, stat: {dn: -0.003258959, up: 0.003258959}}, 20: {full syst.: {dn: -0.05683121, up: 0.05683121}, stat: {dn: -0.002985369, up: 0.002985369}}, 21: {full syst.: {dn: -0.04663035, up: 0.04663035}, stat: {dn: -0.001790095, up: 0.001790095}}, 22: {full syst.: {dn: -0.0352752, up: 0.0352752}, stat: {dn: -0.001684025, up: 0.001684025}}, 23: {full syst.: {dn: -0.02809466, up: 0.02809466}, stat: {dn: -0.001739444, up: 0.001739444}}, 24: {full syst.: {dn: -0.02185539, up: 0.02185539}, stat: {dn: -0.001577886, up: 0.001577886}}, 25: {full syst.: {dn: -0.01737047, up: 0.01737047}, stat: {dn: -0.00141149, up: 0.00141149}}, 26: {full syst.: {dn: -0.01410817, up: 0.01410817}, stat: {dn: -0.001246036, up: 0.001246036}}, 27: {full syst.: {dn: -0.0115042, up: 0.0115042}, stat: {dn: -0.001087286, up: 0.001087286}}, 28: {full syst.: {dn: -0.009442477, up: 0.009442477}, stat: {dn: -0.0009292342, up: 0.0009292342}}, 29: {full syst.: {dn: -0.007575851, up: 0.007575851}, stat: {dn: -0.0008171432, up: 0.0008171432}}, 30: {full syst.: {dn: -0.006206506, up: 0.006206506}, stat: {dn: -0.000685626, up: 0.000685626}}, 31: {full syst.: {dn: -0.003818871, up: 0.003818871}, stat: {dn: -0.0002232201, up: 0.0002232201}}, 32: {full syst.: {dn: -0.002633994, up: 0.002633994}, stat: {dn: -0.000189615, up: 0.000189615}}, 33: {full syst.: {dn: -0.001858961, up: 0.001858961}, stat: {dn: -0.0001764825, up: 0.0001764825}}, 34: {full syst.: {dn: -0.001395623, up: 0.001395623}, stat: {dn: -6.627688e-05, up: 6.627688e-05}}, 35: {full syst.: {dn: -0.00100345, up: 0.00100345}, stat: {dn: -5.658062e-05, up: 5.658062e-05}}, 36: {full syst.: {dn: -0.000731823, up: 0.000731823}, stat: {dn: -4.842504e-05, up: 4.842504e-05}}, 37: {full syst.: {dn: -0.0005437573, up: 0.0005437573}, stat: {dn: -4.163946e-05, up: 4.163946e-05}}, 38: {full syst.: {dn: -0.0004152467, up: 0.0004152467}, stat: {dn: -3.621515e-05, up: 3.621515e-05}}, 39: {full syst.: {dn: -0.0003202093, up: 0.0003202093}, stat: {dn: -3.138177e-05, up: 3.138177e-05}}, 40: {full syst.: {dn: -0.000245107, up: 0.000245107}, stat: {dn: -2.63733e-05, up: 2.63733e-05}}, 41: {full syst.: {dn: -0.0001636891, up: 0.0001636891}, stat: {dn: -1.512768e-05, up: 1.512768e-05}}, 42: {full syst.: {dn: -9.486478e-05, up: 9.486478e-05}, stat: {dn: -1.06437e-05, up: 1.06437e-05}}, 43: {full syst.: {dn: -4.77214e-05, up: 4.77214e-05}, stat: {dn: -5.553937e-06, up: 5.553937e-06}}, 44: {full syst.: {dn: -1.628303e-05, up: 1.628303e-05}, stat: {dn: -2.297915e-06, up: 2.297915e-06}}, 45: {full syst.: {dn: -4.778178e-06, up: 4.778178e-06}, stat: {dn: -1.030363e-06, up: 1.030363e-06}}, 46: {full syst.: {dn: -1.119042e-06, up: 1.119042e-06}, stat: {dn: -3.413344e-07, up: 3.413344e-07}}, 47: {full syst.: {dn: -2.011446e-07, up: 2.011446e-07}, stat: {dn: -1.082772e-07, up: 1.082772e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d18-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t18 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 9.604521e+00 7.406991e-01 7.406991e-01 +1.300000e-01 1.000000e-02 1.000000e-02 1.027586e+01 4.878754e-01 4.878754e-01 +1.500000e-01 1.000000e-02 1.000000e-02 1.071858e+01 4.809356e-01 4.809356e-01 +1.700000e-01 1.000000e-02 1.000000e-02 1.082577e+01 4.844580e-01 4.844580e-01 +1.900000e-01 1.000000e-02 1.000000e-02 1.069773e+01 4.799382e-01 4.799382e-01 +2.250000e-01 2.500000e-02 2.500000e-02 1.006058e+01 4.481894e-01 4.481894e-01 +2.750000e-01 2.500000e-02 2.500000e-02 9.086134e+00 3.272126e-01 3.272126e-01 +3.250000e-01 2.500000e-02 2.500000e-02 7.918058e+00 2.814741e-01 2.814741e-01 +3.750000e-01 2.500000e-02 2.500000e-02 6.813504e+00 2.409795e-01 2.409795e-01 +4.250000e-01 2.500000e-02 2.500000e-02 5.827744e+00 2.053560e-01 2.053560e-01 +4.750000e-01 2.500000e-02 2.500000e-02 4.946020e+00 1.737797e-01 1.737797e-01 +5.250000e-01 2.500000e-02 2.500000e-02 4.211364e+00 1.469312e-01 1.469312e-01 +5.750000e-01 2.500000e-02 2.500000e-02 3.562238e+00 1.228622e-01 1.228622e-01 +6.250000e-01 2.500000e-02 2.500000e-02 3.150419e+00 1.610039e-01 1.610039e-01 +6.750000e-01 2.500000e-02 2.500000e-02 2.679218e+00 1.373359e-01 1.373359e-01 +7.250000e-01 2.500000e-02 2.500000e-02 2.286233e+00 1.176980e-01 1.176980e-01 +7.750000e-01 2.500000e-02 2.500000e-02 1.956891e+00 1.007165e-01 1.007165e-01 +8.250000e-01 2.500000e-02 2.500000e-02 1.692324e+00 8.724598e-02 8.724598e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.467583e+00 7.569544e-02 7.569544e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.273201e+00 6.563514e-02 6.563514e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.104134e+00 5.690957e-02 5.690957e-02 +1.050000e+00 5.000000e-02 5.000000e-02 9.010102e-01 4.666470e-02 4.666470e-02 +1.150000e+00 5.000000e-02 5.000000e-02 6.843603e-01 3.531537e-02 3.531537e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.325200e-01 2.814846e-02 2.814846e-02 +1.350000e+00 5.000000e-02 5.000000e-02 4.125925e-01 2.191228e-02 2.191228e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.247587e-01 1.742772e-02 1.742772e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.584889e-01 1.416309e-02 1.416309e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.061700e-01 1.155547e-02 1.155547e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.655658e-01 9.488090e-03 9.488090e-03 +1.850000e+00 5.000000e-02 5.000000e-02 1.333332e-01 7.619793e-03 7.619793e-03 +1.950000e+00 5.000000e-02 5.000000e-02 1.089535e-01 6.244261e-03 6.244261e-03 +2.100000e+00 1.000000e-01 1.000000e-01 8.179679e-02 3.825389e-03 3.825389e-03 +2.300000e+00 1.000000e-01 1.000000e-01 5.614095e-02 2.640810e-03 2.640810e-03 +2.500000e+00 1.000000e-01 1.000000e-01 3.940382e-02 1.867319e-03 1.867319e-03 +2.700000e+00 1.000000e-01 1.000000e-01 2.802375e-02 1.397196e-03 1.397196e-03 +2.900000e+00 1.000000e-01 1.000000e-01 2.047371e-02 1.005044e-03 1.005044e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.510740e-02 7.334234e-04 7.334234e-04 +3.300000e+00 1.000000e-01 1.000000e-01 1.129561e-02 5.453493e-04 5.453493e-04 +3.500000e+00 1.000000e-01 1.000000e-01 8.657779e-03 4.168229e-04 4.168229e-04 +3.700000e+00 1.000000e-01 1.000000e-01 6.695629e-03 3.217434e-04 3.217434e-04 +3.900000e+00 1.000000e-01 1.000000e-01 5.131509e-03 2.465218e-04 2.465218e-04 +4.250000e+00 2.500000e-01 2.500000e-01 3.427413e-03 1.643866e-04 1.643866e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.980494e-03 9.546002e-05 9.546002e-05 +5.500000e+00 5.000000e-01 5.000000e-01 9.767717e-04 4.804350e-05 4.804350e-05 +7.000000e+00 1.000000e+00 1.000000e+00 3.105529e-04 1.644438e-05 1.644438e-05 +9.000000e+00 1.000000e+00 1.000000e+00 8.329782e-05 4.888009e-06 4.888009e-06 +1.250000e+01 2.500000e+00 2.500000e+00 1.752769e-05 1.169942e-06 1.169942e-06 +1.750000e+01 2.500000e+00 2.500000e+00 2.816092e-06 2.284362e-07 2.284362e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d19-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.5745014, up: 0.5745014}, stat: {dn: -0.006805584, up: 0.006805584}}, 1: {full syst.: {dn: -0.4156752, up: 0.4156752}, stat: {dn: -0.006046135, up: 0.006046135}}, 2: {full syst.: {dn: -0.4151627, up: 0.4151627}, stat: {dn: -0.006070656, up: 0.006070656}}, 3: {full syst.: {dn: -0.4188572, up: 0.4188572}, stat: {dn: -0.006054435, up: 0.006054435}}, 4: {full syst.: {dn: -0.4157372, up: 0.4157372}, stat: {dn: -0.005973425, up: 0.005973425}}, 5: {full syst.: {dn: -0.3905282, up: 0.3905282}, stat: {dn: -0.003652124, up: 0.003652124}}, 6: {full syst.: {dn: -0.3044491, up: 0.3044491}, stat: {dn: -0.002590491, up: 0.002590491}}, 7: {full syst.: {dn: -0.2619532, up: 0.2619532}, stat: {dn: -0.002385819, up: 0.002385819}}, 8: {full syst.: {dn: -0.2235888, up: 0.2235888}, stat: {dn: -0.002171991, up: 0.002171991}}, 9: {full syst.: {dn: -0.1895867, up: 0.1895867}, stat: {dn: -0.001984579, up: 0.001984579}}, 10: {full syst.: {dn: -0.1586085, up: 0.1586085}, stat: {dn: -0.001813477, up: 0.001813477}}, 11: {full syst.: {dn: -0.1325522, up: 0.1325522}, stat: {dn: -0.001695291, up: 0.001695291}}, 12: {full syst.: {dn: -0.1097016, up: 0.1097016}, stat: {dn: -0.001527221, up: 0.001527221}}, 13: {full syst.: {dn: -0.1282276, up: 0.1282276}, stat: {dn: -0.003157275, up: 0.003157275}}, 14: {full syst.: {dn: -0.1077646, up: 0.1077646}, stat: {dn: -0.002878321, up: 0.002878321}}, 15: {full syst.: {dn: -0.09121267, up: 0.09121267}, stat: {dn: -0.002658842, up: 0.002658842}}, 16: {full syst.: {dn: -0.07732869, up: 0.07732869}, stat: {dn: -0.002459253, up: 0.002459253}}, 17: {full syst.: {dn: -0.06578078, up: 0.06578078}, stat: {dn: -0.002278347, up: 0.002278347}}, 18: {full syst.: {dn: -0.05636166, up: 0.05636166}, stat: {dn: -0.002112726, up: 0.002112726}}, 19: {full syst.: {dn: -0.04800995, up: 0.04800995}, stat: {dn: -0.001916286, up: 0.001916286}}, 20: {full syst.: {dn: -0.04140765, up: 0.04140765}, stat: {dn: -0.001751204, up: 0.001751204}}, 21: {full syst.: {dn: -0.0331826, up: 0.0331826}, stat: {dn: -0.00102472, up: 0.00102472}}, 22: {full syst.: {dn: -0.02476891, up: 0.02476891}, stat: {dn: -0.0009583505, up: 0.0009583505}}, 23: {full syst.: {dn: -0.01930699, up: 0.01930699}, stat: {dn: -0.001013416, up: 0.001013416}}, 24: {full syst.: {dn: -0.01488901, up: 0.01488901}, stat: {dn: -0.0009090087, up: 0.0009090087}}, 25: {full syst.: {dn: -0.0115665, up: 0.0115665}, stat: {dn: -0.0008130541, up: 0.0008130541}}, 26: {full syst.: {dn: -0.009299421, up: 0.009299421}, stat: {dn: -0.0007026468, up: 0.0007026468}}, 27: {full syst.: {dn: -0.00749105, up: 0.00749105}, stat: {dn: -0.000610925, up: 0.000610925}}, 28: {full syst.: {dn: -0.006011447, up: 0.006011447}, stat: {dn: -0.0005300981, up: 0.0005300981}}, 29: {full syst.: {dn: -0.004924642, up: 0.004924642}, stat: {dn: -0.0004465545, up: 0.0004465545}}, 30: {full syst.: {dn: -0.003961797, up: 0.003961797}, stat: {dn: -0.0003706206, up: 0.0003706206}}, 31: {full syst.: {dn: -0.002458221, up: 0.002458221}, stat: {dn: -0.0001231846, up: 0.0001231846}}, 32: {full syst.: {dn: -0.001672247, up: 0.001672247}, stat: {dn: -0.0001028544, up: 0.0001028544}}, 33: {full syst.: {dn: -0.001160801, up: 0.001160801}, stat: {dn: -0.0001007614, up: 0.0001007614}}, 34: {full syst.: {dn: -0.0008680106, up: 0.0008680106}, stat: {dn: -3.573454e-05, up: 3.573454e-05}}, 35: {full syst.: {dn: -0.0006201364, up: 0.0006201364}, stat: {dn: -3.034912e-05, up: 3.034912e-05}}, 36: {full syst.: {dn: -0.000447553, up: 0.000447553}, stat: {dn: -2.576609e-05, up: 2.576609e-05}}, 37: {full syst.: {dn: -0.000332447, up: 0.000332447}, stat: {dn: -2.217929e-05, up: 2.217929e-05}}, 38: {full syst.: {dn: -0.0002487456, up: 0.0002487456}, stat: {dn: -1.905003e-05, up: 1.905003e-05}}, 39: {full syst.: {dn: -0.0001895885, up: 0.0001895885}, stat: {dn: -1.639435e-05, up: 1.639435e-05}}, 40: {full syst.: {dn: -0.0001480935, up: 0.0001480935}, stat: {dn: -1.395793e-05, up: 1.395793e-05}}, 41: {full syst.: {dn: -9.76839e-05, up: 9.76839e-05}, stat: {dn: -7.921194e-06, up: 7.921194e-06}}, 42: {full syst.: {dn: -5.583326e-05, up: 5.583326e-05}, stat: {dn: -5.536913e-06, up: 5.536913e-06}}, 43: {full syst.: {dn: -2.727964e-05, up: 2.727964e-05}, stat: {dn: -2.845437e-06, up: 2.845437e-06}}, 44: {full syst.: {dn: -9.029331e-06, up: 9.029331e-06}, stat: {dn: -1.163266e-06, up: 1.163266e-06}}, 45: {full syst.: {dn: -2.578438e-06, up: 2.578438e-06}, stat: {dn: -5.161429e-07, up: 5.161429e-07}}, 46: {full syst.: {dn: -5.788011e-07, up: 5.788011e-07}, stat: {dn: -1.705895e-07, up: 1.705895e-07}}, 47: {full syst.: {dn: -9.104265e-08, up: 9.104265e-08}, stat: {dn: -4.952601e-08, up: 4.952601e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d19-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t19 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 7.046357e+00 5.745417e-01 5.745417e-01 +1.300000e-01 1.000000e-02 1.000000e-02 7.592055e+00 4.157192e-01 4.157192e-01 +1.500000e-01 1.000000e-02 1.000000e-02 7.965028e+00 4.152071e-01 4.152071e-01 +1.700000e-01 1.000000e-02 1.000000e-02 8.115226e+00 4.189010e-01 4.189010e-01 +1.900000e-01 1.000000e-02 1.000000e-02 8.069376e+00 4.157801e-01 4.157801e-01 +2.250000e-01 2.500000e-02 2.500000e-02 7.647808e+00 3.905453e-01 3.905453e-01 +2.750000e-01 2.500000e-02 2.500000e-02 6.949518e+00 3.044601e-01 3.044601e-01 +3.250000e-01 2.500000e-02 2.500000e-02 6.062701e+00 2.619641e-01 2.619641e-01 +3.750000e-01 2.500000e-02 2.500000e-02 5.206492e+00 2.235993e-01 2.235993e-01 +4.250000e-01 2.500000e-02 2.500000e-02 4.433510e+00 1.895971e-01 1.895971e-01 +4.750000e-01 2.500000e-02 2.500000e-02 3.728452e+00 1.586189e-01 1.586189e-01 +5.250000e-01 2.500000e-02 2.500000e-02 3.139355e+00 1.325630e-01 1.325630e-01 +5.750000e-01 2.500000e-02 2.500000e-02 2.630720e+00 1.097122e-01 1.097122e-01 +6.250000e-01 2.500000e-02 2.500000e-02 2.292827e+00 1.282665e-01 1.282665e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.930874e+00 1.078030e-01 1.078030e-01 +7.250000e-01 2.500000e-02 2.500000e-02 1.634174e+00 9.125141e-02 9.125141e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.385953e+00 7.736779e-02 7.736779e-02 +8.250000e-01 2.500000e-02 2.500000e-02 1.179706e+00 6.582022e-02 6.582022e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.010786e+00 5.640124e-02 5.640124e-02 +9.250000e-01 2.500000e-02 2.500000e-02 8.645279e-01 4.804818e-02 4.804818e-02 +9.750000e-01 2.500000e-02 2.500000e-02 7.461703e-01 4.144466e-02 4.144466e-02 +1.050000e+00 5.000000e-02 5.000000e-02 5.963363e-01 3.319842e-02 3.319842e-02 +1.150000e+00 5.000000e-02 5.000000e-02 4.473989e-01 2.478744e-02 2.478744e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.412441e-01 1.933357e-02 1.933357e-02 +1.350000e+00 5.000000e-02 5.000000e-02 2.618388e-01 1.491673e-02 1.491673e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.032314e-01 1.159504e-02 1.159504e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.595501e-01 9.325929e-03 9.325929e-03 +1.650000e+00 5.000000e-02 5.000000e-02 1.261952e-01 7.515920e-03 7.515920e-03 +1.750000e+00 5.000000e-02 5.000000e-02 1.003324e-01 6.034774e-03 6.034774e-03 +1.850000e+00 5.000000e-02 5.000000e-02 8.116805e-02 4.944847e-03 4.944847e-03 +1.950000e+00 5.000000e-02 5.000000e-02 6.519103e-02 3.979095e-03 3.979095e-03 +2.100000e+00 1.000000e-01 1.000000e-01 4.820171e-02 2.461306e-03 2.461306e-03 +2.300000e+00 1.000000e-01 1.000000e-01 3.275985e-02 1.675407e-03 1.675407e-03 +2.500000e+00 1.000000e-01 1.000000e-01 2.267760e-02 1.165166e-03 1.165166e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.610500e-02 8.687459e-04 8.687459e-04 +2.900000e+00 1.000000e-01 1.000000e-01 1.169477e-02 6.208786e-04 6.208786e-04 +3.100000e+00 1.000000e-01 1.000000e-01 8.525431e-03 4.482941e-04 4.482941e-04 +3.300000e+00 1.000000e-01 1.000000e-01 6.362609e-03 3.331860e-04 3.331860e-04 +3.500000e+00 1.000000e-01 1.000000e-01 4.779479e-03 2.494740e-04 2.494740e-04 +3.700000e+00 1.000000e-01 1.000000e-01 3.667575e-03 1.902960e-04 1.902960e-04 +3.900000e+00 1.000000e-01 1.000000e-01 2.832132e-03 1.487498e-04 1.487498e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.873490e-03 9.800454e-05 9.800454e-05 +4.750000e+00 2.500000e-01 2.500000e-01 1.071988e-03 5.610713e-05 5.610713e-05 +5.500000e+00 5.000000e-01 5.000000e-01 5.177248e-04 2.742764e-05 2.742764e-05 +7.000000e+00 1.000000e+00 1.000000e+00 1.601280e-04 9.103956e-06 9.103956e-06 +9.000000e+00 1.000000e+00 1.000000e+00 4.245254e-05 2.629590e-06 2.629590e-06 +1.250000e+01 2.500000e+00 2.500000e+00 8.776080e-06 6.034165e-07 6.034165e-07 +1.750000e+01 2.500000e+00 2.500000e+00 1.268098e-06 1.036416e-07 1.036416e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d20-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.4283876, up: 0.4283876}, stat: {dn: -0.004246073, up: 0.004246073}}, 1: {full syst.: {dn: -0.3735936, up: 0.3735936}, stat: {dn: -0.003793105, up: 0.003793105}}, 2: {full syst.: {dn: -0.3751601, up: 0.3751601}, stat: {dn: -0.003825001, up: 0.003825001}}, 3: {full syst.: {dn: -0.3704982, up: 0.3704982}, stat: {dn: -0.003826487, up: 0.003826487}}, 4: {full syst.: {dn: -0.3667319, up: 0.3667319}, stat: {dn: -0.003793324, up: 0.003793324}}, 5: {full syst.: {dn: -0.3470069, up: 0.3470069}, stat: {dn: -0.002330178, up: 0.002330178}}, 6: {full syst.: {dn: -0.2949796, up: 0.2949796}, stat: {dn: -0.0016273, up: 0.0016273}}, 7: {full syst.: {dn: -0.2549646, up: 0.2549646}, stat: {dn: -0.001504958, up: 0.001504958}}, 8: {full syst.: {dn: -0.216145, up: 0.216145}, stat: {dn: -0.001372634, up: 0.001372634}}, 9: {full syst.: {dn: -0.1802991, up: 0.1802991}, stat: {dn: -0.001248901, up: 0.001248901}}, 10: {full syst.: {dn: -0.1481231, up: 0.1481231}, stat: {dn: -0.00113188, up: 0.00113188}}, 11: {full syst.: {dn: -0.1209606, up: 0.1209606}, stat: {dn: -0.001052807, up: 0.001052807}}, 12: {full syst.: {dn: -0.09783653, up: 0.09783653}, stat: {dn: -0.0009399735, up: 0.0009399735}}, 13: {full syst.: {dn: -0.09579903, up: 0.09579903}, stat: {dn: -0.001836085, up: 0.001836085}}, 14: {full syst.: {dn: -0.07808253, up: 0.07808253}, stat: {dn: -0.001642827, up: 0.001642827}}, 15: {full syst.: {dn: -0.06343934, up: 0.06343934}, stat: {dn: -0.001480661, up: 0.001480661}}, 16: {full syst.: {dn: -0.05187392, up: 0.05187392}, stat: {dn: -0.001341194, up: 0.001341194}}, 17: {full syst.: {dn: -0.04255627, up: 0.04255627}, stat: {dn: -0.001212193, up: 0.001212193}}, 18: {full syst.: {dn: -0.03508046, up: 0.03508046}, stat: {dn: -0.001110956, up: 0.001110956}}, 19: {full syst.: {dn: -0.02879723, up: 0.02879723}, stat: {dn: -0.0009891716, up: 0.0009891716}}, 20: {full syst.: {dn: -0.02404397, up: 0.02404397}, stat: {dn: -0.0008996686, up: 0.0008996686}}, 21: {full syst.: {dn: -0.01829647, up: 0.01829647}, stat: {dn: -0.0005239298, up: 0.0005239298}}, 22: {full syst.: {dn: -0.01303609, up: 0.01303609}, stat: {dn: -0.0004770232, up: 0.0004770232}}, 23: {full syst.: {dn: -0.009658121, up: 0.009658121}, stat: {dn: -0.0005026166, up: 0.0005026166}}, 24: {full syst.: {dn: -0.00712539, up: 0.00712539}, stat: {dn: -0.0004417599, up: 0.0004417599}}, 25: {full syst.: {dn: -0.005428672, up: 0.005428672}, stat: {dn: -0.0003873777, up: 0.0003873777}}, 26: {full syst.: {dn: -0.004168821, up: 0.004168821}, stat: {dn: -0.0003320248, up: 0.0003320248}}, 27: {full syst.: {dn: -0.003265425, up: 0.003265425}, stat: {dn: -0.0002831106, up: 0.0002831106}}, 28: {full syst.: {dn: -0.002549594, up: 0.002549594}, stat: {dn: -0.000246299, up: 0.000246299}}, 29: {full syst.: {dn: -0.002065441, up: 0.002065441}, stat: {dn: -0.0002043197, up: 0.0002043197}}, 30: {full syst.: {dn: -0.001612778, up: 0.001612778}, stat: {dn: -0.0001763272, up: 0.0001763272}}, 31: {full syst.: {dn: -0.001017285, up: 0.001017285}, stat: {dn: -5.785328e-05, up: 5.785328e-05}}, 32: {full syst.: {dn: -0.0006738255, up: 0.0006738255}, stat: {dn: -4.76714e-05, up: 4.76714e-05}}, 33: {full syst.: {dn: -0.0004561738, up: 0.0004561738}, stat: {dn: -4.436657e-05, up: 4.436657e-05}}, 34: {full syst.: {dn: -0.0003256875, up: 0.0003256875}, stat: {dn: -1.567289e-05, up: 1.567289e-05}}, 35: {full syst.: {dn: -0.0002279451, up: 0.0002279451}, stat: {dn: -1.315548e-05, up: 1.315548e-05}}, 36: {full syst.: {dn: -0.0001622352, up: 0.0001622352}, stat: {dn: -1.106345e-05, up: 1.106345e-05}}, 37: {full syst.: {dn: -0.000116954, up: 0.000116954}, stat: {dn: -9.387714e-06, up: 9.387714e-06}}, 38: {full syst.: {dn: -8.747345e-05, up: 8.747345e-05}, stat: {dn: -8.08599e-06, up: 8.08599e-06}}, 39: {full syst.: {dn: -6.542889e-05, up: 6.542889e-05}, stat: {dn: -6.899098e-06, up: 6.899098e-06}}, 40: {full syst.: {dn: -4.892807e-05, up: 4.892807e-05}, stat: {dn: -5.737324e-06, up: 5.737324e-06}}, 41: {full syst.: {dn: -3.213134e-05, up: 3.213134e-05}, stat: {dn: -3.255122e-06, up: 3.255122e-06}}, 42: {full syst.: {dn: -1.781817e-05, up: 1.781817e-05}, stat: {dn: -2.251294e-06, up: 2.251294e-06}}, 43: {full syst.: {dn: -8.310383e-06, up: 8.310383e-06}, stat: {dn: -1.135412e-06, up: 1.135412e-06}}, 44: {full syst.: {dn: -2.508615e-06, up: 2.508615e-06}, stat: {dn: -4.515054e-07, up: 4.515054e-07}}, 45: {full syst.: {dn: -6.586797e-07, up: 6.586797e-07}, stat: {dn: -1.922984e-07, up: 1.922984e-07}}, 46: {full syst.: {dn: -1.445475e-07, up: 1.445475e-07}, stat: {dn: -6.355223e-08, up: 6.355223e-08}}, 47: {full syst.: {dn: -2.382725e-08, up: 2.382725e-08}, stat: {dn: -1.947082e-08, up: 1.947082e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d20-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t20 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 4.226699e+00 4.284086e-01 4.284086e-01 +1.300000e-01 1.000000e-02 1.000000e-02 4.615724e+00 3.736129e-01 3.736129e-01 +1.500000e-01 1.000000e-02 1.000000e-02 4.905763e+00 3.751796e-01 3.751796e-01 +1.700000e-01 1.000000e-02 1.000000e-02 5.051141e+00 3.705180e-01 3.705180e-01 +1.900000e-01 1.000000e-02 1.000000e-02 5.075717e+00 3.667515e-01 3.667515e-01 +2.250000e-01 2.500000e-02 2.500000e-02 4.892680e+00 3.470147e-01 3.470147e-01 +2.750000e-01 2.500000e-02 2.500000e-02 4.519634e+00 2.949841e-01 2.949841e-01 +3.250000e-01 2.500000e-02 2.500000e-02 3.963783e+00 2.549690e-01 2.549690e-01 +3.750000e-01 2.500000e-02 2.500000e-02 3.398141e+00 2.161494e-01 2.161494e-01 +4.250000e-01 2.500000e-02 2.500000e-02 2.864802e+00 1.803034e-01 1.803034e-01 +4.750000e-01 2.500000e-02 2.500000e-02 2.377189e+00 1.481274e-01 1.481274e-01 +5.250000e-01 2.500000e-02 2.500000e-02 1.969702e+00 1.209652e-01 1.209652e-01 +5.750000e-01 2.500000e-02 2.500000e-02 1.616576e+00 9.784105e-02 9.784105e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.374670e+00 9.581662e-02 9.581662e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.132576e+00 7.809981e-02 7.809981e-02 +7.250000e-01 2.500000e-02 2.500000e-02 9.305938e-01 6.345662e-02 6.345662e-02 +7.750000e-01 2.500000e-02 2.500000e-02 7.689337e-01 5.189126e-02 5.189126e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.376701e-01 4.257353e-02 4.257353e-02 +8.750000e-01 2.500000e-02 2.500000e-02 5.307310e-01 3.509805e-02 3.509805e-02 +9.250000e-01 2.500000e-02 2.500000e-02 4.406323e-01 2.881421e-02 2.881421e-02 +9.750000e-01 2.500000e-02 2.500000e-02 3.705320e-01 2.406080e-02 2.406080e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.848512e-01 1.830397e-02 1.830397e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.043832e-01 1.304481e-02 1.304481e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.491977e-01 9.671190e-03 9.671190e-03 +1.350000e+00 5.000000e-02 5.000000e-02 1.099879e-01 7.139071e-03 7.139071e-03 +1.450000e+00 5.000000e-02 5.000000e-02 8.338530e-02 5.442476e-03 5.442476e-03 +1.550000e+00 5.000000e-02 5.000000e-02 6.315046e-02 4.182022e-03 4.182022e-03 +1.650000e+00 5.000000e-02 5.000000e-02 4.866315e-02 3.277675e-03 3.277675e-03 +1.750000e+00 5.000000e-02 5.000000e-02 3.779292e-02 2.561463e-03 2.561463e-03 +1.850000e+00 5.000000e-02 5.000000e-02 3.015610e-02 2.075522e-03 2.075522e-03 +1.950000e+00 5.000000e-02 5.000000e-02 2.371369e-02 1.622388e-03 1.622388e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.692368e-02 1.018929e-03 1.018929e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.119084e-02 6.755097e-04 6.755097e-04 +2.500000e+00 1.000000e-01 1.000000e-01 7.523458e-03 4.583262e-04 4.583262e-04 +2.700000e+00 1.000000e-01 1.000000e-01 5.192269e-03 3.260644e-04 3.260644e-04 +2.900000e+00 1.000000e-01 1.000000e-01 3.671969e-03 2.283244e-04 2.283244e-04 +3.100000e+00 1.000000e-01 1.000000e-01 2.621540e-03 1.626120e-04 1.626120e-04 +3.300000e+00 1.000000e-01 1.000000e-01 1.907572e-03 1.173302e-04 1.173302e-04 +3.500000e+00 1.000000e-01 1.000000e-01 1.425214e-03 8.784639e-05 8.784639e-05 +3.700000e+00 1.000000e-01 1.000000e-01 1.073246e-03 6.579162e-05 6.579162e-05 +3.900000e+00 1.000000e-01 1.000000e-01 8.078845e-04 4.926330e-05 4.926330e-05 +4.250000e+00 2.500000e-01 2.500000e-01 5.248747e-04 3.229580e-05 3.229580e-05 +4.750000e+00 2.500000e-01 2.500000e-01 2.929356e-04 1.795983e-05 1.795983e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.356388e-04 8.387588e-06 8.387588e-06 +7.000000e+00 1.000000e+00 1.000000e+00 3.999082e-05 2.548923e-06 2.548923e-06 +9.000000e+00 1.000000e+00 1.000000e+00 9.935617e-06 6.861761e-07 6.861761e-07 +1.250000e+01 2.500000e+00 2.500000e+00 2.022885e-06 1.579014e-07 1.579014e-07 +1.750000e+01 2.500000e+00 2.500000e+00 3.054571e-07 3.077094e-08 3.077094e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d21-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.1318432, up: 0.1318432}, stat: {dn: -0.01271221, up: 0.01271221}}, 1: {full syst.: {dn: -0.1344434, up: 0.1344434}, stat: {dn: -0.01110418, up: 0.01110418}}, 2: {full syst.: {dn: -0.1003581, up: 0.1003581}, stat: {dn: -0.01396772, up: 0.01396772}}, 3: {full syst.: {dn: -0.09703829, up: 0.09703829}, stat: {dn: -0.02039011, up: 0.02039011}}, 4: {full syst.: {dn: -0.1130624, up: 0.1130624}, stat: {dn: -0.02338945, up: 0.02338945}}, 5: {full syst.: {dn: -0.1033404, up: 0.1033404}, stat: {dn: -0.01618755, up: 0.01618755}}, 6: {full syst.: {dn: -0.1489304, up: 0.1489304}, stat: {dn: -0.03809259, up: 0.03809259}}, 7: {full syst.: {dn: -0.1499009, up: 0.1499009}, stat: {dn: -0.03191107, up: 0.03191107}}, 8: {full syst.: {dn: -0.1651156, up: 0.1651156}, stat: {dn: -0.03603593, up: 0.03603593}}, 9: {full syst.: {dn: -0.1596715, up: 0.1596715}, stat: {dn: -0.02530244, up: 0.02530244}}, 10: {full syst.: {dn: -0.149954, up: 0.149954}, stat: {dn: -0.03860759, up: 0.03860759}}, 11: {full syst.: {dn: -0.1428209, up: 0.1428209}, stat: {dn: -0.02959213, up: 0.02959213}}, 12: {full syst.: {dn: -0.1323884, up: 0.1323884}, stat: {dn: -0.01651901, up: 0.01651901}}, 13: {full syst.: {dn: -0.1277738, up: 0.1277738}, stat: {dn: -0.04131046, up: 0.04131046}}, 14: {full syst.: {dn: -0.1163272, up: 0.1163272}, stat: {dn: -0.01726639, up: 0.01726639}}, 15: {full syst.: {dn: -0.1086122, up: 0.1086122}, stat: {dn: -0.01500618, up: 0.01500618}}, 16: {full syst.: {dn: -0.09812755, up: 0.09812755}, stat: {dn: -0.02344926, up: 0.02344926}}, 17: {full syst.: {dn: -0.08278565, up: 0.08278565}, stat: {dn: -0.02118288, up: 0.02118288}}, 18: {full syst.: {dn: -0.07294798, up: 0.07294798}, stat: {dn: -0.00587988, up: 0.00587988}}, 19: {full syst.: {dn: -0.06335194, up: 0.06335194}, stat: {dn: -0.005476839, up: 0.005476839}}, 20: {full syst.: {dn: -0.05548958, up: 0.05548958}, stat: {dn: -0.004975976, up: 0.004975976}}, 21: {full syst.: {dn: -0.04872988, up: 0.04872988}, stat: {dn: -0.004649851, up: 0.004649851}}, 22: {full syst.: {dn: -0.04219109, up: 0.04219109}, stat: {dn: -0.004446029, up: 0.004446029}}, 23: {full syst.: {dn: -0.03656167, up: 0.03656167}, stat: {dn: -0.004214646, up: 0.004214646}}, 24: {full syst.: {dn: -0.03237823, up: 0.03237823}, stat: {dn: -0.004258427, up: 0.004258427}}, 25: {full syst.: {dn: -0.02819648, up: 0.02819648}, stat: {dn: -0.004047676, up: 0.004047676}}, 26: {full syst.: {dn: -0.01801081, up: 0.01801081}, stat: {dn: -0.002142037, up: 0.002142037}}, 27: {full syst.: {dn: -0.01244578, up: 0.01244578}, stat: {dn: -0.002087038, up: 0.002087038}}, 28: {full syst.: {dn: -0.008848706, up: 0.008848706}, stat: {dn: -0.001585239, up: 0.001585239}}, 29: {full syst.: {dn: -0.008254032, up: 0.008254032}, stat: {dn: -0.001121788, up: 0.001121788}}, 30: {full syst.: {dn: -0.007685869, up: 0.007685869}, stat: {dn: -0.0008808351, up: 0.0008808351}}, 31: {full syst.: {dn: -0.006756336, up: 0.006756336}, stat: {dn: -0.0006859498, up: 0.0006859498}}, 32: {full syst.: {dn: -0.005380502, up: 0.005380502}, stat: {dn: -0.0005381364, up: 0.0005381364}}, 33: {full syst.: {dn: -0.00395147, up: 0.00395147}, stat: {dn: -0.0004294948, up: 0.0004294948}}, 34: {full syst.: {dn: -0.002855777, up: 0.002855777}, stat: {dn: -0.0003598211, up: 0.0003598211}}, 35: {full syst.: {dn: -0.002022479, up: 0.002022479}, stat: {dn: -0.0002878077, up: 0.0002878077}}, 36: {full syst.: {dn: -0.001215082, up: 0.001215082}, stat: {dn: -0.0001685723, up: 0.0001685723}}, 37: {full syst.: {dn: -0.0006448866, up: 0.0006448866}, stat: {dn: -0.0001113233, up: 0.0001113233}}, 38: {full syst.: {dn: -0.000303594, up: 0.000303594}, stat: {dn: -5.717338e-05, up: 5.717338e-05}}, 39: {full syst.: {dn: -0.0001171504, up: 0.0001171504}, stat: {dn: -2.308723e-05, up: 2.308723e-05}}, 40: {full syst.: {dn: -4.370697e-05, up: 4.370697e-05}, stat: {dn: -9.921594e-06, up: 9.921594e-06}}, 41: {full syst.: {dn: -1.215294e-05, up: 1.215294e-05}, stat: {dn: -3.416925e-06, up: 3.416925e-06}}, 42: {full syst.: {dn: -2.666781e-06, up: 2.666781e-06}, stat: {dn: -1.159113e-06, up: 1.159113e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d21-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t21 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 1.806324e+00 1.324546e-01 1.324546e-01 +2.750000e-01 2.500000e-02 2.500000e-02 2.036474e+00 1.349012e-01 1.349012e-01 +3.250000e-01 2.500000e-02 2.500000e-02 2.265619e+00 1.013254e-01 1.013254e-01 +3.750000e-01 2.500000e-02 2.500000e-02 2.308535e+00 9.915738e-02 9.915738e-02 +4.250000e-01 2.500000e-02 2.500000e-02 2.372855e+00 1.154564e-01 1.154564e-01 +4.750000e-01 2.500000e-02 2.500000e-02 2.470791e+00 1.046005e-01 1.046005e-01 +5.250000e-01 2.500000e-02 2.500000e-02 2.458418e+00 1.537248e-01 1.537248e-01 +5.750000e-01 2.500000e-02 2.500000e-02 2.366257e+00 1.532599e-01 1.532599e-01 +6.250000e-01 2.500000e-02 2.500000e-02 2.216165e+00 1.690022e-01 1.690022e-01 +6.750000e-01 2.500000e-02 2.500000e-02 2.141427e+00 1.616639e-01 1.616639e-01 +7.250000e-01 2.500000e-02 2.500000e-02 2.013108e+00 1.548443e-01 1.548443e-01 +7.750000e-01 2.500000e-02 2.500000e-02 1.912533e+00 1.458544e-01 1.458544e-01 +8.250000e-01 2.500000e-02 2.500000e-02 1.769634e+00 1.334150e-01 1.334150e-01 +8.750000e-01 2.500000e-02 2.500000e-02 1.711170e+00 1.342859e-01 1.342859e-01 +9.250000e-01 2.500000e-02 2.500000e-02 1.553961e+00 1.176016e-01 1.176016e-01 +9.750000e-01 2.500000e-02 2.500000e-02 1.449696e+00 1.096439e-01 1.096439e-01 +1.050000e+00 5.000000e-02 5.000000e-02 1.312239e+00 1.008905e-01 1.008905e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.102678e+00 8.545278e-02 8.545278e-02 +1.250000e+00 5.000000e-02 5.000000e-02 9.576737e-01 7.318457e-02 7.318457e-02 +1.350000e+00 5.000000e-02 5.000000e-02 8.248103e-01 6.358824e-02 6.358824e-02 +1.450000e+00 5.000000e-02 5.000000e-02 7.117581e-01 5.571224e-02 5.571224e-02 +1.550000e+00 5.000000e-02 5.000000e-02 6.133530e-01 4.895122e-02 4.895122e-02 +1.650000e+00 5.000000e-02 5.000000e-02 5.192641e-01 4.242470e-02 4.242470e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.371932e-01 3.680379e-02 3.680379e-02 +1.850000e+00 5.000000e-02 5.000000e-02 3.776383e-01 3.265707e-02 3.265707e-02 +1.950000e+00 5.000000e-02 5.000000e-02 3.167626e-01 2.848553e-02 2.848553e-02 +2.100000e+00 1.000000e-01 1.000000e-01 2.434685e-01 1.813774e-02 1.813774e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.764726e-01 1.261955e-02 1.261955e-02 +2.500000e+00 1.000000e-01 1.000000e-01 1.333070e-01 8.989582e-03 8.989582e-03 +2.700000e+00 1.000000e-01 1.000000e-01 9.867752e-02 8.329913e-03 8.329913e-03 +2.900000e+00 1.000000e-01 1.000000e-01 7.637076e-02 7.736178e-03 7.736178e-03 +3.100000e+00 1.000000e-01 1.000000e-01 6.008274e-02 6.791068e-03 6.791068e-03 +3.300000e+00 1.000000e-01 1.000000e-01 4.739228e-02 5.407346e-03 5.407346e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.709653e-02 3.974743e-03 3.974743e-03 +3.700000e+00 1.000000e-01 1.000000e-01 2.969119e-02 2.878356e-03 2.878356e-03 +3.900000e+00 1.000000e-01 1.000000e-01 2.319644e-02 2.042855e-03 2.042855e-03 +4.250000e+00 2.500000e-01 2.500000e-01 1.574305e-02 1.226720e-03 1.226720e-03 +4.750000e+00 2.500000e-01 2.500000e-01 9.496110e-03 6.544246e-04 6.544246e-04 +5.500000e+00 5.000000e-01 5.000000e-01 4.806180e-03 3.089306e-04 3.089306e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.577717e-03 1.194037e-04 1.194037e-04 +9.000000e+00 1.000000e+00 1.000000e+00 4.577159e-04 4.481894e-05 4.481894e-05 +1.250000e+01 2.500000e+00 2.500000e+00 1.070986e-04 1.262416e-05 1.262416e-05 +1.750000e+01 2.500000e+00 2.500000e+00 2.103843e-05 2.907794e-06 2.907794e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d22-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.1055049, up: 0.1055049}, stat: {dn: -0.006002439, up: 0.006002439}}, 1: {full syst.: {dn: -0.1057981, up: 0.1057981}, stat: {dn: -0.005217359, up: 0.005217359}}, 2: {full syst.: {dn: -0.0760008, up: 0.0760008}, stat: {dn: -0.005451728, up: 0.005451728}}, 3: {full syst.: {dn: -0.07224473, up: 0.07224473}, stat: {dn: -0.00600532, up: 0.00600532}}, 4: {full syst.: {dn: -0.07663338, up: 0.07663338}, stat: {dn: -0.008014343, up: 0.008014343}}, 5: {full syst.: {dn: -0.07384702, up: 0.07384702}, stat: {dn: -0.006729133, up: 0.006729133}}, 6: {full syst.: {dn: -0.1067123, up: 0.1067123}, stat: {dn: -0.006291196, up: 0.006291196}}, 7: {full syst.: {dn: -0.1133002, up: 0.1133002}, stat: {dn: -0.01066808, up: 0.01066808}}, 8: {full syst.: {dn: -0.1271844, up: 0.1271844}, stat: {dn: -0.01635722, up: 0.01635722}}, 9: {full syst.: {dn: -0.1204628, up: 0.1204628}, stat: {dn: -0.01251528, up: 0.01251528}}, 10: {full syst.: {dn: -0.1141667, up: 0.1141667}, stat: {dn: -0.01328106, up: 0.01328106}}, 11: {full syst.: {dn: -0.1058701, up: 0.1058701}, stat: {dn: -0.01330443, up: 0.01330443}}, 12: {full syst.: {dn: -0.09918949, up: 0.09918949}, stat: {dn: -0.01129864, up: 0.01129864}}, 13: {full syst.: {dn: -0.09327068, up: 0.09327068}, stat: {dn: -0.01189611, up: 0.01189611}}, 14: {full syst.: {dn: -0.08506324, up: 0.08506324}, stat: {dn: -0.01044097, up: 0.01044097}}, 15: {full syst.: {dn: -0.08011866, up: 0.08011866}, stat: {dn: -0.009002144, up: 0.009002144}}, 16: {full syst.: {dn: -0.0700936, up: 0.0700936}, stat: {dn: -0.006618437, up: 0.006618437}}, 17: {full syst.: {dn: -0.05921061, up: 0.05921061}, stat: {dn: -0.005356108, up: 0.005356108}}, 18: {full syst.: {dn: -0.05193119, up: 0.05193119}, stat: {dn: -0.002686541, up: 0.002686541}}, 19: {full syst.: {dn: -0.04463305, up: 0.04463305}, stat: {dn: -0.002426723, up: 0.002426723}}, 20: {full syst.: {dn: -0.03846319, up: 0.03846319}, stat: {dn: -0.002299437, up: 0.002299437}}, 21: {full syst.: {dn: -0.03333489, up: 0.03333489}, stat: {dn: -0.002106558, up: 0.002106558}}, 22: {full syst.: {dn: -0.0288615, up: 0.0288615}, stat: {dn: -0.002009962, up: 0.002009962}}, 23: {full syst.: {dn: -0.02518932, up: 0.02518932}, stat: {dn: -0.001870641, up: 0.001870641}}, 24: {full syst.: {dn: -0.02212466, up: 0.02212466}, stat: {dn: -0.001775611, up: 0.001775611}}, 25: {full syst.: {dn: -0.01944506, up: 0.01944506}, stat: {dn: -0.001766047, up: 0.001766047}}, 26: {full syst.: {dn: -0.01216569, up: 0.01216569}, stat: {dn: -0.0009015052, up: 0.0009015052}}, 27: {full syst.: {dn: -0.008327956, up: 0.008327956}, stat: {dn: -0.0009497132, up: 0.0009497132}}, 28: {full syst.: {dn: -0.005805976, up: 0.005805976}, stat: {dn: -0.000655481, up: 0.000655481}}, 29: {full syst.: {dn: -0.005478032, up: 0.005478032}, stat: {dn: -0.0004652821, up: 0.0004652821}}, 30: {full syst.: {dn: -0.005102711, up: 0.005102711}, stat: {dn: -0.0003669162, up: 0.0003669162}}, 31: {full syst.: {dn: -0.004448942, up: 0.004448942}, stat: {dn: -0.0002840171, up: 0.0002840171}}, 32: {full syst.: {dn: -0.003508615, up: 0.003508615}, stat: {dn: -0.0002223711, up: 0.0002223711}}, 33: {full syst.: {dn: -0.002547365, up: 0.002547365}, stat: {dn: -0.000177033, up: 0.000177033}}, 34: {full syst.: {dn: -0.001814702, up: 0.001814702}, stat: {dn: -0.0001479204, up: 0.0001479204}}, 35: {full syst.: {dn: -0.001277102, up: 0.001277102}, stat: {dn: -0.0001195319, up: 0.0001195319}}, 36: {full syst.: {dn: -0.0007713995, up: 0.0007713995}, stat: {dn: -7.002046e-05, up: 7.002046e-05}}, 37: {full syst.: {dn: -0.0004068975, up: 0.0004068975}, stat: {dn: -4.649521e-05, up: 4.649521e-05}}, 38: {full syst.: {dn: -0.0001909283, up: 0.0001909283}, stat: {dn: -2.362323e-05, up: 2.362323e-05}}, 39: {full syst.: {dn: -7.611149e-05, up: 7.611149e-05}, stat: {dn: -9.539168e-06, up: 9.539168e-06}}, 40: {full syst.: {dn: -2.789802e-05, up: 2.789802e-05}, stat: {dn: -4.035611e-06, up: 4.035611e-06}}, 41: {full syst.: {dn: -7.675531e-06, up: 7.675531e-06}, stat: {dn: -1.413855e-06, up: 1.413855e-06}}, 42: {full syst.: {dn: -1.586301e-06, up: 1.586301e-06}, stat: {dn: -4.575156e-07, up: 4.575156e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d22-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t22 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 1.518519e+00 1.056755e-01 1.056755e-01 +2.750000e-01 2.500000e-02 2.500000e-02 1.707991e+00 1.059267e-01 1.059267e-01 +3.250000e-01 2.500000e-02 2.500000e-02 1.892644e+00 7.619608e-02 7.619608e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.928585e+00 7.249390e-02 7.249390e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.919640e+00 7.705131e-02 7.705131e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.972105e+00 7.415297e-02 7.415297e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.962093e+00 1.068976e-01 1.068976e-01 +5.750000e-01 2.500000e-02 2.500000e-02 1.882144e+00 1.138013e-01 1.138013e-01 +6.250000e-01 2.500000e-02 2.500000e-02 1.766907e+00 1.282319e-01 1.282319e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.669874e+00 1.211112e-01 1.211112e-01 +7.250000e-01 2.500000e-02 2.500000e-02 1.583159e+00 1.149366e-01 1.149366e-01 +7.750000e-01 2.500000e-02 2.500000e-02 1.467771e+00 1.067028e-01 1.067028e-01 +8.250000e-01 2.500000e-02 2.500000e-02 1.372846e+00 9.983093e-02 9.983093e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.291525e+00 9.402626e-02 9.402626e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.177065e+00 8.570163e-02 8.570163e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.106760e+00 8.062281e-02 8.062281e-02 +1.050000e+00 5.000000e-02 5.000000e-02 9.693035e-01 7.040537e-02 7.040537e-02 +1.150000e+00 5.000000e-02 5.000000e-02 8.149829e-01 5.945237e-02 5.945237e-02 +1.250000e+00 5.000000e-02 5.000000e-02 7.017167e-01 5.200063e-02 5.200063e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.969454e-01 4.469897e-02 4.469897e-02 +1.450000e+00 5.000000e-02 5.000000e-02 5.080854e-01 3.853186e-02 3.853186e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.315954e-01 3.340138e-02 3.340138e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.650176e-01 2.893140e-02 2.893140e-02 +1.750000e+00 5.000000e-02 5.000000e-02 3.086823e-01 2.525868e-02 2.525868e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.615708e-01 2.219580e-02 2.219580e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.226075e-01 1.952509e-02 1.952509e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.682852e-01 1.219905e-02 1.219905e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.219870e-01 8.381933e-03 8.381933e-03 +2.500000e+00 1.000000e-01 1.000000e-01 9.045048e-02 5.842860e-03 5.842860e-03 +2.700000e+00 1.000000e-01 1.000000e-01 6.754416e-02 5.497756e-03 5.497756e-03 +2.900000e+00 1.000000e-01 1.000000e-01 5.232318e-02 5.115886e-03 5.115886e-03 +3.100000e+00 1.000000e-01 1.000000e-01 4.057992e-02 4.457999e-03 4.457999e-03 +3.300000e+00 1.000000e-01 1.000000e-01 3.148750e-02 3.515655e-03 3.515655e-03 +3.500000e+00 1.000000e-01 1.000000e-01 2.438300e-02 2.553509e-03 2.553509e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.936873e-02 1.820721e-03 1.820721e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.528841e-02 1.282684e-03 1.282684e-03 +4.250000e+00 2.500000e-01 2.500000e-01 1.058565e-02 7.745709e-04 7.745709e-04 +4.750000e+00 2.500000e-01 2.500000e-01 6.391607e-03 4.095453e-04 4.095453e-04 +5.500000e+00 5.000000e-01 5.000000e-01 3.228550e-03 1.923842e-04 1.923842e-04 +7.000000e+00 1.000000e+00 1.000000e+00 1.073643e-03 7.670694e-05 7.670694e-05 +9.000000e+00 1.000000e+00 1.000000e+00 3.000011e-04 2.818840e-05 2.818840e-05 +1.250000e+01 2.500000e+00 2.500000e+00 6.946692e-05 7.804663e-06 7.804663e-06 +1.750000e+01 2.500000e+00 2.500000e+00 1.260261e-05 1.650961e-06 1.650961e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d23-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.09250847, up: 0.09250847}, stat: {dn: -0.005030529, up: 0.005030529}}, 1: {full syst.: {dn: -0.09210468, up: 0.09210468}, stat: {dn: -0.00434346, up: 0.00434346}}, 2: {full syst.: {dn: -0.06455948, up: 0.06455948}, stat: {dn: -0.004148287, up: 0.004148287}}, 3: {full syst.: {dn: -0.06102316, up: 0.06102316}, stat: {dn: -0.004397086, up: 0.004397086}}, 4: {full syst.: {dn: -0.06454836, up: 0.06454836}, stat: {dn: -0.005004752, up: 0.005004752}}, 5: {full syst.: {dn: -0.06153989, up: 0.06153989}, stat: {dn: -0.005314936, up: 0.005314936}}, 6: {full syst.: {dn: -0.08865795, up: 0.08865795}, stat: {dn: -0.004843697, up: 0.004843697}}, 7: {full syst.: {dn: -0.09227284, up: 0.09227284}, stat: {dn: -0.006386544, up: 0.006386544}}, 8: {full syst.: {dn: -0.103626, up: 0.103626}, stat: {dn: -0.01027102, up: 0.01027102}}, 9: {full syst.: {dn: -0.09844395, up: 0.09844395}, stat: {dn: -0.008930856, up: 0.008930856}}, 10: {full syst.: {dn: -0.09142854, up: 0.09142854}, stat: {dn: -0.008278285, up: 0.008278285}}, 11: {full syst.: {dn: -0.08657507, up: 0.08657507}, stat: {dn: -0.008787985, up: 0.008787985}}, 12: {full syst.: {dn: -0.07798467, up: 0.07798467}, stat: {dn: -0.008202085, up: 0.008202085}}, 13: {full syst.: {dn: -0.07327854, up: 0.07327854}, stat: {dn: -0.007664038, up: 0.007664038}}, 14: {full syst.: {dn: -0.06756859, up: 0.06756859}, stat: {dn: -0.006428511, up: 0.006428511}}, 15: {full syst.: {dn: -0.06276989, up: 0.06276989}, stat: {dn: -0.00617051, up: 0.00617051}}, 16: {full syst.: {dn: -0.05493348, up: 0.05493348}, stat: {dn: -0.004002939, up: 0.004002939}}, 17: {full syst.: {dn: -0.04562329, up: 0.04562329}, stat: {dn: -0.003336017, up: 0.003336017}}, 18: {full syst.: {dn: -0.0397092, up: 0.0397092}, stat: {dn: -0.002077451, up: 0.002077451}}, 19: {full syst.: {dn: -0.0342202, up: 0.0342202}, stat: {dn: -0.001947917, up: 0.001947917}}, 20: {full syst.: {dn: -0.02924723, up: 0.02924723}, stat: {dn: -0.001771632, up: 0.001771632}}, 21: {full syst.: {dn: -0.02522966, up: 0.02522966}, stat: {dn: -0.001664939, up: 0.001664939}}, 22: {full syst.: {dn: -0.02180388, up: 0.02180388}, stat: {dn: -0.001560109, up: 0.001560109}}, 23: {full syst.: {dn: -0.018605, up: 0.018605}, stat: {dn: -0.00147243, up: 0.00147243}}, 24: {full syst.: {dn: -0.01621413, up: 0.01621413}, stat: {dn: -0.001425675, up: 0.001425675}}, 25: {full syst.: {dn: -0.01455609, up: 0.01455609}, stat: {dn: -0.001345605, up: 0.001345605}}, 26: {full syst.: {dn: -0.008946996, up: 0.008946996}, stat: {dn: -0.000677585, up: 0.000677585}}, 27: {full syst.: {dn: -0.006144438, up: 0.006144438}, stat: {dn: -0.0006627697, up: 0.0006627697}}, 28: {full syst.: {dn: -0.004217663, up: 0.004217663}, stat: {dn: -0.0005455187, up: 0.0005455187}}, 29: {full syst.: {dn: -0.003921261, up: 0.003921261}, stat: {dn: -0.0003515377, up: 0.0003515377}}, 30: {full syst.: {dn: -0.003638025, up: 0.003638025}, stat: {dn: -0.0002776212, up: 0.0002776212}}, 31: {full syst.: {dn: -0.003171912, up: 0.003171912}, stat: {dn: -0.0002149213, up: 0.0002149213}}, 32: {full syst.: {dn: -0.002484486, up: 0.002484486}, stat: {dn: -0.0001671289, up: 0.0001671289}}, 33: {full syst.: {dn: -0.001822065, up: 0.001822065}, stat: {dn: -0.000134384, up: 0.000134384}}, 34: {full syst.: {dn: -0.001288945, up: 0.001288945}, stat: {dn: -0.0001115038, up: 0.0001115038}}, 35: {full syst.: {dn: -0.0009079233, up: 0.0009079233}, stat: {dn: -8.971898e-05, up: 8.971898e-05}}, 36: {full syst.: {dn: -0.0005463129, up: 0.0005463129}, stat: {dn: -5.264646e-05, up: 5.264646e-05}}, 37: {full syst.: {dn: -0.0002837263, up: 0.0002837263}, stat: {dn: -3.446963e-05, up: 3.446963e-05}}, 38: {full syst.: {dn: -0.0001350731, up: 0.0001350731}, stat: {dn: -1.767443e-05, up: 1.767443e-05}}, 39: {full syst.: {dn: -5.407848e-05, up: 5.407848e-05}, stat: {dn: -7.125114e-06, up: 7.125114e-06}}, 40: {full syst.: {dn: -1.989873e-05, up: 1.989873e-05}, stat: {dn: -3.041099e-06, up: 3.041099e-06}}, 41: {full syst.: {dn: -5.564667e-06, up: 5.564667e-06}, stat: {dn: -1.081297e-06, up: 1.081297e-06}}, 42: {full syst.: {dn: -1.065818e-06, up: 1.065818e-06}, stat: {dn: -3.25196e-07, up: 3.25196e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d23-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t23 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 1.322784e+00 9.264515e-02 9.264515e-02 +2.750000e-01 2.500000e-02 2.500000e-02 1.471906e+00 9.220704e-02 9.220704e-02 +3.250000e-01 2.500000e-02 2.500000e-02 1.613338e+00 6.469262e-02 6.469262e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.637335e+00 6.118137e-02 6.118137e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.629358e+00 6.474209e-02 6.474209e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.650138e+00 6.176898e-02 6.176898e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.628582e+00 8.879017e-02 8.879017e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.534062e+00 9.249359e-02 9.249359e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.443863e+00 1.041338e-01 1.041338e-01 +6.750000e-01 2.500000e-02 2.500000e-02 1.369897e+00 9.884822e-02 9.884822e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.271454e+00 9.180255e-02 9.180255e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.204701e+00 8.701995e-02 8.701995e-02 +8.250000e-01 2.500000e-02 2.500000e-02 1.086116e+00 7.841481e-02 7.841481e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.019282e+00 7.367823e-02 7.367823e-02 +9.250000e-01 2.500000e-02 2.500000e-02 9.373815e-01 6.787371e-02 6.787371e-02 +9.750000e-01 2.500000e-02 2.500000e-02 8.708893e-01 6.307245e-02 6.307245e-02 +1.050000e+00 5.000000e-02 5.000000e-02 7.616006e-01 5.507913e-02 5.507913e-02 +1.150000e+00 5.000000e-02 5.000000e-02 6.302779e-01 4.574509e-02 4.574509e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.371460e-01 3.976351e-02 3.976351e-02 +1.350000e+00 5.000000e-02 5.000000e-02 4.589091e-01 3.427560e-02 3.427560e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.866208e-01 2.930084e-02 2.930084e-02 +1.550000e+00 5.000000e-02 5.000000e-02 3.274064e-01 2.528454e-02 2.528454e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.761741e-01 2.185962e-02 2.185962e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.289560e-01 1.866317e-02 1.866317e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.934227e-01 1.627669e-02 1.627669e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.668816e-01 1.461815e-02 1.461815e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.235319e-01 8.972617e-03 8.972617e-03 +2.300000e+00 1.000000e-01 1.000000e-01 8.912401e-02 6.180079e-03 6.180079e-03 +2.500000e+00 1.000000e-01 1.000000e-01 6.600660e-02 4.252796e-03 4.252796e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.933889e-02 3.936987e-03 3.936987e-03 +2.900000e+00 1.000000e-01 1.000000e-01 3.830524e-02 3.648602e-03 3.648602e-03 +3.100000e+00 1.000000e-01 1.000000e-01 2.975601e-02 3.179185e-03 3.179185e-03 +3.300000e+00 1.000000e-01 1.000000e-01 2.298183e-02 2.490101e-03 2.490101e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.799430e-02 1.827014e-03 1.827014e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.420008e-02 1.293759e-03 1.293759e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.112650e-02 9.123454e-04 9.123454e-04 +4.250000e+00 2.500000e-01 2.500000e-01 7.623187e-03 5.488437e-04 5.488437e-04 +4.750000e+00 2.500000e-01 2.500000e-01 4.513378e-03 2.858125e-04 2.858125e-04 +5.500000e+00 5.000000e-01 5.000000e-01 2.298807e-03 1.362245e-04 1.362245e-04 +7.000000e+00 1.000000e+00 1.000000e+00 7.640652e-04 5.454585e-05 5.454585e-05 +9.000000e+00 1.000000e+00 1.000000e+00 2.167325e-04 2.012977e-05 2.012977e-05 +1.250000e+01 2.500000e+00 2.500000e+00 5.191681e-05 5.668750e-06 5.668750e-06 +1.750000e+01 2.500000e+00 2.500000e+00 8.814310e-06 1.114325e-06 1.114325e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d24-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.08004197, up: 0.08004197}, stat: {dn: -0.004704347, up: 0.004704347}}, 1: {full syst.: {dn: -0.07945962, up: 0.07945962}, stat: {dn: -0.004074397, up: 0.004074397}}, 2: {full syst.: {dn: -0.05689855, up: 0.05689855}, stat: {dn: -0.003494349, up: 0.003494349}}, 3: {full syst.: {dn: -0.05335515, up: 0.05335515}, stat: {dn: -0.003566689, up: 0.003566689}}, 4: {full syst.: {dn: -0.05530562, up: 0.05530562}, stat: {dn: -0.004031643, up: 0.004031643}}, 5: {full syst.: {dn: -0.05318129, up: 0.05318129}, stat: {dn: -0.004736949, up: 0.004736949}}, 6: {full syst.: {dn: -0.07606948, up: 0.07606948}, stat: {dn: -0.004127868, up: 0.004127868}}, 7: {full syst.: {dn: -0.07931312, up: 0.07931312}, stat: {dn: -0.005476395, up: 0.005476395}}, 8: {full syst.: {dn: -0.08960357, up: 0.08960357}, stat: {dn: -0.008331457, up: 0.008331457}}, 9: {full syst.: {dn: -0.0835539, up: 0.0835539}, stat: {dn: -0.007151706, up: 0.007151706}}, 10: {full syst.: {dn: -0.07795507, up: 0.07795507}, stat: {dn: -0.00646542, up: 0.00646542}}, 11: {full syst.: {dn: -0.07193014, up: 0.07193014}, stat: {dn: -0.006652739, up: 0.006652739}}, 12: {full syst.: {dn: -0.06658245, up: 0.06658245}, stat: {dn: -0.006343217, up: 0.006343217}}, 13: {full syst.: {dn: -0.06222168, up: 0.06222168}, stat: {dn: -0.005667642, up: 0.005667642}}, 14: {full syst.: {dn: -0.05656338, up: 0.05656338}, stat: {dn: -0.005237399, up: 0.005237399}}, 15: {full syst.: {dn: -0.05133049, up: 0.05133049}, stat: {dn: -0.00478316, up: 0.00478316}}, 16: {full syst.: {dn: -0.04503907, up: 0.04503907}, stat: {dn: -0.003076059, up: 0.003076059}}, 17: {full syst.: {dn: -0.03744961, up: 0.03744961}, stat: {dn: -0.002667021, up: 0.002667021}}, 18: {full syst.: {dn: -0.0326195, up: 0.0326195}, stat: {dn: -0.001841045, up: 0.001841045}}, 19: {full syst.: {dn: -0.02777387, up: 0.02777387}, stat: {dn: -0.00171069, up: 0.00171069}}, 20: {full syst.: {dn: -0.02375527, up: 0.02375527}, stat: {dn: -0.001556903, up: 0.001556903}}, 21: {full syst.: {dn: -0.02049941, up: 0.02049941}, stat: {dn: -0.001463079, up: 0.001463079}}, 22: {full syst.: {dn: -0.01744801, up: 0.01744801}, stat: {dn: -0.001332153, up: 0.001332153}}, 23: {full syst.: {dn: -0.01501023, up: 0.01501023}, stat: {dn: -0.001302217, up: 0.001302217}}, 24: {full syst.: {dn: -0.01306849, up: 0.01306849}, stat: {dn: -0.001250164, up: 0.001250164}}, 25: {full syst.: {dn: -0.0113475, up: 0.0113475}, stat: {dn: -0.001178082, up: 0.001178082}}, 26: {full syst.: {dn: -0.007133459, up: 0.007133459}, stat: {dn: -0.0005919799, up: 0.0005919799}}, 27: {full syst.: {dn: -0.004855532, up: 0.004855532}, stat: {dn: -0.0005946575, up: 0.0005946575}}, 28: {full syst.: {dn: -0.003338217, up: 0.003338217}, stat: {dn: -0.0004363775, up: 0.0004363775}}, 29: {full syst.: {dn: -0.003064289, up: 0.003064289}, stat: {dn: -0.000309316, up: 0.000309316}}, 30: {full syst.: {dn: -0.002802207, up: 0.002802207}, stat: {dn: -0.0002426501, up: 0.0002426501}}, 31: {full syst.: {dn: -0.002434747, up: 0.002434747}, stat: {dn: -0.0001873256, up: 0.0001873256}}, 32: {full syst.: {dn: -0.001919233, up: 0.001919233}, stat: {dn: -0.0001463231, up: 0.0001463231}}, 33: {full syst.: {dn: -0.001398713, up: 0.001398713}, stat: {dn: -0.0001166918, up: 0.0001166918}}, 34: {full syst.: {dn: -0.001001715, up: 0.001001715}, stat: {dn: -9.750569e-05, up: 9.750569e-05}}, 35: {full syst.: {dn: -0.0007068765, up: 0.0007068765}, stat: {dn: -7.837058e-05, up: 7.837058e-05}}, 36: {full syst.: {dn: -0.0004213542, up: 0.0004213542}, stat: {dn: -4.591421e-05, up: 4.591421e-05}}, 37: {full syst.: {dn: -0.0002168405, up: 0.0002168405}, stat: {dn: -2.994381e-05, up: 2.994381e-05}}, 38: {full syst.: {dn: -0.0001041363, up: 0.0001041363}, stat: {dn: -1.546084e-05, up: 1.546084e-05}}, 39: {full syst.: {dn: -4.147137e-05, up: 4.147137e-05}, stat: {dn: -6.207693e-06, up: 6.207693e-06}}, 40: {full syst.: {dn: -1.530823e-05, up: 1.530823e-05}, stat: {dn: -2.664111e-06, up: 2.664111e-06}}, 41: {full syst.: {dn: -4.102966e-06, up: 4.102966e-06}, stat: {dn: -9.069545e-07, up: 9.069545e-07}}, 42: {full syst.: {dn: -8.562961e-07, up: 8.562961e-07}, stat: {dn: -2.910911e-07, up: 2.910911e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d24-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t24 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 1.169716e+00 8.018010e-02 8.018010e-02 +2.750000e-01 2.500000e-02 2.500000e-02 1.307056e+00 7.956401e-02 7.956401e-02 +3.250000e-01 2.500000e-02 2.500000e-02 1.433214e+00 5.700575e-02 5.700575e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.444270e+00 5.347423e-02 5.347423e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.428596e+00 5.545237e-02 5.545237e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.437738e+00 5.339184e-02 5.339184e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.411330e+00 7.618140e-02 7.618140e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.325105e+00 7.950196e-02 7.950196e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.249925e+00 8.999007e-02 8.999007e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.163441e+00 8.385941e-02 8.385941e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.084063e+00 7.822272e-02 7.822272e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.001649e+00 7.223714e-02 7.223714e-02 +8.250000e-01 2.500000e-02 2.500000e-02 9.274455e-01 6.688392e-02 6.688392e-02 +8.750000e-01 2.500000e-02 2.500000e-02 8.640999e-01 6.247927e-02 6.247927e-02 +9.250000e-01 2.500000e-02 2.500000e-02 7.858828e-01 5.680534e-02 5.680534e-02 +9.750000e-01 2.500000e-02 2.500000e-02 7.125048e-01 5.155286e-02 5.155286e-02 +1.050000e+00 5.000000e-02 5.000000e-02 6.248407e-01 4.514399e-02 4.514399e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.181387e-01 3.754446e-02 3.754446e-02 +1.250000e+00 5.000000e-02 5.000000e-02 4.415815e-01 3.267141e-02 3.267141e-02 +1.350000e+00 5.000000e-02 5.000000e-02 3.727154e-01 2.782650e-02 2.782650e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.142170e-01 2.380623e-02 2.380623e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.661871e-01 2.055155e-02 2.055155e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.205470e-01 1.749879e-02 1.749879e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.849493e-01 1.506661e-02 1.506661e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.558945e-01 1.312815e-02 1.312815e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.302779e-01 1.140849e-02 1.140849e-02 +2.100000e+00 1.000000e-01 1.000000e-01 9.830826e-02 7.157980e-03 7.157980e-03 +2.300000e+00 1.000000e-01 1.000000e-01 7.039382e-02 4.891810e-03 4.891810e-03 +2.500000e+00 1.000000e-01 1.000000e-01 5.203867e-02 3.366618e-03 3.366618e-03 +2.700000e+00 1.000000e-01 1.000000e-01 3.903358e-02 3.079861e-03 3.079861e-03 +2.900000e+00 1.000000e-01 1.000000e-01 3.012567e-02 2.812693e-03 2.812693e-03 +3.100000e+00 1.000000e-01 1.000000e-01 2.334231e-02 2.441943e-03 2.441943e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.808443e-02 1.924803e-03 1.924803e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.397091e-02 1.403572e-03 1.403572e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.105668e-02 1.006449e-03 1.006449e-03 +3.900000e+00 1.000000e-01 1.000000e-01 8.662774e-03 7.112077e-04 7.112077e-04 +4.250000e+00 2.500000e-01 2.500000e-01 5.913230e-03 4.238484e-04 4.238484e-04 +4.750000e+00 2.500000e-01 2.500000e-01 3.499824e-03 2.188982e-04 2.188982e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.803323e-03 1.052778e-04 1.052778e-04 +7.000000e+00 1.000000e+00 1.000000e+00 5.980682e-04 4.193340e-05 4.193340e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.710192e-04 1.553832e-05 1.553832e-05 +1.250000e+01 2.500000e+00 2.500000e+00 3.837745e-05 4.202011e-06 4.202011e-06 +1.750000e+01 2.500000e+00 2.500000e+00 6.854216e-06 9.044208e-07 9.044208e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d25-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.07327439, up: 0.07327439}, stat: {dn: -0.004485464, up: 0.004485464}}, 1: {full syst.: {dn: -0.07157821, up: 0.07157821}, stat: {dn: -0.003853264, up: 0.003853264}}, 2: {full syst.: {dn: -0.05116612, up: 0.05116612}, stat: {dn: -0.003174301, up: 0.003174301}}, 3: {full syst.: {dn: -0.04807736, up: 0.04807736}, stat: {dn: -0.003315662, up: 0.003315662}}, 4: {full syst.: {dn: -0.0493651, up: 0.0493651}, stat: {dn: -0.003531217, up: 0.003531217}}, 5: {full syst.: {dn: -0.04730443, up: 0.04730443}, stat: {dn: -0.004392031, up: 0.004392031}}, 6: {full syst.: {dn: -0.06695709, up: 0.06695709}, stat: {dn: -0.003849996, up: 0.003849996}}, 7: {full syst.: {dn: -0.06964882, up: 0.06964882}, stat: {dn: -0.005014176, up: 0.005014176}}, 8: {full syst.: {dn: -0.07840454, up: 0.07840454}, stat: {dn: -0.006966554, up: 0.006966554}}, 9: {full syst.: {dn: -0.07296099, up: 0.07296099}, stat: {dn: -0.006133114, up: 0.006133114}}, 10: {full syst.: {dn: -0.06823069, up: 0.06823069}, stat: {dn: -0.005776661, up: 0.005776661}}, 11: {full syst.: {dn: -0.0627473, up: 0.0627473}, stat: {dn: -0.005532959, up: 0.005532959}}, 12: {full syst.: {dn: -0.05765437, up: 0.05765437}, stat: {dn: -0.005358742, up: 0.005358742}}, 13: {full syst.: {dn: -0.05333506, up: 0.05333506}, stat: {dn: -0.005034136, up: 0.005034136}}, 14: {full syst.: {dn: -0.04885486, up: 0.04885486}, stat: {dn: -0.004603237, up: 0.004603237}}, 15: {full syst.: {dn: -0.04441026, up: 0.04441026}, stat: {dn: -0.004153467, up: 0.004153467}}, 16: {full syst.: {dn: -0.03869313, up: 0.03869313}, stat: {dn: -0.002645023, up: 0.002645023}}, 17: {full syst.: {dn: -0.03208085, up: 0.03208085}, stat: {dn: -0.002261305, up: 0.002261305}}, 18: {full syst.: {dn: -0.02772949, up: 0.02772949}, stat: {dn: -0.0016808, up: 0.0016808}}, 19: {full syst.: {dn: -0.02348129, up: 0.02348129}, stat: {dn: -0.001517052, up: 0.001517052}}, 20: {full syst.: {dn: -0.02001368, up: 0.02001368}, stat: {dn: -0.001397954, up: 0.001397954}}, 21: {full syst.: {dn: -0.0168167, up: 0.0168167}, stat: {dn: -0.001276815, up: 0.001276815}}, 22: {full syst.: {dn: -0.01450168, up: 0.01450168}, stat: {dn: -0.001240629, up: 0.001240629}}, 23: {full syst.: {dn: -0.01251835, up: 0.01251835}, stat: {dn: -0.001143717, up: 0.001143717}}, 24: {full syst.: {dn: -0.01081909, up: 0.01081909}, stat: {dn: -0.001110414, up: 0.001110414}}, 25: {full syst.: {dn: -0.009388423, up: 0.009388423}, stat: {dn: -0.001058458, up: 0.001058458}}, 26: {full syst.: {dn: -0.005814707, up: 0.005814707}, stat: {dn: -0.000527177, up: 0.000527177}}, 27: {full syst.: {dn: -0.004006588, up: 0.004006588}, stat: {dn: -0.0005053252, up: 0.0005053252}}, 28: {full syst.: {dn: -0.002736786, up: 0.002736786}, stat: {dn: -0.0004116034, up: 0.0004116034}}, 29: {full syst.: {dn: -0.002458605, up: 0.002458605}, stat: {dn: -0.0002769105, up: 0.0002769105}}, 30: {full syst.: {dn: -0.00222431, up: 0.00222431}, stat: {dn: -0.0002164049, up: 0.0002164049}}, 31: {full syst.: {dn: -0.001931864, up: 0.001931864}, stat: {dn: -0.0001671106, up: 0.0001671106}}, 32: {full syst.: {dn: -0.00152916, up: 0.00152916}, stat: {dn: -0.000131252, up: 0.000131252}}, 33: {full syst.: {dn: -0.001104406, up: 0.001104406}, stat: {dn: -0.000103917, up: 0.000103917}}, 34: {full syst.: {dn: -0.0007854986, up: 0.0007854986}, stat: {dn: -8.657628e-05, up: 8.657628e-05}}, 35: {full syst.: {dn: -0.0005516105, up: 0.0005516105}, stat: {dn: -6.931294e-05, up: 6.931294e-05}}, 36: {full syst.: {dn: -0.0003358359, up: 0.0003358359}, stat: {dn: -4.082594e-05, up: 4.082594e-05}}, 37: {full syst.: {dn: -0.0001770864, up: 0.0001770864}, stat: {dn: -2.673862e-05, up: 2.673862e-05}}, 38: {full syst.: {dn: -8.508313e-05, up: 8.508313e-05}, stat: {dn: -1.378566e-05, up: 1.378566e-05}}, 39: {full syst.: {dn: -3.341385e-05, up: 3.341385e-05}, stat: {dn: -5.519577e-06, up: 5.519577e-06}}, 40: {full syst.: {dn: -1.206416e-05, up: 1.206416e-05}, stat: {dn: -2.334831e-06, up: 2.334831e-06}}, 41: {full syst.: {dn: -3.274501e-06, up: 3.274501e-06}, stat: {dn: -8.151072e-07, up: 8.151072e-07}}, 42: {full syst.: {dn: -6.400622e-07, up: 6.400622e-07}, stat: {dn: -2.51149e-07, up: 2.51149e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d25-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t25 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 1.071791e+00 7.341155e-02 7.341155e-02 +2.750000e-01 2.500000e-02 2.500000e-02 1.177784e+00 7.168185e-02 7.168185e-02 +3.250000e-01 2.500000e-02 2.500000e-02 1.289891e+00 5.126449e-02 5.126449e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.305072e+00 4.819156e-02 4.819156e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.280228e+00 4.949124e-02 4.949124e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.280035e+00 4.750788e-02 4.750788e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.244052e+00 6.706768e-02 6.706768e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.165384e+00 6.982908e-02 6.982908e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.093383e+00 7.871343e-02 7.871343e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.016350e+00 7.321831e-02 7.321831e-02 +7.250000e-01 2.500000e-02 2.500000e-02 9.495006e-01 6.847479e-02 6.847479e-02 +7.750000e-01 2.500000e-02 2.500000e-02 8.734640e-01 6.299077e-02 6.299077e-02 +8.250000e-01 2.500000e-02 2.500000e-02 8.032978e-01 5.790287e-02 5.790287e-02 +8.750000e-01 2.500000e-02 2.500000e-02 7.427555e-01 5.357211e-02 5.357211e-02 +9.250000e-01 2.500000e-02 2.500000e-02 6.798678e-01 4.907125e-02 4.907125e-02 +9.750000e-01 2.500000e-02 2.500000e-02 6.166564e-01 4.460406e-02 4.460406e-02 +1.050000e+00 5.000000e-02 5.000000e-02 5.369906e-01 3.878343e-02 3.878343e-02 +1.150000e+00 5.000000e-02 5.000000e-02 4.436994e-01 3.216045e-02 3.216045e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.756413e-01 2.778038e-02 2.778038e-02 +1.350000e+00 5.000000e-02 5.000000e-02 3.148787e-01 2.353024e-02 2.353024e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.647187e-01 2.006244e-02 2.006244e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.180713e-01 1.686510e-02 1.686510e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.840006e-01 1.455465e-02 1.455465e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.540276e-01 1.257049e-02 1.257049e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.289822e-01 1.087592e-02 1.087592e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.078156e-01 9.447900e-03 9.447900e-03 +2.100000e+00 1.000000e-01 1.000000e-01 7.996573e-02 5.838556e-03 5.838556e-03 +2.300000e+00 1.000000e-01 1.000000e-01 5.753362e-02 4.038329e-03 4.038329e-03 +2.500000e+00 1.000000e-01 1.000000e-01 4.247438e-02 2.767565e-03 2.767565e-03 +2.700000e+00 1.000000e-01 1.000000e-01 3.118084e-02 2.474150e-03 2.474150e-03 +2.900000e+00 1.000000e-01 1.000000e-01 2.393125e-02 2.234812e-03 2.234812e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.858404e-02 1.939078e-03 1.939078e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.453357e-02 1.534783e-03 1.534783e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.120632e-02 1.109284e-03 1.109284e-03 +3.700000e+00 1.000000e-01 1.000000e-01 8.910689e-03 7.902553e-04 7.902553e-04 +3.900000e+00 1.000000e-01 1.000000e-01 6.995846e-03 5.559482e-04 5.559482e-04 +4.250000e+00 2.500000e-01 2.500000e-01 4.836466e-03 3.383083e-04 3.383083e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.884393e-03 1.790937e-04 1.790937e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.471342e-03 8.619271e-05 8.619271e-05 +7.000000e+00 1.000000e+00 1.000000e+00 4.765611e-04 3.386667e-05 3.386667e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.306040e-04 1.228802e-05 1.228802e-05 +1.250000e+01 2.500000e+00 2.500000e+00 3.001133e-05 3.374427e-06 3.374427e-06 +1.750000e+01 2.500000e+00 2.500000e+00 5.120646e-06 6.875721e-07 6.875721e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d26-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.06349782, up: 0.06349782}, stat: {dn: -0.003032114, up: 0.003032114}}, 1: {full syst.: {dn: -0.06231661, up: 0.06231661}, stat: {dn: -0.002602164, up: 0.002602164}}, 2: {full syst.: {dn: -0.04480563, up: 0.04480563}, stat: {dn: -0.002059427, up: 0.002059427}}, 3: {full syst.: {dn: -0.0416348, up: 0.0416348}, stat: {dn: -0.002131464, up: 0.002131464}}, 4: {full syst.: {dn: -0.04263095, up: 0.04263095}, stat: {dn: -0.002227837, up: 0.002227837}}, 5: {full syst.: {dn: -0.04075321, up: 0.04075321}, stat: {dn: -0.002955809, up: 0.002955809}}, 6: {full syst.: {dn: -0.05728271, up: 0.05728271}, stat: {dn: -0.002550989, up: 0.002550989}}, 7: {full syst.: {dn: -0.05914771, up: 0.05914771}, stat: {dn: -0.003150403, up: 0.003150403}}, 8: {full syst.: {dn: -0.06552029, up: 0.06552029}, stat: {dn: -0.004236689, up: 0.004236689}}, 9: {full syst.: {dn: -0.06112616, up: 0.06112616}, stat: {dn: -0.003836386, up: 0.003836386}}, 10: {full syst.: {dn: -0.05655403, up: 0.05655403}, stat: {dn: -0.003564495, up: 0.003564495}}, 11: {full syst.: {dn: -0.05197842, up: 0.05197842}, stat: {dn: -0.003379095, up: 0.003379095}}, 12: {full syst.: {dn: -0.04777786, up: 0.04777786}, stat: {dn: -0.003224063, up: 0.003224063}}, 13: {full syst.: {dn: -0.04351874, up: 0.04351874}, stat: {dn: -0.002993945, up: 0.002993945}}, 14: {full syst.: {dn: -0.0401105, up: 0.0401105}, stat: {dn: -0.00275956, up: 0.00275956}}, 15: {full syst.: {dn: -0.03631307, up: 0.03631307}, stat: {dn: -0.002557393, up: 0.002557393}}, 16: {full syst.: {dn: -0.03138499, up: 0.03138499}, stat: {dn: -0.001601765, up: 0.001601765}}, 17: {full syst.: {dn: -0.02590798, up: 0.02590798}, stat: {dn: -0.001357473, up: 0.001357473}}, 18: {full syst.: {dn: -0.02200761, up: 0.02200761}, stat: {dn: -0.001107532, up: 0.001107532}}, 19: {full syst.: {dn: -0.01856982, up: 0.01856982}, stat: {dn: -0.001007673, up: 0.001007673}}, 20: {full syst.: {dn: -0.01563469, up: 0.01563469}, stat: {dn: -0.0009078922, up: 0.0009078922}}, 21: {full syst.: {dn: -0.01327622, up: 0.01327622}, stat: {dn: -0.0008376413, up: 0.0008376413}}, 22: {full syst.: {dn: -0.01125333, up: 0.01125333}, stat: {dn: -0.0007856084, up: 0.0007856084}}, 23: {full syst.: {dn: -0.009659619, up: 0.009659619}, stat: {dn: -0.000735626, up: 0.000735626}}, 24: {full syst.: {dn: -0.008421874, up: 0.008421874}, stat: {dn: -0.0007043609, up: 0.0007043609}}, 25: {full syst.: {dn: -0.007287663, up: 0.007287663}, stat: {dn: -0.0006918478, up: 0.0006918478}}, 26: {full syst.: {dn: -0.004506875, up: 0.004506875}, stat: {dn: -0.0003320358, up: 0.0003320358}}, 27: {full syst.: {dn: -0.003086663, up: 0.003086663}, stat: {dn: -0.0003216304, up: 0.0003216304}}, 28: {full syst.: {dn: -0.002082813, up: 0.002082813}, stat: {dn: -0.0002602538, up: 0.0002602538}}, 29: {full syst.: {dn: -0.00186684, up: 0.00186684}, stat: {dn: -0.0001698353, up: 0.0001698353}}, 30: {full syst.: {dn: -0.001667468, up: 0.001667468}, stat: {dn: -0.0001329031, up: 0.0001329031}}, 31: {full syst.: {dn: -0.001442022, up: 0.001442022}, stat: {dn: -0.0001032272, up: 0.0001032272}}, 32: {full syst.: {dn: -0.001130517, up: 0.001130517}, stat: {dn: -8.0593e-05, up: 8.0593e-05}}, 33: {full syst.: {dn: -0.0008265047, up: 0.0008265047}, stat: {dn: -6.437258e-05, up: 6.437258e-05}}, 34: {full syst.: {dn: -0.0005874602, up: 0.0005874602}, stat: {dn: -5.338486e-05, up: 5.338486e-05}}, 35: {full syst.: {dn: -0.0004115305, up: 0.0004115305}, stat: {dn: -4.27601e-05, up: 4.27601e-05}}, 36: {full syst.: {dn: -0.0002483626, up: 0.0002483626}, stat: {dn: -2.507129e-05, up: 2.507129e-05}}, 37: {full syst.: {dn: -0.0001305429, up: 0.0001305429}, stat: {dn: -1.647527e-05, up: 1.647527e-05}}, 38: {full syst.: {dn: -6.241311e-05, up: 6.241311e-05}, stat: {dn: -8.415144e-06, up: 8.415144e-06}}, 39: {full syst.: {dn: -2.442207e-05, up: 2.442207e-05}, stat: {dn: -3.379057e-06, up: 3.379057e-06}}, 40: {full syst.: {dn: -8.824189e-06, up: 8.824189e-06}, stat: {dn: -1.446337e-06, up: 1.446337e-06}}, 41: {full syst.: {dn: -2.272801e-06, up: 2.272801e-06}, stat: {dn: -4.870383e-07, up: 4.870383e-07}}, 42: {full syst.: {dn: -4.73348e-07, up: 4.73348e-07}, stat: {dn: -1.583729e-07, up: 1.583729e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d26-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t26 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 9.299703e-01 6.357017e-02 6.357017e-02 +2.750000e-01 2.500000e-02 2.500000e-02 1.027106e+00 6.237092e-02 6.237092e-02 +3.250000e-01 2.500000e-02 2.500000e-02 1.125104e+00 4.485293e-02 4.485293e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.125524e+00 4.168932e-02 4.168932e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.106973e+00 4.268912e-02 4.268912e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.099155e+00 4.086026e-02 4.086026e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.063537e+00 5.733948e-02 5.733948e-02 +5.750000e-01 2.500000e-02 2.500000e-02 9.897868e-01 5.923155e-02 5.923155e-02 +6.250000e-01 2.500000e-02 2.500000e-02 9.136931e-01 6.565712e-02 6.565712e-02 +6.750000e-01 2.500000e-02 2.500000e-02 8.515165e-01 6.124643e-02 6.124643e-02 +7.250000e-01 2.500000e-02 2.500000e-02 7.869705e-01 5.666625e-02 5.666625e-02 +7.750000e-01 2.500000e-02 2.500000e-02 7.233215e-01 5.208814e-02 5.208814e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.654815e-01 4.788652e-02 4.788652e-02 +8.750000e-01 2.500000e-02 2.500000e-02 6.059173e-01 4.362161e-02 4.362161e-02 +9.250000e-01 2.500000e-02 2.500000e-02 5.570743e-01 4.020532e-02 4.020532e-02 +9.750000e-01 2.500000e-02 2.500000e-02 5.039218e-01 3.640301e-02 3.640301e-02 +1.050000e+00 5.000000e-02 5.000000e-02 4.351238e-01 3.142584e-02 3.142584e-02 +1.150000e+00 5.000000e-02 5.000000e-02 3.576114e-01 2.594352e-02 2.594352e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.982138e-01 2.203546e-02 2.203546e-02 +1.350000e+00 5.000000e-02 5.000000e-02 2.492911e-01 1.859714e-02 1.859714e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.068900e-01 1.566103e-02 1.566103e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.723332e-01 1.330262e-02 1.330262e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.426430e-01 1.128072e-02 1.128072e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.188859e-01 9.687589e-03 9.687589e-03 +1.850000e+00 5.000000e-02 5.000000e-02 1.003715e-01 8.451277e-03 8.451277e-03 +1.950000e+00 5.000000e-02 5.000000e-02 8.420992e-02 7.320429e-03 7.320429e-03 +2.100000e+00 1.000000e-01 1.000000e-01 6.200210e-02 4.519090e-03 4.519090e-03 +2.300000e+00 1.000000e-01 1.000000e-01 4.438596e-02 3.103375e-03 3.103375e-03 +2.500000e+00 1.000000e-01 1.000000e-01 3.240369e-02 2.099010e-03 2.099010e-03 +2.700000e+00 1.000000e-01 1.000000e-01 2.411095e-02 1.874549e-03 1.874549e-03 +2.900000e+00 1.000000e-01 1.000000e-01 1.854658e-02 1.672756e-03 1.672756e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.450315e-02 1.445712e-03 1.445712e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.126029e-02 1.133386e-03 1.133386e-03 +3.500000e+00 1.000000e-01 1.000000e-01 8.704569e-03 8.290077e-04 8.290077e-04 +3.700000e+00 1.000000e-01 1.000000e-01 6.813811e-03 5.898809e-04 5.898809e-04 +3.900000e+00 1.000000e-01 1.000000e-01 5.295537e-03 4.137460e-04 4.137460e-04 +4.250000e+00 2.500000e-01 2.500000e-01 3.617667e-03 2.496248e-04 2.496248e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.142924e-03 1.315784e-04 1.315784e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.079268e-03 6.297786e-05 6.297786e-05 +7.000000e+00 1.000000e+00 1.000000e+00 3.509812e-04 2.465473e-05 2.465473e-05 +9.000000e+00 1.000000e+00 1.000000e+00 9.780845e-05 8.941935e-06 8.941935e-06 +1.250000e+01 2.500000e+00 2.500000e+00 2.137522e-05 2.324399e-06 2.324399e-06 +1.750000e+01 2.500000e+00 2.500000e+00 3.912225e-06 4.991396e-07 4.991396e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d27-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.05372571, up: 0.05372571}, stat: {dn: -0.002766, up: 0.002766}}, 1: {full syst.: {dn: -0.05195777, up: 0.05195777}, stat: {dn: -0.002356188, up: 0.002356188}}, 2: {full syst.: {dn: -0.03737644, up: 0.03737644}, stat: {dn: -0.00185354, up: 0.00185354}}, 3: {full syst.: {dn: -0.03469615, up: 0.03469615}, stat: {dn: -0.001873841, up: 0.001873841}}, 4: {full syst.: {dn: -0.03535248, up: 0.03535248}, stat: {dn: -0.0019203, up: 0.0019203}}, 5: {full syst.: {dn: -0.03345849, up: 0.03345849}, stat: {dn: -0.002613552, up: 0.002613552}}, 6: {full syst.: {dn: -0.04640318, up: 0.04640318}, stat: {dn: -0.002282164, up: 0.002282164}}, 7: {full syst.: {dn: -0.04754769, up: 0.04754769}, stat: {dn: -0.002677182, up: 0.002677182}}, 8: {full syst.: {dn: -0.0527394, up: 0.0527394}, stat: {dn: -0.003533286, up: 0.003533286}}, 9: {full syst.: {dn: -0.04846781, up: 0.04846781}, stat: {dn: -0.003238655, up: 0.003238655}}, 10: {full syst.: {dn: -0.04434261, up: 0.04434261}, stat: {dn: -0.002967926, up: 0.002967926}}, 11: {full syst.: {dn: -0.04082201, up: 0.04082201}, stat: {dn: -0.002824076, up: 0.002824076}}, 12: {full syst.: {dn: -0.0374983, up: 0.0374983}, stat: {dn: -0.002660154, up: 0.002660154}}, 13: {full syst.: {dn: -0.03397251, up: 0.03397251}, stat: {dn: -0.002460145, up: 0.002460145}}, 14: {full syst.: {dn: -0.03091025, up: 0.03091025}, stat: {dn: -0.00229582, up: 0.00229582}}, 15: {full syst.: {dn: -0.02798595, up: 0.02798595}, stat: {dn: -0.002128216, up: 0.002128216}}, 16: {full syst.: {dn: -0.02404206, up: 0.02404206}, stat: {dn: -0.001318565, up: 0.001318565}}, 17: {full syst.: {dn: -0.0196546, up: 0.0196546}, stat: {dn: -0.001100969, up: 0.001100969}}, 18: {full syst.: {dn: -0.01630778, up: 0.01630778}, stat: {dn: -0.0009122052, up: 0.0009122052}}, 19: {full syst.: {dn: -0.01361506, up: 0.01361506}, stat: {dn: -0.0008332702, up: 0.0008332702}}, 20: {full syst.: {dn: -0.01141924, up: 0.01141924}, stat: {dn: -0.0007527069, up: 0.0007527069}}, 21: {full syst.: {dn: -0.009484978, up: 0.009484978}, stat: {dn: -0.0007067373, up: 0.0007067373}}, 22: {full syst.: {dn: -0.008104893, up: 0.008104893}, stat: {dn: -0.0006520413, up: 0.0006520413}}, 23: {full syst.: {dn: -0.006880206, up: 0.006880206}, stat: {dn: -0.0006105403, up: 0.0006105403}}, 24: {full syst.: {dn: -0.005945487, up: 0.005945487}, stat: {dn: -0.0005772288, up: 0.0005772288}}, 25: {full syst.: {dn: -0.00509195, up: 0.00509195}, stat: {dn: -0.0005698118, up: 0.0005698118}}, 26: {full syst.: {dn: -0.003217107, up: 0.003217107}, stat: {dn: -0.0002837824, up: 0.0002837824}}, 27: {full syst.: {dn: -0.002162097, up: 0.002162097}, stat: {dn: -0.0002942231, up: 0.0002942231}}, 28: {full syst.: {dn: -0.001460721, up: 0.001460721}, stat: {dn: -0.000220553, up: 0.000220553}}, 29: {full syst.: {dn: -0.001285668, up: 0.001285668}, stat: {dn: -0.0001393818, up: 0.0001393818}}, 30: {full syst.: {dn: -0.001150374, up: 0.001150374}, stat: {dn: -0.0001104489, up: 0.0001104489}}, 31: {full syst.: {dn: -0.000982545, up: 0.000982545}, stat: {dn: -8.499903e-05, up: 8.499903e-05}}, 32: {full syst.: {dn: -0.0007670982, up: 0.0007670982}, stat: {dn: -6.5598e-05, up: 6.5598e-05}}, 33: {full syst.: {dn: -0.0005610107, up: 0.0005610107}, stat: {dn: -5.214734e-05, up: 5.214734e-05}}, 34: {full syst.: {dn: -0.0004029006, up: 0.0004029006}, stat: {dn: -4.42425e-05, up: 4.42425e-05}}, 35: {full syst.: {dn: -0.0002827057, up: 0.0002827057}, stat: {dn: -3.479038e-05, up: 3.479038e-05}}, 36: {full syst.: {dn: -0.000168126, up: 0.000168126}, stat: {dn: -2.027056e-05, up: 2.027056e-05}}, 37: {full syst.: {dn: -8.739636e-05, up: 8.739636e-05}, stat: {dn: -1.33739e-05, up: 1.33739e-05}}, 38: {full syst.: {dn: -4.215029e-05, up: 4.215029e-05}, stat: {dn: -6.912372e-06, up: 6.912372e-06}}, 39: {full syst.: {dn: -1.629641e-05, up: 1.629641e-05}, stat: {dn: -2.721527e-06, up: 2.721527e-06}}, 40: {full syst.: {dn: -5.860946e-06, up: 5.860946e-06}, stat: {dn: -1.150489e-06, up: 1.150489e-06}}, 41: {full syst.: {dn: -1.593296e-06, up: 1.593296e-06}, stat: {dn: -4.074106e-07, up: 4.074106e-07}}, 42: {full syst.: {dn: -3.070947e-07, up: 3.070947e-07}, stat: {dn: -1.248184e-07, up: 1.248184e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d27-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t27 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 7.860195e-01 5.379686e-02 5.379686e-02 +2.750000e-01 2.500000e-02 2.500000e-02 8.561597e-01 5.201117e-02 5.201117e-02 +3.250000e-01 2.500000e-02 2.500000e-02 9.335528e-01 3.742237e-02 3.742237e-02 +3.750000e-01 2.500000e-02 2.500000e-02 9.340350e-01 3.474671e-02 3.474671e-02 +4.250000e-01 2.500000e-02 2.500000e-02 9.157348e-01 3.540460e-02 3.540460e-02 +4.750000e-01 2.500000e-02 2.500000e-02 8.982070e-01 3.356041e-02 3.356041e-02 +5.250000e-01 2.500000e-02 2.500000e-02 8.612960e-01 4.645927e-02 4.645927e-02 +5.750000e-01 2.500000e-02 2.500000e-02 7.952336e-01 4.762300e-02 4.762300e-02 +6.250000e-01 2.500000e-02 2.500000e-02 7.344627e-01 5.285762e-02 5.285762e-02 +6.750000e-01 2.500000e-02 2.500000e-02 6.752067e-01 4.857589e-02 4.857589e-02 +7.250000e-01 2.500000e-02 2.500000e-02 6.170712e-01 4.444182e-02 4.444182e-02 +7.750000e-01 2.500000e-02 2.500000e-02 5.683242e-01 4.091958e-02 4.091958e-02 +8.250000e-01 2.500000e-02 2.500000e-02 5.218467e-01 3.759254e-02 3.759254e-02 +8.750000e-01 2.500000e-02 2.500000e-02 4.722958e-01 3.406147e-02 3.406147e-02 +9.250000e-01 2.500000e-02 2.500000e-02 4.296343e-01 3.099539e-02 3.099539e-02 +9.750000e-01 2.500000e-02 2.500000e-02 3.882659e-01 2.806675e-02 2.806675e-02 +1.050000e+00 5.000000e-02 5.000000e-02 3.325919e-01 2.407819e-02 2.407819e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.703197e-01 1.968541e-02 1.968541e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.209172e-01 1.633327e-02 1.633327e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.827535e-01 1.364054e-02 1.364054e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.511450e-01 1.144402e-02 1.144402e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.234616e-01 9.511271e-03 9.511271e-03 +1.650000e+00 5.000000e-02 5.000000e-02 1.028430e-01 8.131079e-03 8.131079e-03 +1.750000e+00 5.000000e-02 5.000000e-02 8.477716e-02 6.907242e-03 6.907242e-03 +1.850000e+00 5.000000e-02 5.000000e-02 7.089513e-02 5.973442e-03 5.973442e-03 +1.950000e+00 5.000000e-02 5.000000e-02 5.895020e-02 5.123733e-03 5.123733e-03 +2.100000e+00 1.000000e-01 1.000000e-01 4.430048e-02 3.229599e-03 3.229599e-03 +2.300000e+00 1.000000e-01 1.000000e-01 3.128457e-02 2.182024e-03 2.182024e-03 +2.500000e+00 1.000000e-01 1.000000e-01 2.259629e-02 1.477278e-03 1.477278e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.664239e-02 1.293201e-03 1.293201e-03 +2.900000e+00 1.000000e-01 1.000000e-01 1.288686e-02 1.155664e-03 1.155664e-03 +3.100000e+00 1.000000e-01 1.000000e-01 9.913590e-03 9.862147e-04 9.862147e-04 +3.300000e+00 1.000000e-01 1.000000e-01 7.627829e-03 7.698979e-04 7.698979e-04 +3.500000e+00 1.000000e-01 1.000000e-01 5.929353e-03 5.634291e-04 5.634291e-04 +3.700000e+00 1.000000e-01 1.000000e-01 4.713939e-03 4.053225e-04 4.053225e-04 +3.900000e+00 1.000000e-01 1.000000e-01 3.652713e-03 2.848383e-04 2.848383e-04 +4.250000e+00 2.500000e-01 2.500000e-01 2.457385e-03 1.693436e-04 1.693436e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.445434e-03 8.841371e-05 8.841371e-05 +5.500000e+00 5.000000e-01 5.000000e-01 7.343310e-04 4.271332e-05 4.271332e-05 +7.000000e+00 1.000000e+00 1.000000e+00 2.358556e-04 1.652210e-05 1.652210e-05 +9.000000e+00 1.000000e+00 1.000000e+00 6.555831e-05 5.972798e-06 5.972798e-06 +1.250000e+01 2.500000e+00 2.500000e+00 1.513503e-05 1.644559e-06 1.644559e-06 +1.750000e+01 2.500000e+00 2.500000e+00 2.576808e-06 3.314918e-07 3.314918e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d28-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.04559358, up: 0.04559358}, stat: {dn: -0.002498953, up: 0.002498953}}, 1: {full syst.: {dn: -0.04429127, up: 0.04429127}, stat: {dn: -0.002132428, up: 0.002132428}}, 2: {full syst.: {dn: -0.03184208, up: 0.03184208}, stat: {dn: -0.001637629, up: 0.001637629}}, 3: {full syst.: {dn: -0.02960768, up: 0.02960768}, stat: {dn: -0.001633251, up: 0.001633251}}, 4: {full syst.: {dn: -0.02981982, up: 0.02981982}, stat: {dn: -0.001691511, up: 0.001691511}}, 5: {full syst.: {dn: -0.02795775, up: 0.02795775}, stat: {dn: -0.002320385, up: 0.002320385}}, 6: {full syst.: {dn: -0.03823529, up: 0.03823529}, stat: {dn: -0.002004595, up: 0.002004595}}, 7: {full syst.: {dn: -0.03879922, up: 0.03879922}, stat: {dn: -0.002296703, up: 0.002296703}}, 8: {full syst.: {dn: -0.04268634, up: 0.04268634}, stat: {dn: -0.003073237, up: 0.003073237}}, 9: {full syst.: {dn: -0.03925495, up: 0.03925495}, stat: {dn: -0.002772448, up: 0.002772448}}, 10: {full syst.: {dn: -0.03555796, up: 0.03555796}, stat: {dn: -0.002590676, up: 0.002590676}}, 11: {full syst.: {dn: -0.03237795, up: 0.03237795}, stat: {dn: -0.00240589, up: 0.00240589}}, 12: {full syst.: {dn: -0.02917497, up: 0.02917497}, stat: {dn: -0.00223655, up: 0.00223655}}, 13: {full syst.: {dn: -0.02647364, up: 0.02647364}, stat: {dn: -0.002081367, up: 0.002081367}}, 14: {full syst.: {dn: -0.02412178, up: 0.02412178}, stat: {dn: -0.001945018, up: 0.001945018}}, 15: {full syst.: {dn: -0.02159183, up: 0.02159183}, stat: {dn: -0.001779501, up: 0.001779501}}, 16: {full syst.: {dn: -0.01845457, up: 0.01845457}, stat: {dn: -0.001080289, up: 0.001080289}}, 17: {full syst.: {dn: -0.01490297, up: 0.01490297}, stat: {dn: -0.0009048254, up: 0.0009048254}}, 18: {full syst.: {dn: -0.01224368, up: 0.01224368}, stat: {dn: -0.0007752361, up: 0.0007752361}}, 19: {full syst.: {dn: -0.01011457, up: 0.01011457}, stat: {dn: -0.0006931085, up: 0.0006931085}}, 20: {full syst.: {dn: -0.008371917, up: 0.008371917}, stat: {dn: -0.0006132882, up: 0.0006132882}}, 21: {full syst.: {dn: -0.006967478, up: 0.006967478}, stat: {dn: -0.000568669, up: 0.000568669}}, 22: {full syst.: {dn: -0.005800662, up: 0.005800662}, stat: {dn: -0.0005401206, up: 0.0005401206}}, 23: {full syst.: {dn: -0.00497443, up: 0.00497443}, stat: {dn: -0.0004904198, up: 0.0004904198}}, 24: {full syst.: {dn: -0.004240538, up: 0.004240538}, stat: {dn: -0.000489171, up: 0.000489171}}, 25: {full syst.: {dn: -0.003634469, up: 0.003634469}, stat: {dn: -0.0004522268, up: 0.0004522268}}, 26: {full syst.: {dn: -0.002259999, up: 0.002259999}, stat: {dn: -0.0002251535, up: 0.0002251535}}, 27: {full syst.: {dn: -0.001535941, up: 0.001535941}, stat: {dn: -0.0002190997, up: 0.0002190997}}, 28: {full syst.: {dn: -0.001014167, up: 0.001014167}, stat: {dn: -0.000185408, up: 0.000185408}}, 29: {full syst.: {dn: -0.0008910782, up: 0.0008910782}, stat: {dn: -0.0001138592, up: 0.0001138592}}, 30: {full syst.: {dn: -0.0007743537, up: 0.0007743537}, stat: {dn: -8.926715e-05, up: 8.926715e-05}}, 31: {full syst.: {dn: -0.0006602681, up: 0.0006602681}, stat: {dn: -6.887612e-05, up: 6.887612e-05}}, 32: {full syst.: {dn: -0.0005119016, up: 0.0005119016}, stat: {dn: -5.32781e-05, up: 5.32781e-05}}, 33: {full syst.: {dn: -0.0003711636, up: 0.0003711636}, stat: {dn: -4.231151e-05, up: 4.231151e-05}}, 34: {full syst.: {dn: -0.0002669472, up: 0.0002669472}, stat: {dn: -3.532192e-05, up: 3.532192e-05}}, 35: {full syst.: {dn: -0.0001873159, up: 0.0001873159}, stat: {dn: -2.815792e-05, up: 2.815792e-05}}, 36: {full syst.: {dn: -0.000113383, up: 0.000113383}, stat: {dn: -1.655167e-05, up: 1.655167e-05}}, 37: {full syst.: {dn: -5.937132e-05, up: 5.937132e-05}, stat: {dn: -1.078957e-05, up: 1.078957e-05}}, 38: {full syst.: {dn: -2.844165e-05, up: 2.844165e-05}, stat: {dn: -5.498611e-06, up: 5.498611e-06}}, 39: {full syst.: {dn: -1.115979e-05, up: 1.115979e-05}, stat: {dn: -2.19819e-06, up: 2.19819e-06}}, 40: {full syst.: {dn: -4.009366e-06, up: 4.009366e-06}, stat: {dn: -9.334175e-07, up: 9.334175e-07}}, 41: {full syst.: {dn: -1.040531e-06, up: 1.040531e-06}, stat: {dn: -3.143364e-07, up: 3.143364e-07}}, 42: {full syst.: {dn: -2.009632e-07, up: 2.009632e-07}, stat: {dn: -9.649072e-08, up: 9.649072e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d28-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t28 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 6.612408e-01 4.566201e-02 4.566201e-02 +2.750000e-01 2.500000e-02 2.500000e-02 7.204429e-01 4.434257e-02 4.434257e-02 +3.250000e-01 2.500000e-02 2.500000e-02 7.789141e-01 3.188416e-02 3.188416e-02 +3.750000e-01 2.500000e-02 2.500000e-02 7.771678e-01 2.965269e-02 2.965269e-02 +4.250000e-01 2.500000e-02 2.500000e-02 7.606880e-01 2.986776e-02 2.986776e-02 +4.750000e-01 2.500000e-02 2.500000e-02 7.356795e-01 2.805388e-02 2.805388e-02 +5.250000e-01 2.500000e-02 2.500000e-02 7.040571e-01 3.828780e-02 3.828780e-02 +5.750000e-01 2.500000e-02 2.500000e-02 6.458099e-01 3.886714e-02 3.886714e-02 +6.250000e-01 2.500000e-02 2.500000e-02 5.941638e-01 4.279683e-02 4.279683e-02 +6.750000e-01 2.500000e-02 2.500000e-02 5.455071e-01 3.935273e-02 3.935273e-02 +7.250000e-01 2.500000e-02 2.500000e-02 4.947898e-01 3.565221e-02 3.565221e-02 +7.750000e-01 2.500000e-02 2.500000e-02 4.499860e-01 3.246721e-02 3.246721e-02 +8.250000e-01 2.500000e-02 2.500000e-02 4.057481e-01 2.926057e-02 2.926057e-02 +8.750000e-01 2.500000e-02 2.500000e-02 3.678636e-01 2.655533e-02 2.655533e-02 +9.250000e-01 2.500000e-02 2.500000e-02 3.346544e-01 2.420007e-02 2.420007e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.989783e-01 2.166504e-02 2.166504e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.543790e-01 1.848616e-02 1.848616e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.039815e-01 1.493041e-02 1.493041e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.658742e-01 1.226820e-02 1.226820e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.356975e-01 1.013829e-02 1.013829e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.106095e-01 8.394350e-03 8.394350e-03 +1.550000e+00 5.000000e-02 5.000000e-02 9.039048e-02 6.990646e-03 6.990646e-03 +1.650000e+00 5.000000e-02 5.000000e-02 7.366967e-02 5.825754e-03 5.825754e-03 +1.750000e+00 5.000000e-02 5.000000e-02 6.109998e-02 4.998546e-03 4.998546e-03 +1.850000e+00 5.000000e-02 5.000000e-02 5.074369e-02 4.268659e-03 4.268659e-03 +1.950000e+00 5.000000e-02 5.000000e-02 4.177516e-02 3.662496e-03 3.662496e-03 +2.100000e+00 1.000000e-01 1.000000e-01 3.098208e-02 2.271187e-03 2.271187e-03 +2.300000e+00 1.000000e-01 1.000000e-01 2.190603e-02 1.551489e-03 1.551489e-03 +2.500000e+00 1.000000e-01 1.000000e-01 1.566503e-02 1.030976e-03 1.030976e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.172822e-02 8.983230e-04 8.983230e-04 +2.900000e+00 1.000000e-01 1.000000e-01 9.014624e-03 7.794821e-04 7.794821e-04 +3.100000e+00 1.000000e-01 1.000000e-01 6.960692e-03 6.638508e-04 6.638508e-04 +3.300000e+00 1.000000e-01 1.000000e-01 5.323889e-03 5.146667e-04 5.146667e-04 +3.500000e+00 1.000000e-01 1.000000e-01 4.082901e-03 3.735675e-04 3.735675e-04 +3.700000e+00 1.000000e-01 1.000000e-01 3.226772e-03 2.692739e-04 2.692739e-04 +3.900000e+00 1.000000e-01 1.000000e-01 2.497841e-03 1.894205e-04 1.894205e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.699864e-03 1.145847e-04 1.145847e-04 +4.750000e+00 2.500000e-01 2.500000e-01 9.972174e-04 6.034375e-05 6.034375e-05 +5.500000e+00 5.000000e-01 5.000000e-01 5.002649e-04 2.896830e-05 2.896830e-05 +7.000000e+00 1.000000e+00 1.000000e+00 1.620101e-04 1.137422e-05 1.137422e-05 +9.000000e+00 1.000000e+00 1.000000e+00 4.485488e-05 4.116586e-06 4.116586e-06 +1.250000e+01 2.500000e+00 2.500000e+00 9.620147e-06 1.086974e-06 1.086974e-06 +1.750000e+01 2.500000e+00 2.500000e+00 1.568354e-06 2.229275e-07 2.229275e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d29-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03831226, up: 0.03831226}, stat: {dn: -0.001598519, up: 0.001598519}}, 1: {full syst.: {dn: -0.03730332, up: 0.03730332}, stat: {dn: -0.001353593, up: 0.001353593}}, 2: {full syst.: {dn: -0.02927842, up: 0.02927842}, stat: {dn: -0.001012695, up: 0.001012695}}, 3: {full syst.: {dn: -0.02722309, up: 0.02722309}, stat: {dn: -0.001003502, up: 0.001003502}}, 4: {full syst.: {dn: -0.02704104, up: 0.02704104}, stat: {dn: -0.001007505, up: 0.001007505}}, 5: {full syst.: {dn: -0.0250536, up: 0.0250536}, stat: {dn: -0.001453551, up: 0.001453551}}, 6: {full syst.: {dn: -0.03096311, up: 0.03096311}, stat: {dn: -0.00122874, up: 0.00122874}}, 7: {full syst.: {dn: -0.03057841, up: 0.03057841}, stat: {dn: -0.001372294, up: 0.001372294}}, 8: {full syst.: {dn: -0.03219145, up: 0.03219145}, stat: {dn: -0.001812773, up: 0.001812773}}, 9: {full syst.: {dn: -0.02938767, up: 0.02938767}, stat: {dn: -0.001647867, up: 0.001647867}}, 10: {full syst.: {dn: -0.02646495, up: 0.02646495}, stat: {dn: -0.001515787, up: 0.001515787}}, 11: {full syst.: {dn: -0.02363802, up: 0.02363802}, stat: {dn: -0.001393232, up: 0.001393232}}, 12: {full syst.: {dn: -0.02102093, up: 0.02102093}, stat: {dn: -0.001286919, up: 0.001286919}}, 13: {full syst.: {dn: -0.01898786, up: 0.01898786}, stat: {dn: -0.001199673, up: 0.001199673}}, 14: {full syst.: {dn: -0.01684169, up: 0.01684169}, stat: {dn: -0.001111918, up: 0.001111918}}, 15: {full syst.: {dn: -0.01518323, up: 0.01518323}, stat: {dn: -0.001039446, up: 0.001039446}}, 16: {full syst.: {dn: -0.01264067, up: 0.01264067}, stat: {dn: -0.000618659, up: 0.000618659}}, 17: {full syst.: {dn: -0.01007659, up: 0.01007659}, stat: {dn: -0.00052214, up: 0.00052214}}, 18: {full syst.: {dn: -0.008062629, up: 0.008062629}, stat: {dn: -0.0004407028, up: 0.0004407028}}, 19: {full syst.: {dn: -0.006528548, up: 0.006528548}, stat: {dn: -0.0003876578, up: 0.0003876578}}, 20: {full syst.: {dn: -0.005306138, up: 0.005306138}, stat: {dn: -0.0003535145, up: 0.0003535145}}, 21: {full syst.: {dn: -0.004409979, up: 0.004409979}, stat: {dn: -0.0003172275, up: 0.0003172275}}, 22: {full syst.: {dn: -0.003657832, up: 0.003657832}, stat: {dn: -0.0002914328, up: 0.0002914328}}, 23: {full syst.: {dn: -0.003030625, up: 0.003030625}, stat: {dn: -0.0002792383, up: 0.0002792383}}, 24: {full syst.: {dn: -0.002577102, up: 0.002577102}, stat: {dn: -0.0002578656, up: 0.0002578656}}, 25: {full syst.: {dn: -0.002206386, up: 0.002206386}, stat: {dn: -0.0002395648, up: 0.0002395648}}, 26: {full syst.: {dn: -0.001387641, up: 0.001387641}, stat: {dn: -0.000124447, up: 0.000124447}}, 27: {full syst.: {dn: -0.0009374901, up: 0.0009374901}, stat: {dn: -0.0001194785, up: 0.0001194785}}, 28: {full syst.: {dn: -0.0006354217, up: 0.0006354217}, stat: {dn: -9.042385e-05, up: 9.042385e-05}}, 29: {full syst.: {dn: -0.0005223127, up: 0.0005223127}, stat: {dn: -5.95554e-05, up: 5.95554e-05}}, 30: {full syst.: {dn: -0.0004395181, up: 0.0004395181}, stat: {dn: -4.65914e-05, up: 4.65914e-05}}, 31: {full syst.: {dn: -0.0003690849, up: 0.0003690849}, stat: {dn: -3.582648e-05, up: 3.582648e-05}}, 32: {full syst.: {dn: -0.0002881144, up: 0.0002881144}, stat: {dn: -2.789418e-05, up: 2.789418e-05}}, 33: {full syst.: {dn: -0.0002094959, up: 0.0002094959}, stat: {dn: -2.21917e-05, up: 2.21917e-05}}, 34: {full syst.: {dn: -0.0001496834, up: 0.0001496834}, stat: {dn: -1.834925e-05, up: 1.834925e-05}}, 35: {full syst.: {dn: -0.0001059806, up: 0.0001059806}, stat: {dn: -1.46757e-05, up: 1.46757e-05}}, 36: {full syst.: {dn: -6.370562e-05, up: 6.370562e-05}, stat: {dn: -8.496753e-06, up: 8.496753e-06}}, 37: {full syst.: {dn: -3.356273e-05, up: 3.356273e-05}, stat: {dn: -5.530027e-06, up: 5.530027e-06}}, 38: {full syst.: {dn: -1.585438e-05, up: 1.585438e-05}, stat: {dn: -2.78921e-06, up: 2.78921e-06}}, 39: {full syst.: {dn: -6.007525e-06, up: 6.007525e-06}, stat: {dn: -1.109843e-06, up: 1.109843e-06}}, 40: {full syst.: {dn: -2.088696e-06, up: 2.088696e-06}, stat: {dn: -4.696267e-07, up: 4.696267e-07}}, 41: {full syst.: {dn: -5.187198e-07, up: 5.187198e-07}, stat: {dn: -1.57557e-07, up: 1.57557e-07}}, 42: {full syst.: {dn: -8.908241e-08, up: 8.908241e-08}, stat: {dn: -4.391358e-08, up: 4.391358e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d29-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t29 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 5.164795e-01 3.834559e-02 3.834559e-02 +2.750000e-01 2.500000e-02 2.500000e-02 5.584970e-01 3.732787e-02 3.732787e-02 +3.250000e-01 2.500000e-02 2.500000e-02 6.029905e-01 2.929593e-02 2.929593e-02 +3.750000e-01 2.500000e-02 2.500000e-02 5.929838e-01 2.724158e-02 2.724158e-02 +4.250000e-01 2.500000e-02 2.500000e-02 5.746504e-01 2.705980e-02 2.705980e-02 +4.750000e-01 2.500000e-02 2.500000e-02 5.495086e-01 2.509573e-02 2.509573e-02 +5.250000e-01 2.500000e-02 2.500000e-02 5.207313e-01 3.098748e-02 3.098748e-02 +5.750000e-01 2.500000e-02 2.500000e-02 4.740852e-01 3.060919e-02 3.060919e-02 +6.250000e-01 2.500000e-02 2.500000e-02 4.268604e-01 3.224245e-02 3.224245e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.892081e-01 2.943383e-02 2.943383e-02 +7.250000e-01 2.500000e-02 2.500000e-02 3.514854e-01 2.650832e-02 2.650832e-02 +7.750000e-01 2.500000e-02 2.500000e-02 3.143852e-01 2.367904e-02 2.367904e-02 +8.250000e-01 2.500000e-02 2.500000e-02 2.808967e-01 2.106029e-02 2.106029e-02 +8.750000e-01 2.500000e-02 2.500000e-02 2.533714e-01 1.902572e-02 1.902572e-02 +9.250000e-01 2.500000e-02 2.500000e-02 2.242401e-01 1.687836e-02 1.687836e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.015986e-01 1.521877e-02 1.521877e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.673378e-01 1.265580e-02 1.265580e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.327276e-01 1.009011e-02 1.009011e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.054485e-01 8.074664e-03 8.074664e-03 +1.350000e+00 5.000000e-02 5.000000e-02 8.459874e-02 6.540047e-03 6.540047e-03 +1.450000e+00 5.000000e-02 5.000000e-02 6.799542e-02 5.317901e-03 5.317901e-03 +1.550000e+00 5.000000e-02 5.000000e-02 5.547295e-02 4.421374e-03 4.421374e-03 +1.650000e+00 5.000000e-02 5.000000e-02 4.502052e-02 3.669423e-03 3.669423e-03 +1.750000e+00 5.000000e-02 5.000000e-02 3.644049e-02 3.043462e-03 3.043462e-03 +1.850000e+00 5.000000e-02 5.000000e-02 2.994780e-02 2.589971e-03 2.589971e-03 +1.950000e+00 5.000000e-02 5.000000e-02 2.470593e-02 2.219354e-03 2.219354e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.835490e-02 1.393210e-03 1.393210e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.280593e-02 9.450729e-04 9.450729e-04 +2.500000e+00 1.000000e-01 1.000000e-01 9.273993e-03 6.418233e-04 6.418233e-04 +2.700000e+00 1.000000e-01 1.000000e-01 6.657545e-03 5.256971e-04 5.256971e-04 +2.900000e+00 1.000000e-01 1.000000e-01 5.055910e-03 4.419807e-04 4.419807e-04 +3.100000e+00 1.000000e-01 1.000000e-01 3.861147e-03 3.708196e-04 3.708196e-04 +3.300000e+00 1.000000e-01 1.000000e-01 2.970908e-03 2.894616e-04 2.894616e-04 +3.500000e+00 1.000000e-01 1.000000e-01 2.276569e-03 2.106680e-04 2.106680e-04 +3.700000e+00 1.000000e-01 1.000000e-01 1.787376e-03 1.508039e-04 1.508039e-04 +3.900000e+00 1.000000e-01 1.000000e-01 1.385954e-03 1.069919e-04 1.069919e-04 +4.250000e+00 2.500000e-01 2.500000e-01 9.261131e-04 6.426975e-05 6.426975e-05 +4.750000e+00 2.500000e-01 2.500000e-01 5.361317e-04 3.401526e-05 3.401526e-05 +5.500000e+00 5.000000e-01 5.000000e-01 2.632182e-04 1.609786e-05 1.609786e-05 +7.000000e+00 1.000000e+00 1.000000e+00 8.290632e-05 6.109182e-06 6.109182e-06 +9.000000e+00 1.000000e+00 1.000000e+00 2.234844e-05 2.140841e-06 2.140841e-06 +1.250000e+01 2.500000e+00 2.500000e+00 4.710244e-06 5.421203e-07 5.421203e-07 +1.750000e+01 2.500000e+00 2.500000e+00 6.936089e-07 9.931807e-08 9.931807e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d30-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03198667, up: 0.03198667}, stat: {dn: -0.001051975, up: 0.001051975}}, 1: {full syst.: {dn: -0.03144214, up: 0.03144214}, stat: {dn: -0.0008842462, up: 0.0008842462}}, 2: {full syst.: {dn: -0.02813734, up: 0.02813734}, stat: {dn: -0.000643036, up: 0.000643036}}, 3: {full syst.: {dn: -0.02628904, up: 0.02628904}, stat: {dn: -0.0006169748, up: 0.0006169748}}, 4: {full syst.: {dn: -0.02493168, up: 0.02493168}, stat: {dn: -0.0005958283, up: 0.0005958283}}, 5: {full syst.: {dn: -0.02268738, up: 0.02268738}, stat: {dn: -0.0009105915, up: 0.0009105915}}, 6: {full syst.: {dn: -0.02387088, up: 0.02387088}, stat: {dn: -0.0007453907, up: 0.0007453907}}, 7: {full syst.: {dn: -0.02232119, up: 0.02232119}, stat: {dn: -0.0008216691, up: 0.0008216691}}, 8: {full syst.: {dn: -0.02153549, up: 0.02153549}, stat: {dn: -0.00107862, up: 0.00107862}}, 9: {full syst.: {dn: -0.01903719, up: 0.01903719}, stat: {dn: -0.0009733836, up: 0.0009733836}}, 10: {full syst.: {dn: -0.01656528, up: 0.01656528}, stat: {dn: -0.000878401, up: 0.000878401}}, 11: {full syst.: {dn: -0.01435308, up: 0.01435308}, stat: {dn: -0.0007970142, up: 0.0007970142}}, 12: {full syst.: {dn: -0.01248307, up: 0.01248307}, stat: {dn: -0.0007294173, up: 0.0007294173}}, 13: {full syst.: {dn: -0.01074893, up: 0.01074893}, stat: {dn: -0.0006663974, up: 0.0006663974}}, 14: {full syst.: {dn: -0.009377226, up: 0.009377226}, stat: {dn: -0.0006143034, up: 0.0006143034}}, 15: {full syst.: {dn: -0.008155135, up: 0.008155135}, stat: {dn: -0.0005643368, up: 0.0005643368}}, 16: {full syst.: {dn: -0.006502822, up: 0.006502822}, stat: {dn: -0.0003226167, up: 0.0003226167}}, 17: {full syst.: {dn: -0.004887058, up: 0.004887058}, stat: {dn: -0.0002654606, up: 0.0002654606}}, 18: {full syst.: {dn: -0.003734953, up: 0.003734953}, stat: {dn: -0.0002227418, up: 0.0002227418}}, 19: {full syst.: {dn: -0.002921563, up: 0.002921563}, stat: {dn: -0.0001947916, up: 0.0001947916}}, 20: {full syst.: {dn: -0.002267157, up: 0.002267157}, stat: {dn: -0.0001704946, up: 0.0001704946}}, 21: {full syst.: {dn: -0.001826195, up: 0.001826195}, stat: {dn: -0.0001553617, up: 0.0001553617}}, 22: {full syst.: {dn: -0.001467699, up: 0.001467699}, stat: {dn: -0.000134765, up: 0.000134765}}, 23: {full syst.: {dn: -0.001210877, up: 0.001210877}, stat: {dn: -0.0001271832, up: 0.0001271832}}, 24: {full syst.: {dn: -0.0009771363, up: 0.0009771363}, stat: {dn: -0.0001191626, up: 0.0001191626}}, 25: {full syst.: {dn: -0.0008441728, up: 0.0008441728}, stat: {dn: -0.0001165822, up: 0.0001165822}}, 26: {full syst.: {dn: -0.0005275795, up: 0.0005275795}, stat: {dn: -6.040725e-05, up: 6.040725e-05}}, 27: {full syst.: {dn: -0.0003467545, up: 0.0003467545}, stat: {dn: -5.667447e-05, up: 5.667447e-05}}, 28: {full syst.: {dn: -0.0002319248, up: 0.0002319248}, stat: {dn: -4.80088e-05, up: 4.80088e-05}}, 29: {full syst.: {dn: -0.0001818308, up: 0.0001818308}, stat: {dn: -2.570016e-05, up: 2.570016e-05}}, 30: {full syst.: {dn: -0.0001411444, up: 0.0001411444}, stat: {dn: -1.990014e-05, up: 1.990014e-05}}, 31: {full syst.: {dn: -0.0001126647, up: 0.0001126647}, stat: {dn: -1.512484e-05, up: 1.512484e-05}}, 32: {full syst.: {dn: -8.632752e-05, up: 8.632752e-05}, stat: {dn: -1.168148e-05, up: 1.168148e-05}}, 33: {full syst.: {dn: -6.302498e-05, up: 6.302498e-05}, stat: {dn: -9.273484e-06, up: 9.273484e-06}}, 34: {full syst.: {dn: -4.563578e-05, up: 4.563578e-05}, stat: {dn: -7.656203e-06, up: 7.656203e-06}}, 35: {full syst.: {dn: -3.147357e-05, up: 3.147357e-05}, stat: {dn: -5.983348e-06, up: 5.983348e-06}}, 36: {full syst.: {dn: -1.916702e-05, up: 1.916702e-05}, stat: {dn: -3.45804e-06, up: 3.45804e-06}}, 37: {full syst.: {dn: -1.024597e-05, up: 1.024597e-05}, stat: {dn: -2.24734e-06, up: 2.24734e-06}}, 38: {full syst.: {dn: -4.70236e-06, up: 4.70236e-06}, stat: {dn: -1.115055e-06, up: 1.115055e-06}}, 39: {full syst.: {dn: -1.615943e-06, up: 1.615943e-06}, stat: {dn: -4.36215e-07, up: 4.36215e-07}}, 40: {full syst.: {dn: -4.986066e-07, up: 4.986066e-07}, stat: {dn: -1.743699e-07, up: 1.743699e-07}}, 41: {full syst.: {dn: -1.241609e-07, up: 1.241609e-07}, stat: {dn: -5.926833e-08, up: 5.926833e-08}}, 42: {full syst.: {dn: -2.258876e-08, up: 2.258876e-08}, stat: {dn: -1.763088e-08, up: 1.763088e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d30-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t30 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 3.432662e-01 3.200396e-02 3.200396e-02 +2.750000e-01 2.500000e-02 2.500000e-02 3.684178e-01 3.145457e-02 3.145457e-02 +3.250000e-01 2.500000e-02 2.500000e-02 3.915829e-01 2.814469e-02 2.814469e-02 +3.750000e-01 2.500000e-02 2.500000e-02 3.808488e-01 2.629628e-02 2.629628e-02 +4.250000e-01 2.500000e-02 2.500000e-02 3.639699e-01 2.493880e-02 2.493880e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.411136e-01 2.270565e-02 2.270565e-02 +5.250000e-01 2.500000e-02 2.500000e-02 3.172339e-01 2.388251e-02 2.388251e-02 +5.750000e-01 2.500000e-02 2.500000e-02 2.838924e-01 2.233631e-02 2.233631e-02 +6.250000e-01 2.500000e-02 2.500000e-02 2.489106e-01 2.156248e-02 2.156248e-02 +6.750000e-01 2.500000e-02 2.500000e-02 2.220701e-01 1.906206e-02 1.906206e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.946931e-01 1.658855e-02 1.658855e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.702753e-01 1.437519e-02 1.437519e-02 +8.250000e-01 2.500000e-02 2.500000e-02 1.492209e-01 1.250436e-02 1.250436e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.297711e-01 1.076957e-02 1.076957e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.133154e-01 9.397326e-03 9.397326e-03 +9.750000e-01 2.500000e-02 2.500000e-02 9.898991e-02 8.174638e-03 8.174638e-03 +1.050000e+00 5.000000e-02 5.000000e-02 7.918533e-02 6.510820e-03 6.510820e-03 +1.150000e+00 5.000000e-02 5.000000e-02 5.957042e-02 4.894262e-03 4.894262e-03 +1.250000e+00 5.000000e-02 5.000000e-02 4.541196e-02 3.741589e-03 3.741589e-03 +1.350000e+00 5.000000e-02 5.000000e-02 3.533159e-02 2.928050e-03 2.928050e-03 +1.450000e+00 5.000000e-02 5.000000e-02 2.712736e-02 2.273559e-03 2.273559e-03 +1.550000e+00 5.000000e-02 5.000000e-02 2.151293e-02 1.832792e-03 1.832792e-03 +1.650000e+00 5.000000e-02 5.000000e-02 1.694170e-02 1.473873e-03 1.473873e-03 +1.750000e+00 5.000000e-02 5.000000e-02 1.366880e-02 1.217538e-03 1.217538e-03 +1.850000e+00 5.000000e-02 5.000000e-02 1.074911e-02 9.843755e-04 9.843755e-04 +1.950000e+00 5.000000e-02 5.000000e-02 9.077771e-03 8.521849e-04 8.521849e-04 +2.100000e+00 1.000000e-01 1.000000e-01 6.508341e-03 5.310265e-04 5.310265e-04 +2.300000e+00 1.000000e-01 1.000000e-01 4.364771e-03 3.513555e-04 3.513555e-04 +2.500000e+00 1.000000e-01 1.000000e-01 3.057174e-03 2.368416e-04 2.368416e-04 +2.700000e+00 1.000000e-01 1.000000e-01 2.186950e-03 1.836381e-04 1.836381e-04 +2.900000e+00 1.000000e-01 1.000000e-01 1.620745e-03 1.425404e-04 1.425404e-04 +3.100000e+00 1.000000e-01 1.000000e-01 1.205084e-03 1.136754e-04 1.136754e-04 +3.300000e+00 1.000000e-01 1.000000e-01 9.060072e-04 8.711428e-05 8.711428e-05 +3.500000e+00 1.000000e-01 1.000000e-01 6.896349e-04 6.370358e-05 6.370358e-05 +3.700000e+00 1.000000e-01 1.000000e-01 5.338323e-04 4.627355e-05 4.627355e-05 +3.900000e+00 1.000000e-01 1.000000e-01 3.995958e-04 3.203726e-05 3.203726e-05 +4.250000e+00 2.500000e-01 2.500000e-01 2.624522e-04 1.947647e-05 1.947647e-05 +4.750000e+00 2.500000e-01 2.500000e-01 1.496823e-04 1.048954e-05 1.048954e-05 +5.500000e+00 5.000000e-01 5.000000e-01 7.050756e-05 4.832757e-06 4.832757e-06 +7.000000e+00 1.000000e+00 1.000000e+00 2.086602e-05 1.673785e-06 1.673785e-06 +9.000000e+00 1.000000e+00 1.000000e+00 5.198453e-06 5.282172e-07 5.282172e-07 +1.250000e+01 2.500000e+00 2.500000e+00 1.090968e-06 1.375815e-07 1.375815e-07 +1.750000e+01 2.500000e+00 2.500000e+00 1.751315e-07 2.865484e-08 2.865484e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d31-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.06731308, up: 0.06731308}, stat: {dn: -0.007822955, up: 0.007822955}}, 1: {full syst.: {dn: -0.06746741, up: 0.06746741}, stat: {dn: -0.007124884, up: 0.007124884}}, 2: {full syst.: {dn: -0.06676838, up: 0.06676838}, stat: {dn: -0.006499637, up: 0.006499637}}, 3: {full syst.: {dn: -0.04068864, up: 0.04068864}, stat: {dn: -0.004951371, up: 0.004951371}}, 4: {full syst.: {dn: -0.04208866, up: 0.04208866}, stat: {dn: -0.008325636, up: 0.008325636}}, 5: {full syst.: {dn: -0.04033507, up: 0.04033507}, stat: {dn: -0.005332533, up: 0.005332533}}, 6: {full syst.: {dn: -0.0450188, up: 0.0450188}, stat: {dn: -0.009838563, up: 0.009838563}}, 7: {full syst.: {dn: -0.04322105, up: 0.04322105}, stat: {dn: -0.01070264, up: 0.01070264}}, 8: {full syst.: {dn: -0.04154937, up: 0.04154937}, stat: {dn: -0.007395923, up: 0.007395923}}, 9: {full syst.: {dn: -0.03953528, up: 0.03953528}, stat: {dn: -0.007959179, up: 0.007959179}}, 10: {full syst.: {dn: -0.04298784, up: 0.04298784}, stat: {dn: -0.005711382, up: 0.005711382}}, 11: {full syst.: {dn: -0.04665636, up: 0.04665636}, stat: {dn: -0.006199576, up: 0.006199576}}, 12: {full syst.: {dn: -0.04562205, up: 0.04562205}, stat: {dn: -0.009521679, up: 0.009521679}}, 13: {full syst.: {dn: -0.04287055, up: 0.04287055}, stat: {dn: -0.007238717, up: 0.007238717}}, 14: {full syst.: {dn: -0.03966286, up: 0.03966286}, stat: {dn: -0.006543486, up: 0.006543486}}, 15: {full syst.: {dn: -0.03666049, up: 0.03666049}, stat: {dn: -0.006005144, up: 0.006005144}}, 16: {full syst.: {dn: -0.03343627, up: 0.03343627}, stat: {dn: -0.006106795, up: 0.006106795}}, 17: {full syst.: {dn: -0.0293811, up: 0.0293811}, stat: {dn: -0.005808543, up: 0.005808543}}, 18: {full syst.: {dn: -0.02585194, up: 0.02585194}, stat: {dn: -0.004915481, up: 0.004915481}}, 19: {full syst.: {dn: -0.02299933, up: 0.02299933}, stat: {dn: -0.004590647, up: 0.004590647}}, 20: {full syst.: {dn: -0.02069098, up: 0.02069098}, stat: {dn: -0.005235566, up: 0.005235566}}, 21: {full syst.: {dn: -0.01810824, up: 0.01810824}, stat: {dn: -0.004551295, up: 0.004551295}}, 22: {full syst.: {dn: -0.0151788, up: 0.0151788}, stat: {dn: -0.004357505, up: 0.004357505}}, 23: {full syst.: {dn: -0.01325762, up: 0.01325762}, stat: {dn: -0.004155269, up: 0.004155269}}, 24: {full syst.: {dn: -0.0104569, up: 0.0104569}, stat: {dn: -0.001972708, up: 0.001972708}}, 25: {full syst.: {dn: -0.008019003, up: 0.008019003}, stat: {dn: -0.001663826, up: 0.001663826}}, 26: {full syst.: {dn: -0.006489737, up: 0.006489737}, stat: {dn: -0.001327643, up: 0.001327643}}, 27: {full syst.: {dn: -0.006562266, up: 0.006562266}, stat: {dn: -0.001470654, up: 0.001470654}}, 28: {full syst.: {dn: -0.007824294, up: 0.007824294}, stat: {dn: -0.0007350811, up: 0.0007350811}}, 29: {full syst.: {dn: -0.006564162, up: 0.006564162}, stat: {dn: -0.0005532078, up: 0.0005532078}}, 30: {full syst.: {dn: -0.005129674, up: 0.005129674}, stat: {dn: -0.0004312717, up: 0.0004312717}}, 31: {full syst.: {dn: -0.003679088, up: 0.003679088}, stat: {dn: -0.0003358565, up: 0.0003358565}}, 32: {full syst.: {dn: -0.002605901, up: 0.002605901}, stat: {dn: -0.0002750154, up: 0.0002750154}}, 33: {full syst.: {dn: -0.001833196, up: 0.001833196}, stat: {dn: -0.0002192383, up: 0.0002192383}}, 34: {full syst.: {dn: -0.001057953, up: 0.001057953}, stat: {dn: -0.0001264795, up: 0.0001264795}}, 35: {full syst.: {dn: -0.0005263323, up: 0.0005263323}, stat: {dn: -8.16969e-05, up: 8.16969e-05}}, 36: {full syst.: {dn: -0.0002107461, up: 0.0002107461}, stat: {dn: -4.070059e-05, up: 4.070059e-05}}, 37: {full syst.: {dn: -4.824027e-05, up: 4.824027e-05}, stat: {dn: -1.560564e-05, up: 1.560564e-05}}, 38: {full syst.: {dn: -1.047626e-05, up: 1.047626e-05}, stat: {dn: -6.392144e-06, up: 6.392144e-06}}, 39: {full syst.: {dn: -2.126636e-06, up: 2.126636e-06}, stat: {dn: -1.928634e-06, up: 1.928634e-06}}, 40: {full syst.: {dn: -3.821832e-07, up: 3.821832e-07}, stat: {dn: -5.758358e-07, up: 5.758358e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d31-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t31 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 5.644301e-01 6.776614e-02 6.776614e-02 +3.750000e-01 2.500000e-02 2.500000e-02 6.393672e-01 6.784258e-02 6.784258e-02 +4.250000e-01 2.500000e-02 2.500000e-02 6.793538e-01 6.708399e-02 6.708399e-02 +4.750000e-01 2.500000e-02 2.500000e-02 7.010115e-01 4.098880e-02 4.098880e-02 +5.250000e-01 2.500000e-02 2.500000e-02 7.413748e-01 4.290421e-02 4.290421e-02 +5.750000e-01 2.500000e-02 2.500000e-02 7.445011e-01 4.068604e-02 4.068604e-02 +6.250000e-01 2.500000e-02 2.500000e-02 7.580582e-01 4.608134e-02 4.608134e-02 +6.750000e-01 2.500000e-02 2.500000e-02 7.539534e-01 4.452646e-02 4.452646e-02 +7.250000e-01 2.500000e-02 2.500000e-02 7.510584e-01 4.220249e-02 4.220249e-02 +7.750000e-01 2.500000e-02 2.500000e-02 7.315075e-01 4.032849e-02 4.032849e-02 +8.250000e-01 2.500000e-02 2.500000e-02 7.259359e-01 4.336559e-02 4.336559e-02 +8.750000e-01 2.500000e-02 2.500000e-02 7.067753e-01 4.706645e-02 4.706645e-02 +9.250000e-01 2.500000e-02 2.500000e-02 6.989637e-01 4.660508e-02 4.660508e-02 +9.750000e-01 2.500000e-02 2.500000e-02 6.599181e-01 4.347739e-02 4.347739e-02 +1.050000e+00 5.000000e-02 5.000000e-02 6.093270e-01 4.019900e-02 4.019900e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.632078e-01 3.714907e-02 3.714907e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.121812e-01 3.398937e-02 3.398937e-02 +1.350000e+00 5.000000e-02 5.000000e-02 4.488908e-01 2.994976e-02 2.994976e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.921016e-01 2.631511e-02 2.631511e-02 +1.550000e+00 5.000000e-02 5.000000e-02 3.470063e-01 2.345300e-02 2.345300e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.102288e-01 2.134310e-02 2.134310e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.705257e-01 1.867144e-02 1.867144e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.265972e-01 1.579189e-02 1.579189e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.972791e-01 1.389355e-02 1.389355e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.619429e-01 1.064135e-02 1.064135e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.233008e-01 8.189794e-03 8.189794e-03 +2.500000e+00 1.000000e-01 1.000000e-01 9.370522e-02 6.624147e-03 6.624147e-03 +2.700000e+00 1.000000e-01 1.000000e-01 6.701245e-02 6.725040e-03 6.725040e-03 +2.900000e+00 1.000000e-01 1.000000e-01 4.862782e-02 7.858748e-03 7.858748e-03 +3.100000e+00 1.000000e-01 1.000000e-01 3.609278e-02 6.587432e-03 6.587432e-03 +3.300000e+00 1.000000e-01 1.000000e-01 2.735762e-02 5.147771e-03 5.147771e-03 +3.500000e+00 1.000000e-01 1.000000e-01 2.044354e-02 3.694386e-03 3.694386e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.584387e-02 2.620373e-03 2.620373e-03 +3.900000e+00 1.000000e-01 1.000000e-01 1.223420e-02 1.846259e-03 1.846259e-03 +4.250000e+00 2.500000e-01 2.500000e-01 7.936531e-03 1.065487e-03 1.065487e-03 +4.750000e+00 2.500000e-01 2.500000e-01 4.503374e-03 5.326350e-04 5.326350e-04 +5.500000e+00 5.000000e-01 5.000000e-01 2.073543e-03 2.146403e-04 2.146403e-04 +7.000000e+00 1.000000e+00 1.000000e+00 5.710477e-04 5.070167e-05 5.070167e-05 +9.000000e+00 1.000000e+00 1.000000e+00 1.313998e-04 1.227239e-05 1.227239e-05 +1.250000e+01 2.500000e+00 2.500000e+00 2.169203e-05 2.870925e-06 2.870925e-06 +1.750000e+01 2.500000e+00 2.500000e+00 3.078644e-06 6.911229e-07 6.911229e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d32-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.05910681, up: 0.05910681}, stat: {dn: -0.003807036, up: 0.003807036}}, 1: {full syst.: {dn: -0.05726971, up: 0.05726971}, stat: {dn: -0.003414095, up: 0.003414095}}, 2: {full syst.: {dn: -0.05670861, up: 0.05670861}, stat: {dn: -0.003114823, up: 0.003114823}}, 3: {full syst.: {dn: -0.0339389, up: 0.0339389}, stat: {dn: -0.00237035, up: 0.00237035}}, 4: {full syst.: {dn: -0.03369333, up: 0.03369333}, stat: {dn: -0.002583679, up: 0.002583679}}, 5: {full syst.: {dn: -0.0326953, up: 0.0326953}, stat: {dn: -0.002562788, up: 0.002562788}}, 6: {full syst.: {dn: -0.03595169, up: 0.03595169}, stat: {dn: -0.00354131, up: 0.00354131}}, 7: {full syst.: {dn: -0.03413679, up: 0.03413679}, stat: {dn: -0.00336967, up: 0.00336967}}, 8: {full syst.: {dn: -0.03192201, up: 0.03192201}, stat: {dn: -0.003111134, up: 0.003111134}}, 9: {full syst.: {dn: -0.03071805, up: 0.03071805}, stat: {dn: -0.002689766, up: 0.002689766}}, 10: {full syst.: {dn: -0.03391957, up: 0.03391957}, stat: {dn: -0.00320075, up: 0.00320075}}, 11: {full syst.: {dn: -0.03720528, up: 0.03720528}, stat: {dn: -0.003159405, up: 0.003159405}}, 12: {full syst.: {dn: -0.03505398, up: 0.03505398}, stat: {dn: -0.003206318, up: 0.003206318}}, 13: {full syst.: {dn: -0.03321163, up: 0.03321163}, stat: {dn: -0.003630921, up: 0.003630921}}, 14: {full syst.: {dn: -0.03053396, up: 0.03053396}, stat: {dn: -0.002713159, up: 0.002713159}}, 15: {full syst.: {dn: -0.02701987, up: 0.02701987}, stat: {dn: -0.002460291, up: 0.002460291}}, 16: {full syst.: {dn: -0.02432792, up: 0.02432792}, stat: {dn: -0.002347835, up: 0.002347835}}, 17: {full syst.: {dn: -0.02155475, up: 0.02155475}, stat: {dn: -0.002335664, up: 0.002335664}}, 18: {full syst.: {dn: -0.0187243, up: 0.0187243}, stat: {dn: -0.002259804, up: 0.002259804}}, 19: {full syst.: {dn: -0.01673824, up: 0.01673824}, stat: {dn: -0.002075624, up: 0.002075624}}, 20: {full syst.: {dn: -0.01420106, up: 0.01420106}, stat: {dn: -0.002055353, up: 0.002055353}}, 21: {full syst.: {dn: -0.01255162, up: 0.01255162}, stat: {dn: -0.001946676, up: 0.001946676}}, 22: {full syst.: {dn: -0.0107091, up: 0.0107091}, stat: {dn: -0.001926518, up: 0.001926518}}, 23: {full syst.: {dn: -0.009104026, up: 0.009104026}, stat: {dn: -0.001824499, up: 0.001824499}}, 24: {full syst.: {dn: -0.007027397, up: 0.007027397}, stat: {dn: -0.0009430752, up: 0.0009430752}}, 25: {full syst.: {dn: -0.005314001, up: 0.005314001}, stat: {dn: -0.0007136747, up: 0.0007136747}}, 26: {full syst.: {dn: -0.00418348, up: 0.00418348}, stat: {dn: -0.0005767283, up: 0.0005767283}}, 27: {full syst.: {dn: -0.004416268, up: 0.004416268}, stat: {dn: -0.0006398597, up: 0.0006398597}}, 28: {full syst.: {dn: -0.005181701, up: 0.005181701}, stat: {dn: -0.0003052691, up: 0.0003052691}}, 29: {full syst.: {dn: -0.004314987, up: 0.004314987}, stat: {dn: -0.0002283442, up: 0.0002283442}}, 30: {full syst.: {dn: -0.003346079, up: 0.003346079}, stat: {dn: -0.0001768743, up: 0.0001768743}}, 31: {full syst.: {dn: -0.002382619, up: 0.002382619}, stat: {dn: -0.0001377829, up: 0.0001377829}}, 32: {full syst.: {dn: -0.001670372, up: 0.001670372}, stat: {dn: -0.0001124716, up: 0.0001124716}}, 33: {full syst.: {dn: -0.001168508, up: 0.001168508}, stat: {dn: -8.971509e-05, up: 8.971509e-05}}, 34: {full syst.: {dn: -0.000674116, up: 0.000674116}, stat: {dn: -5.188468e-05, up: 5.188468e-05}}, 35: {full syst.: {dn: -0.0003286531, up: 0.0003286531}, stat: {dn: -3.292481e-05, up: 3.292481e-05}}, 36: {full syst.: {dn: -0.0001296214, up: 0.0001296214}, stat: {dn: -1.624621e-05, up: 1.624621e-05}}, 37: {full syst.: {dn: -2.943777e-05, up: 2.943777e-05}, stat: {dn: -6.216185e-06, up: 6.216185e-06}}, 38: {full syst.: {dn: -6.208462e-06, up: 6.208462e-06}, stat: {dn: -2.441648e-06, up: 2.441648e-06}}, 39: {full syst.: {dn: -1.429201e-06, up: 1.429201e-06}, stat: {dn: -8.128756e-07, up: 8.128756e-07}}, 40: {full syst.: {dn: -2.76872e-07, up: 2.76872e-07}, stat: {dn: -2.456727e-07, up: 2.456727e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d32-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t32 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 5.059863e-01 5.922929e-02 5.922929e-02 +3.750000e-01 2.500000e-02 2.500000e-02 5.569610e-01 5.737138e-02 5.737138e-02 +4.250000e-01 2.500000e-02 2.500000e-02 5.939847e-01 5.679409e-02 5.679409e-02 +4.750000e-01 2.500000e-02 2.500000e-02 6.108222e-01 3.402157e-02 3.402157e-02 +5.250000e-01 2.500000e-02 2.500000e-02 6.293500e-01 3.379225e-02 3.379225e-02 +5.750000e-01 2.500000e-02 2.500000e-02 6.398041e-01 3.279559e-02 3.279559e-02 +6.250000e-01 2.500000e-02 2.500000e-02 6.421132e-01 3.612568e-02 3.612568e-02 +6.750000e-01 2.500000e-02 2.500000e-02 6.310710e-01 3.430270e-02 3.430270e-02 +7.250000e-01 2.500000e-02 2.500000e-02 6.155385e-01 3.207326e-02 3.207326e-02 +7.750000e-01 2.500000e-02 2.500000e-02 6.028989e-01 3.083559e-02 3.083559e-02 +8.250000e-01 2.500000e-02 2.500000e-02 5.968572e-01 3.407025e-02 3.407025e-02 +8.750000e-01 2.500000e-02 2.500000e-02 5.882611e-01 3.733918e-02 3.733918e-02 +9.250000e-01 2.500000e-02 2.500000e-02 5.601105e-01 3.520031e-02 3.520031e-02 +9.750000e-01 2.500000e-02 2.500000e-02 5.321614e-01 3.340952e-02 3.340952e-02 +1.050000e+00 5.000000e-02 5.000000e-02 4.890228e-01 3.065426e-02 3.065426e-02 +1.150000e+00 5.000000e-02 5.000000e-02 4.326045e-01 2.713165e-02 2.713165e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.881466e-01 2.444095e-02 2.444095e-02 +1.350000e+00 5.000000e-02 5.000000e-02 3.432874e-01 2.168093e-02 2.168093e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.962683e-01 1.886017e-02 1.886017e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.632531e-01 1.686644e-02 1.686644e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.222520e-01 1.434903e-02 1.434903e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.957102e-01 1.270168e-02 1.270168e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.667202e-01 1.088101e-02 1.088101e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.413864e-01 9.285046e-03 9.285046e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.138542e-01 7.090395e-03 7.090395e-03 +2.300000e+00 1.000000e-01 1.000000e-01 8.477384e-02 5.361710e-03 5.361710e-03 +2.500000e+00 1.000000e-01 1.000000e-01 6.286974e-02 4.223046e-03 4.223046e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.518275e-02 4.462381e-03 4.462381e-03 +2.900000e+00 1.000000e-01 1.000000e-01 3.229544e-02 5.190685e-03 5.190685e-03 +3.100000e+00 1.000000e-01 1.000000e-01 2.360215e-02 4.321025e-03 4.321025e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.775888e-02 3.350751e-03 3.350751e-03 +3.500000e+00 1.000000e-01 1.000000e-01 1.321414e-02 2.386600e-03 2.386600e-03 +3.700000e+00 1.000000e-01 1.000000e-01 1.011677e-02 1.674154e-03 1.674154e-03 +3.900000e+00 1.000000e-01 1.000000e-01 7.720614e-03 1.171947e-03 1.171947e-03 +4.250000e+00 2.500000e-01 2.500000e-01 4.958285e-03 6.761098e-04 6.761098e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.728593e-03 3.302982e-04 3.302982e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.229160e-03 1.306355e-04 1.306355e-04 +7.000000e+00 1.000000e+00 1.000000e+00 3.384201e-04 3.008693e-05 3.008693e-05 +9.000000e+00 1.000000e+00 1.000000e+00 7.715122e-05 6.671330e-06 6.671330e-06 +1.250000e+01 2.500000e+00 2.500000e+00 1.468975e-05 1.644197e-06 1.644197e-06 +1.750000e+01 2.500000e+00 2.500000e+00 2.284627e-06 3.701529e-07 3.701529e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d33-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.05185443, up: 0.05185443}, stat: {dn: -0.003239902, up: 0.003239902}}, 1: {full syst.: {dn: -0.04925639, up: 0.04925639}, stat: {dn: -0.002885886, up: 0.002885886}}, 2: {full syst.: {dn: -0.04807742, up: 0.04807742}, stat: {dn: -0.00261822, up: 0.00261822}}, 3: {full syst.: {dn: -0.0295944, up: 0.0295944}, stat: {dn: -0.001766499, up: 0.001766499}}, 4: {full syst.: {dn: -0.02917821, up: 0.02917821}, stat: {dn: -0.001881303, up: 0.001881303}}, 5: {full syst.: {dn: -0.0279964, up: 0.0279964}, stat: {dn: -0.001837619, up: 0.001837619}}, 6: {full syst.: {dn: -0.03092935, up: 0.03092935}, stat: {dn: -0.002581922, up: 0.002581922}}, 7: {full syst.: {dn: -0.02912897, up: 0.02912897}, stat: {dn: -0.002389581, up: 0.002389581}}, 8: {full syst.: {dn: -0.02730595, up: 0.02730595}, stat: {dn: -0.002258233, up: 0.002258233}}, 9: {full syst.: {dn: -0.0256957, up: 0.0256957}, stat: {dn: -0.002159296, up: 0.002159296}}, 10: {full syst.: {dn: -0.02829963, up: 0.02829963}, stat: {dn: -0.002512224, up: 0.002512224}}, 11: {full syst.: {dn: -0.03071684, up: 0.03071684}, stat: {dn: -0.002378735, up: 0.002378735}}, 12: {full syst.: {dn: -0.02897411, up: 0.02897411}, stat: {dn: -0.002593262, up: 0.002593262}}, 13: {full syst.: {dn: -0.02714096, up: 0.02714096}, stat: {dn: -0.00277377, up: 0.00277377}}, 14: {full syst.: {dn: -0.02472261, up: 0.02472261}, stat: {dn: -0.001911154, up: 0.001911154}}, 15: {full syst.: {dn: -0.02203647, up: 0.02203647}, stat: {dn: -0.001871824, up: 0.001871824}}, 16: {full syst.: {dn: -0.01942014, up: 0.01942014}, stat: {dn: -0.001800615, up: 0.001800615}}, 17: {full syst.: {dn: -0.0169828, up: 0.0169828}, stat: {dn: -0.001749531, up: 0.001749531}}, 18: {full syst.: {dn: -0.01471483, up: 0.01471483}, stat: {dn: -0.001658388, up: 0.001658388}}, 19: {full syst.: {dn: -0.01274826, up: 0.01274826}, stat: {dn: -0.001478362, up: 0.001478362}}, 20: {full syst.: {dn: -0.0108833, up: 0.0108833}, stat: {dn: -0.001422362, up: 0.001422362}}, 21: {full syst.: {dn: -0.009319212, up: 0.009319212}, stat: {dn: -0.001407491, up: 0.001407491}}, 22: {full syst.: {dn: -0.007874138, up: 0.007874138}, stat: {dn: -0.001363346, up: 0.001363346}}, 23: {full syst.: {dn: -0.006810067, up: 0.006810067}, stat: {dn: -0.001304137, up: 0.001304137}}, 24: {full syst.: {dn: -0.005115373, up: 0.005115373}, stat: {dn: -0.0007299589, up: 0.0007299589}}, 25: {full syst.: {dn: -0.003844684, up: 0.003844684}, stat: {dn: -0.0005641694, up: 0.0005641694}}, 26: {full syst.: {dn: -0.002991699, up: 0.002991699}, stat: {dn: -0.0004285459, up: 0.0004285459}}, 27: {full syst.: {dn: -0.003156614, up: 0.003156614}, stat: {dn: -0.0004828344, up: 0.0004828344}}, 28: {full syst.: {dn: -0.003680735, up: 0.003680735}, stat: {dn: -0.0002297858, up: 0.0002297858}}, 29: {full syst.: {dn: -0.003068281, up: 0.003068281}, stat: {dn: -0.0001715586, up: 0.0001715586}}, 30: {full syst.: {dn: -0.002359865, up: 0.002359865}, stat: {dn: -0.0001315962, up: 0.0001315962}}, 31: {full syst.: {dn: -0.001690751, up: 0.001690751}, stat: {dn: -0.0001029944, up: 0.0001029944}}, 32: {full syst.: {dn: -0.001173432, up: 0.001173432}, stat: {dn: -8.342347e-05, up: 8.342347e-05}}, 33: {full syst.: {dn: -0.0008192352, up: 0.0008192352}, stat: {dn: -6.647843e-05, up: 6.647843e-05}}, 34: {full syst.: {dn: -0.0004698485, up: 0.0004698485}, stat: {dn: -3.830319e-05, up: 3.830319e-05}}, 35: {full syst.: {dn: -0.0002242874, up: 0.0002242874}, stat: {dn: -2.413033e-05, up: 2.413033e-05}}, 36: {full syst.: {dn: -8.884611e-05, up: 8.884611e-05}, stat: {dn: -1.200953e-05, up: 1.200953e-05}}, 37: {full syst.: {dn: -2.006078e-05, up: 2.006078e-05}, stat: {dn: -4.575119e-06, up: 4.575119e-06}}, 38: {full syst.: {dn: -4.349517e-06, up: 4.349517e-06}, stat: {dn: -1.805742e-06, up: 1.805742e-06}}, 39: {full syst.: {dn: -1.042245e-06, up: 1.042245e-06}, stat: {dn: -6.05467e-07, up: 6.05467e-07}}, 40: {full syst.: {dn: -1.85926e-07, up: 1.85926e-07}, stat: {dn: -1.673961e-07, up: 1.673961e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d33-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t33 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 4.540690e-01 5.195555e-02 5.195555e-02 +3.750000e-01 2.500000e-02 2.500000e-02 4.936342e-01 4.934086e-02 4.934086e-02 +4.250000e-01 2.500000e-02 2.500000e-02 5.207502e-01 4.814866e-02 4.814866e-02 +4.750000e-01 2.500000e-02 2.500000e-02 5.365911e-01 2.964707e-02 2.964707e-02 +5.250000e-01 2.500000e-02 2.500000e-02 5.502139e-01 2.923880e-02 2.923880e-02 +5.750000e-01 2.500000e-02 2.500000e-02 5.553880e-01 2.805664e-02 2.805664e-02 +6.250000e-01 2.500000e-02 2.500000e-02 5.561588e-01 3.103693e-02 3.103693e-02 +6.750000e-01 2.500000e-02 2.500000e-02 5.438690e-01 2.922682e-02 2.922682e-02 +7.250000e-01 2.500000e-02 2.500000e-02 5.280592e-01 2.739917e-02 2.739917e-02 +7.750000e-01 2.500000e-02 2.500000e-02 5.088787e-01 2.578627e-02 2.578627e-02 +8.250000e-01 2.500000e-02 2.500000e-02 5.020557e-01 2.841092e-02 2.841092e-02 +8.750000e-01 2.500000e-02 2.500000e-02 4.869139e-01 3.080881e-02 3.080881e-02 +9.250000e-01 2.500000e-02 2.500000e-02 4.643266e-01 2.908993e-02 2.908993e-02 +9.750000e-01 2.500000e-02 2.500000e-02 4.364436e-01 2.728233e-02 2.728233e-02 +1.050000e+00 5.000000e-02 5.000000e-02 3.968423e-01 2.479637e-02 2.479637e-02 +1.150000e+00 5.000000e-02 5.000000e-02 3.535225e-01 2.211583e-02 2.211583e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.108417e-01 1.950344e-02 1.950344e-02 +1.350000e+00 5.000000e-02 5.000000e-02 2.712703e-01 1.707268e-02 1.707268e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.338675e-01 1.480799e-02 1.480799e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.016666e-01 1.283369e-02 1.283369e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.713070e-01 1.097585e-02 1.097585e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.463982e-01 9.424900e-03 9.424900e-03 +1.850000e+00 5.000000e-02 5.000000e-02 1.233075e-01 7.991293e-03 7.991293e-03 +1.950000e+00 5.000000e-02 5.000000e-02 1.060215e-01 6.933815e-03 6.933815e-03 +2.100000e+00 1.000000e-01 1.000000e-01 8.322558e-02 5.167193e-03 5.167193e-03 +2.300000e+00 1.000000e-01 1.000000e-01 6.168172e-02 3.885857e-03 3.885857e-03 +2.500000e+00 1.000000e-01 1.000000e-01 4.491617e-02 3.022237e-03 3.022237e-03 +2.700000e+00 1.000000e-01 1.000000e-01 3.199031e-02 3.193328e-03 3.193328e-03 +2.900000e+00 1.000000e-01 1.000000e-01 2.261553e-02 3.687901e-03 3.687901e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.635459e-02 3.073073e-03 3.073073e-03 +3.300000e+00 1.000000e-01 1.000000e-01 1.207130e-02 2.363531e-03 2.363531e-03 +3.500000e+00 1.000000e-01 1.000000e-01 8.979251e-03 1.693885e-03 1.693885e-03 +3.700000e+00 1.000000e-01 1.000000e-01 6.795491e-03 1.176394e-03 1.176394e-03 +3.900000e+00 1.000000e-01 1.000000e-01 5.211499e-03 8.219280e-04 8.219280e-04 +4.250000e+00 2.500000e-01 2.500000e-01 3.359225e-03 4.714072e-04 4.714072e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.827167e-03 2.255817e-04 2.255817e-04 +5.500000e+00 5.000000e-01 5.000000e-01 8.269168e-04 8.965411e-05 8.965411e-05 +7.000000e+00 1.000000e+00 1.000000e+00 2.247722e-04 2.057587e-05 2.057587e-05 +9.000000e+00 1.000000e+00 1.000000e+00 5.133328e-05 4.709459e-06 4.709459e-06 +1.250000e+01 2.500000e+00 2.500000e+00 9.927609e-06 1.205348e-06 1.205348e-06 +1.750000e+01 2.500000e+00 2.500000e+00 1.384768e-06 2.501798e-07 2.501798e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d34-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.04660598, up: 0.04660598}, stat: {dn: -0.003075183, up: 0.003075183}}, 1: {full syst.: {dn: -0.04426078, up: 0.04426078}, stat: {dn: -0.002742347, up: 0.002742347}}, 2: {full syst.: {dn: -0.04323579, up: 0.04323579}, stat: {dn: -0.002492508, up: 0.002492508}}, 3: {full syst.: {dn: -0.0266504, up: 0.0266504}, stat: {dn: -0.001629219, up: 0.001629219}}, 4: {full syst.: {dn: -0.02624713, up: 0.02624713}, stat: {dn: -0.00170419, up: 0.00170419}}, 5: {full syst.: {dn: -0.02482138, up: 0.02482138}, stat: {dn: -0.001636463, up: 0.001636463}}, 6: {full syst.: {dn: -0.02768289, up: 0.02768289}, stat: {dn: -0.002313726, up: 0.002313726}}, 7: {full syst.: {dn: -0.02567334, up: 0.02567334}, stat: {dn: -0.002149689, up: 0.002149689}}, 8: {full syst.: {dn: -0.02408516, up: 0.02408516}, stat: {dn: -0.002026614, up: 0.002026614}}, 9: {full syst.: {dn: -0.02274851, up: 0.02274851}, stat: {dn: -0.001912958, up: 0.001912958}}, 10: {full syst.: {dn: -0.02463748, up: 0.02463748}, stat: {dn: -0.002109529, up: 0.002109529}}, 11: {full syst.: {dn: -0.02668085, up: 0.02668085}, stat: {dn: -0.002187297, up: 0.002187297}}, 12: {full syst.: {dn: -0.025161, up: 0.025161}, stat: {dn: -0.002276778, up: 0.002276778}}, 13: {full syst.: {dn: -0.0235513, up: 0.0235513}, stat: {dn: -0.002475665, up: 0.002475665}}, 14: {full syst.: {dn: -0.02118405, up: 0.02118405}, stat: {dn: -0.001680574, up: 0.001680574}}, 15: {full syst.: {dn: -0.01843627, up: 0.01843627}, stat: {dn: -0.001624323, up: 0.001624323}}, 16: {full syst.: {dn: -0.01619178, up: 0.01619178}, stat: {dn: -0.001576579, up: 0.001576579}}, 17: {full syst.: {dn: -0.0140109, up: 0.0140109}, stat: {dn: -0.00149303, up: 0.00149303}}, 18: {full syst.: {dn: -0.0118571, up: 0.0118571}, stat: {dn: -0.001401548, up: 0.001401548}}, 19: {full syst.: {dn: -0.01025438, up: 0.01025438}, stat: {dn: -0.001231803, up: 0.001231803}}, 20: {full syst.: {dn: -0.008754171, up: 0.008754171}, stat: {dn: -0.001203682, up: 0.001203682}}, 21: {full syst.: {dn: -0.007543437, up: 0.007543437}, stat: {dn: -0.001159576, up: 0.001159576}}, 22: {full syst.: {dn: -0.006224361, up: 0.006224361}, stat: {dn: -0.001115421, up: 0.001115421}}, 23: {full syst.: {dn: -0.005405049, up: 0.005405049}, stat: {dn: -0.001079008, up: 0.001079008}}, 24: {full syst.: {dn: -0.004025466, up: 0.004025466}, stat: {dn: -0.0006165216, up: 0.0006165216}}, 25: {full syst.: {dn: -0.00297652, up: 0.00297652}, stat: {dn: -0.0004606767, up: 0.0004606767}}, 26: {full syst.: {dn: -0.002317044, up: 0.002317044}, stat: {dn: -0.0003594252, up: 0.0003594252}}, 27: {full syst.: {dn: -0.002474455, up: 0.002474455}, stat: {dn: -0.0003814013, up: 0.0003814013}}, 28: {full syst.: {dn: -0.002797492, up: 0.002797492}, stat: {dn: -0.000199429, up: 0.000199429}}, 29: {full syst.: {dn: -0.002330991, up: 0.002330991}, stat: {dn: -0.0001482833, up: 0.0001482833}}, 30: {full syst.: {dn: -0.001805468, up: 0.001805468}, stat: {dn: -0.0001140977, up: 0.0001140977}}, 31: {full syst.: {dn: -0.001287227, up: 0.001287227}, stat: {dn: -8.856306e-05, up: 8.856306e-05}}, 32: {full syst.: {dn: -0.000905769, up: 0.000905769}, stat: {dn: -7.250834e-05, up: 7.250834e-05}}, 33: {full syst.: {dn: -0.0006357237, up: 0.0006357237}, stat: {dn: -5.801769e-05, up: 5.801769e-05}}, 34: {full syst.: {dn: -0.00036054, up: 0.00036054}, stat: {dn: -3.322721e-05, up: 3.322721e-05}}, 35: {full syst.: {dn: -0.0001704176, up: 0.0001704176}, stat: {dn: -2.076485e-05, up: 2.076485e-05}}, 36: {full syst.: {dn: -6.751342e-05, up: 6.751342e-05}, stat: {dn: -1.035465e-05, up: 1.035465e-05}}, 37: {full syst.: {dn: -1.50356e-05, up: 1.50356e-05}, stat: {dn: -3.909623e-06, up: 3.909623e-06}}, 38: {full syst.: {dn: -3.251477e-06, up: 3.251477e-06}, stat: {dn: -1.542916e-06, up: 1.542916e-06}}, 39: {full syst.: {dn: -7.141276e-07, up: 7.141276e-07}, stat: {dn: -4.853901e-07, up: 4.853901e-07}}, 40: {full syst.: {dn: -1.357461e-07, up: 1.357461e-07}, stat: {dn: -1.402972e-07, up: 1.402972e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d34-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t34 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 4.119458e-01 4.670732e-02 4.670732e-02 +3.750000e-01 2.500000e-02 2.500000e-02 4.489649e-01 4.434565e-02 4.434565e-02 +4.250000e-01 2.500000e-02 2.500000e-02 4.751549e-01 4.330758e-02 4.330758e-02 +4.750000e-01 2.500000e-02 2.500000e-02 4.890336e-01 2.670015e-02 2.670015e-02 +5.250000e-01 2.500000e-02 2.500000e-02 5.005292e-01 2.630240e-02 2.630240e-02 +5.750000e-01 2.500000e-02 2.500000e-02 4.969639e-01 2.487527e-02 2.487527e-02 +6.250000e-01 2.500000e-02 2.500000e-02 4.987122e-01 2.777941e-02 2.777941e-02 +6.750000e-01 2.500000e-02 2.500000e-02 4.803438e-01 2.576318e-02 2.576318e-02 +7.250000e-01 2.500000e-02 2.500000e-02 4.680050e-01 2.417027e-02 2.417027e-02 +7.750000e-01 2.500000e-02 2.500000e-02 4.519081e-01 2.282880e-02 2.282880e-02 +8.250000e-01 2.500000e-02 2.500000e-02 4.398166e-01 2.472763e-02 2.472763e-02 +8.750000e-01 2.500000e-02 2.500000e-02 4.242687e-01 2.677036e-02 2.677036e-02 +9.250000e-01 2.500000e-02 2.500000e-02 4.041653e-01 2.526380e-02 2.526380e-02 +9.750000e-01 2.500000e-02 2.500000e-02 3.789831e-01 2.368106e-02 2.368106e-02 +1.050000e+00 5.000000e-02 5.000000e-02 3.405573e-01 2.125061e-02 2.125061e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.958955e-01 1.850769e-02 1.850769e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.595578e-01 1.626835e-02 1.626835e-02 +1.350000e+00 5.000000e-02 5.000000e-02 2.240534e-01 1.409023e-02 1.409023e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.886708e-01 1.193965e-02 1.193965e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.625908e-01 1.032810e-02 1.032810e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.383699e-01 8.836536e-03 8.836536e-03 +1.750000e+00 5.000000e-02 5.000000e-02 1.184423e-01 7.632042e-03 7.632042e-03 +1.850000e+00 5.000000e-02 5.000000e-02 9.747087e-02 6.323514e-03 6.323514e-03 +1.950000e+00 5.000000e-02 5.000000e-02 8.468227e-02 5.511698e-03 5.511698e-03 +2.100000e+00 1.000000e-01 1.000000e-01 6.561776e-02 4.072404e-03 4.072404e-03 +2.300000e+00 1.000000e-01 1.000000e-01 4.776016e-02 3.011959e-03 3.011959e-03 +2.500000e+00 1.000000e-01 1.000000e-01 3.482668e-02 2.344756e-03 2.344756e-03 +2.700000e+00 1.000000e-01 1.000000e-01 2.359622e-02 2.503676e-03 2.503676e-03 +2.900000e+00 1.000000e-01 1.000000e-01 1.685966e-02 2.804591e-03 2.804591e-03 +3.100000e+00 1.000000e-01 1.000000e-01 1.207462e-02 2.335703e-03 2.335703e-03 +3.300000e+00 1.000000e-01 1.000000e-01 8.944858e-03 1.809070e-03 1.809070e-03 +3.500000e+00 1.000000e-01 1.000000e-01 6.633706e-03 1.290270e-03 1.290270e-03 +3.700000e+00 1.000000e-01 1.000000e-01 5.135205e-03 9.086666e-04 9.086666e-04 +3.900000e+00 1.000000e-01 1.000000e-01 3.973543e-03 6.383656e-04 6.383656e-04 +4.250000e+00 2.500000e-01 2.500000e-01 2.511519e-03 3.620679e-04 3.620679e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.347405e-03 1.716780e-04 1.716780e-04 +5.500000e+00 5.000000e-01 5.000000e-01 6.082682e-04 6.830286e-05 6.830286e-05 +7.000000e+00 1.000000e+00 1.000000e+00 1.615875e-04 1.553559e-05 1.553559e-05 +9.000000e+00 1.000000e+00 1.000000e+00 3.625449e-05 3.598985e-06 3.598985e-06 +1.250000e+01 2.500000e+00 2.500000e+00 6.165581e-06 8.634708e-07 8.634708e-07 +1.750000e+01 2.500000e+00 2.500000e+00 8.630158e-07 1.952186e-07 1.952186e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d35-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.04237649, up: 0.04237649}, stat: {dn: -0.002933733, up: 0.002933733}}, 1: {full syst.: {dn: -0.04039791, up: 0.04039791}, stat: {dn: -0.002625785, up: 0.002625785}}, 2: {full syst.: {dn: -0.03910343, up: 0.03910343}, stat: {dn: -0.002377405, up: 0.002377405}}, 3: {full syst.: {dn: -0.0242076, up: 0.0242076}, stat: {dn: -0.001512498, up: 0.001512498}}, 4: {full syst.: {dn: -0.02378386, up: 0.02378386}, stat: {dn: -0.001615194, up: 0.001615194}}, 5: {full syst.: {dn: -0.02259877, up: 0.02259877}, stat: {dn: -0.001546604, up: 0.001546604}}, 6: {full syst.: {dn: -0.02487972, up: 0.02487972}, stat: {dn: -0.002178385, up: 0.002178385}}, 7: {full syst.: {dn: -0.02332319, up: 0.02332319}, stat: {dn: -0.002000387, up: 0.002000387}}, 8: {full syst.: {dn: -0.0215558, up: 0.0215558}, stat: {dn: -0.001919297, up: 0.001919297}}, 9: {full syst.: {dn: -0.02022745, up: 0.02022745}, stat: {dn: -0.001789943, up: 0.001789943}}, 10: {full syst.: {dn: -0.02194868, up: 0.02194868}, stat: {dn: -0.001873074, up: 0.001873074}}, 11: {full syst.: {dn: -0.02373819, up: 0.02373819}, stat: {dn: -0.002059488, up: 0.002059488}}, 12: {full syst.: {dn: -0.02217988, up: 0.02217988}, stat: {dn: -0.001974827, up: 0.001974827}}, 13: {full syst.: {dn: -0.02071004, up: 0.02071004}, stat: {dn: -0.002275758, up: 0.002275758}}, 14: {full syst.: {dn: -0.01837976, up: 0.01837976}, stat: {dn: -0.001517152, up: 0.001517152}}, 15: {full syst.: {dn: -0.01604777, up: 0.01604777}, stat: {dn: -0.001477032, up: 0.001477032}}, 16: {full syst.: {dn: -0.01395078, up: 0.01395078}, stat: {dn: -0.00139397, up: 0.00139397}}, 17: {full syst.: {dn: -0.01185302, up: 0.01185302}, stat: {dn: -0.001315925, up: 0.001315925}}, 18: {full syst.: {dn: -0.01004967, up: 0.01004967}, stat: {dn: -0.001240684, up: 0.001240684}}, 19: {full syst.: {dn: -0.008588092, up: 0.008588092}, stat: {dn: -0.001089743, up: 0.001089743}}, 20: {full syst.: {dn: -0.007313001, up: 0.007313001}, stat: {dn: -0.001030457, up: 0.001030457}}, 21: {full syst.: {dn: -0.006283319, up: 0.006283319}, stat: {dn: -0.001019322, up: 0.001019322}}, 22: {full syst.: {dn: -0.005196244, up: 0.005196244}, stat: {dn: -0.0009594426, up: 0.0009594426}}, 23: {full syst.: {dn: -0.004364757, up: 0.004364757}, stat: {dn: -0.0008982012, up: 0.0008982012}}, 24: {full syst.: {dn: -0.003300915, up: 0.003300915}, stat: {dn: -0.0005004406, up: 0.0005004406}}, 25: {full syst.: {dn: -0.002383451, up: 0.002383451}, stat: {dn: -0.000403733, up: 0.000403733}}, 26: {full syst.: {dn: -0.00187099, up: 0.00187099}, stat: {dn: -0.0003104097, up: 0.0003104097}}, 27: {full syst.: {dn: -0.001975937, up: 0.001975937}, stat: {dn: -0.0003488565, up: 0.0003488565}}, 28: {full syst.: {dn: -0.002225234, up: 0.002225234}, stat: {dn: -0.0001783315, up: 0.0001783315}}, 29: {full syst.: {dn: -0.001855126, up: 0.001855126}, stat: {dn: -0.0001329229, up: 0.0001329229}}, 30: {full syst.: {dn: -0.001441, up: 0.001441}, stat: {dn: -0.000102523, up: 0.000102523}}, 31: {full syst.: {dn: -0.001016162, up: 0.001016162}, stat: {dn: -7.885886e-05, up: 7.885886e-05}}, 32: {full syst.: {dn: -0.0007069824, up: 0.0007069824}, stat: {dn: -6.364562e-05, up: 6.364562e-05}}, 33: {full syst.: {dn: -0.0004889594, up: 0.0004889594}, stat: {dn: -5.021885e-05, up: 5.021885e-05}}, 34: {full syst.: {dn: -0.0002800897, up: 0.0002800897}, stat: {dn: -2.890901e-05, up: 2.890901e-05}}, 35: {full syst.: {dn: -0.0001346645, up: 0.0001346645}, stat: {dn: -1.816924e-05, up: 1.816924e-05}}, 36: {full syst.: {dn: -5.343715e-05, up: 5.343715e-05}, stat: {dn: -9.071996e-06, up: 9.071996e-06}}, 37: {full syst.: {dn: -1.207517e-05, up: 1.207517e-05}, stat: {dn: -3.46847e-06, up: 3.46847e-06}}, 38: {full syst.: {dn: -2.628659e-06, up: 2.628659e-06}, stat: {dn: -1.371687e-06, up: 1.371687e-06}}, 39: {full syst.: {dn: -6.199089e-07, up: 6.199089e-07}, stat: {dn: -4.604583e-07, up: 4.604583e-07}}, 40: {full syst.: {dn: -1.125888e-07, up: 1.125888e-07}, stat: {dn: -1.314396e-07, up: 1.314396e-07}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d35-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t35 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 3.780237e-01 4.247792e-02 4.247792e-02 +3.750000e-01 2.500000e-02 2.500000e-02 4.141454e-01 4.048316e-02 4.048316e-02 +4.250000e-01 2.500000e-02 2.500000e-02 4.355960e-01 3.917563e-02 3.917563e-02 +4.750000e-01 2.500000e-02 2.500000e-02 4.463435e-01 2.425480e-02 2.425480e-02 +5.250000e-01 2.500000e-02 2.500000e-02 4.543113e-01 2.383864e-02 2.383864e-02 +5.750000e-01 2.500000e-02 2.500000e-02 4.559582e-01 2.265163e-02 2.265163e-02 +6.250000e-01 2.500000e-02 2.500000e-02 4.500592e-01 2.497490e-02 2.497490e-02 +6.750000e-01 2.500000e-02 2.500000e-02 4.357591e-01 2.340882e-02 2.340882e-02 +7.250000e-01 2.500000e-02 2.500000e-02 4.192884e-01 2.164108e-02 2.164108e-02 +7.750000e-01 2.500000e-02 2.500000e-02 4.024973e-01 2.030649e-02 2.030649e-02 +8.250000e-01 2.500000e-02 2.500000e-02 3.915130e-01 2.202846e-02 2.202846e-02 +8.750000e-01 2.500000e-02 2.500000e-02 3.775922e-01 2.382736e-02 2.382736e-02 +9.250000e-01 2.500000e-02 2.500000e-02 3.563882e-01 2.226762e-02 2.226762e-02 +9.750000e-01 2.500000e-02 2.500000e-02 3.334569e-01 2.083470e-02 2.083470e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.955863e-01 1.844227e-02 1.844227e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.580252e-01 1.611560e-02 1.611560e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.236745e-01 1.402025e-02 1.402025e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.896064e-01 1.192584e-02 1.192584e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.603618e-01 1.012596e-02 1.012596e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.363410e-01 8.656955e-03 8.656955e-03 +1.650000e+00 5.000000e-02 5.000000e-02 1.156088e-01 7.385244e-03 7.385244e-03 +1.750000e+00 5.000000e-02 5.000000e-02 9.894237e-02 6.365463e-03 6.365463e-03 +1.850000e+00 5.000000e-02 5.000000e-02 8.138653e-02 5.284078e-03 5.284078e-03 +1.950000e+00 5.000000e-02 5.000000e-02 6.846801e-02 4.456217e-03 4.456217e-03 +2.100000e+00 1.000000e-01 1.000000e-01 5.341583e-02 3.338635e-03 3.338635e-03 +2.300000e+00 1.000000e-01 1.000000e-01 3.817204e-02 2.417403e-03 2.417403e-03 +2.500000e+00 1.000000e-01 1.000000e-01 2.808037e-02 1.896565e-03 1.896565e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.980881e-02 2.006496e-03 2.006496e-03 +2.900000e+00 1.000000e-01 1.000000e-01 1.378840e-02 2.232368e-03 2.232368e-03 +3.100000e+00 1.000000e-01 1.000000e-01 9.864558e-03 1.859882e-03 1.859882e-03 +3.300000e+00 1.000000e-01 1.000000e-01 7.280377e-03 1.444643e-03 1.444643e-03 +3.500000e+00 1.000000e-01 1.000000e-01 5.272985e-03 1.019217e-03 1.019217e-03 +3.700000e+00 1.000000e-01 1.000000e-01 3.940972e-03 7.098414e-04 7.098414e-04 +3.900000e+00 1.000000e-01 1.000000e-01 2.944793e-03 4.915315e-04 4.915315e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.858695e-03 2.815776e-04 2.815776e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.008262e-03 1.358847e-04 1.358847e-04 +5.500000e+00 5.000000e-01 5.000000e-01 4.589215e-04 5.420175e-05 5.420175e-05 +7.000000e+00 1.000000e+00 1.000000e+00 1.261852e-04 1.256344e-05 1.256344e-05 +9.000000e+00 1.000000e+00 1.000000e+00 2.928048e-05 2.965025e-06 2.965025e-06 +1.250000e+01 2.500000e+00 2.500000e+00 5.706774e-06 7.722104e-07 7.722104e-07 +1.750000e+01 2.500000e+00 2.500000e+00 8.345005e-07 1.730682e-07 1.730682e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d36-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03754642, up: 0.03754642}, stat: {dn: -0.002012808, up: 0.002012808}}, 1: {full syst.: {dn: -0.03559061, up: 0.03559061}, stat: {dn: -0.001794818, up: 0.001794818}}, 2: {full syst.: {dn: -0.03415064, up: 0.03415064}, stat: {dn: -0.001615693, up: 0.001615693}}, 3: {full syst.: {dn: -0.02131155, up: 0.02131155}, stat: {dn: -0.001016218, up: 0.001016218}}, 4: {full syst.: {dn: -0.0210175, up: 0.0210175}, stat: {dn: -0.001067003, up: 0.001067003}}, 5: {full syst.: {dn: -0.0197058, up: 0.0197058}, stat: {dn: -0.001028001, up: 0.001028001}}, 6: {full syst.: {dn: -0.02170558, up: 0.02170558}, stat: {dn: -0.001451545, up: 0.001451545}}, 7: {full syst.: {dn: -0.02025162, up: 0.02025162}, stat: {dn: -0.001348271, up: 0.001348271}}, 8: {full syst.: {dn: -0.01858272, up: 0.01858272}, stat: {dn: -0.001263943, up: 0.001263943}}, 9: {full syst.: {dn: -0.01743897, up: 0.01743897}, stat: {dn: -0.001195011, up: 0.001195011}}, 10: {full syst.: {dn: -0.01871465, up: 0.01871465}, stat: {dn: -0.001332356, up: 0.001332356}}, 11: {full syst.: {dn: -0.02012956, up: 0.02012956}, stat: {dn: -0.001348031, up: 0.001348031}}, 12: {full syst.: {dn: -0.01868774, up: 0.01868774}, stat: {dn: -0.00129598, up: 0.00129598}}, 13: {full syst.: {dn: -0.01743689, up: 0.01743689}, stat: {dn: -0.001525755, up: 0.001525755}}, 14: {full syst.: {dn: -0.01536267, up: 0.01536267}, stat: {dn: -0.001015737, up: 0.001015737}}, 15: {full syst.: {dn: -0.01316676, up: 0.01316676}, stat: {dn: -0.0009933325, up: 0.0009933325}}, 16: {full syst.: {dn: -0.01128089, up: 0.01128089}, stat: {dn: -0.0009434819, up: 0.0009434819}}, 17: {full syst.: {dn: -0.009527617, up: 0.009527617}, stat: {dn: -0.0008836576, up: 0.0008836576}}, 18: {full syst.: {dn: -0.008088497, up: 0.008088497}, stat: {dn: -0.0008291351, up: 0.0008291351}}, 19: {full syst.: {dn: -0.00682921, up: 0.00682921}, stat: {dn: -0.0006997264, up: 0.0006997264}}, 20: {full syst.: {dn: -0.005666406, up: 0.005666406}, stat: {dn: -0.0006509694, up: 0.0006509694}}, 21: {full syst.: {dn: -0.004843922, up: 0.004843922}, stat: {dn: -0.0006238407, up: 0.0006238407}}, 22: {full syst.: {dn: -0.003990755, up: 0.003990755}, stat: {dn: -0.000632514, up: 0.000632514}}, 23: {full syst.: {dn: -0.003368482, up: 0.003368482}, stat: {dn: -0.0005937948, up: 0.0005937948}}, 24: {full syst.: {dn: -0.002481674, up: 0.002481674}, stat: {dn: -0.0003600101, up: 0.0003600101}}, 25: {full syst.: {dn: -0.001806016, up: 0.001806016}, stat: {dn: -0.0002606189, up: 0.0002606189}}, 26: {full syst.: {dn: -0.001381332, up: 0.001381332}, stat: {dn: -0.0002008844, up: 0.0002008844}}, 27: {full syst.: {dn: -0.001422722, up: 0.001422722}, stat: {dn: -0.0002223627, up: 0.0002223627}}, 28: {full syst.: {dn: -0.001639827, up: 0.001639827}, stat: {dn: -0.0001085555, up: 0.0001085555}}, 29: {full syst.: {dn: -0.001367549, up: 0.001367549}, stat: {dn: -8.065168e-05, up: 8.065168e-05}}, 30: {full syst.: {dn: -0.001053518, up: 0.001053518}, stat: {dn: -6.162153e-05, up: 6.162153e-05}}, 31: {full syst.: {dn: -0.0007491288, up: 0.0007491288}, stat: {dn: -4.763029e-05, up: 4.763029e-05}}, 32: {full syst.: {dn: -0.0005201622, up: 0.0005201622}, stat: {dn: -3.843976e-05, up: 3.843976e-05}}, 33: {full syst.: {dn: -0.0003613804, up: 0.0003613804}, stat: {dn: -3.044528e-05, up: 3.044528e-05}}, 34: {full syst.: {dn: -0.0002060531, up: 0.0002060531}, stat: {dn: -1.756412e-05, up: 1.756412e-05}}, 35: {full syst.: {dn: -9.844329e-05, up: 9.844329e-05}, stat: {dn: -1.108603e-05, up: 1.108603e-05}}, 36: {full syst.: {dn: -3.869355e-05, up: 3.869355e-05}, stat: {dn: -5.519703e-06, up: 5.519703e-06}}, 37: {full syst.: {dn: -8.85806e-06, up: 8.85806e-06}, stat: {dn: -2.132649e-06, up: 2.132649e-06}}, 38: {full syst.: {dn: -1.963301e-06, up: 1.963301e-06}, stat: {dn: -8.570966e-07, up: 8.570966e-07}}, 39: {full syst.: {dn: -4.242205e-07, up: 4.242205e-07}, stat: {dn: -2.777172e-07, up: 2.777172e-07}}, 40: {full syst.: {dn: -7.946207e-08, up: 7.946207e-08}, stat: {dn: -8.456486e-08, up: 8.456486e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d36-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t36 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 3.371532e-01 3.760033e-02 3.760033e-02 +3.750000e-01 2.500000e-02 2.500000e-02 3.678450e-01 3.563584e-02 3.563584e-02 +4.250000e-01 2.500000e-02 2.500000e-02 3.837501e-01 3.418884e-02 3.418884e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.955474e-01 2.133576e-02 2.133576e-02 +5.250000e-01 2.500000e-02 2.500000e-02 4.034705e-01 2.104457e-02 2.104457e-02 +5.750000e-01 2.500000e-02 2.500000e-02 3.984459e-01 1.973260e-02 1.973260e-02 +6.250000e-01 2.500000e-02 2.500000e-02 3.945706e-01 2.175406e-02 2.175406e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.801629e-01 2.029645e-02 2.029645e-02 +7.250000e-01 2.500000e-02 2.500000e-02 3.626753e-01 1.862566e-02 1.862566e-02 +7.750000e-01 2.500000e-02 2.500000e-02 3.469444e-01 1.747987e-02 1.747987e-02 +8.250000e-01 2.500000e-02 2.500000e-02 3.323474e-01 1.876202e-02 1.876202e-02 +8.750000e-01 2.500000e-02 2.500000e-02 3.203223e-01 2.017465e-02 2.017465e-02 +9.250000e-01 2.500000e-02 2.500000e-02 3.001328e-01 1.873262e-02 1.873262e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.806934e-01 1.750352e-02 1.750352e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.469370e-01 1.539621e-02 1.539621e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.115864e-01 1.320418e-02 1.320418e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.808367e-01 1.132028e-02 1.132028e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.524699e-01 9.568508e-03 9.568508e-03 +1.450000e+00 5.000000e-02 5.000000e-02 1.290464e-01 8.130882e-03 8.130882e-03 +1.550000e+00 5.000000e-02 5.000000e-02 1.084676e-01 6.864964e-03 6.864964e-03 +1.650000e+00 5.000000e-02 5.000000e-02 8.985761e-02 5.703676e-03 5.703676e-03 +1.750000e+00 5.000000e-02 5.000000e-02 7.641557e-02 4.883928e-03 4.883928e-03 +1.850000e+00 5.000000e-02 5.000000e-02 6.278017e-02 4.040569e-03 4.040569e-03 +1.950000e+00 5.000000e-02 5.000000e-02 5.289413e-02 3.420419e-03 3.420419e-03 +2.100000e+00 1.000000e-01 1.000000e-01 4.048354e-02 2.507651e-03 2.507651e-03 +2.300000e+00 1.000000e-01 1.000000e-01 2.895105e-02 1.824724e-03 1.824724e-03 +2.500000e+00 1.000000e-01 1.000000e-01 2.080161e-02 1.395863e-03 1.395863e-03 +2.700000e+00 1.000000e-01 1.000000e-01 1.409697e-02 1.439994e-03 1.439994e-03 +2.900000e+00 1.000000e-01 1.000000e-01 9.740543e-03 1.643416e-03 1.643416e-03 +3.100000e+00 1.000000e-01 1.000000e-01 6.866226e-03 1.369925e-03 1.369925e-03 +3.300000e+00 1.000000e-01 1.000000e-01 4.971645e-03 1.055319e-03 1.055319e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.630158e-03 7.506415e-04 7.506415e-04 +3.700000e+00 1.000000e-01 1.000000e-01 2.735429e-03 5.215806e-04 5.215806e-04 +3.900000e+00 1.000000e-01 1.000000e-01 2.083464e-03 3.626606e-04 3.626606e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.338707e-03 2.068003e-04 2.068003e-04 +4.750000e+00 2.500000e-01 2.500000e-01 7.365623e-04 9.906554e-05 9.906554e-05 +5.500000e+00 5.000000e-01 5.000000e-01 3.359903e-04 3.908526e-05 3.908526e-05 +7.000000e+00 1.000000e+00 1.000000e+00 9.459791e-05 9.111170e-06 9.111170e-06 +9.000000e+00 1.000000e+00 1.000000e+00 2.281119e-05 2.142234e-06 2.142234e-06 +1.250000e+01 2.500000e+00 2.500000e+00 4.285161e-06 5.070403e-07 5.070403e-07 +1.750000e+01 2.500000e+00 2.500000e+00 6.908722e-07 1.160407e-07 1.160407e-07 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d37-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03196815, up: 0.03196815}, stat: {dn: -0.001863384, up: 0.001863384}}, 1: {full syst.: {dn: -0.02967809, up: 0.02967809}, stat: {dn: -0.001646291, up: 0.001646291}}, 2: {full syst.: {dn: -0.02864064, up: 0.02864064}, stat: {dn: -0.001489589, up: 0.001489589}}, 3: {full syst.: {dn: -0.01799417, up: 0.01799417}, stat: {dn: -0.0009167656, up: 0.0009167656}}, 4: {full syst.: {dn: -0.01758239, up: 0.01758239}, stat: {dn: -0.0009742866, up: 0.0009742866}}, 5: {full syst.: {dn: -0.016426, up: 0.016426}, stat: {dn: -0.0009384271, up: 0.0009384271}}, 6: {full syst.: {dn: -0.01811715, up: 0.01811715}, stat: {dn: -0.001281835, up: 0.001281835}}, 7: {full syst.: {dn: -0.01664664, up: 0.01664664}, stat: {dn: -0.001239956, up: 0.001239956}}, 8: {full syst.: {dn: -0.01523281, up: 0.01523281}, stat: {dn: -0.001153687, up: 0.001153687}}, 9: {full syst.: {dn: -0.01409672, up: 0.01409672}, stat: {dn: -0.001071275, up: 0.001071275}}, 10: {full syst.: {dn: -0.01519099, up: 0.01519099}, stat: {dn: -0.001152337, up: 0.001152337}}, 11: {full syst.: {dn: -0.01599272, up: 0.01599272}, stat: {dn: -0.001128864, up: 0.001128864}}, 12: {full syst.: {dn: -0.01492146, up: 0.01492146}, stat: {dn: -0.001155286, up: 0.001155286}}, 13: {full syst.: {dn: -0.01368863, up: 0.01368863}, stat: {dn: -0.001296708, up: 0.001296708}}, 14: {full syst.: {dn: -0.01192976, up: 0.01192976}, stat: {dn: -0.0008555927, up: 0.0008555927}}, 15: {full syst.: {dn: -0.01009102, up: 0.01009102}, stat: {dn: -0.0008262433, up: 0.0008262433}}, 16: {full syst.: {dn: -0.008518777, up: 0.008518777}, stat: {dn: -0.0007748094, up: 0.0007748094}}, 17: {full syst.: {dn: -0.007139141, up: 0.007139141}, stat: {dn: -0.0007205298, up: 0.0007205298}}, 18: {full syst.: {dn: -0.00595053, up: 0.00595053}, stat: {dn: -0.0006666197, up: 0.0006666197}}, 19: {full syst.: {dn: -0.004959743, up: 0.004959743}, stat: {dn: -0.0005619281, up: 0.0005619281}}, 20: {full syst.: {dn: -0.004110326, up: 0.004110326}, stat: {dn: -0.0005226973, up: 0.0005226973}}, 21: {full syst.: {dn: -0.003429967, up: 0.003429967}, stat: {dn: -0.0004929573, up: 0.0004929573}}, 22: {full syst.: {dn: -0.002861161, up: 0.002861161}, stat: {dn: -0.0004678959, up: 0.0004678959}}, 23: {full syst.: {dn: -0.002332676, up: 0.002332676}, stat: {dn: -0.0004537696, up: 0.0004537696}}, 24: {full syst.: {dn: -0.001744312, up: 0.001744312}, stat: {dn: -0.0002545987, up: 0.0002545987}}, 25: {full syst.: {dn: -0.001242323, up: 0.001242323}, stat: {dn: -0.000192973, up: 0.000192973}}, 26: {full syst.: {dn: -0.0009411472, up: 0.0009411472}, stat: {dn: -0.0001604142, up: 0.0001604142}}, 27: {full syst.: {dn: -0.0009727353, up: 0.0009727353}, stat: {dn: -0.0001676078, up: 0.0001676078}}, 28: {full syst.: {dn: -0.001118809, up: 0.001118809}, stat: {dn: -8.988595e-05, up: 8.988595e-05}}, 29: {full syst.: {dn: -0.0009250931, up: 0.0009250931}, stat: {dn: -6.638473e-05, up: 6.638473e-05}}, 30: {full syst.: {dn: -0.0007097649, up: 0.0007097649}, stat: {dn: -5.022076e-05, up: 5.022076e-05}}, 31: {full syst.: {dn: -0.0005060377, up: 0.0005060377}, stat: {dn: -3.85079e-05, up: 3.85079e-05}}, 32: {full syst.: {dn: -0.0003532948, up: 0.0003532948}, stat: {dn: -3.1394e-05, up: 3.1394e-05}}, 33: {full syst.: {dn: -0.0002448046, up: 0.0002448046}, stat: {dn: -2.484451e-05, up: 2.484451e-05}}, 34: {full syst.: {dn: -0.0001371729, up: 0.0001371729}, stat: {dn: -1.404516e-05, up: 1.404516e-05}}, 35: {full syst.: {dn: -6.482488e-05, up: 6.482488e-05}, stat: {dn: -8.753183e-06, up: 8.753183e-06}}, 36: {full syst.: {dn: -2.57536e-05, up: 2.57536e-05}, stat: {dn: -4.480653e-06, up: 4.480653e-06}}, 37: {full syst.: {dn: -5.721229e-06, up: 5.721229e-06}, stat: {dn: -1.665537e-06, up: 1.665537e-06}}, 38: {full syst.: {dn: -1.232009e-06, up: 1.232009e-06}, stat: {dn: -6.578255e-07, up: 6.578255e-07}}, 39: {full syst.: {dn: -3.015306e-07, up: 3.015306e-07}, stat: {dn: -2.257754e-07, up: 2.257754e-07}}, 40: {full syst.: {dn: -5.568389e-08, up: 5.568389e-08}, stat: {dn: -6.446126e-08, up: 6.446126e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d37-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t37 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 2.919876e-01 3.202241e-02 3.202241e-02 +3.750000e-01 2.500000e-02 2.500000e-02 3.134741e-01 2.972372e-02 2.972372e-02 +4.250000e-01 2.500000e-02 2.500000e-02 3.298140e-01 2.867935e-02 2.867935e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.358837e-01 1.801751e-02 1.801751e-02 +5.250000e-01 2.500000e-02 2.500000e-02 3.404355e-01 1.760936e-02 1.760936e-02 +5.750000e-01 2.500000e-02 2.500000e-02 3.347803e-01 1.645278e-02 1.645278e-02 +6.250000e-01 2.500000e-02 2.500000e-02 3.306191e-01 1.816244e-02 1.816244e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.149456e-01 1.669276e-02 1.669276e-02 +7.250000e-01 2.500000e-02 2.500000e-02 2.987057e-01 1.527644e-02 1.527644e-02 +7.750000e-01 2.500000e-02 2.500000e-02 2.814417e-01 1.413737e-02 1.413737e-02 +8.250000e-01 2.500000e-02 2.500000e-02 2.696071e-01 1.523463e-02 1.523463e-02 +8.750000e-01 2.500000e-02 2.500000e-02 2.544734e-01 1.603251e-02 1.603251e-02 +9.250000e-01 2.500000e-02 2.500000e-02 2.397678e-01 1.496612e-02 1.496612e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.202984e-01 1.374991e-02 1.374991e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.918673e-01 1.196040e-02 1.196040e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.622765e-01 1.012479e-02 1.012479e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.366775e-01 8.553940e-03 8.553940e-03 +1.350000e+00 5.000000e-02 5.000000e-02 1.143194e-01 7.175409e-03 7.175409e-03 +1.450000e+00 5.000000e-02 5.000000e-02 9.515254e-02 5.987753e-03 5.987753e-03 +1.550000e+00 5.000000e-02 5.000000e-02 7.888020e-02 4.991474e-03 4.991474e-03 +1.650000e+00 5.000000e-02 5.000000e-02 6.520705e-02 4.143428e-03 4.143428e-03 +1.750000e+00 5.000000e-02 5.000000e-02 5.431489e-02 3.465210e-03 3.465210e-03 +1.850000e+00 5.000000e-02 5.000000e-02 4.512161e-02 2.899167e-03 2.899167e-03 +1.950000e+00 5.000000e-02 5.000000e-02 3.669374e-02 2.376402e-03 2.376402e-03 +2.100000e+00 1.000000e-01 1.000000e-01 2.821459e-02 1.762795e-03 1.762795e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.977272e-02 1.257221e-03 1.257221e-03 +2.500000e+00 1.000000e-01 1.000000e-01 1.418467e-02 9.547203e-04 9.547203e-04 +2.700000e+00 1.000000e-01 1.000000e-01 9.318193e-03 9.870696e-04 9.870696e-04 +2.900000e+00 1.000000e-01 1.000000e-01 6.660241e-03 1.122414e-03 1.122414e-03 +3.100000e+00 1.000000e-01 1.000000e-01 4.636986e-03 9.274719e-04 9.274719e-04 +3.300000e+00 1.000000e-01 1.000000e-01 3.318759e-03 7.115394e-04 7.115394e-04 +3.500000e+00 1.000000e-01 1.000000e-01 2.394944e-03 5.075008e-04 5.075008e-04 +3.700000e+00 1.000000e-01 1.000000e-01 1.798338e-03 3.546869e-04 3.546869e-04 +3.900000e+00 1.000000e-01 1.000000e-01 1.359439e-03 2.460621e-04 2.460621e-04 +4.250000e+00 2.500000e-01 2.500000e-01 8.515827e-04 1.378901e-04 1.378901e-04 +4.750000e+00 2.500000e-01 2.500000e-01 4.591418e-04 6.541317e-05 6.541317e-05 +5.500000e+00 5.000000e-01 5.000000e-01 2.107691e-04 2.614047e-05 2.614047e-05 +7.000000e+00 1.000000e+00 1.000000e+00 5.687178e-05 5.958731e-06 5.958731e-06 +9.000000e+00 1.000000e+00 1.000000e+00 1.310062e-05 1.396632e-06 1.396632e-06 +1.250000e+01 2.500000e+00 2.500000e+00 2.568696e-06 3.766898e-07 3.766898e-07 +1.750000e+01 2.500000e+00 2.500000e+00 3.593117e-07 8.518186e-08 8.518186e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d38-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.02732691, up: 0.02732691}, stat: {dn: -0.0017015, up: 0.0017015}}, 1: {full syst.: {dn: -0.02510976, up: 0.02510976}, stat: {dn: -0.001494946, up: 0.001494946}}, 2: {full syst.: {dn: -0.02418927, up: 0.02418927}, stat: {dn: -0.001351167, up: 0.001351167}}, 3: {full syst.: {dn: -0.01537036, up: 0.01537036}, stat: {dn: -0.0008325995, up: 0.0008325995}}, 4: {full syst.: {dn: -0.0149163, up: 0.0149163}, stat: {dn: -0.0008573373, up: 0.0008573373}}, 5: {full syst.: {dn: -0.0138036, up: 0.0138036}, stat: {dn: -0.0008264901, up: 0.0008264901}}, 6: {full syst.: {dn: -0.01505605, up: 0.01505605}, stat: {dn: -0.001118245, up: 0.001118245}}, 7: {full syst.: {dn: -0.01385339, up: 0.01385339}, stat: {dn: -0.001026741, up: 0.001026741}}, 8: {full syst.: {dn: -0.01246013, up: 0.01246013}, stat: {dn: -0.001012113, up: 0.001012113}}, 9: {full syst.: {dn: -0.01146986, up: 0.01146986}, stat: {dn: -0.000957244, up: 0.000957244}}, 10: {full syst.: {dn: -0.01237608, up: 0.01237608}, stat: {dn: -0.001035407, up: 0.001035407}}, 11: {full syst.: {dn: -0.01278485, up: 0.01278485}, stat: {dn: -0.001021574, up: 0.001021574}}, 12: {full syst.: {dn: -0.01180897, up: 0.01180897}, stat: {dn: -0.0009807492, up: 0.0009807492}}, 13: {full syst.: {dn: -0.0107232, up: 0.0107232}, stat: {dn: -0.001109844, up: 0.001109844}}, 14: {full syst.: {dn: -0.009240051, up: 0.009240051}, stat: {dn: -0.0007226976, up: 0.0007226976}}, 15: {full syst.: {dn: -0.007603444, up: 0.007603444}, stat: {dn: -0.0006851729, up: 0.0006851729}}, 16: {full syst.: {dn: -0.006405033, up: 0.006405033}, stat: {dn: -0.000639789, up: 0.000639789}}, 17: {full syst.: {dn: -0.005274222, up: 0.005274222}, stat: {dn: -0.0005860364, up: 0.0005860364}}, 18: {full syst.: {dn: -0.004333328, up: 0.004333328}, stat: {dn: -0.0005327413, up: 0.0005327413}}, 19: {full syst.: {dn: -0.003585933, up: 0.003585933}, stat: {dn: -0.0004545252, up: 0.0004545252}}, 20: {full syst.: {dn: -0.002890087, up: 0.002890087}, stat: {dn: -0.000416991, up: 0.000416991}}, 21: {full syst.: {dn: -0.002404838, up: 0.002404838}, stat: {dn: -0.0004078104, up: 0.0004078104}}, 22: {full syst.: {dn: -0.001995108, up: 0.001995108}, stat: {dn: -0.0003624619, up: 0.0003624619}}, 23: {full syst.: {dn: -0.001592706, up: 0.001592706}, stat: {dn: -0.0003498524, up: 0.0003498524}}, 24: {full syst.: {dn: -0.001172409, up: 0.001172409}, stat: {dn: -0.0002150362, up: 0.0002150362}}, 25: {full syst.: {dn: -0.0008380853, up: 0.0008380853}, stat: {dn: -0.000161272, up: 0.000161272}}, 26: {full syst.: {dn: -0.0006300698, up: 0.0006300698}, stat: {dn: -0.000123447, up: 0.000123447}}, 27: {full syst.: {dn: -0.0006581748, up: 0.0006581748}, stat: {dn: -0.000125077, up: 0.000125077}}, 28: {full syst.: {dn: -0.000735762, up: 0.000735762}, stat: {dn: -7.212325e-05, up: 7.212325e-05}}, 29: {full syst.: {dn: -0.0006127833, up: 0.0006127833}, stat: {dn: -5.323417e-05, up: 5.323417e-05}}, 30: {full syst.: {dn: -0.0004680065, up: 0.0004680065}, stat: {dn: -4.011154e-05, up: 4.011154e-05}}, 31: {full syst.: {dn: -0.0003304948, up: 0.0003304948}, stat: {dn: -3.081643e-05, up: 3.081643e-05}}, 32: {full syst.: {dn: -0.0002315743, up: 0.0002315743}, stat: {dn: -2.502811e-05, up: 2.502811e-05}}, 33: {full syst.: {dn: -0.0001598693, up: 0.0001598693}, stat: {dn: -1.96585e-05, up: 1.96585e-05}}, 34: {full syst.: {dn: -9.102539e-05, up: 9.102539e-05}, stat: {dn: -1.139461e-05, up: 1.139461e-05}}, 35: {full syst.: {dn: -4.301219e-05, up: 4.301219e-05}, stat: {dn: -7.094352e-06, up: 7.094352e-06}}, 36: {full syst.: {dn: -1.670049e-05, up: 1.670049e-05}, stat: {dn: -3.496343e-06, up: 3.496343e-06}}, 37: {full syst.: {dn: -3.722028e-06, up: 3.722028e-06}, stat: {dn: -1.321646e-06, up: 1.321646e-06}}, 38: {full syst.: {dn: -7.930658e-07, up: 7.930658e-07}, stat: {dn: -5.125224e-07, up: 5.125224e-07}}, 39: {full syst.: {dn: -1.798511e-07, up: 1.798511e-07}, stat: {dn: -1.638451e-07, up: 1.638451e-07}}, 40: {full syst.: {dn: -3.447245e-08, up: 3.447245e-08}, stat: {dn: -4.69339e-08, up: 4.69339e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d38-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t38 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 2.505029e-01 2.737983e-02 2.737983e-02 +3.750000e-01 2.500000e-02 2.500000e-02 2.660902e-01 2.515422e-02 2.515422e-02 +4.250000e-01 2.500000e-02 2.500000e-02 2.792391e-01 2.422698e-02 2.422698e-02 +4.750000e-01 2.500000e-02 2.500000e-02 2.863150e-01 1.539289e-02 1.539289e-02 +5.250000e-01 2.500000e-02 2.500000e-02 2.871255e-01 1.494092e-02 1.494092e-02 +5.750000e-01 2.500000e-02 2.500000e-02 2.796077e-01 1.382832e-02 1.382832e-02 +6.250000e-01 2.500000e-02 2.500000e-02 2.744347e-01 1.509752e-02 1.509752e-02 +6.750000e-01 2.500000e-02 2.500000e-02 2.599422e-01 1.389139e-02 1.389139e-02 +7.250000e-01 2.500000e-02 2.500000e-02 2.436071e-01 1.250117e-02 1.250117e-02 +7.750000e-01 2.500000e-02 2.500000e-02 2.285735e-01 1.150974e-02 1.150974e-02 +8.250000e-01 2.500000e-02 2.500000e-02 2.197449e-01 1.241932e-02 1.241932e-02 +8.750000e-01 2.500000e-02 2.500000e-02 2.033222e-01 1.282560e-02 1.282560e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.894147e-01 1.184963e-02 1.184963e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.724852e-01 1.078048e-02 1.078048e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.484386e-01 9.268270e-03 9.268270e-03 +1.150000e+00 5.000000e-02 5.000000e-02 1.221044e-01 7.634253e-03 7.634253e-03 +1.250000e+00 5.000000e-02 5.000000e-02 1.026858e-01 6.436907e-03 6.436907e-03 +1.350000e+00 5.000000e-02 5.000000e-02 8.452918e-02 5.306680e-03 5.306680e-03 +1.450000e+00 5.000000e-02 5.000000e-02 6.941105e-02 4.365953e-03 4.365953e-03 +1.550000e+00 5.000000e-02 5.000000e-02 5.714782e-02 3.614624e-03 3.614624e-03 +1.650000e+00 5.000000e-02 5.000000e-02 4.610327e-02 2.920014e-03 2.920014e-03 +1.750000e+00 5.000000e-02 5.000000e-02 3.817290e-02 2.439171e-03 2.439171e-03 +1.850000e+00 5.000000e-02 5.000000e-02 3.132977e-02 2.027766e-03 2.027766e-03 +1.950000e+00 5.000000e-02 5.000000e-02 2.489225e-02 1.630677e-03 1.630677e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.899614e-02 1.191966e-03 1.191966e-03 +2.300000e+00 1.000000e-01 1.000000e-01 1.333817e-02 8.534610e-04 8.534610e-04 +2.500000e+00 1.000000e-01 1.000000e-01 9.434569e-03 6.420492e-04 6.420492e-04 +2.700000e+00 1.000000e-01 1.000000e-01 6.182806e-03 6.699540e-04 6.699540e-04 +2.900000e+00 1.000000e-01 1.000000e-01 4.246976e-03 7.392885e-04 7.392885e-04 +3.100000e+00 1.000000e-01 1.000000e-01 2.948976e-03 6.150913e-04 6.150913e-04 +3.300000e+00 1.000000e-01 1.000000e-01 2.094827e-03 4.697223e-04 4.697223e-04 +3.500000e+00 1.000000e-01 1.000000e-01 1.513071e-03 3.319284e-04 3.319284e-04 +3.700000e+00 1.000000e-01 1.000000e-01 1.146949e-03 2.329229e-04 2.329229e-04 +3.900000e+00 1.000000e-01 1.000000e-01 8.670238e-04 1.610734e-04 1.610734e-04 +4.250000e+00 2.500000e-01 2.500000e-01 5.507773e-04 9.173581e-05 9.173581e-05 +4.750000e+00 2.500000e-01 2.500000e-01 2.964445e-04 4.359333e-05 4.359333e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.308722e-04 1.706255e-05 1.706255e-05 +7.000000e+00 1.000000e+00 1.000000e+00 3.476205e-05 3.949714e-06 3.949714e-06 +9.000000e+00 1.000000e+00 1.000000e+00 7.750673e-06 9.442630e-07 9.442630e-07 +1.250000e+01 2.500000e+00 2.500000e+00 1.433319e-06 2.432933e-07 2.432933e-07 +1.750000e+01 2.500000e+00 2.500000e+00 2.314209e-07 5.823350e-08 5.823350e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d39-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.02215849, up: 0.02215849}, stat: {dn: -0.001095843, up: 0.001095843}}, 1: {full syst.: {dn: -0.02055142, up: 0.02055142}, stat: {dn: -0.000960707, up: 0.000960707}}, 2: {full syst.: {dn: -0.01953478, up: 0.01953478}, stat: {dn: -0.0008582356, up: 0.0008582356}}, 3: {full syst.: {dn: -0.01315546, up: 0.01315546}, stat: {dn: -0.0005276202, up: 0.0005276202}}, 4: {full syst.: {dn: -0.01270938, up: 0.01270938}, stat: {dn: -0.0005481186, up: 0.0005481186}}, 5: {full syst.: {dn: -0.01168468, up: 0.01168468}, stat: {dn: -0.0005154882, up: 0.0005154882}}, 6: {full syst.: {dn: -0.01230253, up: 0.01230253}, stat: {dn: -0.0006973637, up: 0.0006973637}}, 7: {full syst.: {dn: -0.011094, up: 0.011094}, stat: {dn: -0.000659539, up: 0.000659539}}, 8: {full syst.: {dn: -0.01011257, up: 0.01011257}, stat: {dn: -0.0006207905, up: 0.0006207905}}, 9: {full syst.: {dn: -0.009126343, up: 0.009126343}, stat: {dn: -0.0005872573, up: 0.0005872573}}, 10: {full syst.: {dn: -0.009312665, up: 0.009312665}, stat: {dn: -0.0006085967, up: 0.0006085967}}, 11: {full syst.: {dn: -0.009563892, up: 0.009563892}, stat: {dn: -0.0006146886, up: 0.0006146886}}, 12: {full syst.: {dn: -0.008567875, up: 0.008567875}, stat: {dn: -0.0005635307, up: 0.0005635307}}, 13: {full syst.: {dn: -0.007715507, up: 0.007715507}, stat: {dn: -0.0006538187, up: 0.0006538187}}, 14: {full syst.: {dn: -0.006558829, up: 0.006558829}, stat: {dn: -0.0004257256, up: 0.0004257256}}, 15: {full syst.: {dn: -0.005301398, up: 0.005301398}, stat: {dn: -0.0003997893, up: 0.0003997893}}, 16: {full syst.: {dn: -0.004350388, up: 0.004350388}, stat: {dn: -0.0003676285, up: 0.0003676285}}, 17: {full syst.: {dn: -0.003481027, up: 0.003481027}, stat: {dn: -0.000331377, up: 0.000331377}}, 18: {full syst.: {dn: -0.002809184, up: 0.002809184}, stat: {dn: -0.0002970392, up: 0.0002970392}}, 19: {full syst.: {dn: -0.00226057, up: 0.00226057}, stat: {dn: -0.0002463993, up: 0.0002463993}}, 20: {full syst.: {dn: -0.001833931, up: 0.001833931}, stat: {dn: -0.0002258142, up: 0.0002258142}}, 21: {full syst.: {dn: -0.001461495, up: 0.001461495}, stat: {dn: -0.0002097013, up: 0.0002097013}}, 22: {full syst.: {dn: -0.001189061, up: 0.001189061}, stat: {dn: -0.0002039228, up: 0.0002039228}}, 23: {full syst.: {dn: -0.0009866656, up: 0.0009866656}, stat: {dn: -0.0002024041, up: 0.0002024041}}, 24: {full syst.: {dn: -0.0007004121, up: 0.0007004121}, stat: {dn: -0.0001146631, up: 0.0001146631}}, 25: {full syst.: {dn: -0.0004875914, up: 0.0004875914}, stat: {dn: -8.654086e-05, up: 8.654086e-05}}, 26: {full syst.: {dn: -0.0003560591, up: 0.0003560591}, stat: {dn: -6.177766e-05, up: 6.177766e-05}}, 27: {full syst.: {dn: -0.0003677527, up: 0.0003677527}, stat: {dn: -6.430019e-05, up: 6.430019e-05}}, 28: {full syst.: {dn: -0.0004018796, up: 0.0004018796}, stat: {dn: -3.747598e-05, up: 3.747598e-05}}, 29: {full syst.: {dn: -0.0003327565, up: 0.0003327565}, stat: {dn: -2.761516e-05, up: 2.761516e-05}}, 30: {full syst.: {dn: -0.000256711, up: 0.000256711}, stat: {dn: -2.088186e-05, up: 2.088186e-05}}, 31: {full syst.: {dn: -0.0001805009, up: 0.0001805009}, stat: {dn: -1.580943e-05, up: 1.580943e-05}}, 32: {full syst.: {dn: -0.0001254204, up: 0.0001254204}, stat: {dn: -1.275421e-05, up: 1.275421e-05}}, 33: {full syst.: {dn: -8.642263e-05, up: 8.642263e-05}, stat: {dn: -1.001133e-05, up: 1.001133e-05}}, 34: {full syst.: {dn: -4.820321e-05, up: 4.820321e-05}, stat: {dn: -5.728731e-06, up: 5.728731e-06}}, 35: {full syst.: {dn: -2.251852e-05, up: 2.251852e-05}, stat: {dn: -3.549887e-06, up: 3.549887e-06}}, 36: {full syst.: {dn: -8.708509e-06, up: 8.708509e-06}, stat: {dn: -1.745327e-06, up: 1.745327e-06}}, 37: {full syst.: {dn: -1.956734e-06, up: 1.956734e-06}, stat: {dn: -6.761768e-07, up: 6.761768e-07}}, 38: {full syst.: {dn: -4.285206e-07, up: 4.285206e-07}, stat: {dn: -2.681441e-07, up: 2.681441e-07}}, 39: {full syst.: {dn: -9.742537e-08, up: 9.742537e-08}, stat: {dn: -8.946715e-08, up: 8.946715e-08}}, 40: {full syst.: {dn: -1.587775e-08, up: 1.587775e-08}, stat: {dn: -2.373018e-08, up: 2.373018e-08}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d39-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t39 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 1.979670e-01 2.218557e-02 2.218557e-02 +3.750000e-01 2.500000e-02 2.500000e-02 2.099087e-01 2.057386e-02 2.057386e-02 +4.250000e-01 2.500000e-02 2.500000e-02 2.159062e-01 1.955362e-02 1.955362e-02 +4.750000e-01 2.500000e-02 2.500000e-02 2.204730e-01 1.316604e-02 1.316604e-02 +5.250000e-01 2.500000e-02 2.500000e-02 2.197512e-01 1.272119e-02 1.272119e-02 +5.750000e-01 2.500000e-02 2.500000e-02 2.113667e-01 1.169605e-02 1.169605e-02 +6.250000e-01 2.500000e-02 2.500000e-02 2.054810e-01 1.232228e-02 1.232228e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.919115e-01 1.111359e-02 1.111359e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.794510e-01 1.013161e-02 1.013161e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.653857e-01 9.145218e-03 9.145218e-03 +8.250000e-01 2.500000e-02 2.500000e-02 1.544352e-01 9.332530e-03 9.332530e-03 +8.750000e-01 2.500000e-02 2.500000e-02 1.436767e-01 9.583625e-03 9.583625e-03 +9.250000e-01 2.500000e-02 2.500000e-02 1.300348e-01 8.586387e-03 8.586387e-03 +9.750000e-01 2.500000e-02 2.500000e-02 1.171857e-01 7.743160e-03 7.743160e-03 +1.050000e+00 5.000000e-02 5.000000e-02 9.984120e-02 6.572631e-03 6.572631e-03 +1.150000e+00 5.000000e-02 5.000000e-02 8.086455e-02 5.316451e-03 5.316451e-03 +1.250000e+00 5.000000e-02 5.000000e-02 6.629290e-02 4.365894e-03 4.365894e-03 +1.350000e+00 5.000000e-02 5.000000e-02 5.302122e-02 3.496764e-03 3.496764e-03 +1.450000e+00 5.000000e-02 5.000000e-02 4.270676e-02 2.824845e-03 2.824845e-03 +1.550000e+00 5.000000e-02 5.000000e-02 3.434949e-02 2.273959e-03 2.273959e-03 +1.650000e+00 5.000000e-02 5.000000e-02 2.780949e-02 1.847781e-03 1.847781e-03 +1.750000e+00 5.000000e-02 5.000000e-02 2.195569e-02 1.476463e-03 1.476463e-03 +1.850000e+00 5.000000e-02 5.000000e-02 1.776857e-02 1.206421e-03 1.206421e-03 +1.950000e+00 5.000000e-02 5.000000e-02 1.473429e-02 1.007212e-03 1.007212e-03 +2.100000e+00 1.000000e-01 1.000000e-01 1.078737e-02 7.097357e-04 7.097357e-04 +2.300000e+00 1.000000e-01 1.000000e-01 7.374304e-03 4.952118e-04 4.952118e-04 +2.500000e+00 1.000000e-01 1.000000e-01 5.097089e-03 3.613787e-04 3.613787e-04 +2.700000e+00 1.000000e-01 1.000000e-01 3.342746e-03 3.733317e-04 3.733317e-04 +2.900000e+00 1.000000e-01 1.000000e-01 2.293633e-03 4.036232e-04 4.036232e-04 +3.100000e+00 1.000000e-01 1.000000e-01 1.568664e-03 3.339004e-04 3.339004e-04 +3.300000e+00 1.000000e-01 1.000000e-01 1.109366e-03 2.575589e-04 2.575589e-04 +3.500000e+00 1.000000e-01 1.000000e-01 7.823112e-04 1.811919e-04 1.811919e-04 +3.700000e+00 1.000000e-01 1.000000e-01 5.833341e-04 1.260672e-04 1.260672e-04 +3.900000e+00 1.000000e-01 1.000000e-01 4.389565e-04 8.700056e-05 8.700056e-05 +4.250000e+00 2.500000e-01 2.500000e-01 2.741015e-04 4.854243e-05 4.854243e-05 +4.750000e+00 2.500000e-01 2.500000e-01 1.464531e-04 2.279661e-05 2.279661e-05 +5.500000e+00 5.000000e-01 5.000000e-01 6.595647e-05 8.881683e-06 8.881683e-06 +7.000000e+00 1.000000e+00 1.000000e+00 1.878600e-05 2.070271e-06 2.070271e-06 +9.000000e+00 1.000000e+00 1.000000e+00 4.629057e-06 5.055009e-07 5.055009e-07 +1.250000e+01 2.500000e+00 2.500000e+00 9.572291e-07 1.322727e-07 1.322727e-07 +1.750000e+01 2.500000e+00 2.500000e+00 1.436002e-07 2.855213e-08 2.855213e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d40-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0159468, up: 0.0159468}, stat: {dn: -0.0007110018, up: 0.0007110018}}, 1: {full syst.: {dn: -0.01507896, up: 0.01507896}, stat: {dn: -0.0006187743, up: 0.0006187743}}, 2: {full syst.: {dn: -0.01427159, up: 0.01427159}, stat: {dn: -0.0005458977, up: 0.0005458977}}, 3: {full syst.: {dn: -0.01076512, up: 0.01076512}, stat: {dn: -0.000314427, up: 0.000314427}}, 4: {full syst.: {dn: -0.01023178, up: 0.01023178}, stat: {dn: -0.0003158379, up: 0.0003158379}}, 5: {full syst.: {dn: -0.009301397, up: 0.009301397}, stat: {dn: -0.0003013938, up: 0.0003013938}}, 6: {full syst.: {dn: -0.009087146, up: 0.009087146}, stat: {dn: -0.0003905808, up: 0.0003905808}}, 7: {full syst.: {dn: -0.008010713, up: 0.008010713}, stat: {dn: -0.000372949, up: 0.000372949}}, 8: {full syst.: {dn: -0.007070086, up: 0.007070086}, stat: {dn: -0.0003450837, up: 0.0003450837}}, 9: {full syst.: {dn: -0.006155174, up: 0.006155174}, stat: {dn: -0.0003261759, up: 0.0003261759}}, 10: {full syst.: {dn: -0.005785934, up: 0.005785934}, stat: {dn: -0.000338789, up: 0.000338789}}, 11: {full syst.: {dn: -0.005489237, up: 0.005489237}, stat: {dn: -0.0003300292, up: 0.0003300292}}, 12: {full syst.: {dn: -0.004767932, up: 0.004767932}, stat: {dn: -0.0003047449, up: 0.0003047449}}, 13: {full syst.: {dn: -0.004155231, up: 0.004155231}, stat: {dn: -0.0003413104, up: 0.0003413104}}, 14: {full syst.: {dn: -0.003338101, up: 0.003338101}, stat: {dn: -0.0002148064, up: 0.0002148064}}, 15: {full syst.: {dn: -0.002535313, up: 0.002535313}, stat: {dn: -0.0001953795, up: 0.0001953795}}, 16: {full syst.: {dn: -0.001948795, up: 0.001948795}, stat: {dn: -0.0001733485, up: 0.0001733485}}, 17: {full syst.: {dn: -0.001511808, up: 0.001511808}, stat: {dn: -0.0001515649, up: 0.0001515649}}, 18: {full syst.: {dn: -0.001163742, up: 0.001163742}, stat: {dn: -0.0001337123, up: 0.0001337123}}, 19: {full syst.: {dn: -0.0008978112, up: 0.0008978112}, stat: {dn: -0.0001100019, up: 0.0001100019}}, 20: {full syst.: {dn: -0.0006985599, up: 0.0006985599}, stat: {dn: -0.0001046492, up: 0.0001046492}}, 21: {full syst.: {dn: -0.0005454971, up: 0.0005454971}, stat: {dn: -9.441152e-05, up: 9.441152e-05}}, 22: {full syst.: {dn: -0.0004335239, up: 0.0004335239}, stat: {dn: -9.070207e-05, up: 9.070207e-05}}, 23: {full syst.: {dn: -0.0003359883, up: 0.0003359883}, stat: {dn: -7.457309e-05, up: 7.457309e-05}}, 24: {full syst.: {dn: -0.0002435216, up: 0.0002435216}, stat: {dn: -4.258641e-05, up: 4.258641e-05}}, 25: {full syst.: {dn: -0.000160251, up: 0.000160251}, stat: {dn: -3.381613e-05, up: 3.381613e-05}}, 26: {full syst.: {dn: -0.0001111097, up: 0.0001111097}, stat: {dn: -2.63275e-05, up: 2.63275e-05}}, 27: {full syst.: {dn: -0.0001068249, up: 0.0001068249}, stat: {dn: -2.812446e-05, up: 2.812446e-05}}, 28: {full syst.: {dn: -0.0001133389, up: 0.0001133389}, stat: {dn: -1.578358e-05, up: 1.578358e-05}}, 29: {full syst.: {dn: -9.229962e-05, up: 9.229962e-05}, stat: {dn: -1.142598e-05, up: 1.142598e-05}}, 30: {full syst.: {dn: -7.041473e-05, up: 7.041473e-05}, stat: {dn: -8.521245e-06, up: 8.521245e-06}}, 31: {full syst.: {dn: -4.972693e-05, up: 4.972693e-05}, stat: {dn: -6.488661e-06, up: 6.488661e-06}}, 32: {full syst.: {dn: -3.381589e-05, up: 3.381589e-05}, stat: {dn: -5.12671e-06, up: 5.12671e-06}}, 33: {full syst.: {dn: -2.265201e-05, up: 2.265201e-05}, stat: {dn: -3.957001e-06, up: 3.957001e-06}}, 34: {full syst.: {dn: -1.239004e-05, up: 1.239004e-05}, stat: {dn: -2.253544e-06, up: 2.253544e-06}}, 35: {full syst.: {dn: -5.832638e-06, up: 5.832638e-06}, stat: {dn: -1.400427e-06, up: 1.400427e-06}}, 36: {full syst.: {dn: -2.235571e-06, up: 2.235571e-06}, stat: {dn: -6.849976e-07, up: 6.849976e-07}}, 37: {full syst.: {dn: -4.982595e-07, up: 4.982595e-07}, stat: {dn: -2.630884e-07, up: 2.630884e-07}}, 38: {full syst.: {dn: -1.010527e-07, up: 1.010527e-07}, stat: {dn: -9.919885e-08, up: 9.919885e-08}}, 39: {full syst.: {dn: -2.230064e-08, up: 2.230064e-08}, stat: {dn: -3.265333e-08, up: 3.265333e-08}}, 40: {full syst.: {dn: -4.026757e-09, up: 4.026757e-09}, stat: {dn: -9.162028e-09, up: 9.162028e-09}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d40-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t40 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 1.278801e-01 1.596264e-02 1.596264e-02 +3.750000e-01 2.500000e-02 2.500000e-02 1.343663e-01 1.509165e-02 1.509165e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.358330e-01 1.428203e-02 1.428203e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.360172e-01 1.076971e-02 1.076971e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.331423e-01 1.023665e-02 1.023665e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.256009e-01 9.306279e-03 9.306279e-03 +6.250000e-01 2.500000e-02 2.500000e-02 1.199099e-01 9.095536e-03 9.095536e-03 +6.750000e-01 2.500000e-02 2.500000e-02 1.096798e-01 8.019390e-03 8.019390e-03 +7.250000e-01 2.500000e-02 2.500000e-02 9.908167e-02 7.078503e-03 7.078503e-03 +7.750000e-01 2.500000e-02 2.500000e-02 8.896238e-02 6.163810e-03 6.163810e-03 +8.250000e-01 2.500000e-02 2.500000e-02 8.048462e-02 5.795844e-03 5.795844e-03 +8.750000e-01 2.500000e-02 2.500000e-02 7.193240e-02 5.499149e-03 5.499149e-03 +9.250000e-01 2.500000e-02 2.500000e-02 6.336229e-02 4.777661e-03 4.777661e-03 +9.750000e-01 2.500000e-02 2.500000e-02 5.578578e-02 4.169225e-03 4.169225e-03 +1.050000e+00 5.000000e-02 5.000000e-02 4.528671e-02 3.345005e-03 3.345005e-03 +1.150000e+00 5.000000e-02 5.000000e-02 3.465655e-02 2.542830e-03 2.542830e-03 +1.250000e+00 5.000000e-02 5.000000e-02 2.678841e-02 1.956490e-03 1.956490e-03 +1.350000e+00 5.000000e-02 5.000000e-02 2.082013e-02 1.519387e-03 1.519387e-03 +1.450000e+00 5.000000e-02 5.000000e-02 1.605179e-02 1.171398e-03 1.171398e-03 +1.550000e+00 5.000000e-02 5.000000e-02 1.237337e-02 9.045249e-04 9.045249e-04 +1.650000e+00 5.000000e-02 5.000000e-02 9.531402e-03 7.063550e-04 7.063550e-04 +1.750000e+00 5.000000e-02 5.000000e-02 7.363481e-03 5.536069e-04 5.536069e-04 +1.850000e+00 5.000000e-02 5.000000e-02 5.839737e-03 4.429106e-04 4.429106e-04 +1.950000e+00 5.000000e-02 5.000000e-02 4.473425e-03 3.441646e-04 3.441646e-04 +2.100000e+00 1.000000e-01 1.000000e-01 3.314262e-03 2.472173e-04 2.472173e-04 +2.300000e+00 1.000000e-01 1.000000e-01 2.163175e-03 1.637801e-04 1.637801e-04 +2.500000e+00 1.000000e-01 1.000000e-01 1.429448e-03 1.141863e-04 1.141863e-04 +2.700000e+00 1.000000e-01 1.000000e-01 9.063511e-04 1.104651e-04 1.104651e-04 +2.900000e+00 1.000000e-01 1.000000e-01 6.000050e-04 1.144326e-04 1.144326e-04 +3.100000e+00 1.000000e-01 1.000000e-01 3.935830e-04 9.300416e-05 9.300416e-05 +3.300000e+00 1.000000e-01 1.000000e-01 2.688960e-04 7.092846e-05 7.092846e-05 +3.500000e+00 1.000000e-01 1.000000e-01 1.874757e-04 5.014848e-05 5.014848e-05 +3.700000e+00 1.000000e-01 1.000000e-01 1.345606e-04 3.420230e-05 3.420230e-05 +3.900000e+00 1.000000e-01 1.000000e-01 9.878609e-05 2.299503e-05 2.299503e-05 +4.250000e+00 2.500000e-01 2.500000e-01 6.138556e-05 1.259331e-05 1.259331e-05 +4.750000e+00 2.500000e-01 2.500000e-01 3.375778e-05 5.998405e-06 5.998405e-06 +5.500000e+00 5.000000e-01 5.000000e-01 1.514151e-05 2.338162e-06 2.338162e-06 +7.000000e+00 1.000000e+00 1.000000e+00 4.203729e-06 5.634519e-07 5.634519e-07 +9.000000e+00 1.000000e+00 1.000000e+00 9.387725e-07 1.416053e-07 1.416053e-07 +1.250000e+01 2.500000e+00 2.500000e+00 1.832248e-07 3.954186e-08 3.954186e-08 +1.750000e+01 2.500000e+00 2.500000e+00 2.927073e-08 1.000787e-08 1.000787e-08 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d41-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.01341825, up: 0.01341825}, stat: {dn: -0.02233741, up: 0.02233741}}, 1: {full syst.: {dn: -0.0213003, up: 0.0213003}, stat: {dn: -0.0289152, up: 0.0289152}}, 2: {full syst.: {dn: -0.02006931, up: 0.02006931}, stat: {dn: -0.02211672, up: 0.02211672}}, 3: {full syst.: {dn: -0.01577129, up: 0.01577129}, stat: {dn: -0.01323788, up: 0.01323788}}, 4: {full syst.: {dn: -0.009817492, up: 0.009817492}, stat: {dn: -0.00823189, up: 0.00823189}}, 5: {full syst.: {dn: -0.006438298, up: 0.006438298}, stat: {dn: -0.004673647, up: 0.004673647}}, 6: {full syst.: {dn: -0.002956634, up: 0.002956634}, stat: {dn: -0.002872081, up: 0.002872081}}, 7: {full syst.: {dn: -0.00165197, up: 0.00165197}, stat: {dn: -0.001850731, up: 0.001850731}}, 8: {full syst.: {dn: -0.0008069095, up: 0.0008069095}, stat: {dn: -0.00125193, up: 0.00125193}}, 9: {full syst.: {dn: -0.0005290045, up: 0.0005290045}, stat: {dn: -0.0008741111, up: 0.0008741111}}, 10: {full syst.: {dn: -0.0002611925, up: 0.0002611925}, stat: {dn: -0.0006052331, up: 0.0006052331}}, 11: {full syst.: {dn: -0.0001623272, up: 0.0001623272}, stat: {dn: -0.0002986754, up: 0.0002986754}}, 12: {full syst.: {dn: -8.992063e-05, up: 8.992063e-05}, stat: {dn: -0.00015555, up: 0.00015555}}, 13: {full syst.: {dn: -2.600366e-05, up: 2.600366e-05}, stat: {dn: -4.369592e-05, up: 4.369592e-05}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d41-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t41 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 1.137140e-01 2.605781e-02 2.605781e-02 +6.000000e-01 2.000000e-01 2.000000e-01 1.775025e-01 3.591367e-02 3.591367e-02 +1.000000e+00 2.000000e-01 2.000000e-01 1.875636e-01 2.986514e-02 2.986514e-02 +1.400000e+00 2.000000e-01 2.000000e-01 1.433753e-01 2.059065e-02 2.059065e-02 +1.800000e+00 2.000000e-01 2.000000e-01 9.175226e-02 1.281199e-02 1.281199e-02 +2.250000e+00 2.500000e-01 2.500000e-01 5.906695e-02 7.955794e-03 7.955794e-03 +2.750000e+00 2.500000e-01 2.500000e-01 2.789277e-02 4.121958e-03 4.121958e-03 +3.250000e+00 2.500000e-01 2.500000e-01 1.635614e-02 2.480768e-03 2.480768e-03 +3.750000e+00 2.500000e-01 2.500000e-01 7.989203e-03 1.489440e-03 1.489440e-03 +4.250000e+00 2.500000e-01 2.500000e-01 4.809132e-03 1.021722e-03 1.021722e-03 +4.750000e+00 2.500000e-01 2.500000e-01 2.611925e-03 6.591879e-04 6.591879e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.475702e-03 3.399369e-04 3.399369e-04 +6.500000e+00 5.000000e-01 5.000000e-01 7.431457e-04 1.796706e-04 1.796706e-04 +8.500000e+00 1.500000e+00 1.500000e+00 1.884323e-04 5.084805e-05 5.084805e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d42-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.007121608, up: 0.007121608}, stat: {dn: -0.009981025, up: 0.009981025}}, 1: {full syst.: {dn: -0.01884786, up: 0.01884786}, stat: {dn: -0.01232314, up: 0.01232314}}, 2: {full syst.: {dn: -0.01894358, up: 0.01894358}, stat: {dn: -0.008784997, up: 0.008784997}}, 3: {full syst.: {dn: -0.01221652, up: 0.01221652}, stat: {dn: -0.005213158, up: 0.005213158}}, 4: {full syst.: {dn: -0.0078804, up: 0.0078804}, stat: {dn: -0.003193502, up: 0.003193502}}, 5: {full syst.: {dn: -0.004652165, up: 0.004652165}, stat: {dn: -0.001783564, up: 0.001783564}}, 6: {full syst.: {dn: -0.002461581, up: 0.002461581}, stat: {dn: -0.001101619, up: 0.001101619}}, 7: {full syst.: {dn: -0.001382979, up: 0.001382979}, stat: {dn: -0.0007040332, up: 0.0007040332}}, 8: {full syst.: {dn: -0.0007416571, up: 0.0007416571}, stat: {dn: -0.0004756622, up: 0.0004756622}}, 9: {full syst.: {dn: -0.0003848979, up: 0.0003848979}, stat: {dn: -0.0003339927, up: 0.0003339927}}, 10: {full syst.: {dn: -0.0002365713, up: 0.0002365713}, stat: {dn: -0.0002454406, up: 0.0002454406}}, 11: {full syst.: {dn: -0.0001165377, up: 0.0001165377}, stat: {dn: -0.0001153794, up: 0.0001153794}}, 12: {full syst.: {dn: -5.555595e-05, up: 5.555595e-05}, stat: {dn: -7.014722e-05, up: 7.014722e-05}}, 13: {full syst.: {dn: -1.791199e-05, up: 1.791199e-05}, stat: {dn: -1.963146e-05, up: 1.963146e-05}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d42-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t42 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 5.789925e-02 1.226125e-02 1.226125e-02 +6.000000e-01 2.000000e-01 2.000000e-01 1.698006e-01 2.251892e-02 2.251892e-02 +1.000000e+00 2.000000e-01 2.000000e-01 1.647268e-01 2.088146e-02 2.088146e-02 +1.400000e+00 2.000000e-01 2.000000e-01 1.090761e-01 1.328233e-02 1.328233e-02 +1.800000e+00 2.000000e-01 2.000000e-01 6.793448e-02 8.502891e-03 8.502891e-03 +2.250000e+00 2.500000e-01 2.500000e-01 4.116960e-02 4.982343e-03 4.982343e-03 +2.750000e+00 2.500000e-01 2.500000e-01 2.103915e-02 2.696840e-03 2.696840e-03 +3.250000e+00 2.500000e-01 2.500000e-01 1.234803e-02 1.551868e-03 1.551868e-03 +3.750000e+00 2.500000e-01 2.500000e-01 6.393596e-03 8.810844e-04 8.810844e-04 +4.250000e+00 2.500000e-01 2.500000e-01 3.406176e-03 5.096053e-04 5.096053e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.170379e-03 3.408916e-04 3.408916e-04 +5.500000e+00 5.000000e-01 5.000000e-01 9.631215e-04 1.639922e-04 1.639922e-04 +6.500000e+00 5.000000e-01 5.000000e-01 4.916456e-04 8.948238e-05 8.948238e-05 +8.500000e+00 1.500000e+00 1.500000e+00 1.326814e-04 2.657506e-05 2.657506e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d43-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.007775022, up: 0.007775022}, stat: {dn: -0.007981071, up: 0.007981071}}, 1: {full syst.: {dn: -0.01813493, up: 0.01813493}, stat: {dn: -0.008808788, up: 0.008808788}}, 2: {full syst.: {dn: -0.01715109, up: 0.01715109}, stat: {dn: -0.006534623, up: 0.006534623}}, 3: {full syst.: {dn: -0.01114368, up: 0.01114368}, stat: {dn: -0.003819409, up: 0.003819409}}, 4: {full syst.: {dn: -0.006288089, up: 0.006288089}, stat: {dn: -0.002317614, up: 0.002317614}}, 5: {full syst.: {dn: -0.003138025, up: 0.003138025}, stat: {dn: -0.001286208, up: 0.001286208}}, 6: {full syst.: {dn: -0.001835453, up: 0.001835453}, stat: {dn: -0.0007880425, up: 0.0007880425}}, 7: {full syst.: {dn: -0.0009232355, up: 0.0009232355}, stat: {dn: -0.0005028899, up: 0.0005028899}}, 8: {full syst.: {dn: -0.0004413178, up: 0.0004413178}, stat: {dn: -0.0003391702, up: 0.0003391702}}, 9: {full syst.: {dn: -0.0003282386, up: 0.0003282386}, stat: {dn: -0.0002417069, up: 0.0002417069}}, 10: {full syst.: {dn: -0.0001666203, up: 0.0001666203}, stat: {dn: -0.0001771024, up: 0.0001771024}}, 11: {full syst.: {dn: -9.726356e-05, up: 9.726356e-05}, stat: {dn: -8.256235e-05, up: 8.256235e-05}}, 12: {full syst.: {dn: -3.773441e-05, up: 3.773441e-05}, stat: {dn: -4.850638e-05, up: 4.850638e-05}}, 13: {full syst.: {dn: -1.758994e-05, up: 1.758994e-05}, stat: {dn: -1.395126e-05, up: 1.395126e-05}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d43-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t43 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 6.170653e-02 1.114219e-02 1.114219e-02 +6.000000e-01 2.000000e-01 2.000000e-01 1.549994e-01 2.016111e-02 2.016111e-02 +1.000000e+00 2.000000e-01 2.000000e-01 1.453482e-01 1.835378e-02 1.835378e-02 +1.400000e+00 2.000000e-01 2.000000e-01 9.059900e-02 1.178005e-02 1.178005e-02 +1.800000e+00 2.000000e-01 2.000000e-01 5.515868e-02 6.701597e-03 6.701597e-03 +2.250000e+00 2.500000e-01 2.500000e-01 2.827049e-02 3.391391e-03 3.391391e-03 +2.750000e+00 2.500000e-01 2.500000e-01 1.555468e-02 1.997473e-03 1.997473e-03 +3.250000e+00 2.500000e-01 2.500000e-01 8.317437e-03 1.051314e-03 1.051314e-03 +3.750000e+00 2.500000e-01 2.500000e-01 3.975836e-03 5.565948e-04 5.565948e-04 +4.250000e+00 2.500000e-01 2.500000e-01 2.781683e-03 4.076307e-04 4.076307e-04 +4.750000e+00 2.500000e-01 2.500000e-01 1.501084e-03 2.431616e-04 2.431616e-04 +5.500000e+00 5.000000e-01 5.000000e-01 7.368452e-04 1.275803e-04 1.275803e-04 +6.500000e+00 5.000000e-01 5.000000e-01 2.994794e-04 6.145531e-05 6.145531e-05 +8.500000e+00 1.500000e+00 1.500000e+00 1.230066e-04 2.245092e-05 2.245092e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d44-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006972887, up: 0.006972887}, stat: {dn: -0.005962969, up: 0.005962969}}, 1: {full syst.: {dn: -0.01652482, up: 0.01652482}, stat: {dn: -0.007354935, up: 0.007354935}}, 2: {full syst.: {dn: -0.01368459, up: 0.01368459}, stat: {dn: -0.005044942, up: 0.005044942}}, 3: {full syst.: {dn: -0.007828997, up: 0.007828997}, stat: {dn: -0.002806709, up: 0.002806709}}, 4: {full syst.: {dn: -0.004359004, up: 0.004359004}, stat: {dn: -0.001796658, up: 0.001796658}}, 5: {full syst.: {dn: -0.00235146, up: 0.00235146}, stat: {dn: -0.0009295848, up: 0.0009295848}}, 6: {full syst.: {dn: -0.00134796, up: 0.00134796}, stat: {dn: -0.000585317, up: 0.000585317}}, 7: {full syst.: {dn: -0.0006270294, up: 0.0006270294}, stat: {dn: -0.0003840216, up: 0.0003840216}}, 8: {full syst.: {dn: -0.0003223832, up: 0.0003223832}, stat: {dn: -0.0002787962, up: 0.0002787962}}, 9: {full syst.: {dn: -0.0001863592, up: 0.0001863592}, stat: {dn: -0.0001959531, up: 0.0001959531}}, 10: {full syst.: {dn: -9.977898e-05, up: 9.977898e-05}, stat: {dn: -0.000142206, up: 0.000142206}}, 11: {full syst.: {dn: -6.410721e-05, up: 6.410721e-05}, stat: {dn: -6.462937e-05, up: 6.462937e-05}}, 12: {full syst.: {dn: -3.374897e-05, up: 3.374897e-05}, stat: {dn: -3.847666e-05, up: 3.847666e-05}}, 13: {full syst.: {dn: -8.699022e-06, up: 8.699022e-06}, stat: {dn: -1.128709e-05, up: 1.128709e-05}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d44-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t44 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 5.322814e-02 9.174865e-03 9.174865e-03 +6.000000e-01 2.000000e-01 2.000000e-01 1.449546e-01 1.808770e-02 1.808770e-02 +1.000000e+00 2.000000e-01 2.000000e-01 1.179706e-01 1.458490e-02 1.458490e-02 +1.400000e+00 2.000000e-01 2.000000e-01 7.182566e-02 8.316899e-03 8.316899e-03 +1.800000e+00 2.000000e-01 2.000000e-01 3.999086e-02 4.714753e-03 4.714753e-03 +2.250000e+00 2.500000e-01 2.500000e-01 2.218359e-02 2.528536e-03 2.528536e-03 +2.750000e+00 2.500000e-01 2.500000e-01 1.172139e-02 1.469555e-03 1.469555e-03 +3.250000e+00 2.500000e-01 2.500000e-01 5.971709e-03 7.352812e-04 7.352812e-04 +3.750000e+00 2.500000e-01 2.500000e-01 3.041351e-03 4.262139e-04 4.262139e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.620515e-03 2.704207e-04 2.704207e-04 +4.750000e+00 2.500000e-01 2.500000e-01 9.502760e-04 1.737193e-04 1.737193e-04 +5.500000e+00 5.000000e-01 5.000000e-01 5.342268e-04 9.103126e-05 9.103126e-05 +6.500000e+00 5.000000e-01 5.000000e-01 2.766309e-04 5.118053e-05 5.118053e-05 +8.500000e+00 1.500000e+00 1.500000e+00 6.396340e-05 1.425031e-05 1.425031e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d45-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.007476704, up: 0.007476704}, stat: {dn: -0.00364603, up: 0.00364603}}, 1: {full syst.: {dn: -0.01476974, up: 0.01476974}, stat: {dn: -0.004561524, up: 0.004561524}}, 2: {full syst.: {dn: -0.009952536, up: 0.009952536}, stat: {dn: -0.00304325, up: 0.00304325}}, 3: {full syst.: {dn: -0.005774608, up: 0.005774608}, stat: {dn: -0.001606581, up: 0.001606581}}, 4: {full syst.: {dn: -0.003389101, up: 0.003389101}, stat: {dn: -0.001029645, up: 0.001029645}}, 5: {full syst.: {dn: -0.001568617, up: 0.001568617}, stat: {dn: -0.0005643257, up: 0.0005643257}}, 6: {full syst.: {dn: -0.0009025676, up: 0.0009025676}, stat: {dn: -0.0003430891, up: 0.0003430891}}, 7: {full syst.: {dn: -0.0005004523, up: 0.0005004523}, stat: {dn: -0.0002189734, up: 0.0002189734}}, 8: {full syst.: {dn: -0.000212546, up: 0.000212546}, stat: {dn: -0.0001491322, up: 0.0001491322}}, 9: {full syst.: {dn: -0.0001164955, up: 0.0001164955}, stat: {dn: -0.0001060994, up: 0.0001060994}}, 10: {full syst.: {dn: -7.09713e-05, up: 7.09713e-05}, stat: {dn: -7.010805e-05, up: 7.010805e-05}}, 11: {full syst.: {dn: -3.55461e-05, up: 3.55461e-05}, stat: {dn: -3.670489e-05, up: 3.670489e-05}}, 12: {full syst.: {dn: -1.884551e-05, up: 1.884551e-05}, stat: {dn: -2.172755e-05, up: 2.172755e-05}}, 13: {full syst.: {dn: -7.192888e-06, up: 7.192888e-06}, stat: {dn: -6.789221e-06, up: 6.789221e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d45-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t45 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 6.029600e-02 8.318331e-03 8.318331e-03 +6.000000e-01 2.000000e-01 2.000000e-01 1.210634e-01 1.545810e-02 1.545810e-02 +1.000000e+00 2.000000e-01 2.000000e-01 8.886193e-02 1.040742e-02 1.040742e-02 +1.400000e+00 2.000000e-01 2.000000e-01 5.155900e-02 5.993930e-03 5.993930e-03 +1.800000e+00 2.000000e-01 2.000000e-01 2.947044e-02 3.542058e-03 3.542058e-03 +2.250000e+00 2.500000e-01 2.500000e-01 1.508286e-02 1.667040e-03 1.667040e-03 +2.750000e+00 2.500000e-01 2.500000e-01 8.058639e-03 9.655767e-04 9.655767e-04 +3.250000e+00 2.500000e-01 2.500000e-01 4.351759e-03 5.462617e-04 5.462617e-04 +3.750000e+00 2.500000e-01 2.500000e-01 2.043711e-03 2.596463e-04 2.596463e-04 +4.250000e+00 2.500000e-01 2.500000e-01 1.040139e-03 1.575699e-04 1.575699e-04 +4.750000e+00 2.500000e-01 2.500000e-01 6.890417e-04 9.976003e-05 9.976003e-05 +5.500000e+00 5.000000e-01 5.000000e-01 3.162464e-04 5.109574e-05 5.109574e-05 +6.500000e+00 5.000000e-01 5.000000e-01 1.597077e-04 2.876177e-05 2.876177e-05 +8.500000e+00 1.500000e+00 1.500000e+00 5.367827e-05 9.890964e-06 9.890964e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d46-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006773231, up: 0.006773231}, stat: {dn: -0.004474104, up: 0.004474104}}, 1: {full syst.: {dn: -0.01148384, up: 0.01148384}, stat: {dn: -0.005663096, up: 0.005663096}}, 2: {full syst.: {dn: -0.008387763, up: 0.008387763}, stat: {dn: -0.003246119, up: 0.003246119}}, 3: {full syst.: {dn: -0.00457919, up: 0.00457919}, stat: {dn: -0.001787078, up: 0.001787078}}, 4: {full syst.: {dn: -0.002536952, up: 0.002536952}, stat: {dn: -0.001050755, up: 0.001050755}}, 5: {full syst.: {dn: -0.001293088, up: 0.001293088}, stat: {dn: -0.0006073042, up: 0.0006073042}}, 6: {full syst.: {dn: -0.0006421218, up: 0.0006421218}, stat: {dn: -0.0003926944, up: 0.0003926944}}, 7: {full syst.: {dn: -0.0003270982, up: 0.0003270982}, stat: {dn: -0.0002499757, up: 0.0002499757}}, 8: {full syst.: {dn: -0.0001559157, up: 0.0001559157}, stat: {dn: -0.0001706132, up: 0.0001706132}}, 9: {full syst.: {dn: -7.066205e-05, up: 7.066205e-05}, stat: {dn: -0.0001216226, up: 0.0001216226}}, 10: {full syst.: {dn: -3.894324e-05, up: 3.894324e-05}, stat: {dn: -7.920858e-05, up: 7.920858e-05}}, 11: {full syst.: {dn: -2.776013e-05, up: 2.776013e-05}, stat: {dn: -3.726722e-05, up: 3.726722e-05}}, 12: {full syst.: {dn: -1.014465e-05, up: 1.014465e-05}, stat: {dn: -2.331033e-05, up: 2.331033e-05}}, 13: {full syst.: {dn: -5.471117e-06, up: 5.471117e-06}, stat: {dn: -6.864031e-06, up: 6.864031e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d46-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t46 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 5.506692e-02 8.117528e-03 8.117528e-03 +6.000000e-01 2.000000e-01 2.000000e-01 1.025343e-01 1.280427e-02 1.280427e-02 +1.000000e+00 2.000000e-01 2.000000e-01 7.695195e-02 8.993990e-03 8.993990e-03 +1.400000e+00 2.000000e-01 2.000000e-01 4.088562e-02 4.915550e-03 4.915550e-03 +1.800000e+00 2.000000e-01 2.000000e-01 2.265136e-02 2.745945e-03 2.745945e-03 +2.250000e+00 2.500000e-01 2.500000e-01 1.219895e-02 1.428599e-03 1.428599e-03 +2.750000e+00 2.500000e-01 2.500000e-01 5.682494e-03 7.526814e-04 7.526814e-04 +3.250000e+00 2.500000e-01 2.500000e-01 2.844332e-03 4.116808e-04 4.116808e-04 +3.750000e+00 2.500000e-01 2.500000e-01 1.392105e-03 2.311246e-04 2.311246e-04 +4.250000e+00 2.500000e-01 2.500000e-01 6.666231e-04 1.406598e-04 1.406598e-04 +4.750000e+00 2.500000e-01 2.500000e-01 3.446304e-04 8.826423e-05 8.826423e-05 +5.500000e+00 5.000000e-01 5.000000e-01 2.435099e-04 4.647010e-05 4.647010e-05 +6.500000e+00 5.000000e-01 5.000000e-01 8.384011e-05 2.542214e-05 2.542214e-05 +8.500000e+00 1.500000e+00 1.500000e+00 3.993516e-05 8.777701e-06 8.777701e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d47-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006278476, up: 0.006278476}, stat: {dn: -0.003759369, up: 0.003759369}}, 1: {full syst.: {dn: -0.009506941, up: 0.009506941}, stat: {dn: -0.004103213, up: 0.004103213}}, 2: {full syst.: {dn: -0.007192318, up: 0.007192318}, stat: {dn: -0.002610975, up: 0.002610975}}, 3: {full syst.: {dn: -0.003732537, up: 0.003732537}, stat: {dn: -0.001437747, up: 0.001437747}}, 4: {full syst.: {dn: -0.00194866, up: 0.00194866}, stat: {dn: -0.0008397928, up: 0.0008397928}}, 5: {full syst.: {dn: -0.001030228, up: 0.001030228}, stat: {dn: -0.0004656804, up: 0.0004656804}}, 6: {full syst.: {dn: -0.0004620025, up: 0.0004620025}, stat: {dn: -0.0002708278, up: 0.0002708278}}, 7: {full syst.: {dn: -0.0002328516, up: 0.0002328516}, stat: {dn: -0.000174449, up: 0.000174449}}, 8: {full syst.: {dn: -0.0001071252, up: 0.0001071252}, stat: {dn: -0.000134111, up: 0.000134111}}, 9: {full syst.: {dn: -5.521576e-05, up: 5.521576e-05}, stat: {dn: -9.1533e-05, up: 9.1533e-05}}, 10: {full syst.: {dn: -2.63672e-05, up: 2.63672e-05}, stat: {dn: -7.596005e-05, up: 7.596005e-05}}, 11: {full syst.: {dn: -1.896817e-05, up: 1.896817e-05}, stat: {dn: -3.135785e-05, up: 3.135785e-05}}, 12: {full syst.: {dn: -6.976161e-06, up: 6.976161e-06}, stat: {dn: -1.885127e-05, up: 1.885127e-05}}, 13: {full syst.: {dn: -2.970981e-06, up: 2.970981e-06}, stat: {dn: -5.330126e-06, up: 5.330126e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d47-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t47 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 5.188823e-02 7.317931e-03 7.317931e-03 +6.000000e-01 2.000000e-01 2.000000e-01 8.564811e-02 1.035463e-02 1.035463e-02 +1.000000e+00 2.000000e-01 2.000000e-01 6.309051e-02 7.651577e-03 7.651577e-03 +1.400000e+00 2.000000e-01 2.000000e-01 3.190203e-02 3.999869e-03 3.999869e-03 +1.800000e+00 2.000000e-01 2.000000e-01 1.679880e-02 2.121916e-03 2.121916e-03 +2.250000e+00 2.500000e-01 2.500000e-01 8.730747e-03 1.130587e-03 1.130587e-03 +2.750000e+00 2.500000e-01 2.500000e-01 3.948740e-03 5.355315e-04 5.355315e-04 +3.250000e+00 2.500000e-01 2.500000e-01 1.819153e-03 2.909507e-04 2.909507e-04 +3.750000e+00 2.500000e-01 2.500000e-01 9.234930e-04 1.716437e-04 1.716437e-04 +4.250000e+00 2.500000e-01 2.500000e-01 4.679302e-04 1.068975e-04 1.068975e-04 +4.750000e+00 2.500000e-01 2.500000e-01 2.253607e-04 8.040621e-05 8.040621e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.649407e-04 3.664841e-05 3.664841e-05 +6.500000e+00 5.000000e-01 5.000000e-01 5.718165e-05 2.010068e-05 2.010068e-05 +8.500000e+00 1.500000e+00 1.500000e+00 2.034918e-05 6.102210e-06 6.102210e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d48-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006158623, up: 0.006158623}, stat: {dn: -0.001952097, up: 0.001952097}}, 1: {full syst.: {dn: -0.008703805, up: 0.008703805}, stat: {dn: -0.002190833, up: 0.002190833}}, 2: {full syst.: {dn: -0.005201605, up: 0.005201605}, stat: {dn: -0.001364448, up: 0.001364448}}, 3: {full syst.: {dn: -0.002570935, up: 0.002570935}, stat: {dn: -0.0008445002, up: 0.0008445002}}, 4: {full syst.: {dn: -0.001203839, up: 0.001203839}, stat: {dn: -0.0004816092, up: 0.0004816092}}, 5: {full syst.: {dn: -0.0005913342, up: 0.0005913342}, stat: {dn: -0.0002560391, up: 0.0002560391}}, 6: {full syst.: {dn: -0.0002768687, up: 0.0002768687}, stat: {dn: -0.0001532343, up: 0.0001532343}}, 7: {full syst.: {dn: -0.0001393326, up: 0.0001393326}, stat: {dn: -9.717728e-05, up: 9.717728e-05}}, 8: {full syst.: {dn: -6.888693e-05, up: 6.888693e-05}, stat: {dn: -6.63493e-05, up: 6.63493e-05}}, 9: {full syst.: {dn: -3.549175e-05, up: 3.549175e-05}, stat: {dn: -4.729451e-05, up: 4.729451e-05}}, 10: {full syst.: {dn: -2.179557e-05, up: 2.179557e-05}, stat: {dn: -3.361351e-05, up: 3.361351e-05}}, 11: {full syst.: {dn: -8.551652e-06, up: 8.551652e-06}, stat: {dn: -1.674149e-05, up: 1.674149e-05}}, 12: {full syst.: {dn: -4.579634e-06, up: 4.579634e-06}, stat: {dn: -1.088608e-05, up: 1.088608e-05}}, 13: {full syst.: {dn: -1.431983e-06, up: 1.431983e-06}, stat: {dn: -3.107339e-06, up: 3.107339e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d48-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t48 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 4.630543e-02 6.460597e-03 6.460597e-03 +6.000000e-01 2.000000e-01 2.000000e-01 7.019198e-02 8.975298e-03 8.975298e-03 +1.000000e+00 2.000000e-01 2.000000e-01 4.334670e-02 5.377584e-03 5.377584e-03 +1.400000e+00 2.000000e-01 2.000000e-01 2.040425e-02 2.706083e-03 2.706083e-03 +1.800000e+00 2.000000e-01 2.000000e-01 9.949081e-03 1.296602e-03 1.296602e-03 +2.250000e+00 2.500000e-01 2.500000e-01 4.847001e-03 6.443851e-04 6.443851e-04 +2.750000e+00 2.500000e-01 2.500000e-01 2.269415e-03 3.164444e-04 3.164444e-04 +3.250000e+00 2.500000e-01 2.500000e-01 1.170862e-03 1.698735e-04 1.698735e-04 +3.750000e+00 2.500000e-01 2.500000e-01 5.467217e-04 9.564329e-05 9.564329e-05 +4.250000e+00 2.500000e-01 2.500000e-01 2.933202e-04 5.913066e-05 5.913066e-05 +4.750000e+00 2.500000e-01 2.500000e-01 1.786522e-04 4.006139e-05 4.006139e-05 +5.500000e+00 5.000000e-01 5.000000e-01 7.009551e-05 1.879916e-05 1.879916e-05 +6.500000e+00 5.000000e-01 5.000000e-01 3.577839e-05 1.181016e-05 1.181016e-05 +8.500000e+00 1.500000e+00 1.500000e+00 1.022845e-05 3.421422e-06 3.421422e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d49-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.005574562, up: 0.005574562}, stat: {dn: -0.001034625, up: 0.001034625}}, 1: {full syst.: {dn: -0.006665825, up: 0.006665825}, stat: {dn: -0.001169336, up: 0.001169336}}, 2: {full syst.: {dn: -0.002970196, up: 0.002970196}, stat: {dn: -0.0007084891, up: 0.0007084891}}, 3: {full syst.: {dn: -0.001214074, up: 0.001214074}, stat: {dn: -0.0003365894, up: 0.0003365894}}, 4: {full syst.: {dn: -0.0004684198, up: 0.0004684198}, stat: {dn: -0.0001841161, up: 0.0001841161}}, 5: {full syst.: {dn: -0.0002003818, up: 0.0002003818}, stat: {dn: -9.858991e-05, up: 9.858991e-05}}, 6: {full syst.: {dn: -9.241681e-05, up: 9.241681e-05}, stat: {dn: -5.415866e-05, up: 5.415866e-05}}, 7: {full syst.: {dn: -4.10122e-05, up: 4.10122e-05}, stat: {dn: -3.666823e-05, up: 3.666823e-05}}, 8: {full syst.: {dn: -1.620603e-05, up: 1.620603e-05}, stat: {dn: -2.615358e-05, up: 2.615358e-05}}, 9: {full syst.: {dn: -1.149783e-05, up: 1.149783e-05}, stat: {dn: -1.804277e-05, up: 1.804277e-05}}, 10: {full syst.: {dn: -6.184628e-06, up: 6.184628e-06}, stat: {dn: -1.3318e-05, up: 1.3318e-05}}, 11: {full syst.: {dn: -2.651692e-06, up: 2.651692e-06}, stat: {dn: -6.494783e-06, up: 6.494783e-06}}, 12: {full syst.: {dn: -1.719572e-06, up: 1.719572e-06}, stat: {dn: -3.720358e-06, up: 3.720358e-06}}, 13: {full syst.: {dn: -3.566771e-07, up: 3.566771e-07}, stat: {dn: -1.19892e-06, up: 1.19892e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d49-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t49 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 3.691763e-02 5.669761e-03 5.669761e-03 +6.000000e-01 2.000000e-01 2.000000e-01 5.011899e-02 6.767612e-03 6.767612e-03 +1.000000e+00 2.000000e-01 2.000000e-01 2.357298e-02 3.053526e-03 3.053526e-03 +1.400000e+00 2.000000e-01 2.000000e-01 9.339029e-03 1.259868e-03 1.259868e-03 +1.800000e+00 2.000000e-01 2.000000e-01 3.717618e-03 5.033049e-04 5.033049e-04 +2.250000e+00 2.500000e-01 2.500000e-01 1.712665e-03 2.233223e-04 2.233223e-04 +2.750000e+00 2.500000e-01 2.500000e-01 7.452968e-04 1.071169e-04 1.071169e-04 +3.250000e+00 2.500000e-01 2.500000e-01 3.417683e-04 5.501418e-05 5.501418e-05 +3.750000e+00 2.500000e-01 2.500000e-01 1.286193e-04 3.076760e-05 3.076760e-05 +4.250000e+00 2.500000e-01 2.500000e-01 9.827202e-05 2.139490e-05 2.139490e-05 +4.750000e+00 2.500000e-01 2.500000e-01 4.987603e-05 1.468396e-05 1.468396e-05 +5.500000e+00 5.000000e-01 5.000000e-01 2.071635e-05 7.015246e-06 7.015246e-06 +6.500000e+00 5.000000e-01 5.000000e-01 1.228266e-05 4.098535e-06 4.098535e-06 +8.500000e+00 1.500000e+00 1.500000e+00 2.362100e-06 1.250851e-06 1.250851e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d50-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006565808, up: 0.006565808}, stat: {dn: -0.01447844, up: 0.01447844}}, 1: {full syst.: {dn: -0.007691455, up: 0.007691455}, stat: {dn: -0.007141087, up: 0.007141087}}, 2: {full syst.: {dn: -0.006279207, up: 0.006279207}, stat: {dn: -0.005742718, up: 0.005742718}}, 3: {full syst.: {dn: -0.006417995, up: 0.006417995}, stat: {dn: -0.006442167, up: 0.006442167}}, 4: {full syst.: {dn: -0.00609649, up: 0.00609649}, stat: {dn: -0.00810006, up: 0.00810006}}, 5: {full syst.: {dn: -0.004834539, up: 0.004834539}, stat: {dn: -0.009395834, up: 0.009395834}}, 6: {full syst.: {dn: -0.004538086, up: 0.004538086}, stat: {dn: -0.008668133, up: 0.008668133}}, 7: {full syst.: {dn: -0.00407919, up: 0.00407919}, stat: {dn: -0.007083847, up: 0.007083847}}, 8: {full syst.: {dn: -0.002323583, up: 0.002323583}, stat: {dn: -0.002841237, up: 0.002841237}}, 9: {full syst.: {dn: -0.001152318, up: 0.001152318}, stat: {dn: -0.001599335, up: 0.001599335}}, 10: {full syst.: {dn: -0.0005227918, up: 0.0005227918}, stat: {dn: -0.0005822119, up: 0.0005822119}}, 11: {full syst.: {dn: -0.0001673117, up: 0.0001673117}, stat: {dn: -0.0002182958, up: 0.0002182958}}, 12: {full syst.: {dn: -0.0001086318, up: 0.0001086318}, stat: {dn: -0.0001286602, up: 0.0001286602}}, 13: {full syst.: {dn: -2.356807e-05, up: 2.356807e-05}, stat: {dn: -6.836943e-05, up: 6.836943e-05}}, 14: {full syst.: {dn: -1.507247e-05, up: 1.507247e-05}, stat: {dn: -2.225991e-05, up: 2.225991e-05}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d50-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t50 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 7.116324e-02 1.589764e-02 1.589764e-02 +7.000000e-01 1.000000e-01 1.000000e-01 9.196384e-02 1.049541e-02 1.049541e-02 +9.000000e-01 1.000000e-01 1.000000e-01 8.354761e-02 8.509245e-03 8.509245e-03 +1.100000e+00 1.000000e-01 1.000000e-01 8.757564e-02 9.093524e-03 9.093524e-03 +1.300000e+00 1.000000e-01 1.000000e-01 8.370481e-02 1.013796e-02 1.013796e-02 +1.500000e+00 1.000000e-01 1.000000e-01 6.452933e-02 1.056667e-02 1.056667e-02 +1.700000e+00 1.000000e-01 1.000000e-01 5.931569e-02 9.784209e-03 9.784209e-03 +1.900000e+00 1.000000e-01 1.000000e-01 5.424786e-02 8.174392e-03 8.174392e-03 +2.250000e+00 2.500000e-01 2.500000e-01 3.056706e-02 3.670377e-03 3.670377e-03 +2.750000e+00 2.500000e-01 2.500000e-01 1.522869e-02 1.971220e-03 1.971220e-03 +3.500000e+00 5.000000e-01 5.000000e-01 7.015792e-03 7.824845e-04 7.824845e-04 +4.500000e+00 5.000000e-01 5.000000e-01 2.225881e-03 2.750387e-04 2.750387e-04 +5.500000e+00 5.000000e-01 5.000000e-01 1.302685e-03 1.683874e-04 1.683874e-04 +6.500000e+00 5.000000e-01 5.000000e-01 2.784105e-04 7.231758e-05 7.231758e-05 +8.500000e+00 1.500000e+00 1.500000e+00 1.673274e-04 2.688276e-05 2.688276e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d51-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.006134764, up: 0.006134764}, stat: {dn: -0.006401304, up: 0.006401304}}, 1: {full syst.: {dn: -0.005979801, up: 0.005979801}, stat: {dn: -0.003026894, up: 0.003026894}}, 2: {full syst.: {dn: -0.005559454, up: 0.005559454}, stat: {dn: -0.002385214, up: 0.002385214}}, 3: {full syst.: {dn: -0.004863122, up: 0.004863122}, stat: {dn: -0.00260086, up: 0.00260086}}, 4: {full syst.: {dn: -0.004337414, up: 0.004337414}, stat: {dn: -0.003167676, up: 0.003167676}}, 5: {full syst.: {dn: -0.003797603, up: 0.003797603}, stat: {dn: -0.003576873, up: 0.003576873}}, 6: {full syst.: {dn: -0.00305028, up: 0.00305028}, stat: {dn: -0.003327944, up: 0.003327944}}, 7: {full syst.: {dn: -0.002653706, up: 0.002653706}, stat: {dn: -0.002723523, up: 0.002723523}}, 8: {full syst.: {dn: -0.001554902, up: 0.001554902}, stat: {dn: -0.001103233, up: 0.001103233}}, 9: {full syst.: {dn: -0.0007727555, up: 0.0007727555}, stat: {dn: -0.0006185552, up: 0.0006185552}}, 10: {full syst.: {dn: -0.0003465498, up: 0.0003465498}, stat: {dn: -0.0002285716, up: 0.0002285716}}, 11: {full syst.: {dn: -0.0001386754, up: 0.0001386754}, stat: {dn: -0.000109125, up: 0.000109125}}, 12: {full syst.: {dn: -5.476755e-05, up: 5.476755e-05}, stat: {dn: -4.633648e-05, up: 4.633648e-05}}, 13: {full syst.: {dn: -2.168486e-05, up: 2.168486e-05}, stat: {dn: -2.694941e-05, up: 2.694941e-05}}, 14: {full syst.: {dn: -9.716353e-06, up: 9.716353e-06}, stat: {dn: -8.821589e-06, up: 8.821589e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d51-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t51 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 6.647632e-02 8.866342e-03 8.866342e-03 +7.000000e-01 1.000000e-01 1.000000e-01 7.149825e-02 6.702246e-03 6.702246e-03 +9.000000e-01 1.000000e-01 1.000000e-01 7.524733e-02 6.049527e-03 6.049527e-03 +1.100000e+00 1.000000e-01 1.000000e-01 6.761046e-02 5.514928e-03 5.514928e-03 +1.300000e+00 1.000000e-01 1.000000e-01 5.869130e-02 5.370971e-03 5.370971e-03 +1.500000e+00 1.000000e-01 1.000000e-01 5.112115e-02 5.216877e-03 5.216877e-03 +1.700000e+00 1.000000e-01 1.000000e-01 4.130921e-02 4.514357e-03 4.514357e-03 +1.900000e+00 1.000000e-01 1.000000e-01 3.566271e-02 3.802596e-03 3.802596e-03 +2.250000e+00 2.500000e-01 2.500000e-01 2.132754e-02 1.906526e-03 1.906526e-03 +2.750000e+00 2.500000e-01 2.500000e-01 1.075253e-02 9.898291e-04 9.898291e-04 +3.500000e+00 5.000000e-01 5.000000e-01 4.720368e-03 4.151406e-04 4.151406e-04 +4.500000e+00 5.000000e-01 5.000000e-01 1.709958e-03 1.764628e-04 1.764628e-04 +5.500000e+00 5.000000e-01 5.000000e-01 6.594194e-04 7.173949e-05 7.173949e-05 +6.500000e+00 5.000000e-01 5.000000e-01 2.697573e-04 3.459052e-05 3.459052e-05 +8.500000e+00 1.500000e+00 1.500000e+00 9.475875e-05 1.312356e-05 1.312356e-05 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d52-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.00583368, up: 0.00583368}, stat: {dn: -0.005335677, up: 0.005335677}}, 1: {full syst.: {dn: -0.005534185, up: 0.005534185}, stat: {dn: -0.002436762, up: 0.002436762}}, 2: {full syst.: {dn: -0.00444648, up: 0.00444648}, stat: {dn: -0.001856693, up: 0.001856693}}, 3: {full syst.: {dn: -0.004001167, up: 0.004001167}, stat: {dn: -0.001982959, up: 0.001982959}}, 4: {full syst.: {dn: -0.003717834, up: 0.003717834}, stat: {dn: -0.002391299, up: 0.002391299}}, 5: {full syst.: {dn: -0.0029659, up: 0.0029659}, stat: {dn: -0.002636034, up: 0.002636034}}, 6: {full syst.: {dn: -0.002693071, up: 0.002693071}, stat: {dn: -0.002436779, up: 0.002436779}}, 7: {full syst.: {dn: -0.001871098, up: 0.001871098}, stat: {dn: -0.001930349, up: 0.001930349}}, 8: {full syst.: {dn: -0.001245842, up: 0.001245842}, stat: {dn: -0.000826869, up: 0.000826869}}, 9: {full syst.: {dn: -0.0007061573, up: 0.0007061573}, stat: {dn: -0.0004526344, up: 0.0004526344}}, 10: {full syst.: {dn: -0.0002489981, up: 0.0002489981}, stat: {dn: -0.0001686157, up: 0.0001686157}}, 11: {full syst.: {dn: -8.987552e-05, up: 8.987552e-05}, stat: {dn: -8.395175e-05, up: 8.395175e-05}}, 12: {full syst.: {dn: -3.652926e-05, up: 3.652926e-05}, stat: {dn: -3.427117e-05, up: 3.427117e-05}}, 13: {full syst.: {dn: -1.962163e-05, up: 1.962163e-05}, stat: {dn: -2.142036e-05, up: 2.142036e-05}}, 14: {full syst.: {dn: -6.548001e-06, up: 6.548001e-06}, stat: {dn: -6.955177e-06, up: 6.955177e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d52-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t52 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 6.234594e-02 7.905775e-03 7.905775e-03 +7.000000e-01 1.000000e-01 1.000000e-01 6.516708e-02 6.046901e-03 6.046901e-03 +9.000000e-01 1.000000e-01 1.000000e-01 6.045283e-02 4.818557e-03 4.818557e-03 +1.100000e+00 1.000000e-01 1.000000e-01 5.539110e-02 4.465587e-03 4.465587e-03 +1.300000e+00 1.000000e-01 1.000000e-01 5.203742e-02 4.420475e-03 4.420475e-03 +1.500000e+00 1.000000e-01 1.000000e-01 4.138817e-02 3.968027e-03 3.968027e-03 +1.700000e+00 1.000000e-01 1.000000e-01 3.482499e-02 3.631876e-03 3.631876e-03 +1.900000e+00 1.000000e-01 1.000000e-01 2.411400e-02 2.688355e-03 2.688355e-03 +2.250000e+00 2.500000e-01 2.500000e-01 1.596266e-02 1.495271e-03 1.495271e-03 +2.750000e+00 2.500000e-01 2.500000e-01 9.255096e-03 8.387705e-04 8.387705e-04 +3.500000e+00 5.000000e-01 5.000000e-01 3.248099e-03 3.007180e-04 3.007180e-04 +4.500000e+00 5.000000e-01 5.000000e-01 1.176680e-03 1.229858e-04 1.229858e-04 +5.500000e+00 5.000000e-01 5.000000e-01 4.592424e-04 5.008892e-05 5.008892e-05 +6.500000e+00 5.000000e-01 5.000000e-01 2.385267e-04 2.904893e-05 2.904893e-05 +8.500000e+00 1.500000e+00 1.500000e+00 6.927648e-05 9.552529e-06 9.552529e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d53-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.005123956, up: 0.005123956}, stat: {dn: -0.003523708, up: 0.003523708}}, 1: {full syst.: {dn: -0.004439594, up: 0.004439594}, stat: {dn: -0.001551741, up: 0.001551741}}, 2: {full syst.: {dn: -0.003857166, up: 0.003857166}, stat: {dn: -0.001172138, up: 0.001172138}}, 3: {full syst.: {dn: -0.003149397, up: 0.003149397}, stat: {dn: -0.001202007, up: 0.001202007}}, 4: {full syst.: {dn: -0.002722536, up: 0.002722536}, stat: {dn: -0.001394103, up: 0.001394103}}, 5: {full syst.: {dn: -0.002214953, up: 0.002214953}, stat: {dn: -0.001537977, up: 0.001537977}}, 6: {full syst.: {dn: -0.001800939, up: 0.001800939}, stat: {dn: -0.001400429, up: 0.001400429}}, 7: {full syst.: {dn: -0.001382291, up: 0.001382291}, stat: {dn: -0.001111647, up: 0.001111647}}, 8: {full syst.: {dn: -0.0009507275, up: 0.0009507275}, stat: {dn: -0.0004772512, up: 0.0004772512}}, 9: {full syst.: {dn: -0.0004450551, up: 0.0004450551}, stat: {dn: -0.0002613466, up: 0.0002613466}}, 10: {full syst.: {dn: -0.0001933056, up: 0.0001933056}, stat: {dn: -9.838984e-05, up: 9.838984e-05}}, 11: {full syst.: {dn: -6.887006e-05, up: 6.887006e-05}, stat: {dn: -5.025521e-05, up: 5.025521e-05}}, 12: {full syst.: {dn: -2.608383e-05, up: 2.608383e-05}, stat: {dn: -2.053469e-05, up: 2.053469e-05}}, 13: {full syst.: {dn: -1.227997e-05, up: 1.227997e-05}, stat: {dn: -1.271983e-05, up: 1.271983e-05}}, 14: {full syst.: {dn: -3.133712e-06, up: 3.133712e-06}, stat: {dn: -3.632189e-06, up: 3.632189e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d53-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t53 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 5.515895e-02 6.218637e-03 6.218637e-03 +7.000000e-01 1.000000e-01 1.000000e-01 5.295134e-02 4.702967e-03 4.702967e-03 +9.000000e-01 1.000000e-01 1.000000e-01 5.189458e-02 4.031332e-03 4.031332e-03 +1.100000e+00 1.000000e-01 1.000000e-01 4.503994e-02 3.370982e-03 3.370982e-03 +1.300000e+00 1.000000e-01 1.000000e-01 3.852114e-02 3.058713e-03 3.058713e-03 +1.500000e+00 1.000000e-01 1.000000e-01 3.036965e-02 2.696552e-03 2.696552e-03 +1.700000e+00 1.000000e-01 1.000000e-01 2.387955e-02 2.281355e-03 2.281355e-03 +1.900000e+00 1.000000e-01 1.000000e-01 1.863893e-02 1.773834e-03 1.773834e-03 +2.250000e+00 2.500000e-01 2.500000e-01 1.257244e-02 1.063791e-03 1.063791e-03 +2.750000e+00 2.500000e-01 2.500000e-01 5.918911e-03 5.161164e-04 5.161164e-04 +3.500000e+00 5.000000e-01 5.000000e-01 2.590017e-03 2.169046e-04 2.169046e-04 +4.500000e+00 5.000000e-01 5.000000e-01 9.335022e-04 8.525650e-05 8.525650e-05 +5.500000e+00 5.000000e-01 5.000000e-01 3.105674e-04 3.319698e-05 3.319698e-05 +6.500000e+00 5.000000e-01 5.000000e-01 1.514086e-04 1.768026e-05 1.768026e-05 +8.500000e+00 1.500000e+00 1.500000e+00 3.632328e-05 4.797181e-06 4.797181e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d54-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.003745849, up: 0.003745849}, stat: {dn: -0.003008579, up: 0.003008579}}, 1: {full syst.: {dn: -0.003358058, up: 0.003358058}, stat: {dn: -0.001338677, up: 0.001338677}}, 2: {full syst.: {dn: -0.003101674, up: 0.003101674}, stat: {dn: -0.0009981513, up: 0.0009981513}}, 3: {full syst.: {dn: -0.002336136, up: 0.002336136}, stat: {dn: -0.000984352, up: 0.000984352}}, 4: {full syst.: {dn: -0.001919044, up: 0.001919044}, stat: {dn: -0.001123062, up: 0.001123062}}, 5: {full syst.: {dn: -0.001788868, up: 0.001788868}, stat: {dn: -0.001228543, up: 0.001228543}}, 6: {full syst.: {dn: -0.001289857, up: 0.001289857}, stat: {dn: -0.001109492, up: 0.001109492}}, 7: {full syst.: {dn: -0.001085893, up: 0.001085893}, stat: {dn: -0.0008880913, up: 0.0008880913}}, 8: {full syst.: {dn: -0.0006476416, up: 0.0006476416}, stat: {dn: -0.0003673966, up: 0.0003673966}}, 9: {full syst.: {dn: -0.0002858525, up: 0.0002858525}, stat: {dn: -0.0002085351, up: 0.0002085351}}, 10: {full syst.: {dn: -0.0001221782, up: 0.0001221782}, stat: {dn: -7.95047e-05, up: 7.95047e-05}}, 11: {full syst.: {dn: -4.208377e-05, up: 4.208377e-05}, stat: {dn: -3.990307e-05, up: 3.990307e-05}}, 12: {full syst.: {dn: -1.386464e-05, up: 1.386464e-05}, stat: {dn: -1.566219e-05, up: 1.566219e-05}}, 13: {full syst.: {dn: -7.952538e-06, up: 7.952538e-06}, stat: {dn: -1.011579e-05, up: 1.011579e-05}}, 14: {full syst.: {dn: -2.272813e-06, up: 2.272813e-06}, stat: {dn: -2.892685e-06, up: 2.892685e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d54-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t54 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 4.053770e-02 4.804470e-03 4.804470e-03 +7.000000e-01 1.000000e-01 1.000000e-01 4.034877e-02 3.615053e-03 3.615053e-03 +9.000000e-01 1.000000e-01 1.000000e-01 4.191993e-02 3.258326e-03 3.258326e-03 +1.100000e+00 1.000000e-01 1.000000e-01 3.371853e-02 2.535050e-03 2.535050e-03 +1.300000e+00 1.000000e-01 1.000000e-01 2.775527e-02 2.223510e-03 2.223510e-03 +1.500000e+00 1.000000e-01 1.000000e-01 2.427090e-02 2.170108e-03 2.170108e-03 +1.700000e+00 1.000000e-01 1.000000e-01 1.696946e-02 1.701383e-03 1.701383e-03 +1.900000e+00 1.000000e-01 1.000000e-01 1.430588e-02 1.402808e-03 1.402808e-03 +2.250000e+00 2.500000e-01 2.500000e-01 8.613471e-03 7.445938e-04 7.445938e-04 +2.750000e+00 2.500000e-01 2.500000e-01 3.907293e-03 3.538341e-04 3.538341e-04 +3.500000e+00 5.000000e-01 5.000000e-01 1.668322e-03 1.457687e-04 1.457687e-04 +4.500000e+00 5.000000e-01 5.000000e-01 5.603434e-04 5.799395e-05 5.799395e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.809475e-04 2.091728e-05 2.091728e-05 +6.500000e+00 5.000000e-01 5.000000e-01 9.619194e-05 1.286748e-05 1.286748e-05 +8.500000e+00 1.500000e+00 1.500000e+00 2.523169e-05 3.678764e-06 3.678764e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d55-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.003344802, up: 0.003344802}, stat: {dn: -0.002685596, up: 0.002685596}}, 1: {full syst.: {dn: -0.002901259, up: 0.002901259}, stat: {dn: -0.001163396, up: 0.001163396}}, 2: {full syst.: {dn: -0.002421446, up: 0.002421446}, stat: {dn: -0.0008449702, up: 0.0008449702}}, 3: {full syst.: {dn: -0.001927666, up: 0.001927666}, stat: {dn: -0.0008174491, up: 0.0008174491}}, 4: {full syst.: {dn: -0.001512905, up: 0.001512905}, stat: {dn: -0.0009187048, up: 0.0009187048}}, 5: {full syst.: {dn: -0.001246986, up: 0.001246986}, stat: {dn: -0.0009944409, up: 0.0009944409}}, 6: {full syst.: {dn: -0.0009436982, up: 0.0009436982}, stat: {dn: -0.0008957412, up: 0.0008957412}}, 7: {full syst.: {dn: -0.0007667899, up: 0.0007667899}, stat: {dn: -0.0007150966, up: 0.0007150966}}, 8: {full syst.: {dn: -0.0004199844, up: 0.0004199844}, stat: {dn: -0.0002932446, up: 0.0002932446}}, 9: {full syst.: {dn: -0.0002115748, up: 0.0002115748}, stat: {dn: -0.0001656935, up: 0.0001656935}}, 10: {full syst.: {dn: -8.36117e-05, up: 8.36117e-05}, stat: {dn: -6.396877e-05, up: 6.396877e-05}}, 11: {full syst.: {dn: -2.609126e-05, up: 2.609126e-05}, stat: {dn: -3.240943e-05, up: 3.240943e-05}}, 12: {full syst.: {dn: -1.419702e-05, up: 1.419702e-05}, stat: {dn: -1.295436e-05, up: 1.295436e-05}}, 13: {full syst.: {dn: -5.870686e-06, up: 5.870686e-06}, stat: {dn: -7.88617e-06, up: 7.88617e-06}}, 14: {full syst.: {dn: -1.41758e-06, up: 1.41758e-06}, stat: {dn: -2.29285e-06, up: 2.29285e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d55-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t55 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 3.614121e-02 4.289537e-03 4.289537e-03 +7.000000e-01 1.000000e-01 1.000000e-01 3.449509e-02 3.125827e-03 3.125827e-03 +9.000000e-01 1.000000e-01 1.000000e-01 3.283767e-02 2.564639e-03 2.564639e-03 +1.100000e+00 1.000000e-01 1.000000e-01 2.743810e-02 2.093829e-03 2.093829e-03 +1.300000e+00 1.000000e-01 1.000000e-01 2.158083e-02 1.770000e-03 1.770000e-03 +1.500000e+00 1.000000e-01 1.000000e-01 1.691015e-02 1.594957e-03 1.594957e-03 +1.700000e+00 1.000000e-01 1.000000e-01 1.213431e-02 1.301122e-03 1.301122e-03 +1.900000e+00 1.000000e-01 1.000000e-01 9.781487e-03 1.048489e-03 1.048489e-03 +2.250000e+00 2.500000e-01 2.500000e-01 5.513734e-03 5.122297e-04 5.122297e-04 +2.750000e+00 2.500000e-01 2.500000e-01 2.826399e-03 2.687345e-04 2.687345e-04 +3.500000e+00 5.000000e-01 5.000000e-01 1.081610e-03 1.052754e-04 1.052754e-04 +4.500000e+00 5.000000e-01 5.000000e-01 3.468248e-04 4.160679e-05 4.160679e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.680739e-04 1.921902e-05 1.921902e-05 +6.500000e+00 5.000000e-01 5.000000e-01 7.530234e-05 9.831410e-06 9.831410e-06 +8.500000e+00 1.500000e+00 1.500000e+00 1.755847e-05 2.695681e-06 2.695681e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d56-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.002753198, up: 0.002753198}, stat: {dn: -0.002412084, up: 0.002412084}}, 1: {full syst.: {dn: -0.002269948, up: 0.002269948}, stat: {dn: -0.001015751, up: 0.001015751}}, 2: {full syst.: {dn: -0.001941762, up: 0.001941762}, stat: {dn: -0.0007376797, up: 0.0007376797}}, 3: {full syst.: {dn: -0.001400341, up: 0.001400341}, stat: {dn: -0.0006849238, up: 0.0006849238}}, 4: {full syst.: {dn: -0.001094156, up: 0.001094156}, stat: {dn: -0.0007523352, up: 0.0007523352}}, 5: {full syst.: {dn: -0.0009574822, up: 0.0009574822}, stat: {dn: -0.0008296136, up: 0.0008296136}}, 6: {full syst.: {dn: -0.0006559294, up: 0.0006559294}, stat: {dn: -0.0007370678, up: 0.0007370678}}, 7: {full syst.: {dn: -0.0005228328, up: 0.0005228328}, stat: {dn: -0.0006036432, up: 0.0006036432}}, 8: {full syst.: {dn: -0.0003234849, up: 0.0003234849}, stat: {dn: -0.0002399768, up: 0.0002399768}}, 9: {full syst.: {dn: -0.0001365891, up: 0.0001365891}, stat: {dn: -0.0001348878, up: 0.0001348878}}, 10: {full syst.: {dn: -5.605495e-05, up: 5.605495e-05}, stat: {dn: -5.222809e-05, up: 5.222809e-05}}, 11: {full syst.: {dn: -1.740105e-05, up: 1.740105e-05}, stat: {dn: -2.594057e-05, up: 2.594057e-05}}, 12: {full syst.: {dn: -8.902281e-06, up: 8.902281e-06}, stat: {dn: -1.163987e-05, up: 1.163987e-05}}, 13: {full syst.: {dn: -2.205885e-06, up: 2.205885e-06}, stat: {dn: -4.620671e-06, up: 4.620671e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d56-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t56 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 2.967485e-02 3.660362e-03 3.660362e-03 +7.000000e-01 1.000000e-01 1.000000e-01 2.728083e-02 2.486848e-03 2.486848e-03 +9.000000e-01 1.000000e-01 1.000000e-01 2.656914e-02 2.077164e-03 2.077164e-03 +1.100000e+00 1.000000e-01 1.000000e-01 2.004800e-02 1.558870e-03 1.558870e-03 +1.300000e+00 1.000000e-01 1.000000e-01 1.553051e-02 1.327850e-03 1.327850e-03 +1.500000e+00 1.000000e-01 1.000000e-01 1.319565e-02 1.266898e-03 1.266898e-03 +1.700000e+00 1.000000e-01 1.000000e-01 8.879909e-03 9.866673e-04 9.866673e-04 +1.900000e+00 1.000000e-01 1.000000e-01 6.907243e-03 7.985858e-04 7.985858e-04 +2.250000e+00 2.500000e-01 2.500000e-01 4.109492e-03 4.027795e-04 4.027795e-04 +2.750000e+00 2.500000e-01 2.500000e-01 1.793341e-03 1.919669e-04 1.919669e-04 +3.500000e+00 5.000000e-01 5.000000e-01 7.323233e-04 7.661547e-05 7.661547e-05 +4.500000e+00 5.000000e-01 5.000000e-01 2.221945e-04 3.123635e-05 3.123635e-05 +5.500000e+00 5.000000e-01 5.000000e-01 1.132813e-04 1.465391e-05 1.465391e-05 +7.000000e+00 1.000000e+00 1.000000e+00 2.716059e-05 5.120208e-06 5.120208e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d57-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.002524789, up: 0.002524789}, stat: {dn: -0.001569987, up: 0.001569987}}, 1: {full syst.: {dn: -0.001937487, up: 0.001937487}, stat: {dn: -0.0006294346, up: 0.0006294346}}, 2: {full syst.: {dn: -0.001430418, up: 0.001430418}, stat: {dn: -0.0004238004, up: 0.0004238004}}, 3: {full syst.: {dn: -0.001025478, up: 0.001025478}, stat: {dn: -0.000381003, up: 0.000381003}}, 4: {full syst.: {dn: -0.0007406023, up: 0.0007406023}, stat: {dn: -0.0004022011, up: 0.0004022011}}, 5: {full syst.: {dn: -0.0005293632, up: 0.0005293632}, stat: {dn: -0.0004306398, up: 0.0004306398}}, 6: {full syst.: {dn: -0.0005015614, up: 0.0005015614}, stat: {dn: -0.0003832369, up: 0.0003832369}}, 7: {full syst.: {dn: -0.0003275553, up: 0.0003275553}, stat: {dn: -0.0003032234, up: 0.0003032234}}, 8: {full syst.: {dn: -0.0001848985, up: 0.0001848985}, stat: {dn: -0.0001245819, up: 0.0001245819}}, 9: {full syst.: {dn: -9.658072e-05, up: 9.658072e-05}, stat: {dn: -7.036787e-05, up: 7.036787e-05}}, 10: {full syst.: {dn: -3.620996e-05, up: 3.620996e-05}, stat: {dn: -2.744068e-05, up: 2.744068e-05}}, 11: {full syst.: {dn: -1.047867e-05, up: 1.047867e-05}, stat: {dn: -1.459576e-05, up: 1.459576e-05}}, 12: {full syst.: {dn: -4.121909e-06, up: 4.121909e-06}, stat: {dn: -5.679256e-06, up: 5.679256e-06}}, 13: {full syst.: {dn: -1.488723e-06, up: 1.488723e-06}, stat: {dn: -2.572098e-06, up: 2.572098e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d57-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t57 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 2.607311e-02 2.973116e-03 2.973116e-03 +7.000000e-01 1.000000e-01 1.000000e-01 2.201538e-02 2.037166e-03 2.037166e-03 +9.000000e-01 1.000000e-01 1.000000e-01 1.855620e-02 1.491879e-03 1.491879e-03 +1.100000e+00 1.000000e-01 1.000000e-01 1.373833e-02 1.093969e-03 1.093969e-03 +1.300000e+00 1.000000e-01 1.000000e-01 9.962265e-03 8.427678e-04 8.427678e-04 +1.500000e+00 1.000000e-01 1.000000e-01 6.990212e-03 6.824046e-04 6.824046e-04 +1.700000e+00 1.000000e-01 1.000000e-01 6.156696e-03 6.312166e-04 6.312166e-04 +1.900000e+00 1.000000e-01 1.000000e-01 4.070490e-03 4.463596e-04 4.463596e-04 +2.250000e+00 2.500000e-01 2.500000e-01 2.331351e-03 2.229531e-04 2.229531e-04 +2.750000e+00 2.500000e-01 2.500000e-01 1.191078e-03 1.194967e-04 1.194967e-04 +3.500000e+00 5.000000e-01 5.000000e-01 4.519505e-04 4.543294e-05 4.543294e-05 +4.500000e+00 5.000000e-01 5.000000e-01 1.282897e-04 1.796771e-05 1.796771e-05 +5.500000e+00 5.000000e-01 5.000000e-01 5.017409e-05 7.017413e-06 7.017413e-06 +7.000000e+00 1.000000e+00 1.000000e+00 1.726074e-05 2.971865e-06 2.971865e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d58-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.001947916, up: 0.001947916}, stat: {dn: -0.0009945021, up: 0.0009945021}}, 1: {full syst.: {dn: -0.001469633, up: 0.001469633}, stat: {dn: -0.0003675843, up: 0.0003675843}}, 2: {full syst.: {dn: -0.0009452091, up: 0.0009452091}, stat: {dn: -0.0002398877, up: 0.0002398877}}, 3: {full syst.: {dn: -0.0005808634, up: 0.0005808634}, stat: {dn: -0.0001932064, up: 0.0001932064}}, 4: {full syst.: {dn: -0.0004334997, up: 0.0004334997}, stat: {dn: -0.0001734163, up: 0.0001734163}}, 5: {full syst.: {dn: -0.0002925168, up: 0.0002925168}, stat: {dn: -0.0001968417, up: 0.0001968417}}, 6: {full syst.: {dn: -0.0001835796, up: 0.0001835796}, stat: {dn: -0.0001717486, up: 0.0001717486}}, 7: {full syst.: {dn: -0.0001296265, up: 0.0001296265}, stat: {dn: -0.0001296352, up: 0.0001296352}}, 8: {full syst.: {dn: -6.777206e-05, up: 6.777206e-05}, stat: {dn: -5.325858e-05, up: 5.325858e-05}}, 9: {full syst.: {dn: -3.263414e-05, up: 3.263414e-05}, stat: {dn: -2.976915e-05, up: 2.976915e-05}}, 10: {full syst.: {dn: -1.134539e-05, up: 1.134539e-05}, stat: {dn: -1.199606e-05, up: 1.199606e-05}}, 11: {full syst.: {dn: -2.217151e-06, up: 2.217151e-06}, stat: {dn: -2.274399e-06, up: 2.274399e-06}}, 12: {full syst.: {dn: -4.003599e-07, up: 4.003599e-07}, stat: {dn: -1.011334e-06, up: 1.011334e-06}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d58-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t58 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 1.738887e-02 2.187101e-03 2.187101e-03 +7.000000e-01 1.000000e-01 1.000000e-01 1.457862e-02 1.514906e-03 1.514906e-03 +9.000000e-01 1.000000e-01 1.000000e-01 1.075759e-02 9.751750e-04 9.751750e-04 +1.100000e+00 1.000000e-01 1.000000e-01 7.039110e-03 6.121528e-04 6.121528e-04 +1.300000e+00 1.000000e-01 1.000000e-01 5.251601e-03 4.668996e-04 4.668996e-04 +1.500000e+00 1.000000e-01 1.000000e-01 3.501355e-03 3.525801e-04 3.525801e-04 +1.700000e+00 1.000000e-01 1.000000e-01 2.186242e-03 2.513942e-04 2.513942e-04 +1.900000e+00 1.000000e-01 1.000000e-01 1.538493e-03 1.833257e-04 1.833257e-04 +2.250000e+00 2.500000e-01 2.500000e-01 7.889597e-04 8.619471e-05 8.619471e-05 +2.750000e+00 2.500000e-01 2.500000e-01 3.759727e-04 4.417227e-05 4.417227e-05 +3.500000e+00 5.000000e-01 5.000000e-01 1.220090e-04 1.651131e-05 1.651131e-05 +5.000000e+00 1.000000e+00 1.000000e+00 2.387468e-05 3.176263e-06 3.176263e-06 +7.000000e+00 1.000000e+00 1.000000e+00 4.323587e-06 1.087697e-06 1.087697e-06 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d59-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.0006863433, up: 0.0006863433}, unc. syst.: {dn: -0.0153512, up: 0.0153512}}, 1: {stat: {dn: -0.0006378915, up: 0.0006378915}, unc. syst.: {dn: -0.01549365, up: 0.01549365}}, 2: {stat: {dn: -0.0003886113, up: 0.0003886113}, unc. syst.: {dn: -0.01565114, up: 0.01565114}}, 3: {stat: {dn: -0.0003791015, up: 0.0003791015}, unc. syst.: {dn: -0.01573829, up: 0.01573829}}, 4: {stat: {dn: -0.0003831571, up: 0.0003831571}, unc. syst.: {dn: -0.01573306, up: 0.01573306}}, 5: {stat: {dn: -0.0003877856, up: 0.0003877856}, unc. syst.: {dn: -0.01563261, up: 0.01563261}}, 6: {stat: {dn: -0.000398194, up: 0.000398194}, unc. syst.: {dn: -0.01548042, up: 0.01548042}}, 7: {stat: {dn: -0.0004106586, up: 0.0004106586}, unc. syst.: {dn: -0.01526026, up: 0.01526026}}, 8: {stat: {dn: -0.0004276058, up: 0.0004276058}, unc. syst.: {dn: -0.01501834, up: 0.01501834}}, 9: {stat: {dn: -0.0004468526, up: 0.0004468526}, unc. syst.: {dn: -0.01478029, up: 0.01478029}}, 10: {stat: {dn: -0.0004677515, up: 0.0004677515}, unc. syst.: {dn: -0.01451877, up: 0.01451877}}, 11: {stat: {dn: -0.0004907729, up: 0.0004907729}, unc. syst.: {dn: -0.01425794, up: 0.01425794}}, 12: {stat: {dn: -0.0005157643, up: 0.0005157643}, unc. syst.: {dn: -0.01400355, up: 0.01400355}}, 13: {stat: {dn: -0.000542261, up: 0.000542261}, unc. syst.: {dn: -0.01375593, up: 0.01375593}}, 14: {stat: {dn: -0.0005685027, up: 0.0005685027}, unc. syst.: {dn: -0.01349291, up: 0.01349291}}, 15: {stat: {dn: -0.0005988009, up: 0.0005988009}, unc. syst.: {dn: -0.01326367, up: 0.01326367}}, 16: {stat: {dn: -0.0006283745, up: 0.0006283745}, unc. syst.: {dn: -0.01301802, up: 0.01301802}}, 17: {stat: {dn: -0.0006579598, up: 0.0006579598}, unc. syst.: {dn: -0.01277539, up: 0.01277539}}, 18: {stat: {dn: -0.0004973669, up: 0.0004973669}, unc. syst.: {dn: -0.01243961, up: 0.01243961}}, 19: {stat: {dn: -0.0005425982, up: 0.0005425982}, unc. syst.: {dn: -0.01203988, up: 0.01203988}}, 20: {stat: {dn: -0.0005915014, up: 0.0005915014}, unc. syst.: {dn: -0.01167297, up: 0.01167297}}, 21: {stat: {dn: -0.0006426595, up: 0.0006426595}, unc. syst.: {dn: -0.01131228, up: 0.01131228}}, 22: {stat: {dn: -0.0006985825, up: 0.0006985825}, unc. syst.: {dn: -0.01100416, up: 0.01100416}}, 23: {stat: {dn: -0.0007597724, up: 0.0007597724}, unc. syst.: {dn: -0.01074918, up: 0.01074918}}, 24: {stat: {dn: -0.0008244761, up: 0.0008244761}, unc. syst.: {dn: -0.01048805, up: 0.01048805}}, 25: {stat: {dn: -0.0008921749, up: 0.0008921749}, unc. syst.: {dn: -0.01023279, up: 0.01023279}}, 26: {stat: {dn: -0.0009637791, up: 0.0009637791}, unc. syst.: {dn: -0.01003233, up: 0.01003233}}, 27: {stat: {dn: -0.001049534, up: 0.001049534}, unc. syst.: {dn: -0.009851185, up: 0.009851185}}, 28: {stat: {dn: -0.0008480102, up: 0.0008480102}, unc. syst.: {dn: -0.009606687, up: 0.009606687}}, 29: {stat: {dn: -0.0009851371, up: 0.0009851371}, unc. syst.: {dn: -0.009299339, up: 0.009299339}}, 30: {stat: {dn: -0.001137655, up: 0.001137655}, unc. syst.: {dn: -0.009099437, up: 0.009099437}}, 31: {stat: {dn: -0.001306074, up: 0.001306074}, unc. syst.: {dn: -0.008868115, up: 0.008868115}}, 32: {stat: {dn: -0.001501486, up: 0.001501486}, unc. syst.: {dn: -0.008732148, up: 0.008732148}}, 33: {stat: {dn: -0.001703832, up: 0.001703832}, unc. syst.: {dn: -0.008563201, up: 0.008563201}}, 34: {stat: {dn: -0.001938151, up: 0.001938151}, unc. syst.: {dn: -0.008517607, up: 0.008517607}}, 35: {stat: {dn: -0.00216943, up: 0.00216943}, unc. syst.: {dn: -0.008297738, up: 0.008297738}}, 36: {stat: {dn: -0.00245431, up: 0.00245431}, unc. syst.: {dn: -0.008285095, up: 0.008285095}}, 37: {stat: {dn: -0.002729117, up: 0.002729117}, unc. syst.: {dn: -0.008139484, up: 0.008139484}}, 38: {stat: {dn: -0.001965294, up: 0.001965294}, unc. syst.: {dn: -0.008098716, up: 0.008098716}}, 39: {stat: {dn: -0.002526574, up: 0.002526574}, unc. syst.: {dn: -0.007988581, up: 0.007988581}}, 40: {stat: {dn: -0.002491974, up: 0.002491974}, unc. syst.: {dn: -0.007716497, up: 0.007716497}}, 41: {stat: {dn: -0.003059274, up: 0.003059274}, unc. syst.: {dn: -0.007560287, up: 0.007560287}}, 42: {stat: {dn: -0.005743792, up: 0.005743792}, unc. syst.: {dn: -0.007401229, up: 0.007401229}}, 43: {stat: {dn: -0.007500082, up: 0.007500082}, unc. syst.: {dn: -0.006938148, up: 0.006938148}}, 44: {stat: {dn: -0.01571263, up: 0.01571263}, unc. syst.: {dn: -0.005701494, up: 0.005701494}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d59-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t59 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 7.351894e-01 1.536654e-02 1.536654e-02 +1.900000e-01 1.000000e-02 1.000000e-02 7.420111e-01 1.550678e-02 1.550678e-02 +2.250000e-01 2.500000e-02 2.500000e-02 7.495537e-01 1.565596e-02 1.565596e-02 +2.750000e-01 2.500000e-02 2.500000e-02 7.537273e-01 1.574286e-02 1.574286e-02 +3.250000e-01 2.500000e-02 2.500000e-02 7.534767e-01 1.573772e-02 1.573772e-02 +3.750000e-01 2.500000e-02 2.500000e-02 7.486662e-01 1.563742e-02 1.563742e-02 +4.250000e-01 2.500000e-02 2.500000e-02 7.413775e-01 1.548554e-02 1.548554e-02 +4.750000e-01 2.500000e-02 2.500000e-02 7.308341e-01 1.526578e-02 1.526578e-02 +5.250000e-01 2.500000e-02 2.500000e-02 7.192480e-01 1.502443e-02 1.502443e-02 +5.750000e-01 2.500000e-02 2.500000e-02 7.078477e-01 1.478704e-02 1.478704e-02 +6.250000e-01 2.500000e-02 2.500000e-02 6.953231e-01 1.452630e-02 1.452630e-02 +6.750000e-01 2.500000e-02 2.500000e-02 6.828316e-01 1.426638e-02 1.426638e-02 +7.250000e-01 2.500000e-02 2.500000e-02 6.706484e-01 1.401304e-02 1.401304e-02 +7.750000e-01 2.500000e-02 2.500000e-02 6.587896e-01 1.376661e-02 1.376661e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.461934e-01 1.350488e-02 1.350488e-02 +8.750000e-01 2.500000e-02 2.500000e-02 6.352144e-01 1.327718e-02 1.327718e-02 +9.250000e-01 2.500000e-02 2.500000e-02 6.234503e-01 1.303318e-02 1.303318e-02 +9.750000e-01 2.500000e-02 2.500000e-02 6.118301e-01 1.279232e-02 1.279232e-02 +1.050000e+00 5.000000e-02 5.000000e-02 5.957491e-01 1.244955e-02 1.244955e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.766055e-01 1.205210e-02 1.205210e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.590341e-01 1.168795e-02 1.168795e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.417602e-01 1.133052e-02 1.133052e-02 +1.450000e+00 5.000000e-02 5.000000e-02 5.270039e-01 1.102631e-02 1.102631e-02 +1.550000e+00 5.000000e-02 5.000000e-02 5.147924e-01 1.077600e-02 1.077600e-02 +1.650000e+00 5.000000e-02 5.000000e-02 5.022864e-01 1.052041e-02 1.052041e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.900618e-01 1.027161e-02 1.027161e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.804613e-01 1.007852e-02 1.007852e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.717862e-01 9.906935e-03 9.906935e-03 +2.100000e+00 1.000000e-01 1.000000e-01 4.600769e-01 9.644043e-03 9.644043e-03 +2.300000e+00 1.000000e-01 1.000000e-01 4.453576e-01 9.351374e-03 9.351374e-03 +2.500000e+00 1.000000e-01 1.000000e-01 4.357840e-01 9.170279e-03 9.170279e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.247057e-01 8.963777e-03 8.963777e-03 +2.900000e+00 1.000000e-01 1.000000e-01 4.181941e-01 8.860297e-03 8.860297e-03 +3.100000e+00 1.000000e-01 1.000000e-01 4.101030e-01 8.731063e-03 8.731063e-03 +3.300000e+00 1.000000e-01 1.000000e-01 4.079194e-01 8.735334e-03 8.735334e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.973896e-01 8.576648e-03 8.576648e-03 +3.700000e+00 1.000000e-01 1.000000e-01 3.967841e-01 8.640974e-03 8.640974e-03 +3.900000e+00 1.000000e-01 1.000000e-01 3.898106e-01 8.584828e-03 8.584828e-03 +4.250000e+00 2.500000e-01 2.500000e-01 3.878581e-01 8.333762e-03 8.333762e-03 +4.750000e+00 2.500000e-01 2.500000e-01 3.825837e-01 8.378604e-03 8.378604e-03 +5.500000e+00 5.000000e-01 5.000000e-01 3.695532e-01 8.108900e-03 8.108900e-03 +7.000000e+00 1.000000e+00 1.000000e+00 3.620721e-01 8.155801e-03 8.155801e-03 +9.000000e+00 1.000000e+00 1.000000e+00 3.544546e-01 9.368529e-03 9.368529e-03 +1.250000e+01 2.500000e+00 2.500000e+00 3.322770e-01 1.021710e-02 1.021710e-02 +2.750000e+01 1.250000e+01 1.250000e+01 2.971485e-01 1.671508e-02 1.671508e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d60-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.0006539291, up: 0.0006539291}, unc. syst.: {dn: -0.01436714, up: 0.01436714}}, 1: {stat: {dn: -0.0005457417, up: 0.0005457417}, unc. syst.: {dn: -0.01458079, up: 0.01458079}}, 2: {stat: {dn: -0.0005291109, up: 0.0005291109}, unc. syst.: {dn: -0.01479985, up: 0.01479985}}, 3: {stat: {dn: -0.0005234628, up: 0.0005234628}, unc. syst.: {dn: -0.01498707, up: 0.01498707}}, 4: {stat: {dn: -0.0005239845, up: 0.0005239845}, unc. syst.: {dn: -0.0151336, up: 0.0151336}}, 5: {stat: {dn: -0.0003411733, up: 0.0003411733}, unc. syst.: {dn: -0.01528891, up: 0.01528891}}, 6: {stat: {dn: -0.0002685063, up: 0.0002685063}, unc. syst.: {dn: -0.01551244, up: 0.01551244}}, 7: {stat: {dn: -0.0002830066, up: 0.0002830066}, unc. syst.: {dn: -0.01552842, up: 0.01552842}}, 8: {stat: {dn: -0.0002977141, up: 0.0002977141}, unc. syst.: {dn: -0.0153847, up: 0.0153847}}, 9: {stat: {dn: -0.0003160364, up: 0.0003160364}, unc. syst.: {dn: -0.01523248, up: 0.01523248}}, 10: {stat: {dn: -0.0003383348, up: 0.0003383348}, unc. syst.: {dn: -0.01510991, up: 0.01510991}}, 11: {stat: {dn: -0.0003690706, up: 0.0003690706}, unc. syst.: {dn: -0.01490139, up: 0.01490139}}, 12: {stat: {dn: -0.00039004, up: 0.00039004}, unc. syst.: {dn: -0.01466863, up: 0.01466863}}, 13: {stat: {dn: -0.0009066122, up: 0.0009066122}, unc. syst.: {dn: -0.01549641, up: 0.01549641}}, 14: {stat: {dn: -0.0009637724, up: 0.0009637724}, unc. syst.: {dn: -0.01532763, up: 0.01532763}}, 15: {stat: {dn: -0.001034731, up: 0.001034731}, unc. syst.: {dn: -0.01515209, up: 0.01515209}}, 16: {stat: {dn: -0.001108075, up: 0.001108075}, unc. syst.: {dn: -0.01499858, up: 0.01499858}}, 17: {stat: {dn: -0.001184525, up: 0.001184525}, unc. syst.: {dn: -0.01480327, up: 0.01480327}}, 18: {stat: {dn: -0.001257927, up: 0.001257927}, unc. syst.: {dn: -0.01456906, up: 0.01456906}}, 19: {stat: {dn: -0.001304792, up: 0.001304792}, unc. syst.: {dn: -0.01410606, up: 0.01410606}}, 20: {stat: {dn: -0.001357155, up: 0.001357155}, unc. syst.: {dn: -0.01374232, up: 0.01374232}}, 21: {stat: {dn: -0.0009670743, up: 0.0009670743}, unc. syst.: {dn: -0.01322835, up: 0.01322835}}, 22: {stat: {dn: -0.001169306, up: 0.001169306}, unc. syst.: {dn: -0.01306099, up: 0.01306099}}, 23: {stat: {dn: -0.001576409, up: 0.001576409}, unc. syst.: {dn: -0.01377384, up: 0.01377384}}, 24: {stat: {dn: -0.001790084, up: 0.001790084}, unc. syst.: {dn: -0.01369847, up: 0.01369847}}, 25: {stat: {dn: -0.002007004, up: 0.002007004}, unc. syst.: {dn: -0.01350961, up: 0.01350961}}, 26: {stat: {dn: -0.00215586, up: 0.00215586}, unc. syst.: {dn: -0.01288196, up: 0.01288196}}, 27: {stat: {dn: -0.002322737, up: 0.002322737}, unc. syst.: {dn: -0.01235404, up: 0.01235404}}, 28: {stat: {dn: -0.002483473, up: 0.002483473}, unc. syst.: {dn: -0.01188936, up: 0.01188936}}, 29: {stat: {dn: -0.002559962, up: 0.002559962}, unc. syst.: {dn: -0.01132513, up: 0.01132513}}, 30: {stat: {dn: -0.002591163, up: 0.002591163}, unc. syst.: {dn: -0.01079173, up: 0.01079173}}, 31: {stat: {dn: -0.001139758, up: 0.001139758}, unc. syst.: {dn: -0.009654077, up: 0.009654077}}, 32: {stat: {dn: -0.001363553, up: 0.001363553}, unc. syst.: {dn: -0.009439395, up: 0.009439395}}, 33: {stat: {dn: -0.001879507, up: 0.001879507}, unc. syst.: {dn: -0.009275225, up: 0.009275225}}, 34: {stat: {dn: -0.0009235275, up: 0.0009235275}, unc. syst.: {dn: -0.008895429, up: 0.008895429}}, 35: {stat: {dn: -0.001066282, up: 0.001066282}, unc. syst.: {dn: -0.008787478, up: 0.008787478}}, 36: {stat: {dn: -0.001218309, up: 0.001218309}, unc. syst.: {dn: -0.008619197, up: 0.008619197}}, 37: {stat: {dn: -0.001390571, up: 0.001390571}, unc. syst.: {dn: -0.00853039, up: 0.00853039}}, 38: {stat: {dn: -0.001558095, up: 0.001558095}, unc. syst.: {dn: -0.008359985, up: 0.008359985}}, 39: {stat: {dn: -0.001734339, up: 0.001734339}, unc. syst.: {dn: -0.008314756, up: 0.008314756}}, 40: {stat: {dn: -0.001894784, up: 0.001894784}, unc. syst.: {dn: -0.008206647, up: 0.008206647}}, 41: {stat: {dn: -0.001594621, up: 0.001594621}, unc. syst.: {dn: -0.008058318, up: 0.008058318}}, 42: {stat: {dn: -0.001911051, up: 0.001911051}, unc. syst.: {dn: -0.007916757, up: 0.007916757}}, 43: {stat: {dn: -0.001977154, up: 0.001977154}, unc. syst.: {dn: -0.00770268, up: 0.00770268}}, 44: {stat: {dn: -0.002511242, up: 0.002511242}, unc. syst.: {dn: -0.007395913, up: 0.007395913}}, 45: {stat: {dn: -0.004086571, up: 0.004086571}, unc. syst.: {dn: -0.007248369, up: 0.007248369}}, 46: {stat: {dn: -0.006158334, up: 0.006158334}, unc. syst.: {dn: -0.00688412, up: 0.00688412}}, 47: {stat: {dn: -0.01087169, up: 0.01087169}, unc. syst.: {dn: -0.006180087, up: 0.006180087}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d60-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t60 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 6.770643e-01 1.438201e-02 1.438201e-02 +1.300000e-01 1.000000e-02 1.000000e-02 6.852810e-01 1.459100e-02 1.459100e-02 +1.500000e-01 1.000000e-02 1.000000e-02 6.942220e-01 1.480931e-02 1.480931e-02 +1.700000e-01 1.000000e-02 1.000000e-02 7.016375e-01 1.499621e-02 1.499621e-02 +1.900000e-01 1.000000e-02 1.000000e-02 7.078398e-01 1.514267e-02 1.514267e-02 +2.250000e-01 2.500000e-02 2.500000e-02 7.144411e-01 1.529272e-02 1.529272e-02 +2.750000e-01 2.500000e-02 2.500000e-02 7.203225e-01 1.551476e-02 1.551476e-02 +3.250000e-01 2.500000e-02 2.500000e-02 7.191593e-01 1.553100e-02 1.553100e-02 +3.750000e-01 2.500000e-02 2.500000e-02 7.136521e-01 1.538758e-02 1.538758e-02 +4.250000e-01 2.500000e-02 2.500000e-02 7.060190e-01 1.523576e-02 1.523576e-02 +4.750000e-01 2.500000e-02 2.500000e-02 6.956057e-01 1.511370e-02 1.511370e-02 +5.250000e-01 2.500000e-02 2.500000e-02 6.834485e-01 1.490596e-02 1.490596e-02 +5.750000e-01 2.500000e-02 2.500000e-02 6.718650e-01 1.467381e-02 1.467381e-02 +6.250000e-01 2.500000e-02 2.500000e-02 6.583857e-01 1.552291e-02 1.552291e-02 +6.750000e-01 2.500000e-02 2.500000e-02 6.465306e-01 1.535790e-02 1.535790e-02 +7.250000e-01 2.500000e-02 2.500000e-02 6.359649e-01 1.518738e-02 1.518738e-02 +7.750000e-01 2.500000e-02 2.500000e-02 6.244741e-01 1.503946e-02 1.503946e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.133355e-01 1.485059e-02 1.485059e-02 +8.750000e-01 2.500000e-02 2.500000e-02 6.018269e-01 1.462327e-02 1.462327e-02 +9.250000e-01 2.500000e-02 2.500000e-02 5.886539e-01 1.416628e-02 1.416628e-02 +9.750000e-01 2.500000e-02 2.500000e-02 5.782702e-01 1.380917e-02 1.380917e-02 +1.050000e+00 5.000000e-02 5.000000e-02 5.627892e-01 1.326365e-02 1.326365e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.458818e-01 1.311323e-02 1.311323e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.308190e-01 1.386376e-02 1.386376e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.156313e-01 1.381494e-02 1.381494e-02 +1.450000e+00 5.000000e-02 5.000000e-02 5.016716e-01 1.365788e-02 1.365788e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.895313e-01 1.306111e-02 1.306111e-02 +1.650000e+00 5.000000e-02 5.000000e-02 4.797942e-01 1.257050e-02 1.257050e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.700503e-01 1.214597e-02 1.214597e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.653119e-01 1.161086e-02 1.161086e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.557776e-01 1.109845e-02 1.109845e-02 +2.100000e+00 1.000000e-01 1.000000e-01 4.459835e-01 9.721124e-03 9.721124e-03 +2.300000e+00 1.000000e-01 1.000000e-01 4.343014e-01 9.537371e-03 9.537371e-03 +2.500000e+00 1.000000e-01 1.000000e-01 4.230065e-01 9.463738e-03 9.463738e-03 +2.700000e+00 1.000000e-01 1.000000e-01 4.162194e-01 8.943241e-03 8.943241e-03 +2.900000e+00 1.000000e-01 1.000000e-01 4.108827e-01 8.851934e-03 8.851934e-03 +3.100000e+00 1.000000e-01 1.000000e-01 4.031115e-01 8.704874e-03 8.704874e-03 +3.300000e+00 1.000000e-01 1.000000e-01 3.989154e-01 8.642988e-03 8.642988e-03 +3.500000e+00 1.000000e-01 1.000000e-01 3.909119e-01 8.503941e-03 8.503941e-03 +3.700000e+00 1.000000e-01 1.000000e-01 3.879886e-01 8.493709e-03 8.493709e-03 +3.900000e+00 1.000000e-01 1.000000e-01 3.844606e-01 8.422545e-03 8.422545e-03 +4.250000e+00 2.500000e-01 2.500000e-01 3.771536e-01 8.214579e-03 8.214579e-03 +4.750000e+00 2.500000e-01 2.500000e-01 3.699938e-01 8.144149e-03 8.144149e-03 +5.500000e+00 5.000000e-01 5.000000e-01 3.597415e-01 7.952384e-03 7.952384e-03 +7.000000e+00 1.000000e+00 1.000000e+00 3.456820e-01 7.810625e-03 7.810625e-03 +9.000000e+00 1.000000e+00 1.000000e+00 3.361189e-01 8.320992e-03 8.320992e-03 +1.250000e+01 2.500000e+00 2.500000e+00 3.168192e-01 9.236676e-03 9.236676e-03 +1.750000e+01 2.500000e+00 2.500000e+00 2.783661e-01 1.250548e-02 1.250548e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d61-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.002332278, up: 0.002332278}, unc. syst.: {dn: -0.01668701, up: 0.01668701}}, 1: {stat: {dn: -0.001801314, up: 0.001801314}, unc. syst.: {dn: -0.01652799, up: 0.01652799}}, 2: {stat: {dn: -0.001239017, up: 0.001239017}, unc. syst.: {dn: -0.01569427, up: 0.01569427}}, 3: {stat: {dn: -0.001229817, up: 0.001229817}, unc. syst.: {dn: -0.01558303, up: 0.01558303}}, 4: {stat: {dn: -0.001259844, up: 0.001259844}, unc. syst.: {dn: -0.0171385, up: 0.0171385}}, 5: {stat: {dn: -0.001847647, up: 0.001847647}, unc. syst.: {dn: -0.01494722, up: 0.01494722}}, 6: {stat: {dn: -0.001619464, up: 0.001619464}, unc. syst.: {dn: -0.01483217, up: 0.01483217}}, 7: {stat: {dn: -0.001950829, up: 0.001950829}, unc. syst.: {dn: -0.01453208, up: 0.01453208}}, 8: {stat: {dn: -0.002798991, up: 0.002798991}, unc. syst.: {dn: -0.01438534, up: 0.01438534}}, 9: {stat: {dn: -0.002748722, up: 0.002748722}, unc. syst.: {dn: -0.01413224, up: 0.01413224}}, 10: {stat: {dn: -0.002754009, up: 0.002754009}, unc. syst.: {dn: -0.01396994, up: 0.01396994}}, 11: {stat: {dn: -0.002763918, up: 0.002763918}, unc. syst.: {dn: -0.0136713, up: 0.0136713}}, 12: {stat: {dn: -0.002804297, up: 0.002804297}, unc. syst.: {dn: -0.01334833, up: 0.01334833}}, 13: {stat: {dn: -0.002853744, up: 0.002853744}, unc. syst.: {dn: -0.01326512, up: 0.01326512}}, 14: {stat: {dn: -0.002918959, up: 0.002918959}, unc. syst.: {dn: -0.01305304, up: 0.01305304}}, 15: {stat: {dn: -0.003003764, up: 0.003003764}, unc. syst.: {dn: -0.01291754, up: 0.01291754}}, 16: {stat: {dn: -0.002082996, up: 0.002082996}, unc. syst.: {dn: -0.01264611, up: 0.01264611}}, 17: {stat: {dn: -0.002157469, up: 0.002157469}, unc. syst.: {dn: -0.01265918, up: 0.01265918}}, 18: {stat: {dn: -0.002192678, up: 0.002192678}, unc. syst.: {dn: -0.01250654, up: 0.01250654}}, 19: {stat: {dn: -0.002317529, up: 0.002317529}, unc. syst.: {dn: -0.01248396, up: 0.01248396}}, 20: {stat: {dn: -0.002546498, up: 0.002546498}, unc. syst.: {dn: -0.01243947, up: 0.01243947}}, 21: {stat: {dn: -0.00274696, up: 0.00274696}, unc. syst.: {dn: -0.01274728, up: 0.01274728}}, 22: {stat: {dn: -0.003038393, up: 0.003038393}, unc. syst.: {dn: -0.012938, up: 0.012938}}, 23: {stat: {dn: -0.003503948, up: 0.003503948}, unc. syst.: {dn: -0.01283661, up: 0.01283661}}, 24: {stat: {dn: -0.003861899, up: 0.003861899}, unc. syst.: {dn: -0.01320547, up: 0.01320547}}, 25: {stat: {dn: -0.004268938, up: 0.004268938}, unc. syst.: {dn: -0.01360769, up: 0.01360769}}, 26: {stat: {dn: -0.002974537, up: 0.002974537}, unc. syst.: {dn: -0.01106824, up: 0.01106824}}, 27: {stat: {dn: -0.004003293, up: 0.004003293}, unc. syst.: {dn: -0.01064183, up: 0.01064183}}, 28: {stat: {dn: -0.004135052, up: 0.004135052}, unc. syst.: {dn: -0.01053487, up: 0.01053487}}, 29: {stat: {dn: -0.003677953, up: 0.003677953}, unc. syst.: {dn: -0.009840558, up: 0.009840558}}, 30: {stat: {dn: -0.003736977, up: 0.003736977}, unc. syst.: {dn: -0.009909211, up: 0.009909211}}, 31: {stat: {dn: -0.003712206, up: 0.003712206}, unc. syst.: {dn: -0.009774316, up: 0.009774316}}, 32: {stat: {dn: -0.003735504, up: 0.003735504}, unc. syst.: {dn: -0.009700112, up: 0.009700112}}, 33: {stat: {dn: -0.003839296, up: 0.003839296}, unc. syst.: {dn: -0.009386541, up: 0.009386541}}, 34: {stat: {dn: -0.004016298, up: 0.004016298}, unc. syst.: {dn: -0.009287726, up: 0.009287726}}, 35: {stat: {dn: -0.004117663, up: 0.004117663}, unc. syst.: {dn: -0.008991181, up: 0.008991181}}, 36: {stat: {dn: -0.003495348, up: 0.003495348}, unc. syst.: {dn: -0.008599248, up: 0.008599248}}, 37: {stat: {dn: -0.00383895, up: 0.00383895}, unc. syst.: {dn: -0.008238484, up: 0.008238484}}, 38: {stat: {dn: -0.003833499, up: 0.003833499}, unc. syst.: {dn: -0.007891747, up: 0.007891747}}, 39: {stat: {dn: -0.004676973, up: 0.004676973}, unc. syst.: {dn: -0.007559223, up: 0.007559223}}, 40: {stat: {dn: -0.007093541, up: 0.007093541}, unc. syst.: {dn: -0.007364839, up: 0.007364839}}, 41: {stat: {dn: -0.01048112, up: 0.01048112}, unc. syst.: {dn: -0.006951224, up: 0.006951224}}, 42: {stat: {dn: -0.01675194, up: 0.01675194}, unc. syst.: {dn: -0.006519219, up: 0.006519219}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d61-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t61 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 7.535563e-01 1.684921e-02 1.684921e-02 +2.750000e-01 2.500000e-02 2.500000e-02 7.432285e-01 1.662586e-02 1.662586e-02 +3.250000e-01 2.500000e-02 2.500000e-02 7.377496e-01 1.574310e-02 1.574310e-02 +3.750000e-01 2.500000e-02 2.500000e-02 7.267166e-01 1.563148e-02 1.563148e-02 +4.250000e-01 2.500000e-02 2.500000e-02 7.185768e-01 1.718474e-02 1.718474e-02 +4.750000e-01 2.500000e-02 2.500000e-02 6.984951e-01 1.506098e-02 1.506098e-02 +5.250000e-01 2.500000e-02 2.500000e-02 6.863172e-01 1.492032e-02 1.492032e-02 +5.750000e-01 2.500000e-02 2.500000e-02 6.739511e-01 1.466244e-02 1.466244e-02 +6.250000e-01 2.500000e-02 2.500000e-02 6.590889e-01 1.465511e-02 1.465511e-02 +6.750000e-01 2.500000e-02 2.500000e-02 6.492177e-01 1.439707e-02 1.439707e-02 +7.250000e-01 2.500000e-02 2.500000e-02 6.386081e-01 1.423881e-02 1.423881e-02 +7.750000e-01 2.500000e-02 2.500000e-02 6.236829e-01 1.394789e-02 1.394789e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.120961e-01 1.363972e-02 1.363972e-02 +8.750000e-01 2.500000e-02 2.500000e-02 6.027119e-01 1.356861e-02 1.356861e-02 +9.250000e-01 2.500000e-02 2.500000e-02 5.886656e-01 1.337543e-02 1.337543e-02 +9.750000e-01 2.500000e-02 2.500000e-02 5.825746e-01 1.326218e-02 1.326218e-02 +1.050000e+00 5.000000e-02 5.000000e-02 5.634185e-01 1.281651e-02 1.281651e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.484271e-01 1.284171e-02 1.284171e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.246496e-01 1.269730e-02 1.269730e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.057553e-01 1.269725e-02 1.269725e-02 +1.450000e+00 5.000000e-02 5.000000e-02 4.897966e-01 1.269744e-02 1.269744e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.803555e-01 1.303990e-02 1.303990e-02 +1.650000e+00 5.000000e-02 5.000000e-02 4.693707e-01 1.328998e-02 1.328998e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.572639e-01 1.330625e-02 1.330625e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.485103e-01 1.375859e-02 1.375859e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.402487e-01 1.426159e-02 1.426159e-02 +2.100000e+00 1.000000e-01 1.000000e-01 4.387196e-01 1.146097e-02 1.146097e-02 +2.300000e+00 1.000000e-01 1.000000e-01 4.290803e-01 1.136991e-02 1.136991e-02 +2.500000e+00 1.000000e-01 1.000000e-01 4.240966e-01 1.131734e-02 1.131734e-02 +2.700000e+00 1.000000e-01 1.000000e-01 4.111488e-01 1.050542e-02 1.050542e-02 +2.900000e+00 1.000000e-01 1.000000e-01 4.055216e-01 1.059044e-02 1.059044e-02 +3.100000e+00 1.000000e-01 1.000000e-01 4.000775e-01 1.045551e-02 1.045551e-02 +3.300000e+00 1.000000e-01 1.000000e-01 3.978549e-01 1.039453e-02 1.039453e-02 +3.500000e+00 1.000000e-01 1.000000e-01 3.938601e-01 1.014137e-02 1.014137e-02 +3.700000e+00 1.000000e-01 1.000000e-01 3.912222e-01 1.011892e-02 1.011892e-02 +3.900000e+00 1.000000e-01 1.000000e-01 3.888667e-01 9.889211e-03 9.889211e-03 +4.250000e+00 2.500000e-01 2.500000e-01 3.809794e-01 9.282485e-03 9.282485e-03 +4.750000e+00 2.500000e-01 2.500000e-01 3.721831e-01 9.089013e-03 9.089013e-03 +5.500000e+00 5.000000e-01 5.000000e-01 3.617680e-01 8.773562e-03 8.773562e-03 +7.000000e+00 1.000000e+00 1.000000e+00 3.493743e-01 8.889090e-03 8.889090e-03 +9.000000e+00 1.000000e+00 1.000000e+00 3.375650e-01 1.022542e-02 1.022542e-02 +1.250000e+01 2.500000e+00 2.500000e+00 3.133384e-01 1.257670e-02 1.257670e-02 +1.750000e+01 2.500000e+00 2.500000e+00 2.645946e-01 1.797575e-02 1.797575e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d62-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.004406666, up: 0.004406666}, unc. syst.: {dn: -0.017446, up: 0.017446}}, 1: {stat: {dn: -0.003589997, up: 0.003589997}, unc. syst.: {dn: -0.0172612, up: 0.0172612}}, 2: {stat: {dn: -0.00307637, up: 0.00307637}, unc. syst.: {dn: -0.01708138, up: 0.01708138}}, 3: {stat: {dn: -0.001850749, up: 0.001850749}, unc. syst.: {dn: -0.01669195, up: 0.01669195}}, 4: {stat: {dn: -0.001903735, up: 0.001903735}, unc. syst.: {dn: -0.01643343, up: 0.01643343}}, 5: {stat: {dn: -0.001823769, up: 0.001823769}, unc. syst.: {dn: -0.01612272, up: 0.01612272}}, 6: {stat: {dn: -0.002504848, up: 0.002504848}, unc. syst.: {dn: -0.01602638, up: 0.01602638}}, 7: {stat: {dn: -0.002483951, up: 0.002483951}, unc. syst.: {dn: -0.01593994, up: 0.01593994}}, 8: {stat: {dn: -0.002462891, up: 0.002462891}, unc. syst.: {dn: -0.01554569, up: 0.01554569}}, 9: {stat: {dn: -0.002465225, up: 0.002465225}, unc. syst.: {dn: -0.01521578, up: 0.01521578}}, 10: {stat: {dn: -0.002666556, up: 0.002666556}, unc. syst.: {dn: -0.01452238, up: 0.01452238}}, 11: {stat: {dn: -0.002839471, up: 0.002839471}, unc. syst.: {dn: -0.0145437, up: 0.0145437}}, 12: {stat: {dn: -0.002787659, up: 0.002787659}, unc. syst.: {dn: -0.01416853, up: 0.01416853}}, 13: {stat: {dn: -0.003501393, up: 0.003501393}, unc. syst.: {dn: -0.01367442, up: 0.01367442}}, 14: {stat: {dn: -0.002595972, up: 0.002595972}, unc. syst.: {dn: -0.01335838, up: 0.01335838}}, 15: {stat: {dn: -0.002865819, up: 0.002865819}, unc. syst.: {dn: -0.01273909, up: 0.01273909}}, 16: {stat: {dn: -0.003082891, up: 0.003082891}, unc. syst.: {dn: -0.01228917, up: 0.01228917}}, 17: {stat: {dn: -0.003294161, up: 0.003294161}, unc. syst.: {dn: -0.01165925, up: 0.01165925}}, 18: {stat: {dn: -0.00352287, up: 0.00352287}, unc. syst.: {dn: -0.0113268, up: 0.0113268}}, 19: {stat: {dn: -0.00346181, up: 0.00346181}, unc. syst.: {dn: -0.01075058, up: 0.01075058}}, 20: {stat: {dn: -0.003805327, up: 0.003805327}, unc. syst.: {dn: -0.01071397, up: 0.01071397}}, 21: {stat: {dn: -0.004186749, up: 0.004186749}, unc. syst.: {dn: -0.01012664, up: 0.01012664}}, 22: {stat: {dn: -0.004914189, up: 0.004914189}, unc. syst.: {dn: -0.009854954, up: 0.009854954}}, 23: {stat: {dn: -0.00581676, up: 0.00581676}, unc. syst.: {dn: -0.009603833, up: 0.009603833}}, 24: {stat: {dn: -0.00424536, up: 0.00424536}, unc. syst.: {dn: -0.008981536, up: 0.008981536}}, 25: {stat: {dn: -0.004448791, up: 0.004448791}, unc. syst.: {dn: -0.008868798, up: 0.008868798}}, 26: {stat: {dn: -0.004385774, up: 0.004385774}, unc. syst.: {dn: -0.00926644, up: 0.00926644}}, 27: {stat: {dn: -0.006631494, up: 0.006631494}, unc. syst.: {dn: -0.0090774, up: 0.0090774}}, 28: {stat: {dn: -0.005491153, up: 0.005491153}, unc. syst.: {dn: -0.009168254, up: 0.009168254}}, 29: {stat: {dn: -0.005675354, up: 0.005675354}, unc. syst.: {dn: -0.01044585, up: 0.01044585}}, 30: {stat: {dn: -0.005851651, up: 0.005851651}, unc. syst.: {dn: -0.01218368, up: 0.01218368}}, 31: {stat: {dn: -0.006041317, up: 0.006041317}, unc. syst.: {dn: -0.01300611, up: 0.01300611}}, 32: {stat: {dn: -0.006426411, up: 0.006426411}, unc. syst.: {dn: -0.01304053, up: 0.01304053}}, 33: {stat: {dn: -0.006623397, up: 0.006623397}, unc. syst.: {dn: -0.01231557, up: 0.01231557}}, 34: {stat: {dn: -0.005944443, up: 0.005944443}, unc. syst.: {dn: -0.0113348, up: 0.0113348}}, 35: {stat: {dn: -0.006751441, up: 0.006751441}, unc. syst.: {dn: -0.01030492, up: 0.01030492}}, 36: {stat: {dn: -0.007325854, up: 0.007325854}, unc. syst.: {dn: -0.009150642, up: 0.009150642}}, 37: {stat: {dn: -0.01036047, up: 0.01036047}, unc. syst.: {dn: -0.007960837, up: 0.007960837}}, 38: {stat: {dn: -0.01779879, up: 0.01779879}, unc. syst.: {dn: -0.007740505, up: 0.007740505}}, 39: {stat: {dn: -0.03158929, up: 0.03158929}, unc. syst.: {dn: -0.009026614, up: 0.009026614}}, 40: {stat: {dn: -0.0563276, up: 0.0563276}, unc. syst.: {dn: -0.01353572, up: 0.01353572}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d62-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t62 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 7.960760e-01 1.799393e-02 1.799393e-02 +3.750000e-01 2.500000e-02 2.500000e-02 7.843928e-01 1.763057e-02 1.763057e-02 +4.250000e-01 2.500000e-02 2.500000e-02 7.739220e-01 1.735620e-02 1.735620e-02 +4.750000e-01 2.500000e-02 2.500000e-02 7.733596e-01 1.679424e-02 1.679424e-02 +5.250000e-01 2.500000e-02 2.500000e-02 7.632437e-01 1.654333e-02 1.654333e-02 +5.750000e-01 2.500000e-02 2.500000e-02 7.478038e-01 1.622554e-02 1.622554e-02 +6.250000e-01 2.500000e-02 2.500000e-02 7.380636e-01 1.622095e-02 1.622095e-02 +6.750000e-01 2.500000e-02 2.500000e-02 7.227757e-01 1.613232e-02 1.613232e-02 +7.250000e-01 2.500000e-02 2.500000e-02 7.119443e-01 1.573958e-02 1.573958e-02 +7.750000e-01 2.500000e-02 2.500000e-02 6.942661e-01 1.541419e-02 1.541419e-02 +8.250000e-01 2.500000e-02 2.500000e-02 6.766552e-01 1.476516e-02 1.476516e-02 +8.750000e-01 2.500000e-02 2.500000e-02 6.636951e-01 1.481829e-02 1.481829e-02 +9.250000e-01 2.500000e-02 2.500000e-02 6.432530e-01 1.444016e-02 1.444016e-02 +9.750000e-01 2.500000e-02 2.500000e-02 6.275643e-01 1.411558e-02 1.411558e-02 +1.050000e+00 5.000000e-02 5.000000e-02 6.088075e-01 1.360828e-02 1.360828e-02 +1.150000e+00 5.000000e-02 5.000000e-02 5.796632e-01 1.305746e-02 1.305746e-02 +1.250000e+00 5.000000e-02 5.000000e-02 5.559248e-01 1.266996e-02 1.266996e-02 +1.350000e+00 5.000000e-02 5.000000e-02 5.270747e-01 1.211568e-02 1.211568e-02 +1.450000e+00 5.000000e-02 5.000000e-02 5.065000e-01 1.186200e-02 1.186200e-02 +1.550000e+00 5.000000e-02 5.000000e-02 4.825964e-01 1.129421e-02 1.129421e-02 +1.650000e+00 5.000000e-02 5.000000e-02 4.686339e-01 1.136968e-02 1.136968e-02 +1.750000e+00 5.000000e-02 5.000000e-02 4.383521e-01 1.095800e-02 1.095800e-02 +1.850000e+00 5.000000e-02 5.000000e-02 4.281920e-01 1.101224e-02 1.101224e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.234392e-01 1.122801e-02 1.122801e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.993986e-01 9.934338e-03 9.934338e-03 +2.300000e+00 1.000000e-01 1.000000e-01 3.790896e-01 9.922062e-03 9.922062e-03 +2.500000e+00 1.000000e-01 1.000000e-01 3.618570e-01 1.025192e-02 1.025192e-02 +2.700000e+00 1.000000e-01 1.000000e-01 3.447486e-01 1.124170e-02 1.124170e-02 +2.900000e+00 1.000000e-01 1.000000e-01 3.360737e-01 1.068689e-02 1.068689e-02 +3.100000e+00 1.000000e-01 1.000000e-01 3.223853e-01 1.188804e-02 1.188804e-02 +3.300000e+00 1.000000e-01 1.000000e-01 3.108737e-01 1.351606e-02 1.351606e-02 +3.500000e+00 1.000000e-01 1.000000e-01 2.989476e-01 1.434073e-02 1.434073e-02 +3.700000e+00 1.000000e-01 1.000000e-01 2.939221e-01 1.453803e-02 1.453803e-02 +3.900000e+00 1.000000e-01 1.000000e-01 2.904093e-01 1.398366e-02 1.398366e-02 +4.250000e+00 2.500000e-01 2.500000e-01 2.844227e-01 1.279899e-02 1.279899e-02 +4.750000e+00 2.500000e-01 2.500000e-01 2.785354e-01 1.231963e-02 1.231963e-02 +5.500000e+00 5.000000e-01 5.000000e-01 2.768464e-01 1.172188e-02 1.172188e-02 +7.000000e+00 1.000000e+00 1.000000e+00 2.878416e-01 1.306577e-02 1.306577e-02 +9.000000e+00 1.000000e+00 1.000000e+00 3.072662e-01 1.940908e-02 1.940908e-02 +1.250000e+01 2.500000e+00 2.500000e+00 3.379809e-01 3.285366e-02 3.285366e-02 +1.750000e+01 2.500000e+00 2.500000e+00 3.408595e-01 5.793112e-02 5.793112e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d63-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.00619695, up: 0.00619695}, unc. syst.: {dn: -0.03600456, up: 0.03600456}}, 1: {stat: {dn: -0.003681729, up: 0.003681729}, unc. syst.: {dn: -0.02937465, up: 0.02937465}}, 2: {stat: {dn: -0.003117013, up: 0.003117013}, unc. syst.: {dn: -0.02466789, up: 0.02466789}}, 3: {stat: {dn: -0.002950586, up: 0.002950586}, unc. syst.: {dn: -0.02117156, up: 0.02117156}}, 4: {stat: {dn: -0.002904229, up: 0.002904229}, unc. syst.: {dn: -0.0201589, up: 0.0201589}}, 5: {stat: {dn: -0.00291305, up: 0.00291305}, unc. syst.: {dn: -0.01749452, up: 0.01749452}}, 6: {stat: {dn: -0.002960415, up: 0.002960415}, unc. syst.: {dn: -0.01633729, up: 0.01633729}}, 7: {stat: {dn: -0.00291978, up: 0.00291978}, unc. syst.: {dn: -0.0148575, up: 0.0148575}}, 8: {stat: {dn: -0.003121735, up: 0.003121735}, unc. syst.: {dn: -0.01492038, up: 0.01492038}}, 9: {stat: {dn: -0.002649554, up: 0.002649554}, unc. syst.: {dn: -0.0142701, up: 0.0142701}}, 10: {stat: {dn: -0.002568845, up: 0.002568845}, unc. syst.: {dn: -0.01216972, up: 0.01216972}}, 11: {stat: {dn: -0.002783781, up: 0.002783781}, unc. syst.: {dn: -0.01132118, up: 0.01132118}}, 12: {stat: {dn: -0.003329228, up: 0.003329228}, unc. syst.: {dn: -0.01081338, up: 0.01081338}}, 13: {stat: {dn: -0.003825587, up: 0.003825587}, unc. syst.: {dn: -0.009961292, up: 0.009961292}}, 14: {stat: {dn: -0.006820273, up: 0.006820273}, unc. syst.: {dn: -0.01142542, up: 0.01142542}}, 15: {stat: {dn: -0.01891191, up: 0.01891191}, unc. syst.: {dn: -0.01928315, up: 0.01928315}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d63-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t63 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 7.531113e-01 3.653396e-02 3.653396e-02 +7.000000e-01 1.000000e-01 1.000000e-01 6.936145e-01 2.960448e-02 2.960448e-02 +9.000000e-01 1.000000e-01 1.000000e-01 6.357555e-01 2.486404e-02 2.486404e-02 +1.100000e+00 1.000000e-01 1.000000e-01 5.756032e-01 2.137618e-02 2.137618e-02 +1.300000e+00 1.000000e-01 1.000000e-01 5.171275e-01 2.036703e-02 2.036703e-02 +1.500000e+00 1.000000e-01 1.000000e-01 4.767471e-01 1.773539e-02 1.773539e-02 +1.700000e+00 1.000000e-01 1.000000e-01 4.454619e-01 1.660335e-02 1.660335e-02 +1.900000e+00 1.000000e-01 1.000000e-01 4.053685e-01 1.514168e-02 1.514168e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.874551e-01 1.524346e-02 1.524346e-02 +2.350000e+00 1.500000e-01 1.500000e-01 3.546859e-01 1.451399e-02 1.451399e-02 +2.700000e+00 2.000000e-01 2.000000e-01 3.338202e-01 1.243789e-02 1.243789e-02 +3.150000e+00 2.500000e-01 2.500000e-01 3.106188e-01 1.165841e-02 1.165841e-02 +3.700000e+00 3.000000e-01 3.000000e-01 2.909714e-01 1.131428e-02 1.131428e-02 +4.500000e+00 5.000000e-01 5.000000e-01 2.737085e-01 1.067064e-02 1.067064e-02 +5.750000e+00 7.500000e-01 7.500000e-01 2.616353e-01 1.330625e-02 1.330625e-02 +7.250000e+00 7.500000e-01 7.500000e-01 3.219137e-01 2.700926e-02 2.700926e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d64-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.02057678, up: 0.02057678}, unc. syst.: {dn: -0.02529565, up: 0.02529565}}, 1: {stat: {dn: -0.0177917, up: 0.0177917}, unc. syst.: {dn: -0.01710671, up: 0.01710671}}, 2: {stat: {dn: -0.01497758, up: 0.01497758}, unc. syst.: {dn: -0.01491977, up: 0.01491977}}, 3: {stat: {dn: -0.01346308, up: 0.01346308}, unc. syst.: {dn: -0.01182765, up: 0.01182765}}, 4: {stat: {dn: -0.01321425, up: 0.01321425}, unc. syst.: {dn: -0.01082872, up: 0.01082872}}, 5: {stat: {dn: -0.01344775, up: 0.01344775}, unc. syst.: {dn: -0.01051869, up: 0.01051869}}, 6: {stat: {dn: -0.01378544, up: 0.01378544}, unc. syst.: {dn: -0.009816076, up: 0.009816076}}, 7: {stat: {dn: -0.01164947, up: 0.01164947}, unc. syst.: {dn: -0.008663032, up: 0.008663032}}, 8: {stat: {dn: -0.01187774, up: 0.01187774}, unc. syst.: {dn: -0.008172723, up: 0.008172723}}, 9: {stat: {dn: -0.0131229, up: 0.0131229}, unc. syst.: {dn: -0.008008641, up: 0.008008641}}, 10: {stat: {dn: -0.01508993, up: 0.01508993}, unc. syst.: {dn: -0.006620815, up: 0.006620815}}, 11: {stat: {dn: -0.0191402, up: 0.0191402}, unc. syst.: {dn: -0.006602202, up: 0.006602202}}, 12: {stat: {dn: -0.03307025, up: 0.03307025}, unc. syst.: {dn: -0.008034585, up: 0.008034585}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d64-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t64 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +8.000000e-01 2.000000e-01 2.000000e-01 6.311424e-01 3.260788e-02 3.260788e-02 +1.100000e+00 1.000000e-01 1.000000e-01 5.483175e-01 2.468166e-02 2.468166e-02 +1.300000e+00 1.000000e-01 1.000000e-01 4.943467e-01 2.114066e-02 2.114066e-02 +1.500000e+00 1.000000e-01 1.000000e-01 4.352519e-01 1.792060e-02 1.792060e-02 +1.700000e+00 1.000000e-01 1.000000e-01 4.044868e-01 1.708443e-02 1.708443e-02 +1.900000e+00 1.000000e-01 1.000000e-01 3.987927e-01 1.707293e-02 1.707293e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.760456e-01 1.692317e-02 1.692317e-02 +2.350000e+00 1.500000e-01 1.500000e-01 3.370737e-01 1.451752e-02 1.451752e-02 +2.700000e+00 2.000000e-01 2.000000e-01 3.181370e-01 1.441784e-02 1.441784e-02 +3.150000e+00 2.500000e-01 2.500000e-01 2.977140e-01 1.537364e-02 1.537364e-02 +3.700000e+00 3.000000e-01 3.000000e-01 2.489375e-01 1.647851e-02 1.647851e-02 +4.500000e+00 5.000000e-01 5.000000e-01 2.399990e-01 2.024688e-02 2.024688e-02 +5.750000e+00 7.500000e-01 7.500000e-01 2.853784e-01 3.403228e-02 3.403228e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d65-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.03429979, up: 0.03429979}, unc. syst.: {dn: -0.1251566, up: 0.1251566}}, 1: {stat: {dn: -0.02144696, up: 0.02144696}, unc. syst.: {dn: -0.0994339, up: 0.0994339}}, 2: {stat: {dn: -0.01796434, up: 0.01796434}, unc. syst.: {dn: -0.0817922, up: 0.0817922}}, 3: {stat: {dn: -0.02085554, up: 0.02085554}, unc. syst.: {dn: -0.07357019, up: 0.07357019}}, 4: {stat: {dn: -0.02044173, up: 0.02044173}, unc. syst.: {dn: -0.06231959, up: 0.06231959}}, 5: {stat: {dn: -0.01991947, up: 0.01991947}, unc. syst.: {dn: -0.05735823, up: 0.05735823}}, 6: {stat: {dn: -0.02361549, up: 0.02361549}, unc. syst.: {dn: -0.05363622, up: 0.05363622}}, 7: {stat: {dn: -0.02782457, up: 0.02782457}, unc. syst.: {dn: -0.05044621, up: 0.05044621}}, 8: {stat: {dn: -0.03883825, up: 0.03883825}, unc. syst.: {dn: -0.05074981, up: 0.05074981}}, 9: {stat: {dn: -0.04996694, up: 0.04996694}, unc. syst.: {dn: -0.04704961, up: 0.04704961}}, 10: {stat: {dn: -0.06024061, up: 0.06024061}, unc. syst.: {dn: -0.04967939, up: 0.04967939}}, 11: {stat: {dn: -0.05906848, up: 0.05906848}, unc. syst.: {dn: -0.03742062, up: 0.03742062}}, 12: {stat: {dn: -0.09041263, up: 0.09041263}, unc. syst.: {dn: -0.04457999, up: 0.04457999}}, 13: {stat: {dn: -0.08229316, up: 0.08229316}, unc. syst.: {dn: -0.0457941, up: 0.0457941}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d65-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t65 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 9.410268e-01 1.297715e-01 1.297715e-01 +6.000000e-01 2.000000e-01 2.000000e-01 8.018863e-01 1.017206e-01 1.017206e-01 +1.000000e+00 2.000000e-01 2.000000e-01 6.816017e-01 8.374175e-02 8.374175e-02 +1.400000e+00 2.000000e-01 2.000000e-01 5.838904e-01 7.646912e-02 7.646912e-02 +1.800000e+00 2.000000e-01 2.000000e-01 5.150379e-01 6.558655e-02 6.558655e-02 +2.250000e+00 2.500000e-01 2.500000e-01 4.701494e-01 6.071863e-02 6.071863e-02 +2.750000e+00 2.500000e-01 2.500000e-01 4.396412e-01 5.860491e-02 5.860491e-02 +3.250000e+00 2.500000e-01 2.500000e-01 4.239177e-01 5.761100e-02 5.761100e-02 +3.750000e+00 2.500000e-01 2.500000e-01 4.027762e-01 6.390581e-02 6.390581e-02 +4.250000e+00 2.500000e-01 2.500000e-01 3.888398e-01 6.863207e-02 6.863207e-02 +4.750000e+00 2.500000e-01 2.500000e-01 4.072081e-01 7.808312e-02 7.808312e-02 +5.500000e+00 5.000000e-01 5.000000e-01 3.067264e-01 6.992416e-02 6.992416e-02 +6.500000e+00 5.000000e-01 5.000000e-01 3.482812e-01 1.008058e-01 1.008058e-01 +8.500000e+00 1.500000e+00 1.500000e+00 3.271007e-01 9.417677e-02 9.417677e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d66-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.0371657, up: 0.0371657}, unc. syst.: {dn: -0.02331576, up: 0.02331576}}, 1: {stat: {dn: -0.01434342, up: 0.01434342}, unc. syst.: {dn: -0.01226659, up: 0.01226659}}, 2: {stat: {dn: -0.009648528, up: 0.009648528}, unc. syst.: {dn: -0.01708014, up: 0.01708014}}, 3: {stat: {dn: -0.01044583, up: 0.01044583}, unc. syst.: {dn: -0.02229634, up: 0.02229634}}, 4: {stat: {dn: -0.01317093, up: 0.01317093}, unc. syst.: {dn: -0.01774464, up: 0.01774464}}, 5: {stat: {dn: -0.01756163, up: 0.01756163}, unc. syst.: {dn: -0.02202264, up: 0.02202264}}, 6: {stat: {dn: -0.01973553, up: 0.01973553}, unc. syst.: {dn: -0.02448784, up: 0.02448784}}, 7: {stat: {dn: -0.01980658, up: 0.01980658}, unc. syst.: {dn: -0.02192991, up: 0.02192991}}, 8: {stat: {dn: -0.01369799, up: 0.01369799}, unc. syst.: {dn: -0.01694234, up: 0.01694234}}, 9: {stat: {dn: -0.0154462, up: 0.0154462}, unc. syst.: {dn: -0.02116794, up: 0.02116794}}, 10: {stat: {dn: -0.01558699, up: 0.01558699}, unc. syst.: {dn: -0.01803542, up: 0.01803542}}, 11: {stat: {dn: -0.0260811, up: 0.0260811}, unc. syst.: {dn: -0.0131949, up: 0.0131949}}, 12: {stat: {dn: -0.02565957, up: 0.02565957}, unc. syst.: {dn: -0.01870946, up: 0.01870946}}, 13: {stat: {dn: -0.0200681, up: 0.0200681}, unc. syst.: {dn: -0.01447399, up: 0.01447399}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d66-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t66 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 8.193082e-01 4.387384e-02 4.387384e-02 +7.000000e-01 1.000000e-01 1.000000e-01 7.214894e-01 1.887334e-02 1.887334e-02 +9.000000e-01 1.000000e-01 1.000000e-01 6.568311e-01 1.961696e-02 1.961696e-02 +1.100000e+00 1.000000e-01 1.000000e-01 5.916333e-01 2.462198e-02 2.462198e-02 +1.300000e+00 1.000000e-01 1.000000e-01 5.272603e-01 2.209854e-02 2.209854e-02 +1.500000e+00 1.000000e-01 1.000000e-01 4.573010e-01 2.816749e-02 2.816749e-02 +1.700000e+00 1.000000e-01 1.000000e-01 5.206080e-01 3.145068e-02 3.145068e-02 +1.900000e+00 1.000000e-01 1.000000e-01 4.432303e-01 2.955032e-02 2.955032e-02 +2.250000e+00 2.500000e-01 2.500000e-01 4.308727e-01 2.178710e-02 2.178710e-02 +2.750000e+00 2.500000e-01 2.500000e-01 4.393855e-01 2.620433e-02 2.620433e-02 +3.500000e+00 5.000000e-01 5.000000e-01 4.065106e-01 2.383759e-02 2.383759e-02 +4.500000e+00 5.000000e-01 5.000000e-01 3.398063e-01 2.922891e-02 2.922891e-02 +5.500000e+00 5.000000e-01 5.000000e-01 3.648697e-01 3.175622e-02 3.175622e-02 +7.000000e+00 1.000000e+00 1.000000e+00 2.789837e-01 2.474318e-02 2.474318e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d67-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.004505937, up: 0.004505937}, unc. syst.: {dn: -0.06450689, up: 0.06450689}}, 1: {stat: {dn: -0.004233227, up: 0.004233227}, unc. syst.: {dn: -0.06364224, up: 0.06364224}}, 2: {stat: {dn: -0.002579905, up: 0.002579905}, unc. syst.: {dn: -0.06252977, up: 0.06252977}}, 3: {stat: {dn: -0.002564046, up: 0.002564046}, unc. syst.: {dn: -0.0621823, up: 0.0621823}}, 4: {stat: {dn: -0.002640137, up: 0.002640137}, unc. syst.: {dn: -0.06265291, up: 0.06265291}}, 5: {stat: {dn: -0.002754607, up: 0.002754607}, unc. syst.: {dn: -0.0636004, up: 0.0636004}}, 6: {stat: {dn: -0.002916792, up: 0.002916792}, unc. syst.: {dn: -0.06494192, up: 0.06494192}}, 7: {stat: {dn: -0.003115656, up: 0.003115656}, unc. syst.: {dn: -0.06660139, up: 0.06660139}}, 8: {stat: {dn: -0.003352111, up: 0.003352111}, unc. syst.: {dn: -0.06848752, up: 0.06848752}}, 9: {stat: {dn: -0.003617046, up: 0.003617046}, unc. syst.: {dn: -0.07045537, up: 0.07045537}}, 10: {stat: {dn: -0.003903383, up: 0.003903383}, unc. syst.: {dn: -0.07236108, up: 0.07236108}}, 11: {stat: {dn: -0.004227567, up: 0.004227567}, unc. syst.: {dn: -0.07466328, up: 0.07466328}}, 12: {stat: {dn: -0.004566242, up: 0.004566242}, unc. syst.: {dn: -0.07661939, up: 0.07661939}}, 13: {stat: {dn: -0.004932222, up: 0.004932222}, unc. syst.: {dn: -0.07866074, up: 0.07866074}}, 14: {stat: {dn: -0.005320248, up: 0.005320248}, unc. syst.: {dn: -0.0807149, up: 0.0807149}}, 15: {stat: {dn: -0.005748565, up: 0.005748565}, unc. syst.: {dn: -0.08293266, up: 0.08293266}}, 16: {stat: {dn: -0.006190389, up: 0.006190389}, unc. syst.: {dn: -0.08490457, up: 0.08490457}}, 17: {stat: {dn: -0.00665334, up: 0.00665334}, unc. syst.: {dn: -0.08687675, up: 0.08687675}}, 18: {stat: {dn: -0.005224625, up: 0.005224625}, unc. syst.: {dn: -0.08970449, up: 0.08970449}}, 19: {stat: {dn: -0.005977572, up: 0.005977572}, unc. syst.: {dn: -0.0934974, up: 0.0934974}}, 20: {stat: {dn: -0.006798793, up: 0.006798793}, unc. syst.: {dn: -0.09689477, up: 0.09689477}}, 21: {stat: {dn: -0.007691807, up: 0.007691807}, unc. syst.: {dn: -0.09999228, up: 0.09999228}}, 22: {stat: {dn: -0.008691589, up: 0.008691589}, unc. syst.: {dn: -0.1033562, up: 0.1033562}}, 23: {stat: {dn: -0.009755817, up: 0.009755817}, unc. syst.: {dn: -0.1060395, up: 0.1060395}}, 24: {stat: {dn: -0.0109462, up: 0.0109462}, unc. syst.: {dn: -0.1089158, up: 0.1089158}}, 25: {stat: {dn: -0.01220404, up: 0.01220404}, unc. syst.: {dn: -0.1112238, up: 0.1112238}}, 26: {stat: {dn: -0.01358824, up: 0.01358824}, unc. syst.: {dn: -0.1140343, up: 0.1140343}}, 27: {stat: {dn: -0.01511753, up: 0.01511753}, unc. syst.: {dn: -0.1160031, up: 0.1160031}}, 28: {stat: {dn: -0.01256726, up: 0.01256726}, unc. syst.: {dn: -0.119192, up: 0.119192}}, 29: {stat: {dn: -0.01521339, up: 0.01521339}, unc. syst.: {dn: -0.1228528, up: 0.1228528}}, 30: {stat: {dn: -0.01814141, up: 0.01814141}, unc. syst.: {dn: -0.1260383, up: 0.1260383}}, 31: {stat: {dn: -0.02149592, up: 0.02149592}, unc. syst.: {dn: -0.1289478, up: 0.1289478}}, 32: {stat: {dn: -0.02514758, up: 0.02514758}, unc. syst.: {dn: -0.1305015, up: 0.1305015}}, 33: {stat: {dn: -0.0291891, up: 0.0291891}, unc. syst.: {dn: -0.1324275, up: 0.1324275}}, 34: {stat: {dn: -0.03390476, up: 0.03390476}, unc. syst.: {dn: -0.1360299, up: 0.1360299}}, 35: {stat: {dn: -0.0386209, up: 0.0386209}, unc. syst.: {dn: -0.1361781, up: 0.1361781}}, 36: {stat: {dn: -0.04405115, up: 0.04405115}, unc. syst.: {dn: -0.1377418, up: 0.1377418}}, 37: {stat: {dn: -0.0498253, up: 0.0498253}, unc. syst.: {dn: -0.1389355, up: 0.1389355}}, 38: {stat: {dn: -0.03624368, up: 0.03624368}, unc. syst.: {dn: -0.1385833, up: 0.1385833}}, 39: {stat: {dn: -0.04791668, up: 0.04791668}, unc. syst.: {dn: -0.1435125, up: 0.1435125}}, 40: {stat: {dn: -0.04818227, up: 0.04818227}, unc. syst.: {dn: -0.1436463, up: 0.1436463}}, 41: {stat: {dn: -0.05980588, up: 0.05980588}, unc. syst.: {dn: -0.1434916, up: 0.1434916}}, 42: {stat: {dn: -0.1162123, up: 0.1162123}, unc. syst.: {dn: -0.1496446, up: 0.1496446}}, 43: {stat: {dn: -0.1577861, up: 0.1577861}, unc. syst.: {dn: -0.1509372, up: 0.1509372}}, 44: {stat: {dn: -0.3717656, up: 0.3717656}, unc. syst.: {dn: -0.1499372, up: 0.1499372}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d67-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t67 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.700000e-01 1.000000e-02 1.000000e-02 3.089320e+00 6.466407e-02 6.466407e-02 +1.900000e-01 1.000000e-02 1.000000e-02 3.047910e+00 6.378287e-02 6.378287e-02 +2.250000e-01 2.500000e-02 2.500000e-02 2.994633e+00 6.258297e-02 6.258297e-02 +2.750000e-01 2.500000e-02 2.500000e-02 2.977992e+00 6.223514e-02 6.223514e-02 +3.250000e-01 2.500000e-02 2.500000e-02 3.000530e+00 6.270851e-02 6.270851e-02 +3.750000e-01 2.500000e-02 2.500000e-02 3.045907e+00 6.366002e-02 6.366002e-02 +4.250000e-01 2.500000e-02 2.500000e-02 3.110154e+00 6.500739e-02 6.500739e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.189628e+00 6.667423e-02 6.667423e-02 +5.250000e-01 2.500000e-02 2.500000e-02 3.279957e+00 6.856951e-02 6.856951e-02 +5.750000e-01 2.500000e-02 2.500000e-02 3.374200e+00 7.054816e-02 7.054816e-02 +6.250000e-01 2.500000e-02 2.500000e-02 3.465467e+00 7.246628e-02 7.246628e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.575722e+00 7.478287e-02 7.478287e-02 +7.250000e-01 2.500000e-02 2.500000e-02 3.669403e+00 7.675534e-02 7.675534e-02 +7.750000e-01 2.500000e-02 2.500000e-02 3.767166e+00 7.881522e-02 7.881522e-02 +8.250000e-01 2.500000e-02 2.500000e-02 3.865543e+00 8.089005e-02 8.089005e-02 +8.750000e-01 2.500000e-02 2.500000e-02 3.971754e+00 8.313166e-02 8.313166e-02 +9.250000e-01 2.500000e-02 2.500000e-02 4.066191e+00 8.512994e-02 8.512994e-02 +9.750000e-01 2.500000e-02 2.500000e-02 4.160642e+00 8.713115e-02 8.713115e-02 +1.050000e+00 5.000000e-02 5.000000e-02 4.296066e+00 8.985651e-02 8.985651e-02 +1.150000e+00 5.000000e-02 5.000000e-02 4.477713e+00 9.368829e-02 9.368829e-02 +1.250000e+00 5.000000e-02 5.000000e-02 4.640418e+00 9.713300e-02 9.713300e-02 +1.350000e+00 5.000000e-02 5.000000e-02 4.788762e+00 1.002877e-01 1.002877e-01 +1.450000e+00 5.000000e-02 5.000000e-02 4.949864e+00 1.037210e-01 1.037210e-01 +1.550000e+00 5.000000e-02 5.000000e-02 5.078370e+00 1.064873e-01 1.064873e-01 +1.650000e+00 5.000000e-02 5.000000e-02 5.216119e+00 1.094645e-01 1.094645e-01 +1.750000e+00 5.000000e-02 5.000000e-02 5.326653e+00 1.118913e-01 1.118913e-01 +1.850000e+00 5.000000e-02 5.000000e-02 5.461252e+00 1.148410e-01 1.148410e-01 +1.950000e+00 5.000000e-02 5.000000e-02 5.555543e+00 1.169840e-01 1.169840e-01 +2.100000e+00 1.000000e-01 1.000000e-01 5.708260e+00 1.198527e-01 1.198527e-01 +2.300000e+00 1.000000e-01 1.000000e-01 5.883584e+00 1.237912e-01 1.237912e-01 +2.500000e+00 1.000000e-01 1.000000e-01 6.036142e+00 1.273372e-01 1.273372e-01 +2.700000e+00 1.000000e-01 1.000000e-01 6.175481e+00 1.307272e-01 1.307272e-01 +2.900000e+00 1.000000e-01 1.000000e-01 6.249887e+00 1.329024e-01 1.329024e-01 +3.100000e+00 1.000000e-01 1.000000e-01 6.342128e+00 1.356062e-01 1.356062e-01 +3.300000e+00 1.000000e-01 1.000000e-01 6.514649e+00 1.401915e-01 1.401915e-01 +3.500000e+00 1.000000e-01 1.000000e-01 6.521746e+00 1.415488e-01 1.415488e-01 +3.700000e+00 1.000000e-01 1.000000e-01 6.596637e+00 1.446143e-01 1.446143e-01 +3.900000e+00 1.000000e-01 1.000000e-01 6.653802e+00 1.475996e-01 1.475996e-01 +4.250000e+00 2.500000e-01 2.500000e-01 6.636935e+00 1.432443e-01 1.432443e-01 +4.750000e+00 2.500000e-01 2.500000e-01 6.873000e+00 1.513005e-01 1.513005e-01 +5.500000e+00 5.000000e-01 5.000000e-01 6.879409e+00 1.515117e-01 1.515117e-01 +7.000000e+00 1.000000e+00 1.000000e+00 6.872003e+00 1.554560e-01 1.554560e-01 +9.000000e+00 1.000000e+00 1.000000e+00 7.166677e+00 1.894698e-01 1.894698e-01 +1.250000e+01 2.500000e+00 2.500000e+00 7.228582e+00 2.183541e-01 2.183541e-01 +2.750000e+01 1.250000e+01 1.250000e+01 7.801229e+00 4.008626e-01 4.008626e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d68-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.006168708, up: 0.006168708}, unc. syst.: {dn: -0.07655457, up: 0.07655457}}, 1: {stat: {dn: -0.005139457, up: 0.005139457}, unc. syst.: {dn: -0.0750744, up: 0.0750744}}, 2: {stat: {dn: -0.004904437, up: 0.004904437}, unc. syst.: {dn: -0.0732065, up: 0.0732065}}, 3: {stat: {dn: -0.004802117, up: 0.004802117}, unc. syst.: {dn: -0.07202969, up: 0.07202969}}, 4: {stat: {dn: -0.004770172, up: 0.004770172}, unc. syst.: {dn: -0.07120851, up: 0.07120851}}, 5: {stat: {dn: -0.003057496, up: 0.003057496}, unc. syst.: {dn: -0.07024604, up: 0.07024604}}, 6: {stat: {dn: -0.005851883, up: 0.005851883}, unc. syst.: {dn: -0.06840904, up: 0.06840904}}, 7: {stat: {dn: -0.006467552, up: 0.006467552}, unc. syst.: {dn: -0.06896506, up: 0.06896506}}, 8: {stat: {dn: -0.006132997, up: 0.006132997}, unc. syst.: {dn: -0.06992175, up: 0.06992175}}, 9: {stat: {dn: -0.006636942, up: 0.006636942}, unc. syst.: {dn: -0.07166741, up: 0.07166741}}, 10: {stat: {dn: -0.007432173, up: 0.007432173}, unc. syst.: {dn: -0.07431259, up: 0.07431259}}, 11: {stat: {dn: -0.008179025, up: 0.008179025}, unc. syst.: {dn: -0.07684523, up: 0.07684523}}, 12: {stat: {dn: -0.008822561, up: 0.008822561}, unc. syst.: {dn: -0.07853431, up: 0.07853431}}, 13: {stat: {dn: -0.02968258, up: 0.02968258}, unc. syst.: {dn: -0.08657837, up: 0.08657837}}, 14: {stat: {dn: -0.02824788, up: 0.02824788}, unc. syst.: {dn: -0.09143922, up: 0.09143922}}, 15: {stat: {dn: -0.03512357, up: 0.03512357}, unc. syst.: {dn: -0.09069992, up: 0.09069992}}, 16: {stat: {dn: -0.03353475, up: 0.03353475}, unc. syst.: {dn: -0.09623973, up: 0.09623973}}, 17: {stat: {dn: -0.03796795, up: 0.03796795}, unc. syst.: {dn: -0.09482591, up: 0.09482591}}, 18: {stat: {dn: -0.03802501, up: 0.03802501}, unc. syst.: {dn: -0.09954667, up: 0.09954667}}, 19: {stat: {dn: -0.04154733, up: 0.04154733}, unc. syst.: {dn: -0.1019653, up: 0.1019653}}, 20: {stat: {dn: -0.0266339, up: 0.0266339}, unc. syst.: {dn: -0.10682, up: 0.10682}}, 21: {stat: {dn: -0.03278429, up: 0.03278429}, unc. syst.: {dn: -0.1057633, up: 0.1057633}}, 22: {stat: {dn: -0.03646346, up: 0.03646346}, unc. syst.: {dn: -0.1112737, up: 0.1112737}}, 23: {stat: {dn: -0.01950335, up: 0.01950335}, unc. syst.: {dn: -0.126704, up: 0.126704}}, 24: {stat: {dn: -0.02296766, up: 0.02296766}, unc. syst.: {dn: -0.1337811, up: 0.1337811}}, 25: {stat: {dn: -0.02676487, up: 0.02676487}, unc. syst.: {dn: -0.1395587, up: 0.1395587}}, 26: {stat: {dn: -0.02991827, up: 0.02991827}, unc. syst.: {dn: -0.140036, up: 0.140036}}, 27: {stat: {dn: -0.03322975, up: 0.03322975}, unc. syst.: {dn: -0.1396267, up: 0.1396267}}, 28: {stat: {dn: -0.03657734, up: 0.03657734}, unc. syst.: {dn: -0.1409091, up: 0.1409091}}, 29: {stat: {dn: -0.04027949, up: 0.04027949}, unc. syst.: {dn: -0.1422774, up: 0.1422774}}, 30: {stat: {dn: -0.04106376, up: 0.04106376}, unc. syst.: {dn: -0.1372309, up: 0.1372309}}, 31: {stat: {dn: -0.01902404, up: 0.01902404}, unc. syst.: {dn: -0.1282865, up: 0.1282865}}, 32: {stat: {dn: -0.024489, up: 0.024489}, unc. syst.: {dn: -0.131615, up: 0.131615}}, 33: {stat: {dn: -0.03104816, up: 0.03104816}, unc. syst.: {dn: -0.1346375, up: 0.1346375}}, 34: {stat: {dn: -0.01584874, up: 0.01584874}, unc. syst.: {dn: -0.1352775, up: 0.1352775}}, 35: {stat: {dn: -0.01855231, up: 0.01855231}, unc. syst.: {dn: -0.1369982, up: 0.1369982}}, 36: {stat: {dn: -0.0216673, up: 0.0216673}, unc. syst.: {dn: -0.1394717, up: 0.1394717}}, 37: {stat: {dn: -0.02505227, up: 0.02505227}, unc. syst.: {dn: -0.141586, up: 0.141586}}, 38: {stat: {dn: -0.0284052, up: 0.0284052}, unc. syst.: {dn: -0.141602, up: 0.141602}}, 39: {stat: {dn: -0.03197925, up: 0.03197925}, unc. syst.: {dn: -0.142682, up: 0.142682}}, 40: {stat: {dn: -0.03475835, up: 0.03475835}, unc. syst.: {dn: -0.1436151, up: 0.1436151}}, 41: {stat: {dn: -0.02987924, up: 0.02987924}, unc. syst.: {dn: -0.1450477, up: 0.1450477}}, 42: {stat: {dn: -0.03683238, up: 0.03683238}, unc. syst.: {dn: -0.1490278, up: 0.1490278}}, 43: {stat: {dn: -0.03916629, up: 0.03916629}, unc. syst.: {dn: -0.1515044, up: 0.1515044}}, 44: {stat: {dn: -0.0509074, up: 0.0509074}, unc. syst.: {dn: -0.1544057, up: 0.1544057}}, 45: {stat: {dn: -0.08583644, up: 0.08583644}, unc. syst.: {dn: -0.1587341, up: 0.1587341}}, 46: {stat: {dn: -0.133405, up: 0.133405}, unc. syst.: {dn: -0.1628234, up: 0.1628234}}, 47: {stat: {dn: -0.2831036, up: 0.2831036}, unc. syst.: {dn: -0.1843297, up: 0.1843297}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d68-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t68 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.100000e-01 1.000000e-02 1.000000e-02 3.272964e+00 7.680270e-02 7.680270e-02 +1.300000e-01 1.000000e-02 1.000000e-02 3.210055e+00 7.525011e-02 7.525011e-02 +1.500000e-01 1.000000e-02 1.000000e-02 3.129927e+00 7.337060e-02 7.337060e-02 +1.700000e-01 1.000000e-02 1.000000e-02 3.079403e+00 7.218959e-02 7.218959e-02 +1.900000e-01 1.000000e-02 1.000000e-02 3.045322e+00 7.136811e-02 7.136811e-02 +2.250000e-01 2.500000e-02 2.500000e-02 3.003791e+00 7.031255e-02 7.031255e-02 +2.750000e-01 2.500000e-02 2.500000e-02 2.982808e+00 6.865888e-02 6.865888e-02 +3.250000e-01 2.500000e-02 2.500000e-02 3.007661e+00 6.926766e-02 6.926766e-02 +3.750000e-01 2.500000e-02 2.500000e-02 3.056861e+00 7.019020e-02 7.019020e-02 +4.250000e-01 2.500000e-02 2.500000e-02 3.135251e+00 7.197407e-02 7.197407e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.228473e+00 7.468332e-02 7.468332e-02 +5.250000e-01 2.500000e-02 2.500000e-02 3.320674e+00 7.727927e-02 7.727927e-02 +5.750000e-01 2.500000e-02 2.500000e-02 3.401712e+00 7.902832e-02 7.902832e-02 +6.250000e-01 2.500000e-02 2.500000e-02 3.541430e+00 9.152524e-02 9.152524e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.643935e+00 9.570305e-02 9.570305e-02 +7.250000e-01 2.500000e-02 2.500000e-02 3.753829e+00 9.726325e-02 9.726325e-02 +7.750000e-01 2.500000e-02 2.500000e-02 3.877202e+00 1.019150e-01 1.019150e-01 +8.250000e-01 2.500000e-02 2.500000e-02 3.915244e+00 1.021446e-01 1.021446e-01 +8.750000e-01 2.500000e-02 2.500000e-02 4.056505e+00 1.065619e-01 1.065619e-01 +9.250000e-01 2.500000e-02 2.500000e-02 4.199870e+00 1.101050e-01 1.101050e-01 +9.750000e-01 2.500000e-02 2.500000e-02 4.254007e+00 1.100903e-01 1.100903e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.403062e+00 1.107280e-01 1.107280e-01 +1.150000e+00 5.000000e-02 5.000000e-02 4.573773e+00 1.170958e-01 1.170958e-01 +1.250000e+00 5.000000e-02 5.000000e-02 4.716079e+00 1.281963e-01 1.281963e-01 +1.350000e+00 5.000000e-02 5.000000e-02 4.839730e+00 1.357383e-01 1.357383e-01 +1.450000e+00 5.000000e-02 5.000000e-02 5.017352e+00 1.421020e-01 1.421020e-01 +1.550000e+00 5.000000e-02 5.000000e-02 5.125307e+00 1.431963e-01 1.431963e-01 +1.650000e+00 5.000000e-02 5.000000e-02 5.208500e+00 1.435264e-01 1.435264e-01 +1.750000e+00 5.000000e-02 5.000000e-02 5.354077e+00 1.455791e-01 1.455791e-01 +1.850000e+00 5.000000e-02 5.000000e-02 5.453086e+00 1.478692e-01 1.478692e-01 +1.950000e+00 5.000000e-02 5.000000e-02 5.515554e+00 1.432430e-01 1.432430e-01 +2.100000e+00 1.000000e-01 1.000000e-01 5.659321e+00 1.296894e-01 1.296894e-01 +2.300000e+00 1.000000e-01 1.000000e-01 5.776388e+00 1.338739e-01 1.338739e-01 +2.500000e+00 1.000000e-01 1.000000e-01 5.909467e+00 1.381711e-01 1.381711e-01 +2.700000e+00 1.000000e-01 1.000000e-01 6.048925e+00 1.362027e-01 1.362027e-01 +2.900000e+00 1.000000e-01 1.000000e-01 6.124869e+00 1.382487e-01 1.382487e-01 +3.100000e+00 1.000000e-01 1.000000e-01 6.237404e+00 1.411447e-01 1.411447e-01 +3.300000e+00 1.000000e-01 1.000000e-01 6.330728e+00 1.437853e-01 1.437853e-01 +3.500000e+00 1.000000e-01 1.000000e-01 6.328341e+00 1.444229e-01 1.444229e-01 +3.700000e+00 1.000000e-01 1.000000e-01 6.379844e+00 1.462218e-01 1.462218e-01 +3.900000e+00 1.000000e-01 1.000000e-01 6.415807e+00 1.477614e-01 1.477614e-01 +4.250000e+00 2.500000e-01 2.500000e-01 6.486371e+00 1.480932e-01 1.480932e-01 +4.750000e+00 2.500000e-01 2.500000e-01 6.665590e+00 1.535119e-01 1.535119e-01 +5.500000e+00 5.000000e-01 5.000000e-01 6.774893e+00 1.564851e-01 1.564851e-01 +7.000000e+00 1.000000e+00 1.000000e+00 6.896755e+00 1.625813e-01 1.625813e-01 +9.000000e+00 1.000000e+00 1.000000e+00 7.073437e+00 1.804561e-01 1.804561e-01 +1.250000e+01 2.500000e+00 2.500000e+00 7.222737e+00 2.104955e-01 2.104955e-01 +1.750000e+01 2.500000e+00 2.500000e+00 8.059651e+00 3.378240e-01 3.378240e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d69-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.01854743, up: 0.01854743}, unc. syst.: {dn: -0.07395917, up: 0.07395917}}, 1: {stat: {dn: -0.01477705, up: 0.01477705}, unc. syst.: {dn: -0.07608073, up: 0.07608073}}, 2: {stat: {dn: -0.01708929, up: 0.01708929}, unc. syst.: {dn: -0.06399489, up: 0.06399489}}, 3: {stat: {dn: -0.0249886, up: 0.0249886}, unc. syst.: {dn: -0.06669722, up: 0.06669722}}, 4: {stat: {dn: -0.02924755, up: 0.02924755}, unc. syst.: {dn: -0.084207, up: 0.084207}}, 5: {stat: {dn: -0.02057642, up: 0.02057642}, unc. syst.: {dn: -0.0724188, up: 0.0724188}}, 6: {stat: {dn: -0.05020555, up: 0.05020555}, unc. syst.: {dn: -0.08029295, up: 0.08029295}}, 7: {stat: {dn: -0.04536422, up: 0.04536422}, unc. syst.: {dn: -0.07910008, up: 0.07910008}}, 8: {stat: {dn: -0.05564087, up: 0.05564087}, unc. syst.: {dn: -0.07793527, up: 0.07793527}}, 9: {stat: {dn: -0.04220568, up: 0.04220568}, unc. syst.: {dn: -0.08112123, up: 0.08112123}}, 10: {stat: {dn: -0.0701455, up: 0.0701455}, unc. syst.: {dn: -0.083768, up: 0.083768}}, 11: {stat: {dn: -0.05870538, up: 0.05870538}, unc. syst.: {dn: -0.08653147, up: 0.08653147}}, 12: {stat: {dn: -0.03599623, up: 0.03599623}, unc. syst.: {dn: -0.08777884, up: 0.08777884}}, 13: {stat: {dn: -0.09826802, up: 0.09826802}, unc. syst.: {dn: -0.09341903, up: 0.09341903}}, 14: {stat: {dn: -0.04532699, up: 0.04532699}, unc. syst.: {dn: -0.09379727, up: 0.09379727}}, 15: {stat: {dn: -0.04336447, up: 0.04336447}, unc. syst.: {dn: -0.0965007, up: 0.0965007}}, 16: {stat: {dn: -0.07895255, up: 0.07895255}, unc. syst.: {dn: -0.1037597, up: 0.1037597}}, 17: {stat: {dn: -0.08752713, up: 0.08752713}, unc. syst.: {dn: -0.1100288, up: 0.1100288}}, 18: {stat: {dn: -0.02925482, up: 0.02925482}, unc. syst.: {dn: -0.1176998, up: 0.1176998}}, 19: {stat: {dn: -0.0327421, up: 0.0327421}, unc. syst.: {dn: -0.1250172, up: 0.1250172}}, 20: {stat: {dn: -0.03584383, up: 0.03584383}, unc. syst.: {dn: -0.1358532, up: 0.1358532}}, 21: {stat: {dn: -0.04026434, up: 0.04026434}, unc. syst.: {dn: -0.1466428, up: 0.1466428}}, 22: {stat: {dn: -0.046353, up: 0.046353}, unc. syst.: {dn: -0.1539457, up: 0.1539457}}, 23: {stat: {dn: -0.05288638, up: 0.05288638}, unc. syst.: {dn: -0.1614234, up: 0.1614234}}, 24: {stat: {dn: -0.06377591, up: 0.06377591}, unc. syst.: {dn: -0.1681942, up: 0.1681942}}, 25: {stat: {dn: -0.07212778, up: 0.07212778}, unc. syst.: {dn: -0.1754489, up: 0.1754489}}, 26: {stat: {dn: -0.05119906, up: 0.05119906}, unc. syst.: {dn: -0.1486736, up: 0.1486736}}, 27: {stat: {dn: -0.06992909, up: 0.06992909}, unc. syst.: {dn: -0.1482752, up: 0.1482752}}, 28: {stat: {dn: -0.07249245, up: 0.07249245}, unc. syst.: {dn: -0.1548968, up: 0.1548968}}, 29: {stat: {dn: -0.06927804, up: 0.06927804}, unc. syst.: {dn: -0.1490912, up: 0.1490912}}, 30: {stat: {dn: -0.07064953, up: 0.07064953}, unc. syst.: {dn: -0.1525108, up: 0.1525108}}, 31: {stat: {dn: -0.07107555, up: 0.07107555}, unc. syst.: {dn: -0.154892, up: 0.154892}}, 32: {stat: {dn: -0.07206559, up: 0.07206559}, unc. syst.: {dn: -0.1551108, up: 0.1551108}}, 33: {stat: {dn: -0.07430518, up: 0.07430518}, unc. syst.: {dn: -0.154604, up: 0.154604}}, 34: {stat: {dn: -0.07875789, up: 0.07875789}, unc. syst.: {dn: -0.1545395, up: 0.1545395}}, 35: {stat: {dn: -0.08075217, up: 0.08075217}, unc. syst.: {dn: -0.1544789, up: 0.1544789}}, 36: {stat: {dn: -0.06934635, up: 0.06934635}, unc. syst.: {dn: -0.153471, up: 0.153471}}, 37: {stat: {dn: -0.07728075, up: 0.07728075}, unc. syst.: {dn: -0.1541986, up: 0.1541986}}, 38: {stat: {dn: -0.07857929, up: 0.07857929}, unc. syst.: {dn: -0.151771, up: 0.151771}}, 39: {stat: {dn: -0.09729157, up: 0.09729157}, unc. syst.: {dn: -0.1507594, up: 0.1507594}}, 40: {stat: {dn: -0.1498621, up: 0.1498621}, unc. syst.: {dn: -0.1567991, up: 0.1567991}}, 41: {stat: {dn: -0.2273033, up: 0.2273033}, unc. syst.: {dn: -0.1655982, up: 0.1655982}}, 42: {stat: {dn: -0.4421728, up: 0.4421728}, unc. syst.: {dn: -0.1955714, up: 0.1955714}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d69-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t69 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 2.635471e+00 7.624937e-02 7.624937e-02 +2.750000e-01 2.500000e-02 2.500000e-02 2.710069e+00 7.750251e-02 7.750251e-02 +3.250000e-01 2.500000e-02 2.500000e-02 2.771950e+00 6.623737e-02 6.623737e-02 +3.750000e-01 2.500000e-02 2.500000e-02 2.829168e+00 7.122464e-02 7.122464e-02 +4.250000e-01 2.500000e-02 2.500000e-02 2.967158e+00 8.914167e-02 8.914167e-02 +4.750000e-01 2.500000e-02 2.500000e-02 3.140688e+00 7.528527e-02 7.528527e-02 +5.250000e-01 2.500000e-02 2.500000e-02 3.240163e+00 9.469718e-02 9.469718e-02 +5.750000e-01 2.500000e-02 2.500000e-02 3.363829e+00 9.118517e-02 9.118517e-02 +6.250000e-01 2.500000e-02 2.500000e-02 3.421845e+00 9.575914e-02 9.575914e-02 +6.750000e-01 2.500000e-02 2.500000e-02 3.572003e+00 9.144383e-02 9.144383e-02 +7.250000e-01 2.500000e-02 2.500000e-02 3.657584e+00 1.092587e-01 1.092587e-01 +7.750000e-01 2.500000e-02 2.500000e-02 3.794116e+00 1.045658e-01 1.045658e-01 +8.250000e-01 2.500000e-02 2.500000e-02 3.856171e+00 9.487283e-02 9.487283e-02 +8.750000e-01 2.500000e-02 2.500000e-02 4.070477e+00 1.355866e-01 1.355866e-01 +9.250000e-01 2.500000e-02 2.500000e-02 4.079392e+00 1.041752e-01 1.041752e-01 +9.750000e-01 2.500000e-02 2.500000e-02 4.189294e+00 1.057963e-01 1.057963e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.418246e+00 1.303824e-01 1.303824e-01 +1.150000e+00 5.000000e-02 5.000000e-02 4.556236e+00 1.405964e-01 1.405964e-01 +1.250000e+00 5.000000e-02 5.000000e-02 4.764820e+00 1.212810e-01 1.212810e-01 +1.350000e+00 5.000000e-02 5.000000e-02 4.930951e+00 1.292337e-01 1.292337e-01 +1.450000e+00 5.000000e-02 5.000000e-02 5.127061e+00 1.405022e-01 1.405022e-01 +1.550000e+00 5.000000e-02 5.000000e-02 5.311192e+00 1.520701e-01 1.520701e-01 +1.650000e+00 5.000000e-02 5.000000e-02 5.413695e+00 1.607728e-01 1.607728e-01 +1.750000e+00 5.000000e-02 5.000000e-02 5.486004e+00 1.698661e-01 1.698661e-01 +1.850000e+00 5.000000e-02 5.000000e-02 5.655663e+00 1.798796e-01 1.798796e-01 +1.950000e+00 5.000000e-02 5.000000e-02 5.644568e+00 1.896964e-01 1.896964e-01 +2.100000e+00 1.000000e-01 1.000000e-01 5.819394e+00 1.572424e-01 1.572424e-01 +2.300000e+00 1.000000e-01 1.000000e-01 5.912957e+00 1.639378e-01 1.639378e-01 +2.500000e+00 1.000000e-01 1.000000e-01 6.096085e+00 1.710210e-01 1.710210e-01 +2.700000e+00 1.000000e-01 1.000000e-01 6.094010e+00 1.644008e-01 1.644008e-01 +2.900000e+00 1.000000e-01 1.000000e-01 6.125503e+00 1.680800e-01 1.680800e-01 +3.100000e+00 1.000000e-01 1.000000e-01 6.225548e+00 1.704208e-01 1.704208e-01 +3.300000e+00 1.000000e-01 1.000000e-01 6.346630e+00 1.710345e-01 1.710345e-01 +3.500000e+00 1.000000e-01 1.000000e-01 6.417922e+00 1.715333e-01 1.715333e-01 +3.700000e+00 1.000000e-01 1.000000e-01 6.498829e+00 1.734510e-01 1.734510e-01 +3.900000e+00 1.000000e-01 1.000000e-01 6.508385e+00 1.743119e-01 1.743119e-01 +4.250000e+00 2.500000e-01 2.500000e-01 6.476290e+00 1.684110e-01 1.684110e-01 +4.750000e+00 2.500000e-01 2.500000e-01 6.592208e+00 1.724805e-01 1.724805e-01 +5.500000e+00 5.000000e-01 5.000000e-01 6.605630e+00 1.709068e-01 1.709068e-01 +7.000000e+00 1.000000e+00 1.000000e+00 6.648632e+00 1.794270e-01 1.794270e-01 +9.000000e+00 1.000000e+00 1.000000e+00 6.913632e+00 2.168977e-01 2.168977e-01 +1.250000e+01 2.500000e+00 2.500000e+00 7.124491e+00 2.812287e-01 2.812287e-01 +1.750000e+01 2.500000e+00 2.500000e+00 8.025640e+00 4.834925e-01 4.834925e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d70-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.03145811, up: 0.03145811}, unc. syst.: {dn: -0.09718088, up: 0.09718088}}, 1: {stat: {dn: -0.02662447, up: 0.02662447}, unc. syst.: {dn: -0.1030214, up: 0.1030214}}, 2: {stat: {dn: -0.02329814, up: 0.02329814}, unc. syst.: {dn: -0.1058043, up: 0.1058043}}, 3: {stat: {dn: -0.01736807, up: 0.01736807}, unc. syst.: {dn: -0.06095778, up: 0.06095778}}, 4: {stat: {dn: -0.02891674, up: 0.02891674}, unc. syst.: {dn: -0.06258119, up: 0.06258119}}, 5: {stat: {dn: -0.01886621, up: 0.01886621}, unc. syst.: {dn: -0.06428282, up: 0.06428282}}, 6: {stat: {dn: -0.03533896, up: 0.03533896}, unc. syst.: {dn: -0.0637316, up: 0.0637316}}, 7: {stat: {dn: -0.0403082, up: 0.0403082}, unc. syst.: {dn: -0.06560712, up: 0.06560712}}, 8: {stat: {dn: -0.02934219, up: 0.02934219}, unc. syst.: {dn: -0.06878549, up: 0.06878549}}, 9: {stat: {dn: -0.03341153, up: 0.03341153}, unc. syst.: {dn: -0.07102722, up: 0.07102722}}, 10: {stat: {dn: -0.02502433, up: 0.02502433}, unc. syst.: {dn: -0.0720291, up: 0.0720291}}, 11: {stat: {dn: -0.0286381, up: 0.0286381}, unc. syst.: {dn: -0.07523976, up: 0.07523976}}, 12: {stat: {dn: -0.0471016, up: 0.0471016}, unc. syst.: {dn: -0.07933265, up: 0.07933265}}, 13: {stat: {dn: -0.03876548, up: 0.03876548}, unc. syst.: {dn: -0.0805124, up: 0.0805124}}, 14: {stat: {dn: -0.0399006, up: 0.0399006}, unc. syst.: {dn: -0.08457841, up: 0.08457841}}, 15: {stat: {dn: -0.04304681, up: 0.04304681}, unc. syst.: {dn: -0.09178753, up: 0.09178753}}, 16: {stat: {dn: -0.0512109, up: 0.0512109}, unc. syst.: {dn: -0.09776793, up: 0.09776793}}, 17: {stat: {dn: -0.05774171, up: 0.05774171}, unc. syst.: {dn: -0.1016233, up: 0.1016233}}, 18: {stat: {dn: -0.05829735, up: 0.05829735}, unc. syst.: {dn: -0.1064502, up: 0.1064502}}, 19: {stat: {dn: -0.06449671, up: 0.06449671}, unc. syst.: {dn: -0.1134835, up: 0.1134835}}, 20: {stat: {dn: -0.08822758, up: 0.08822758}, unc. syst.: {dn: -0.1224367, up: 0.1224367}}, 21: {stat: {dn: -0.09086798, up: 0.09086798}, unc. syst.: {dn: -0.1265965, up: 0.1265965}}, 22: {stat: {dn: -0.1050084, up: 0.1050084}, unc. syst.: {dn: -0.1285051, up: 0.1285051}}, 23: {stat: {dn: -0.1194156, up: 0.1194156}, unc. syst.: {dn: -0.1334973, up: 0.1334973}}, 24: {stat: {dn: -0.0730388, up: 0.0730388}, unc. syst.: {dn: -0.1404327, up: 0.1404327}}, 25: {stat: {dn: -0.08553204, up: 0.08553204}, unc. syst.: {dn: -0.1520091, up: 0.1520091}}, 26: {stat: {dn: -0.09425319, up: 0.09425319}, unc. syst.: {dn: -0.1688114, up: 0.1688114}}, 27: {stat: {dn: -0.1516735, up: 0.1516735}, unc. syst.: {dn: -0.1691508, up: 0.1691508}}, 28: {stat: {dn: -0.1077075, up: 0.1077075}, unc. syst.: {dn: -0.1876827, up: 0.1876827}}, 29: {stat: {dn: -0.113693, up: 0.113693}, unc. syst.: {dn: -0.2142766, up: 0.2142766}}, 30: {stat: {dn: -0.1208538, up: 0.1208538}, unc. syst.: {dn: -0.2407387, up: 0.2407387}}, 31: {stat: {dn: -0.1283421, up: 0.1283421}, unc. syst.: {dn: -0.2544109, up: 0.2544109}}, 32: {stat: {dn: -0.1385709, up: 0.1385709}, unc. syst.: {dn: -0.2592615, up: 0.2592615}}, 33: {stat: {dn: -0.1450459, up: 0.1450459}, unc. syst.: {dn: -0.2590566, up: 0.2590566}}, 34: {stat: {dn: -0.131242, up: 0.131242}, unc. syst.: {dn: -0.2624206, up: 0.2624206}}, 35: {stat: {dn: -0.1553773, up: 0.1553773}, unc. syst.: {dn: -0.2710613, up: 0.2710613}}, 36: {stat: {dn: -0.1708371, up: 0.1708371}, unc. syst.: {dn: -0.2697646, up: 0.2697646}}, 37: {stat: {dn: -0.2391117, up: 0.2391117}, unc. syst.: {dn: -0.2626918, up: 0.2626918}}, 38: {stat: {dn: -0.4242959, up: 0.4242959}, unc. syst.: {dn: -0.2573925, up: 0.2573925}}, 39: {stat: {dn: -0.6809671, up: 0.6809671}, unc. syst.: {dn: -0.2364809, up: 0.2364809}}, 40: {stat: {dn: -1.366844, up: 1.366844}, unc. syst.: {dn: -0.3609927, up: 0.3609927}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d70-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t70 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 2.269718e+00 1.021457e-01 1.021457e-01 +3.750000e-01 2.500000e-02 2.500000e-02 2.389206e+00 1.064062e-01 1.064062e-01 +4.250000e-01 2.500000e-02 2.500000e-02 2.435163e+00 1.083391e-01 1.083391e-01 +4.750000e-01 2.500000e-02 2.500000e-02 2.458958e+00 6.338376e-02 6.338376e-02 +5.250000e-01 2.500000e-02 2.500000e-02 2.574955e+00 6.893898e-02 6.893898e-02 +5.750000e-01 2.500000e-02 2.500000e-02 2.634005e+00 6.699414e-02 6.699414e-02 +6.250000e-01 2.500000e-02 2.500000e-02 2.722856e+00 7.287358e-02 7.287358e-02 +6.750000e-01 2.500000e-02 2.500000e-02 2.839534e+00 7.700029e-02 7.700029e-02 +7.250000e-01 2.500000e-02 2.500000e-02 2.979709e+00 7.478240e-02 7.478240e-02 +7.750000e-01 2.500000e-02 2.500000e-02 3.070767e+00 7.849329e-02 7.849329e-02 +8.250000e-01 2.500000e-02 2.500000e-02 3.180676e+00 7.625227e-02 7.625227e-02 +8.750000e-01 2.500000e-02 2.500000e-02 3.264853e+00 8.050567e-02 8.050567e-02 +9.250000e-01 2.500000e-02 2.500000e-02 3.457616e+00 9.226175e-02 9.226175e-02 +9.750000e-01 2.500000e-02 2.500000e-02 3.534057e+00 8.935888e-02 8.935888e-02 +1.050000e+00 5.000000e-02 5.000000e-02 3.715529e+00 9.351773e-02 9.351773e-02 +1.150000e+00 5.000000e-02 5.000000e-02 4.037255e+00 1.013804e-01 1.013804e-01 +1.250000e+00 5.000000e-02 5.000000e-02 4.295095e+00 1.103681e-01 1.103681e-01 +1.350000e+00 5.000000e-02 5.000000e-02 4.462345e+00 1.168820e-01 1.168820e-01 +1.450000e+00 5.000000e-02 5.000000e-02 4.650305e+00 1.213681e-01 1.213681e-01 +1.550000e+00 5.000000e-02 5.000000e-02 4.875296e+00 1.305310e-01 1.305310e-01 +1.650000e+00 5.000000e-02 5.000000e-02 5.227847e+00 1.509134e-01 1.509134e-01 +1.750000e+00 5.000000e-02 5.000000e-02 5.401128e+00 1.558322e-01 1.558322e-01 +1.850000e+00 5.000000e-02 5.000000e-02 5.460602e+00 1.659528e-01 1.659528e-01 +1.950000e+00 5.000000e-02 5.000000e-02 5.669476e+00 1.791134e-01 1.791134e-01 +2.100000e+00 1.000000e-01 1.000000e-01 5.995878e+00 1.582909e-01 1.582909e-01 +2.300000e+00 1.000000e-01 1.000000e-01 6.338505e+00 1.744205e-01 1.744205e-01 +2.500000e+00 1.000000e-01 1.000000e-01 6.652403e+00 1.933415e-01 1.933415e-01 +2.700000e+00 1.000000e-01 1.000000e-01 6.911218e+00 2.271934e-01 2.271934e-01 +2.900000e+00 1.000000e-01 1.000000e-01 7.125172e+00 2.163925e-01 2.163925e-01 +3.100000e+00 1.000000e-01 1.000000e-01 7.417638e+00 2.425707e-01 2.425707e-01 +3.300000e+00 1.000000e-01 1.000000e-01 7.666330e+00 2.693711e-01 2.693711e-01 +3.500000e+00 1.000000e-01 1.000000e-01 7.812167e+00 2.849502e-01 2.849502e-01 +3.700000e+00 1.000000e-01 1.000000e-01 7.983185e+00 2.939701e-01 2.939701e-01 +3.900000e+00 1.000000e-01 1.000000e-01 8.094024e+00 2.968984e-01 2.968984e-01 +4.250000e+00 2.500000e-01 2.500000e-01 8.235376e+00 2.934093e-01 2.934093e-01 +4.750000e+00 2.500000e-01 2.500000e-01 8.564852e+00 3.124361e-01 3.124361e-01 +5.500000e+00 5.000000e-01 5.000000e-01 8.703511e+00 3.193090e-01 3.193090e-01 +7.000000e+00 1.000000e+00 1.000000e+00 8.749670e+00 3.552202e-01 3.552202e-01 +9.000000e+00 1.000000e+00 1.000000e+00 8.722019e+00 4.962640e-01 4.962640e-01 +1.250000e+01 2.500000e+00 2.500000e+00 7.659075e+00 7.208602e-01 7.208602e-01 +1.750000e+01 2.500000e+00 2.500000e+00 7.307683e+00 1.413711e+00 1.413711e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d71-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.0552961, up: 0.0552961}, unc. syst.: {dn: -0.05973731, up: 0.05973731}}, 1: {stat: {dn: -0.03699706, up: 0.03699706}, unc. syst.: {dn: -0.06996697, up: 0.06996697}}, 2: {stat: {dn: -0.03636278, up: 0.03636278}, unc. syst.: {dn: -0.07790254, up: 0.07790254}}, 3: {stat: {dn: -0.04104952, up: 0.04104952}, unc. syst.: {dn: -0.09188004, up: 0.09188004}}, 4: {stat: {dn: -0.04851901, up: 0.04851901}, unc. syst.: {dn: -0.1260012, up: 0.1260012}}, 5: {stat: {dn: -0.05621755, up: 0.05621755}, unc. syst.: {dn: -0.1273291, up: 0.1273291}}, 6: {stat: {dn: -0.06462344, up: 0.06462344}, unc. syst.: {dn: -0.1345913, up: 0.1345913}}, 7: {stat: {dn: -0.076349, up: 0.076349}, unc. syst.: {dn: -0.1579792, up: 0.1579792}}, 8: {stat: {dn: -0.08998953, up: 0.08998953}, unc. syst.: {dn: -0.1748823, up: 0.1748823}}, 9: {stat: {dn: -0.08987622, up: 0.08987622}, unc. syst.: {dn: -0.2014115, up: 0.2014115}}, 10: {stat: {dn: -0.104515, up: 0.104515}, unc. syst.: {dn: -0.1874335, up: 0.1874335}}, 11: {stat: {dn: -0.136275, up: 0.136275}, unc. syst.: {dn: -0.1960503, up: 0.1960503}}, 12: {stat: {dn: -0.1893282, up: 0.1893282}, unc. syst.: {dn: -0.207584, up: 0.207584}}, 13: {stat: {dn: -0.2459091, up: 0.2459091}, unc. syst.: {dn: -0.2094091, up: 0.2094091}}, 14: {stat: {dn: -0.404525, up: 0.404525}, unc. syst.: {dn: -0.3352984, up: 0.3352984}}, 15: {stat: {dn: -0.7480714, up: 0.7480714}, unc. syst.: {dn: -0.4133313, up: 0.4133313}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d71-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t71 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 2.578362e+00 8.140150e-02 8.140150e-02 +7.000000e-01 1.000000e-01 1.000000e-01 3.002794e+00 7.914644e-02 7.914644e-02 +9.000000e-01 1.000000e-01 1.000000e-01 3.515376e+00 8.597126e-02 8.597126e-02 +1.100000e+00 1.000000e-01 1.000000e-01 4.022098e+00 1.006330e-01 1.006330e-01 +1.300000e+00 1.000000e-01 1.000000e-01 4.567152e+00 1.350200e-01 1.350200e-01 +1.500000e+00 1.000000e-01 1.000000e-01 5.053886e+00 1.391873e-01 1.391873e-01 +1.700000e+00 1.000000e-01 1.000000e-01 5.416048e+00 1.493017e-01 1.493017e-01 +1.900000e+00 1.000000e-01 1.000000e-01 5.984598e+00 1.754611e-01 1.754611e-01 +2.100000e+00 1.000000e-01 1.000000e-01 6.231330e+00 1.966772e-01 1.966772e-01 +2.350000e+00 1.500000e-01 1.500000e-01 6.689480e+00 2.205546e-01 2.205546e-01 +2.700000e+00 2.000000e-01 2.000000e-01 7.098573e+00 2.146036e-01 2.146036e-01 +3.150000e+00 2.500000e-01 2.500000e-01 7.726761e+00 2.387605e-01 2.387605e-01 +3.700000e+00 3.000000e-01 3.000000e-01 7.802232e+00 2.809560e-01 2.809560e-01 +4.500000e+00 5.000000e-01 5.000000e-01 8.080728e+00 3.229914e-01 3.229914e-01 +5.750000e+00 7.500000e-01 7.500000e-01 8.937014e+00 5.254193e-01 5.254193e-01 +7.250000e+00 7.500000e-01 7.500000e-01 7.768959e+00 8.546658e-01 8.546658e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d72-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.2018565, up: 0.2018565}, unc. syst.: {dn: -0.1368716, up: 0.1368716}}, 1: {stat: {dn: -0.2194648, up: 0.2194648}, unc. syst.: {dn: -0.1341432, up: 0.1341432}}, 2: {stat: {dn: -0.200022, up: 0.200022}, unc. syst.: {dn: -0.1285162, up: 0.1285162}}, 3: {stat: {dn: -0.2090266, up: 0.2090266}, unc. syst.: {dn: -0.1302539, up: 0.1302539}}, 4: {stat: {dn: -0.2215027, up: 0.2215027}, unc. syst.: {dn: -0.1475743, up: 0.1475743}}, 5: {stat: {dn: -0.2436351, up: 0.2436351}, unc. syst.: {dn: -0.1642844, up: 0.1642844}}, 6: {stat: {dn: -0.2714969, up: 0.2714969}, unc. syst.: {dn: -0.1744234, up: 0.1744234}}, 7: {stat: {dn: -0.2470019, up: 0.2470019}, unc. syst.: {dn: -0.1746366, up: 0.1746366}}, 8: {stat: {dn: -0.2703408, up: 0.2703408}, unc. syst.: {dn: -0.1912215, up: 0.1912215}}, 9: {stat: {dn: -0.3210511, up: 0.3210511}, unc. syst.: {dn: -0.2023597, up: 0.2023597}}, 10: {stat: {dn: -0.4498094, up: 0.4498094}, unc. syst.: {dn: -0.2364581, up: 0.2364581}}, 11: {stat: {dn: -0.5862085, up: 0.5862085}, unc. syst.: {dn: -0.2536097, up: 0.2536097}}, 12: {stat: {dn: -0.9519546, up: 0.9519546}, unc. syst.: {dn: -0.2529084, up: 0.2529084}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d72-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t72 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +8.000000e-01 2.000000e-01 2.000000e-01 3.415032e+00 2.438850e-01 2.438850e-01 +1.100000e+00 1.000000e-01 1.000000e-01 4.299662e+00 2.572143e-01 2.572143e-01 +1.300000e+00 1.000000e-01 1.000000e-01 4.258215e+00 2.377503e-01 2.377503e-01 +1.500000e+00 1.000000e-01 1.000000e-01 4.793281e+00 2.462889e-01 2.462889e-01 +1.700000e+00 1.000000e-01 1.000000e-01 5.512369e+00 2.661609e-01 2.661609e-01 +1.900000e+00 1.000000e-01 1.000000e-01 6.228479e+00 2.938493e-01 2.938493e-01 +2.100000e+00 1.000000e-01 1.000000e-01 6.682013e+00 3.226981e-01 3.226981e-01 +2.350000e+00 1.500000e-01 1.500000e-01 6.795009e+00 3.025027e-01 3.025027e-01 +2.700000e+00 2.000000e-01 2.000000e-01 7.443618e+00 3.311341e-01 3.311341e-01 +3.150000e+00 2.500000e-01 2.500000e-01 7.522539e+00 3.795040e-01 3.795040e-01 +3.700000e+00 3.000000e-01 3.000000e-01 8.890642e+00 5.081741e-01 5.081741e-01 +4.500000e+00 5.000000e-01 5.000000e-01 9.219056e+00 6.387161e-01 6.387161e-01 +5.750000e+00 7.500000e-01 7.500000e-01 8.982992e+00 9.849773e-01 9.849773e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d73-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.4535067, up: 0.4535067}, unc. syst.: {dn: -0.2726879, up: 0.2726879}}, 1: {stat: {dn: -0.3300806, up: 0.3300806}, unc. syst.: {dn: -0.2433387, up: 0.2433387}}, 2: {stat: {dn: -0.3475747, up: 0.3475747}, unc. syst.: {dn: -0.3155782, up: 0.3155782}}, 3: {stat: {dn: -0.37862, up: 0.37862}, unc. syst.: {dn: -0.451313, up: 0.451313}}, 4: {stat: {dn: -0.4259043, up: 0.4259043}, unc. syst.: {dn: -0.5082259, up: 0.5082259}}, 5: {stat: {dn: -0.4530917, up: 0.4530917}, unc. syst.: {dn: -0.624502, up: 0.624502}}, 6: {stat: {dn: -0.5561014, up: 0.5561014}, unc. syst.: {dn: -0.5727721, up: 0.5727721}}, 7: {stat: {dn: -0.6697222, up: 0.6697222}, unc. syst.: {dn: -0.598106, up: 0.598106}}, 8: {stat: {dn: -0.9218335, up: 0.9218335}, unc. syst.: {dn: -0.5944596, up: 0.5944596}}, 9: {stat: {dn: -1.158146, up: 1.158146}, unc. syst.: {dn: -0.7012744, up: 0.7012744}}, 10: {stat: {dn: -1.378716, up: 1.378716}, unc. syst.: {dn: -0.5953449, up: 0.5953449}}, 11: {stat: {dn: -1.306236, up: 1.306236}, unc. syst.: {dn: -0.7103171, up: 0.7103171}}, 12: {stat: {dn: -1.513177, up: 1.513177}, unc. syst.: {dn: -0.8753235, up: 0.8753235}}, 13: {stat: {dn: -1.396263, up: 1.396263}, unc. syst.: {dn: -0.831584, up: 0.831584}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d73-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t73 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.000000e-01 2.000000e-01 2.000000e-01 2.310914e+00 5.291758e-01 5.291758e-01 +6.000000e-01 2.000000e-01 2.000000e-01 2.027822e+00 4.100816e-01 4.100816e-01 +1.000000e+00 2.000000e-01 2.000000e-01 2.949329e+00 4.694654e-01 4.694654e-01 +1.400000e+00 2.000000e-01 2.000000e-01 4.102845e+00 5.890981e-01 5.890981e-01 +1.800000e+00 2.000000e-01 2.000000e-01 4.749775e+00 6.630898e-01 6.630898e-01 +2.250000e+00 2.500000e-01 2.500000e-01 5.729376e+00 7.715535e-01 7.715535e-01 +2.750000e+00 2.500000e-01 2.500000e-01 5.403510e+00 7.983211e-01 7.983211e-01 +3.250000e+00 2.500000e-01 2.500000e-01 5.921841e+00 8.979190e-01 8.979190e-01 +3.750000e+00 2.500000e-01 2.500000e-01 5.885739e+00 1.096886e+00 1.096886e+00 +4.250000e+00 2.500000e-01 2.500000e-01 6.375222e+00 1.353916e+00 1.353916e+00 +4.750000e+00 2.500000e-01 2.500000e-01 5.953449e+00 1.501763e+00 1.501763e+00 +5.500000e+00 5.000000e-01 5.000000e-01 6.457428e+00 1.486877e+00 1.486877e+00 +6.500000e+00 5.000000e-01 5.000000e-01 7.234078e+00 1.748112e+00 1.748112e+00 +8.500000e+00 1.500000e+00 1.500000e+00 6.025971e+00 1.625141e+00 1.625141e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d74-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {stat: {dn: -0.453805, up: 0.453805}, unc. syst.: {dn: -0.2063206, up: 0.2063206}}, 1: {stat: {dn: -0.2335581, up: 0.2335581}, unc. syst.: {dn: -0.2520648, up: 0.2520648}}, 2: {stat: {dn: -0.2029494, up: 0.2029494}, unc. syst.: {dn: -0.2222642, up: 0.2222642}}, 3: {stat: {dn: -0.2771396, up: 0.2771396}, unc. syst.: {dn: -0.2763873, up: 0.2763873}}, 4: {stat: {dn: -0.4283754, up: 0.4283754}, unc. syst.: {dn: -0.3226613, up: 0.3226613}}, 5: {stat: {dn: -0.6142824, up: 0.6142824}, unc. syst.: {dn: -0.3162765, up: 0.3162765}}, 6: {stat: {dn: -0.7325234, up: 0.7325234}, unc. syst.: {dn: -0.3837389, up: 0.3837389}}, 7: {stat: {dn: -0.7708983, up: 0.7708983}, unc. syst.: {dn: -0.4441777, up: 0.4441777}}, 8: {stat: {dn: -0.524782, up: 0.524782}, unc. syst.: {dn: -0.4294371, up: 0.4294371}}, 9: {stat: {dn: -0.5896216, up: 0.5896216}, unc. syst.: {dn: -0.4250873, up: 0.4250873}}, 10: {stat: {dn: -0.5233255, up: 0.5233255}, unc. syst.: {dn: -0.4702295, up: 0.4702295}}, 11: {stat: {dn: -0.5775043, up: 0.5775043}, unc. syst.: {dn: -0.4431653, up: 0.4431653}}, 12: {stat: {dn: -0.9350665, up: 0.9350665}, unc. syst.: {dn: -0.7899782, up: 0.7899782}}, 13: {stat: {dn: -1.189157, up: 1.189157}, unc. syst.: {dn: -0.4102308, up: 0.4102308}}, 14: {stat: {dn: -1.354758, up: 1.354758}, unc. syst.: {dn: -0.9179248, up: 0.9179248}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d74-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t74 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 2.236198e+00 4.985049e-01 4.985049e-01 +7.000000e-01 1.000000e-01 1.000000e-01 3.013845e+00 3.436365e-01 3.436365e-01 +9.000000e-01 1.000000e-01 1.000000e-01 2.957324e+00 3.009815e-01 3.009815e-01 +1.100000e+00 1.000000e-01 1.000000e-01 3.771396e+00 3.914030e-01 3.914030e-01 +1.300000e+00 1.000000e-01 1.000000e-01 4.430139e+00 5.362982e-01 5.362982e-01 +1.500000e+00 1.000000e-01 1.000000e-01 4.221521e+00 6.909223e-01 6.909223e-01 +1.700000e+00 1.000000e-01 1.000000e-01 5.015713e+00 8.269499e-01 8.269499e-01 +1.900000e+00 1.000000e-01 1.000000e-01 5.906979e+00 8.897067e-01 8.897067e-01 +2.250000e+00 2.500000e-01 2.500000e-01 5.649305e+00 6.780947e-01 6.780947e-01 +2.750000e+00 2.500000e-01 2.500000e-01 5.617827e+00 7.268788e-01 7.268788e-01 +3.500000e+00 5.000000e-01 5.000000e-01 6.310412e+00 7.035520e-01 7.035520e-01 +4.500000e+00 5.000000e-01 5.000000e-01 5.895783e+00 7.279469e-01 7.279469e-01 +5.500000e+00 5.000000e-01 5.000000e-01 9.473223e+00 1.224098e+00 1.224098e+00 +6.500000e+00 5.000000e-01 5.000000e-01 4.846072e+00 1.257928e+00 1.257928e+00 +8.500000e+00 1.500000e+00 1.500000e+00 1.019036e+01 1.636446e+00 1.636446e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d75-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.040045, up: 1.040045}, stat: {dn: -0.4324568, up: 0.4324568}, unc. syst.: {dn: -0.2198943, up: 0.2198943}}, 1: {full syst.: {dn: -0.8596124, up: 0.8596124}, stat: {dn: -0.1795416, up: 0.1795416}, unc. syst.: {dn: -0.2217476, up: 0.2217476}}, 2: {full syst.: {dn: -0.7221299, up: 0.7221299}, stat: {dn: -0.144288, up: 0.144288}, unc. syst.: {dn: -0.1940462, up: 0.1940462}}, 3: {full syst.: {dn: -0.6255029, up: 0.6255029}, stat: {dn: -0.1614041, up: 0.1614041}, unc. syst.: {dn: -0.2054568, up: 0.2054568}}, 4: {full syst.: {dn: -0.4948768, up: 0.4948768}, stat: {dn: -0.1550014, up: 0.1550014}, unc. syst.: {dn: -0.1842177, up: 0.1842177}}, 5: {full syst.: {dn: -0.445364, up: 0.445364}, stat: {dn: -0.2340716, up: 0.2340716}, unc. syst.: {dn: -0.2133183, up: 0.2133183}}, 6: {full syst.: {dn: -0.426461, up: 0.426461}, stat: {dn: -0.3099024, up: 0.3099024}, unc. syst.: {dn: -0.2053664, up: 0.2053664}}, 7: {full syst.: {dn: -0.3641269, up: 0.3641269}, stat: {dn: -0.2840643, up: 0.2840643}, unc. syst.: {dn: -0.1843688, up: 0.1843688}}, 8: {full syst.: {dn: -0.3610665, up: 0.3610665}, stat: {dn: -0.2230735, up: 0.2230735}, unc. syst.: {dn: -0.1796431, up: 0.1796431}}, 9: {full syst.: {dn: -0.349919, up: 0.349919}, stat: {dn: -0.1924439, up: 0.1924439}, unc. syst.: {dn: -0.1443942, up: 0.1443942}}, 10: {full syst.: {dn: -0.4682429, up: 0.4682429}, stat: {dn: -0.1819624, up: 0.1819624}, unc. syst.: {dn: -0.1410892, up: 0.1410892}}, 11: {full syst.: {dn: -0.2736635, up: 0.2736635}, stat: {dn: -0.1379744, up: 0.1379744}, unc. syst.: {dn: -0.1096418, up: 0.1096418}}, 12: {full syst.: {dn: -0.1493605, up: 0.1493605}, stat: {dn: -0.2481976, up: 0.2481976}, unc. syst.: {dn: -0.06343454, up: 0.06343454}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d75-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t75 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 7.556842e+00 1.147635e+00 1.147635e+00 +7.000000e-01 1.000000e-01 1.000000e-01 7.086994e+00 9.057266e-01 9.057266e-01 +9.000000e-01 1.000000e-01 1.000000e-01 6.405963e+00 7.615409e-01 7.615409e-01 +1.100000e+00 1.000000e-01 1.000000e-01 5.789842e+00 6.778773e-01 6.778773e-01 +1.300000e+00 1.000000e-01 1.000000e-01 4.604848e+00 5.503314e-01 5.503314e-01 +1.500000e+00 1.000000e-01 1.000000e-01 4.118415e+00 5.464827e-01 5.464827e-01 +1.700000e+00 1.000000e-01 1.000000e-01 3.903666e+00 5.657595e-01 5.657595e-01 +1.900000e+00 1.000000e-01 1.000000e-01 3.311907e+00 4.972653e-01 4.972653e-01 +2.250000e+00 2.500000e-01 2.500000e-01 3.252867e+00 4.608714e-01 4.608714e-01 +2.750000e+00 2.500000e-01 2.500000e-01 2.342376e+00 4.246500e-01 4.246500e-01 +3.500000e+00 5.000000e-01 5.000000e-01 1.807538e+00 5.217930e-01 5.217930e-01 +5.000000e+00 1.000000e+00 1.000000e+00 1.370160e+00 3.254996e-01 3.254996e-01 +7.000000e+00 1.000000e+00 1.000000e+00 9.939232e-01 2.965376e-01 2.965376e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d76-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.008215898, up: 0.008215898}, stat: {dn: -0.0002175909, up: 0.0002175909}, unc. syst.: {dn: -0.002091735, up: 0.002091735}}, 1: {full syst.: {dn: -0.008757921, up: 0.008757921}, stat: {dn: -0.0001978347, up: 0.0001978347}, unc. syst.: {dn: -0.002408231, up: 0.002408231}}, 2: {full syst.: {dn: -0.009527349, up: 0.009527349}, stat: {dn: -0.0001665075, up: 0.0001665075}, unc. syst.: {dn: -0.002889393, up: 0.002889393}}, 3: {full syst.: {dn: -0.01051997, up: 0.01051997}, stat: {dn: -0.0001871214, up: 0.0001871214}, unc. syst.: {dn: -0.003297492, up: 0.003297492}}, 4: {full syst.: {dn: -0.01181834, up: 0.01181834}, stat: {dn: -0.0002152309, up: 0.0002152309}, unc. syst.: {dn: -0.003964837, up: 0.003964837}}, 5: {full syst.: {dn: -0.01307778, up: 0.01307778}, stat: {dn: -0.0003890995, up: 0.0003890995}, unc. syst.: {dn: -0.004242768, up: 0.004242768}}, 6: {full syst.: {dn: -0.01564273, up: 0.01564273}, stat: {dn: -0.000388096, up: 0.000388096}, unc. syst.: {dn: -0.004796849, up: 0.004796849}}, 7: {full syst.: {dn: -0.01742448, up: 0.01742448}, stat: {dn: -0.000518433, up: 0.000518433}, unc. syst.: {dn: -0.005244612, up: 0.005244612}}, 8: {full syst.: {dn: -0.02011587, up: 0.02011587}, stat: {dn: -0.0008210657, up: 0.0008210657}, unc. syst.: {dn: -0.005581523, up: 0.005581523}}, 9: {full syst.: {dn: -0.02157008, up: 0.02157008}, stat: {dn: -0.0009052797, up: 0.0009052797}, unc. syst.: {dn: -0.006062474, up: 0.006062474}}, 10: {full syst.: {dn: -0.02280965, up: 0.02280965}, stat: {dn: -0.001000891, up: 0.001000891}, unc. syst.: {dn: -0.006502868, up: 0.006502868}}, 11: {full syst.: {dn: -0.02390822, up: 0.02390822}, stat: {dn: -0.001106146, up: 0.001106146}, unc. syst.: {dn: -0.006922482, up: 0.006922482}}, 12: {full syst.: {dn: -0.02504229, up: 0.02504229}, stat: {dn: -0.001227333, up: 0.001227333}, unc. syst.: {dn: -0.0073422, up: 0.0073422}}, 13: {full syst.: {dn: -0.02591131, up: 0.02591131}, stat: {dn: -0.001355934, up: 0.001355934}, unc. syst.: {dn: -0.00773175, up: 0.00773175}}, 14: {full syst.: {dn: -0.02711761, up: 0.02711761}, stat: {dn: -0.001508944, up: 0.001508944}, unc. syst.: {dn: -0.008092454, up: 0.008092454}}, 15: {full syst.: {dn: -0.02801678, up: 0.02801678}, stat: {dn: -0.001655426, up: 0.001655426}, unc. syst.: {dn: -0.008401529, up: 0.008401529}}, 16: {full syst.: {dn: -0.02898242, up: 0.02898242}, stat: {dn: -0.001242647, up: 0.001242647}, unc. syst.: {dn: -0.008834767, up: 0.008834767}}, 17: {full syst.: {dn: -0.03028777, up: 0.03028777}, stat: {dn: -0.0014662, up: 0.0014662}, unc. syst.: {dn: -0.009480946, up: 0.009480946}}, 18: {full syst.: {dn: -0.03185748, up: 0.03185748}, stat: {dn: -0.001811141, up: 0.001811141}, unc. syst.: {dn: -0.0105964, up: 0.0105964}}, 19: {full syst.: {dn: -0.03374386, up: 0.03374386}, stat: {dn: -0.002191159, up: 0.002191159}, unc. syst.: {dn: -0.01151071, up: 0.01151071}}, 20: {full syst.: {dn: -0.0344648, up: 0.0344648}, stat: {dn: -0.002542596, up: 0.002542596}, unc. syst.: {dn: -0.01189066, up: 0.01189066}}, 21: {full syst.: {dn: -0.03663319, up: 0.03663319}, stat: {dn: -0.003043107, up: 0.003043107}, unc. syst.: {dn: -0.01254131, up: 0.01254131}}, 22: {full syst.: {dn: -0.03814966, up: 0.03814966}, stat: {dn: -0.003430969, up: 0.003430969}, unc. syst.: {dn: -0.01302982, up: 0.01302982}}, 23: {full syst.: {dn: -0.0402726, up: 0.0402726}, stat: {dn: -0.004108622, up: 0.004108622}, unc. syst.: {dn: -0.01367364, up: 0.01367364}}, 24: {full syst.: {dn: -0.04057046, up: 0.04057046}, stat: {dn: -0.004631112, up: 0.004631112}, unc. syst.: {dn: -0.01340989, up: 0.01340989}}, 25: {full syst.: {dn: -0.04410297, up: 0.04410297}, stat: {dn: -0.005680808, up: 0.005680808}, unc. syst.: {dn: -0.01456262, up: 0.01456262}}, 26: {full syst.: {dn: -0.03880976, up: 0.03880976}, stat: {dn: -0.003803795, up: 0.003803795}, unc. syst.: {dn: -0.01270802, up: 0.01270802}}, 27: {full syst.: {dn: -0.03887974, up: 0.03887974}, stat: {dn: -0.005329943, up: 0.005329943}, unc. syst.: {dn: -0.01289983, up: 0.01289983}}, 28: {full syst.: {dn: -0.03946335, up: 0.03946335}, stat: {dn: -0.006816314, up: 0.006816314}, unc. syst.: {dn: -0.01363914, up: 0.01363914}}, 29: {full syst.: {dn: -0.04386754, up: 0.04386754}, stat: {dn: -0.005110371, up: 0.005110371}, unc. syst.: {dn: -0.01500861, up: 0.01500861}}, 30: {full syst.: {dn: -0.04720438, up: 0.04720438}, stat: {dn: -0.005645467, up: 0.005645467}, unc. syst.: {dn: -0.01626866, up: 0.01626866}}, 31: {full syst.: {dn: -0.05153894, up: 0.05153894}, stat: {dn: -0.006086872, up: 0.006086872}, unc. syst.: {dn: -0.01694905, up: 0.01694905}}, 32: {full syst.: {dn: -0.0538143, up: 0.0538143}, stat: {dn: -0.006554659, up: 0.006554659}, unc. syst.: {dn: -0.01705357, up: 0.01705357}}, 33: {full syst.: {dn: -0.05326856, up: 0.05326856}, stat: {dn: -0.007062177, up: 0.007062177}, unc. syst.: {dn: -0.0168052, up: 0.0168052}}, 34: {full syst.: {dn: -0.05222606, up: 0.05222606}, stat: {dn: -0.007817481, up: 0.007817481}, unc. syst.: {dn: -0.01690566, up: 0.01690566}}, 35: {full syst.: {dn: -0.04914341, up: 0.04914341}, stat: {dn: -0.008196964, up: 0.008196964}, unc. syst.: {dn: -0.01643198, up: 0.01643198}}, 36: {full syst.: {dn: -0.04764982, up: 0.04764982}, stat: {dn: -0.007281641, up: 0.007281641}, unc. syst.: {dn: -0.01617281, up: 0.01617281}}, 37: {full syst.: {dn: -0.04679086, up: 0.04679086}, stat: {dn: -0.00861844, up: 0.00861844}, unc. syst.: {dn: -0.01608618, up: 0.01608618}}, 38: {full syst.: {dn: -0.04707669, up: 0.04707669}, stat: {dn: -0.009301344, up: 0.009301344}, unc. syst.: {dn: -0.01600202, up: 0.01600202}}, 39: {full syst.: {dn: -0.05200078, up: 0.05200078}, stat: {dn: -0.01239696, up: 0.01239696}, unc. syst.: {dn: -0.01590446, up: 0.01590446}}, 40: {full syst.: {dn: -0.06100453, up: 0.06100453}, stat: {dn: -0.02026199, up: 0.02026199}, unc. syst.: {dn: -0.0159234, up: 0.0159234}}, 41: {full syst.: {dn: -0.07247338, up: 0.07247338}, stat: {dn: -0.03384531, up: 0.03384531}, unc. syst.: {dn: -0.017149, up: 0.017149}}, 42: {full syst.: {dn: -0.08642289, up: 0.08642289}, stat: {dn: -0.06831708, up: 0.06831708}, unc. syst.: {dn: -0.02151331, up: 0.02151331}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d76-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t76 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 7.015912e-02 8.480783e-03 8.480783e-03 +2.750000e-01 2.500000e-02 2.500000e-02 8.151495e-02 9.085147e-03 9.085147e-03 +3.250000e-01 2.500000e-02 2.500000e-02 9.879020e-02 9.957243e-03 9.957243e-03 +3.750000e-01 2.500000e-02 2.500000e-02 1.120756e-01 1.102625e-02 1.102625e-02 +4.250000e-01 2.500000e-02 2.500000e-02 1.270489e-01 1.246753e-02 1.246753e-02 +4.750000e-01 2.500000e-02 2.500000e-02 1.434945e-01 1.375430e-02 1.375430e-02 +5.250000e-01 2.500000e-02 2.500000e-02 1.610568e-01 1.636629e-02 1.636629e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.756134e-01 1.820404e-02 1.820404e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.810694e-01 2.089200e-02 2.089200e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.960753e-01 2.242413e-02 2.242413e-02 +7.250000e-01 2.500000e-02 2.500000e-02 2.092138e-01 2.373961e-02 2.373961e-02 +7.750000e-01 2.500000e-02 2.500000e-02 2.214434e-01 2.491480e-02 2.491480e-02 +8.250000e-01 2.500000e-02 2.500000e-02 2.340095e-01 2.612529e-02 2.612529e-02 +8.750000e-01 2.500000e-02 2.500000e-02 2.445138e-01 2.707424e-02 2.707424e-02 +9.250000e-01 2.500000e-02 2.500000e-02 2.571655e-01 2.833954e-02 2.833954e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.671562e-01 2.929618e-02 2.929618e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.779884e-01 3.032454e-02 3.032454e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.914644e-01 3.177085e-02 3.177085e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.043743e-01 3.362236e-02 3.362236e-02 +1.350000e+00 5.000000e-02 5.000000e-02 3.212318e-01 3.572038e-02 3.572038e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.253255e-01 3.654689e-02 3.654689e-02 +1.550000e+00 5.000000e-02 5.000000e-02 3.406614e-01 3.883987e-02 3.883987e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.481423e-01 4.045917e-02 4.045917e-02 +1.750000e+00 5.000000e-02 5.000000e-02 3.616762e-01 4.272858e-02 4.272858e-02 +1.850000e+00 5.000000e-02 5.000000e-02 3.564490e-01 4.297947e-02 4.297947e-02 +1.950000e+00 5.000000e-02 5.000000e-02 3.828072e-01 4.679117e-02 4.679117e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.845701e-01 4.101415e-02 4.101415e-02 +2.300000e+00 1.000000e-01 1.000000e-01 3.900308e-01 4.130918e-02 4.130918e-02 +2.500000e+00 1.000000e-01 1.000000e-01 4.063522e-01 4.230655e-02 4.230655e-02 +2.700000e+00 1.000000e-01 1.000000e-01 4.211936e-01 4.664478e-02 4.664478e-02 +2.900000e+00 1.000000e-01 1.000000e-01 4.413831e-01 5.024733e-02 5.024733e-02 +3.100000e+00 1.000000e-01 1.000000e-01 4.596856e-01 5.459471e-02 5.459471e-02 +3.300000e+00 1.000000e-01 1.000000e-01 4.749530e-01 5.683104e-02 5.683104e-02 +3.500000e+00 1.000000e-01 1.000000e-01 4.838818e-01 5.630123e-02 5.630123e-02 +3.700000e+00 1.000000e-01 1.000000e-01 4.974000e-01 5.544795e-02 5.544795e-02 +3.900000e+00 1.000000e-01 1.000000e-01 4.946199e-01 5.246213e-02 5.246213e-02 +4.250000e+00 2.500000e-01 2.500000e-01 5.000282e-01 5.084376e-02 5.084376e-02 +4.750000e+00 2.500000e-01 2.500000e-01 5.109734e-01 5.022377e-02 5.022377e-02 +5.500000e+00 5.000000e-01 5.000000e-01 5.198185e-01 5.058453e-02 5.058453e-02 +7.000000e+00 1.000000e+00 1.000000e+00 5.217704e-01 5.577381e-02 5.577381e-02 +9.000000e+00 1.000000e+00 1.000000e+00 5.232139e-01 6.622428e-02 6.622428e-02 +1.250000e+01 2.500000e+00 2.500000e+00 5.393128e-01 8.180455e-02 8.180455e-02 +1.750000e+01 2.500000e+00 2.500000e+00 5.733426e-01 1.122451e-01 1.122451e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d77-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.004526817, up: 0.004526817}, stat: {dn: -0.0001797923, up: 0.0001797923}, unc. syst.: {dn: -0.001040499, up: 0.001040499}}, 1: {full syst.: {dn: -0.005100616, up: 0.005100616}, stat: {dn: -0.0001827911, up: 0.0001827911}, unc. syst.: {dn: -0.00128018, up: 0.00128018}}, 2: {full syst.: {dn: -0.00580707, up: 0.00580707}, stat: {dn: -0.0001916712, up: 0.0001916712}, unc. syst.: {dn: -0.001542635, up: 0.001542635}}, 3: {full syst.: {dn: -0.005763536, up: 0.005763536}, stat: {dn: -0.000135045, up: 0.000135045}, unc. syst.: {dn: -0.001741373, up: 0.001741373}}, 4: {full syst.: {dn: -0.006649435, up: 0.006649435}, stat: {dn: -0.0001643681, up: 0.0001643681}, unc. syst.: {dn: -0.002050951, up: 0.002050951}}, 5: {full syst.: {dn: -0.007430782, up: 0.007430782}, stat: {dn: -0.000191835, up: 0.000191835}, unc. syst.: {dn: -0.002369187, up: 0.002369187}}, 6: {full syst.: {dn: -0.008980522, up: 0.008980522}, stat: {dn: -0.0003070863, up: 0.0003070863}, unc. syst.: {dn: -0.002740108, up: 0.002740108}}, 7: {full syst.: {dn: -0.009726379, up: 0.009726379}, stat: {dn: -0.0003580023, up: 0.0003580023}, unc. syst.: {dn: -0.003028816, up: 0.003028816}}, 8: {full syst.: {dn: -0.01050726, up: 0.01050726}, stat: {dn: -0.0004076844, up: 0.0004076844}, unc. syst.: {dn: -0.00334338, up: 0.00334338}}, 9: {full syst.: {dn: -0.01118018, up: 0.01118018}, stat: {dn: -0.0004697471, up: 0.0004697471}, unc. syst.: {dn: -0.003625969, up: 0.003625969}}, 10: {full syst.: {dn: -0.01238071, up: 0.01238071}, stat: {dn: -0.0005829577, up: 0.0005829577}, unc. syst.: {dn: -0.003917986, up: 0.003917986}}, 11: {full syst.: {dn: -0.0136832, up: 0.0136832}, stat: {dn: -0.0006835015, up: 0.0006835015}, unc. syst.: {dn: -0.00427236, up: 0.00427236}}, 12: {full syst.: {dn: -0.01433201, up: 0.01433201}, stat: {dn: -0.0007632362, up: 0.0007632362}, unc. syst.: {dn: -0.004520699, up: 0.004520699}}, 13: {full syst.: {dn: -0.01487295, up: 0.01487295}, stat: {dn: -0.0009910213, up: 0.0009910213}, unc. syst.: {dn: -0.004717131, up: 0.004717131}}, 14: {full syst.: {dn: -0.01554381, up: 0.01554381}, stat: {dn: -0.0008088123, up: 0.0008088123}, unc. syst.: {dn: -0.004995644, up: 0.004995644}}, 15: {full syst.: {dn: -0.0164575, up: 0.0164575}, stat: {dn: -0.001034631, up: 0.001034631}, unc. syst.: {dn: -0.005381189, up: 0.005381189}}, 16: {full syst.: {dn: -0.01748438, up: 0.01748438}, stat: {dn: -0.001309888, up: 0.001309888}, unc. syst.: {dn: -0.006041449, up: 0.006041449}}, 17: {full syst.: {dn: -0.01842055, up: 0.01842055}, stat: {dn: -0.001573839, up: 0.001573839}, unc. syst.: {dn: -0.006491331, up: 0.006491331}}, 18: {full syst.: {dn: -0.01875738, up: 0.01875738}, stat: {dn: -0.001836062, up: 0.001836062}, unc. syst.: {dn: -0.006652988, up: 0.006652988}}, 19: {full syst.: {dn: -0.0192204, up: 0.0192204}, stat: {dn: -0.002023723, up: 0.002023723}, unc. syst.: {dn: -0.006729299, up: 0.006729299}}, 20: {full syst.: {dn: -0.01946294, up: 0.01946294}, stat: {dn: -0.002433725, up: 0.002433725}, unc. syst.: {dn: -0.006647011, up: 0.006647011}}, 21: {full syst.: {dn: -0.01952191, up: 0.01952191}, stat: {dn: -0.002802312, up: 0.002802312}, unc. syst.: {dn: -0.006531489, up: 0.006531489}}, 22: {full syst.: {dn: -0.01955985, up: 0.01955985}, stat: {dn: -0.003281474, up: 0.003281474}, unc. syst.: {dn: -0.006307955, up: 0.006307955}}, 23: {full syst.: {dn: -0.0191141, up: 0.0191141}, stat: {dn: -0.003443377, up: 0.003443377}, unc. syst.: {dn: -0.006234687, up: 0.006234687}}, 24: {full syst.: {dn: -0.01859108, up: 0.01859108}, stat: {dn: -0.00260391, up: 0.00260391}, unc. syst.: {dn: -0.006222966, up: 0.006222966}}, 25: {full syst.: {dn: -0.01845327, up: 0.01845327}, stat: {dn: -0.003131952, up: 0.003131952}, unc. syst.: {dn: -0.006300301, up: 0.006300301}}, 26: {full syst.: {dn: -0.0187303, up: 0.0187303}, stat: {dn: -0.003674385, up: 0.003674385}, unc. syst.: {dn: -0.006474024, up: 0.006474024}}, 27: {full syst.: {dn: -0.02330597, up: 0.02330597}, stat: {dn: -0.00544217, up: 0.00544217}, unc. syst.: {dn: -0.006557078, up: 0.006557078}}, 28: {full syst.: {dn: -0.03248998, up: 0.03248998}, stat: {dn: -0.004338077, up: 0.004338077}, unc. syst.: {dn: -0.007284214, up: 0.007284214}}, 29: {full syst.: {dn: -0.03641347, up: 0.03641347}, stat: {dn: -0.004404311, up: 0.004404311}, unc. syst.: {dn: -0.008615433, up: 0.008615433}}, 30: {full syst.: {dn: -0.03791149, up: 0.03791149}, stat: {dn: -0.004520607, up: 0.004520607}, unc. syst.: {dn: -0.01023775, up: 0.01023775}}, 31: {full syst.: {dn: -0.03581276, up: 0.03581276}, stat: {dn: -0.004613528, up: 0.004613528}, unc. syst.: {dn: -0.0107823, up: 0.0107823}}, 32: {full syst.: {dn: -0.03242192, up: 0.03242192}, stat: {dn: -0.004844343, up: 0.004844343}, unc. syst.: {dn: -0.01053964, up: 0.01053964}}, 33: {full syst.: {dn: -0.02900015, up: 0.02900015}, stat: {dn: -0.004974361, up: 0.004974361}, unc. syst.: {dn: -0.009542816, up: 0.009542816}}, 34: {full syst.: {dn: -0.02466756, up: 0.02466756}, stat: {dn: -0.004354321, up: 0.004354321}, unc. syst.: {dn: -0.007994339, up: 0.007994339}}, 35: {full syst.: {dn: -0.02110881, up: 0.02110881}, stat: {dn: -0.00486201, up: 0.00486201}, unc. syst.: {dn: -0.006713647, up: 0.006713647}}, 36: {full syst.: {dn: -0.01784455, up: 0.01784455}, stat: {dn: -0.005135884, up: 0.005135884}, unc. syst.: {dn: -0.005640579, up: 0.005640579}}, 37: {full syst.: {dn: -0.01409667, up: 0.01409667}, stat: {dn: -0.006684913, up: 0.006684913}, unc. syst.: {dn: -0.004497153, up: 0.004497153}}, 38: {full syst.: {dn: -0.0119449, up: 0.0119449}, stat: {dn: -0.01015026, up: 0.01015026}, unc. syst.: {dn: -0.003720595, up: 0.003720595}}, 39: {full syst.: {dn: -0.01278366, up: 0.01278366}, stat: {dn: -0.01639086, up: 0.01639086}, unc. syst.: {dn: -0.003624977, up: 0.003624977}}, 40: {full syst.: {dn: -0.0151545, up: 0.0151545}, stat: {dn: -0.03061013, up: 0.03061013}, unc. syst.: {dn: -0.003996377, up: 0.003996377}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d77-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t77 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 3.226213e-02 4.648337e-03 4.648337e-03 +3.750000e-01 2.500000e-02 2.500000e-02 3.954111e-02 5.261992e-03 5.261992e-03 +4.250000e-01 2.500000e-02 2.500000e-02 4.741445e-02 6.011532e-03 6.011532e-03 +4.750000e-01 2.500000e-02 2.500000e-02 5.721767e-02 6.022372e-03 6.022372e-03 +5.250000e-01 2.500000e-02 2.500000e-02 6.759513e-02 6.960489e-03 6.960489e-03 +5.750000e-01 2.500000e-02 2.500000e-02 7.769564e-02 7.801690e-03 7.801690e-03 +6.250000e-01 2.500000e-02 2.500000e-02 8.722817e-02 9.394268e-03 9.394268e-03 +6.750000e-01 2.500000e-02 2.500000e-02 9.684103e-02 1.019335e-02 1.019335e-02 +7.250000e-01 2.500000e-02 2.500000e-02 1.064715e-01 1.103390e-02 1.103390e-02 +7.750000e-01 2.500000e-02 2.500000e-02 1.156958e-01 1.176285e-02 1.176285e-02 +8.250000e-01 2.500000e-02 2.500000e-02 1.262167e-01 1.299894e-02 1.299894e-02 +8.750000e-01 2.500000e-02 2.500000e-02 1.355346e-01 1.435097e-02 1.435097e-02 +9.250000e-01 2.500000e-02 2.500000e-02 1.437985e-01 1.504745e-02 1.504745e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.505559e-01 1.563452e-02 1.563452e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.589837e-01 1.634689e-02 1.634689e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.695665e-01 1.734581e-02 1.734581e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.795497e-01 1.854504e-02 1.854504e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.892948e-01 1.959416e-02 1.959416e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.925014e-01 1.998681e-02 1.998681e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.959348e-01 2.046467e-02 2.046467e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.958649e-01 2.071019e-02 2.071019e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.948376e-01 2.077542e-02 2.077542e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.936503e-01 2.081216e-02 2.081216e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.886432e-01 2.039797e-02 2.039797e-02 +2.100000e+00 1.000000e-01 1.000000e-01 1.958358e-01 1.977711e-02 1.977711e-02 +2.300000e+00 1.000000e-01 1.000000e-01 1.932987e-01 1.974908e-02 1.974908e-02 +2.500000e+00 1.000000e-01 1.000000e-01 1.899987e-01 2.015535e-02 2.015535e-02 +2.700000e+00 1.000000e-01 1.000000e-01 1.745578e-01 2.481493e-02 2.481493e-02 +2.900000e+00 1.000000e-01 1.000000e-01 1.634014e-01 3.357793e-02 3.357793e-02 +3.100000e+00 1.000000e-01 1.000000e-01 1.501343e-01 3.767711e-02 3.767711e-02 +3.300000e+00 1.000000e-01 1.000000e-01 1.409624e-01 3.952883e-02 3.952883e-02 +3.500000e+00 1.000000e-01 1.000000e-01 1.315422e-01 3.768417e-02 3.768417e-02 +3.700000e+00 1.000000e-01 1.000000e-01 1.253773e-01 3.443447e-02 3.443447e-02 +3.900000e+00 1.000000e-01 1.000000e-01 1.222775e-01 3.093248e-02 3.093248e-02 +4.250000e+00 2.500000e-01 2.500000e-01 1.169528e-01 2.629369e-02 2.629369e-02 +4.750000e+00 2.500000e-01 2.500000e-01 1.152396e-01 2.267805e-02 2.267805e-02 +5.500000e+00 5.000000e-01 5.000000e-01 1.116311e-01 1.940674e-02 1.940674e-02 +7.000000e+00 1.000000e+00 1.000000e+00 1.051174e-01 1.623664e-02 1.623664e-02 +9.000000e+00 1.000000e+00 1.000000e+00 9.448558e-02 1.611059e-02 1.611059e-02 +1.250000e+01 2.500000e+00 2.500000e+00 9.057602e-02 2.110030e-02 2.110030e-02 +1.750000e+01 2.500000e+00 2.500000e+00 9.582602e-02 3.438910e-02 3.438910e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d78-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.01308167, up: 0.01308167}, stat: {dn: -0.00295389, up: 0.00295389}, unc. syst.: {dn: -0.006550393, up: 0.006550393}}, 1: {full syst.: {dn: -0.01650209, up: 0.01650209}, stat: {dn: -0.002643014, up: 0.002643014}, unc. syst.: {dn: -0.006795624, up: 0.006795624}}, 2: {full syst.: {dn: -0.0177574, up: 0.0177574}, stat: {dn: -0.003130588, up: 0.003130588}, unc. syst.: {dn: -0.006730288, up: 0.006730288}}, 3: {full syst.: {dn: -0.01989369, up: 0.01989369}, stat: {dn: -0.004038104, up: 0.004038104}, unc. syst.: {dn: -0.007909362, up: 0.007909362}}, 4: {full syst.: {dn: -0.02573571, up: 0.02573571}, stat: {dn: -0.005212919, up: 0.005212919}, unc. syst.: {dn: -0.009691238, up: 0.009691238}}, 5: {full syst.: {dn: -0.0241382, up: 0.0241382}, stat: {dn: -0.006448163, up: 0.006448163}, unc. syst.: {dn: -0.009172807, up: 0.009172807}}, 6: {full syst.: {dn: -0.02182208, up: 0.02182208}, stat: {dn: -0.007366512, up: 0.007366512}, unc. syst.: {dn: -0.008224247, up: 0.008224247}}, 7: {full syst.: {dn: -0.02152528, up: 0.02152528}, stat: {dn: -0.008613887, up: 0.008613887}, unc. syst.: {dn: -0.008018596, up: 0.008018596}}, 8: {full syst.: {dn: -0.02105683, up: 0.02105683}, stat: {dn: -0.01011814, up: 0.01011814}, unc. syst.: {dn: -0.007969943, up: 0.007969943}}, 9: {full syst.: {dn: -0.02038878, up: 0.02038878}, stat: {dn: -0.009774624, up: 0.009774624}, unc. syst.: {dn: -0.007597345, up: 0.007597345}}, 10: {full syst.: {dn: -0.01964652, up: 0.01964652}, stat: {dn: -0.01054594, up: 0.01054594}, unc. syst.: {dn: -0.007421982, up: 0.007421982}}, 11: {full syst.: {dn: -0.01582309, up: 0.01582309}, stat: {dn: -0.01188162, up: 0.01188162}, unc. syst.: {dn: -0.006026209, up: 0.006026209}}, 12: {full syst.: {dn: -0.01420039, up: 0.01420039}, stat: {dn: -0.01498119, up: 0.01498119}, unc. syst.: {dn: -0.005387496, up: 0.005387496}}, 13: {full syst.: {dn: -0.01384653, up: 0.01384653}, stat: {dn: -0.01746327, up: 0.01746327}, unc. syst.: {dn: -0.005221293, up: 0.005221293}}, 14: {full syst.: {dn: -0.01445914, up: 0.01445914}, stat: {dn: -0.02662751, up: 0.02662751}, unc. syst.: {dn: -0.009100406, up: 0.009100406}}, 15: {full syst.: {dn: -0.02126284, up: 0.02126284}, stat: {dn: -0.05500181, up: 0.05500181}, unc. syst.: {dn: -0.01332904, up: 0.01332904}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d78-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t78 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 2.025038e-01 1.492525e-02 1.492525e-02 +7.000000e-01 1.000000e-01 1.000000e-01 2.662600e-01 1.804120e-02 1.804120e-02 +9.000000e-01 1.000000e-01 1.000000e-01 3.158566e-01 1.924637e-02 1.924637e-02 +1.100000e+00 1.000000e-01 1.000000e-01 3.566120e-01 2.178585e-02 2.178585e-02 +1.300000e+00 1.000000e-01 1.000000e-01 3.883667e-01 2.798967e-02 2.798967e-02 +1.500000e+00 1.000000e-01 1.000000e-01 4.119156e-01 2.661526e-02 2.661526e-02 +1.700000e+00 1.000000e-01 1.000000e-01 3.886124e-01 2.445622e-02 2.445622e-02 +1.900000e+00 1.000000e-01 1.000000e-01 3.920804e-01 2.453232e-02 2.453232e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.855922e-01 2.468374e-02 2.468374e-02 +2.350000e+00 1.500000e-01 1.500000e-01 3.650858e-01 2.385299e-02 2.385299e-02 +2.700000e+00 2.000000e-01 2.000000e-01 3.360842e-01 2.350082e-02 2.350082e-02 +3.150000e+00 2.500000e-01 2.500000e-01 2.814147e-01 2.068474e-02 2.068474e-02 +3.700000e+00 3.000000e-01 3.000000e-01 2.496775e-01 2.133336e-02 2.133336e-02 +4.500000e+00 5.000000e-01 5.000000e-01 2.411062e-01 2.289004e-02 2.289004e-02 +5.750000e+00 7.500000e-01 7.500000e-01 2.026366e-01 3.163714e-02 3.163714e-02 +7.250000e+00 7.500000e-01 7.500000e-01 2.404774e-01 6.045635e-02 6.045635e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d79-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.1117, up: 1.1117}, stat: {dn: -2.033002, up: 2.033002}, unc. syst.: {dn: -0.432367, up: 0.432367}}, 1: {full syst.: {dn: -0.7904792, up: 0.7904792}, stat: {dn: -0.6331772, up: 0.6331772}, unc. syst.: {dn: -0.2979808, up: 0.2979808}}, 2: {full syst.: {dn: -0.8119227, up: 0.8119227}, stat: {dn: -0.5861816, up: 0.5861816}, unc. syst.: {dn: -0.3989708, up: 0.3989708}}, 3: {full syst.: {dn: -0.6433477, up: 0.6433477}, stat: {dn: -0.5020215, up: 0.5020215}, unc. syst.: {dn: -0.3895142, up: 0.3895142}}, 4: {full syst.: {dn: -0.5463475, up: 0.5463475}, stat: {dn: -0.5605009, up: 0.5605009}, unc. syst.: {dn: -0.3332179, up: 0.3332179}}, 5: {full syst.: {dn: -0.5600805, up: 0.5600805}, stat: {dn: -0.8424607, up: 0.8424607}, unc. syst.: {dn: -0.3085599, up: 0.3085599}}, 6: {full syst.: {dn: -0.4952099, up: 0.4952099}, stat: {dn: -0.7368048, up: 0.7368048}, unc. syst.: {dn: -0.2540035, up: 0.2540035}}, 7: {full syst.: {dn: -0.390021, up: 0.390021}, stat: {dn: -0.5266387, up: 0.5266387}, unc. syst.: {dn: -0.2294857, up: 0.2294857}}, 8: {full syst.: {dn: -0.4330609, up: 0.4330609}, stat: {dn: -0.4167225, up: 0.4167225}, unc. syst.: {dn: -0.2585785, up: 0.2585785}}, 9: {full syst.: {dn: -0.5465069, up: 0.5465069}, stat: {dn: -0.4481681, up: 0.4481681}, unc. syst.: {dn: -0.2673334, up: 0.2673334}}, 10: {full syst.: {dn: -0.6083456, up: 0.6083456}, stat: {dn: -0.2667251, up: 0.2667251}, unc. syst.: {dn: -0.1783503, up: 0.1783503}}, 11: {full syst.: {dn: -0.4107167, up: 0.4107167}, stat: {dn: -0.2773032, up: 0.2773032}, unc. syst.: {dn: -0.1704304, up: 0.1704304}}, 12: {full syst.: {dn: -0.2060652, up: 0.2060652}, stat: {dn: -0.1613921, up: 0.1613921}, unc. syst.: {dn: -0.1040633, up: 0.1040633}}, 13: {full syst.: {dn: -0.3320441, up: 0.3320441}, stat: {dn: -0.696537, up: 0.696537}, unc. syst.: {dn: -0.1476498, up: 0.1476498}}, 14: {full syst.: {dn: -0.1466987, up: 0.1466987}, stat: {dn: -0.1678661, up: 0.1678661}, unc. syst.: {dn: -0.06894854, up: 0.06894854}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d79-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t79 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 9.989017e+00 2.357099e+00 2.357099e+00 +7.000000e-01 1.000000e-01 1.000000e-01 8.122966e+00 1.055729e+00 1.055729e+00 +9.000000e-01 1.000000e-01 1.000000e-01 8.490977e+00 1.077963e+00 1.077963e+00 +1.100000e+00 1.000000e-01 1.000000e-01 6.765859e+00 9.042362e-01 9.042362e-01 +1.300000e+00 1.000000e-01 1.000000e-01 5.758160e+00 8.507003e-01 8.507003e-01 +1.500000e+00 1.000000e-01 1.000000e-01 5.766918e+00 1.057658e+00 1.057658e+00 +1.700000e+00 1.000000e-01 1.000000e-01 5.009696e+00 9.233807e-01 9.233807e-01 +1.900000e+00 1.000000e-01 1.000000e-01 3.985977e+00 6.943547e-01 6.943547e-01 +2.250000e+00 2.500000e-01 2.500000e-01 4.452521e+00 6.542646e-01 6.542646e-01 +2.750000e+00 2.500000e-01 2.500000e-01 4.221869e+00 7.556399e-01 7.556399e-01 +3.500000e+00 5.000000e-01 5.000000e-01 3.187617e+00 6.877757e-01 6.877757e-01 +4.500000e+00 5.000000e-01 5.000000e-01 2.785572e+00 5.240532e-01 5.240532e-01 +5.500000e+00 5.000000e-01 5.000000e-01 1.572647e+00 2.816726e-01 2.816726e-01 +6.500000e+00 5.000000e-01 5.000000e-01 2.801298e+00 7.856319e-01 7.856319e-01 +8.500000e+00 1.500000e+00 1.500000e+00 1.215404e+00 2.333526e-01 2.333526e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d80-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0049059, up: 0.0049059}, stat: {dn: -0.0003994629, up: 0.0003994629}, unc. syst.: {dn: -0.00205212, up: 0.00205212}}, 1: {full syst.: {dn: -0.005452891, up: 0.005452891}, stat: {dn: -0.0004100797, up: 0.0004100797}, unc. syst.: {dn: -0.002565313, up: 0.002565313}}, 2: {full syst.: {dn: -0.005294735, up: 0.005294735}, stat: {dn: -0.0005834262, up: 0.0005834262}, unc. syst.: {dn: -0.002907482, up: 0.002907482}}, 3: {full syst.: {dn: -0.005953752, up: 0.005953752}, stat: {dn: -0.0009375834, up: 0.0009375834}, unc. syst.: {dn: -0.003400234, up: 0.003400234}}, 4: {full syst.: {dn: -0.007432796, up: 0.007432796}, stat: {dn: -0.001215087, up: 0.001215087}, unc. syst.: {dn: -0.004391915, up: 0.004391915}}, 5: {full syst.: {dn: -0.008182859, up: 0.008182859}, stat: {dn: -0.0009915131, up: 0.0009915131}, unc. syst.: {dn: -0.004651946, up: 0.004651946}}, 6: {full syst.: {dn: -0.01161294, up: 0.01161294}, stat: {dn: -0.002528706, up: 0.002528706}, unc. syst.: {dn: -0.005464726, up: 0.005464726}}, 7: {full syst.: {dn: -0.01317916, up: 0.01317916}, stat: {dn: -0.002439707, up: 0.002439707}, unc. syst.: {dn: -0.005854311, up: 0.005854311}}, 8: {full syst.: {dn: -0.01653602, up: 0.01653602}, stat: {dn: -0.003287232, up: 0.003287232}, unc. syst.: {dn: -0.006004047, up: 0.006004047}}, 9: {full syst.: {dn: -0.01815971, up: 0.01815971}, stat: {dn: -0.002780748, up: 0.002780748}, unc. syst.: {dn: -0.006659699, up: 0.006659699}}, 10: {full syst.: {dn: -0.01919767, up: 0.01919767}, stat: {dn: -0.004453477, up: 0.004453477}, unc. syst.: {dn: -0.006948031, up: 0.006948031}}, 11: {full syst.: {dn: -0.02052876, up: 0.02052876}, stat: {dn: -0.00393976, up: 0.00393976}, unc. syst.: {dn: -0.007492017, up: 0.007492017}}, 12: {full syst.: {dn: -0.02170098, up: 0.02170098}, stat: {dn: -0.003163015, up: 0.003163015}, unc. syst.: {dn: -0.007810561, up: 0.007810561}}, 13: {full syst.: {dn: -0.02319822, up: 0.02319822}, stat: {dn: -0.006504495, up: 0.006504495}, unc. syst.: {dn: -0.008438929, up: 0.008438929}}, 14: {full syst.: {dn: -0.02329579, up: 0.02329579}, stat: {dn: -0.003747975, up: 0.003747975}, unc. syst.: {dn: -0.008424166, up: 0.008424166}}, 15: {full syst.: {dn: -0.0245369, up: 0.0245369}, stat: {dn: -0.00319495, up: 0.00319495}, unc. syst.: {dn: -0.008999441, up: 0.008999441}}, 16: {full syst.: {dn: -0.02604393, up: 0.02604393}, stat: {dn: -0.005444924, up: 0.005444924}, unc. syst.: {dn: -0.009448487, up: 0.009448487}}, 17: {full syst.: {dn: -0.02730371, up: 0.02730371}, stat: {dn: -0.006118141, up: 0.006118141}, unc. syst.: {dn: -0.01008342, up: 0.01008342}}, 18: {full syst.: {dn: -0.02983889, up: 0.02983889}, stat: {dn: -0.00233832, up: 0.00233832}, unc. syst.: {dn: -0.01152835, up: 0.01152835}}, 19: {full syst.: {dn: -0.03191675, up: 0.03191675}, stat: {dn: -0.002739149, up: 0.002739149}, unc. syst.: {dn: -0.01258837, up: 0.01258837}}, 20: {full syst.: {dn: -0.033682, up: 0.033682}, stat: {dn: -0.003079402, up: 0.003079402}, unc. syst.: {dn: -0.01345238, up: 0.01345238}}, 21: {full syst.: {dn: -0.03600599, up: 0.03600599}, stat: {dn: -0.003513142, up: 0.003513142}, unc. syst.: {dn: -0.01426248, up: 0.01426248}}, 22: {full syst.: {dn: -0.0379531, up: 0.0379531}, stat: {dn: -0.004047314, up: 0.004047314}, unc. syst.: {dn: -0.01481307, up: 0.01481307}}, 23: {full syst.: {dn: -0.03917646, up: 0.03917646}, stat: {dn: -0.004520059, up: 0.004520059}, unc. syst.: {dn: -0.01510213, up: 0.01510213}}, 24: {full syst.: {dn: -0.04131678, up: 0.04131678}, stat: {dn: -0.005351727, up: 0.005351727}, unc. syst.: {dn: -0.01570625, up: 0.01570625}}, 25: {full syst.: {dn: -0.04302398, up: 0.04302398}, stat: {dn: -0.0059381, up: 0.0059381}, unc. syst.: {dn: -0.01598639, up: 0.01598639}}, 26: {full syst.: {dn: -0.03559813, up: 0.03559813}, stat: {dn: -0.003748939, up: 0.003748939}, unc. syst.: {dn: -0.01359519, up: 0.01359519}}, 27: {full syst.: {dn: -0.0351118, up: 0.0351118}, stat: {dn: -0.00508833, up: 0.00508833}, unc. syst.: {dn: -0.01372262, up: 0.01372262}}, 28: {full syst.: {dn: -0.0351828, up: 0.0351828}, stat: {dn: -0.005470381, up: 0.005470381}, unc. syst.: {dn: -0.0143603, up: 0.0143603}}, 29: {full syst.: {dn: -0.04179682, up: 0.04179682}, stat: {dn: -0.004918501, up: 0.004918501}, unc. syst.: {dn: -0.01397459, up: 0.01397459}}, 30: {full syst.: {dn: -0.04969853, up: 0.04969853}, stat: {dn: -0.005224046, up: 0.005224046}, unc. syst.: {dn: -0.01466238, up: 0.01466238}}, 31: {full syst.: {dn: -0.05639978, up: 0.05639978}, stat: {dn: -0.005435305, up: 0.005435305}, unc. syst.: {dn: -0.01523603, up: 0.01523603}}, 32: {full syst.: {dn: -0.05853079, up: 0.05853079}, stat: {dn: -0.005643848, up: 0.005643848}, unc. syst.: {dn: -0.01554894, up: 0.01554894}}, 33: {full syst.: {dn: -0.05673048, up: 0.05673048}, stat: {dn: -0.005953501, up: 0.005953501}, unc. syst.: {dn: -0.01576341, up: 0.01576341}}, 34: {full syst.: {dn: -0.05369164, up: 0.05369164}, stat: {dn: -0.006456686, up: 0.006456686}, unc. syst.: {dn: -0.01607174, up: 0.01607174}}, 35: {full syst.: {dn: -0.04965109, up: 0.04965109}, stat: {dn: -0.006644816, up: 0.006644816}, unc. syst.: {dn: -0.01601284, up: 0.01601284}}, 36: {full syst.: {dn: -0.04528561, up: 0.04528561}, stat: {dn: -0.005695392, up: 0.005695392}, unc. syst.: {dn: -0.01591983, up: 0.01591983}}, 37: {full syst.: {dn: -0.04187832, up: 0.04187832}, stat: {dn: -0.00637264, up: 0.00637264}, unc. syst.: {dn: -0.01591063, up: 0.01591063}}, 38: {full syst.: {dn: -0.04040726, up: 0.04040726}, stat: {dn: -0.006519629, up: 0.006519629}, unc. syst.: {dn: -0.01580456, up: 0.01580456}}, 39: {full syst.: {dn: -0.0457249, up: 0.0457249}, stat: {dn: -0.008093974, up: 0.008093974}, unc. syst.: {dn: -0.01573663, up: 0.01573663}}, 40: {full syst.: {dn: -0.05768026, up: 0.05768026}, stat: {dn: -0.01272741, up: 0.01272741}, unc. syst.: {dn: -0.01634634, up: 0.01634634}}, 41: {full syst.: {dn: -0.0703875, up: 0.0703875}, stat: {dn: -0.01973374, up: 0.01973374}, unc. syst.: {dn: -0.01733276, up: 0.01733276}}, 42: {full syst.: {dn: -0.08442695, up: 0.08442695}, stat: {dn: -0.03744028, up: 0.03744028}, unc. syst.: {dn: -0.01914982, up: 0.01914982}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d80-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t80 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.250000e-01 2.500000e-02 2.500000e-02 5.617660e-02 5.332787e-03 5.332787e-03 +2.750000e-01 2.500000e-02 2.500000e-02 7.076620e-02 6.040117e-03 6.040117e-03 +3.250000e-01 2.500000e-02 2.500000e-02 8.935462e-02 6.068612e-03 6.068612e-03 +3.750000e-01 2.500000e-02 2.500000e-02 1.035147e-01 6.920102e-03 6.920102e-03 +4.250000e-01 2.500000e-02 2.500000e-02 1.205224e-01 8.718475e-03 8.718475e-03 +4.750000e-01 2.500000e-02 2.500000e-02 1.427820e-01 9.464823e-03 9.464823e-03 +5.250000e-01 2.500000e-02 2.500000e-02 1.611739e-01 1.308121e-02 1.308121e-02 +5.750000e-01 2.500000e-02 2.500000e-02 1.776526e-01 1.462585e-02 1.462585e-02 +6.250000e-01 2.500000e-02 2.500000e-02 1.796936e-01 1.789677e-02 1.789677e-02 +6.750000e-01 2.500000e-02 2.500000e-02 1.967741e-01 1.954122e-02 1.954122e-02 +7.250000e-01 2.500000e-02 2.500000e-02 2.087025e-01 2.089639e-02 2.089639e-02 +7.750000e-01 2.500000e-02 2.500000e-02 2.222576e-01 2.220545e-02 2.220545e-02 +8.250000e-01 2.500000e-02 2.500000e-02 2.349898e-01 2.327965e-02 2.327965e-02 +8.750000e-01 2.500000e-02 2.500000e-02 2.511617e-01 2.552805e-02 2.552805e-02 +9.250000e-01 2.500000e-02 2.500000e-02 2.519331e-01 2.505410e-02 2.505410e-02 +9.750000e-01 2.500000e-02 2.500000e-02 2.641019e-01 2.632978e-02 2.632978e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.812630e-01 2.823486e-02 2.823486e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.941560e-01 2.974222e-02 2.974222e-02 +1.250000e+00 5.000000e-02 5.000000e-02 3.158769e-01 3.207382e-02 3.207382e-02 +1.350000e+00 5.000000e-02 5.000000e-02 3.356126e-01 3.441873e-02 3.441873e-02 +1.450000e+00 5.000000e-02 5.000000e-02 3.501762e-01 3.639954e-02 3.639954e-02 +1.550000e+00 5.000000e-02 5.000000e-02 3.671757e-01 3.888691e-02 3.888691e-02 +1.650000e+00 5.000000e-02 5.000000e-02 3.790424e-01 4.094198e-02 4.094198e-02 +1.750000e+00 5.000000e-02 5.000000e-02 3.825534e-01 4.222914e-02 4.222914e-02 +1.850000e+00 5.000000e-02 5.000000e-02 3.970020e-01 4.452419e-02 4.452419e-02 +1.950000e+00 5.000000e-02 5.000000e-02 4.015225e-01 4.628054e-02 4.628054e-02 +2.100000e+00 1.000000e-01 1.000000e-01 3.980473e-01 3.828982e-02 3.828982e-02 +2.300000e+00 1.000000e-01 1.000000e-01 4.050142e-01 3.803998e-02 3.803998e-02 +2.500000e+00 1.000000e-01 1.000000e-01 4.207795e-01 3.839235e-02 3.839235e-02 +2.700000e+00 1.000000e-01 1.000000e-01 4.216010e-01 4.434473e-02 4.434473e-02 +2.900000e+00 1.000000e-01 1.000000e-01 4.380831e-01 5.207898e-02 5.207898e-02 +3.100000e+00 1.000000e-01 1.000000e-01 4.554647e-01 5.867380e-02 5.867380e-02 +3.300000e+00 1.000000e-01 1.000000e-01 4.693530e-01 6.082332e-02 6.082332e-02 +3.500000e+00 1.000000e-01 1.000000e-01 4.794483e-01 5.918004e-02 5.918004e-02 +3.700000e+00 1.000000e-01 1.000000e-01 4.923313e-01 5.641615e-02 5.641615e-02 +3.900000e+00 1.000000e-01 1.000000e-01 4.908045e-01 5.259083e-02 5.259083e-02 +4.250000e+00 2.500000e-01 2.500000e-01 4.886005e-01 4.833906e-02 4.833906e-02 +4.750000e+00 2.500000e-01 2.500000e-01 4.917130e-01 4.524989e-02 4.524989e-02 +5.500000e+00 5.000000e-01 5.000000e-01 4.929345e-01 4.387524e-02 4.387524e-02 +7.000000e+00 1.000000e+00 1.000000e+00 4.938486e-01 4.902979e-02 4.902979e-02 +9.000000e+00 1.000000e+00 1.000000e+00 5.123358e-01 6.128786e-02 6.128786e-02 +1.250000e+01 2.500000e+00 2.500000e+00 5.352945e-01 7.512819e-02 7.512819e-02 +1.750000e+01 2.500000e+00 2.500000e+00 5.730082e-01 9.432073e-02 9.432073e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d81-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.002795623, up: 0.002795623}, stat: {dn: -0.0003122238, up: 0.0003122238}, unc. syst.: {dn: -0.001081198, up: 0.001081198}}, 1: {full syst.: {dn: -0.003227817, up: 0.003227817}, stat: {dn: -0.0003246163, up: 0.0003246163}, unc. syst.: {dn: -0.001399369, up: 0.001399369}}, 2: {full syst.: {dn: -0.003650515, up: 0.003650515}, stat: {dn: -0.0003381148, up: 0.0003381148}, unc. syst.: {dn: -0.001694054, up: 0.001694054}}, 3: {full syst.: {dn: -0.002836888, up: 0.002836888}, stat: {dn: -0.0003009436, up: 0.0003009436}, unc. syst.: {dn: -0.001370396, up: 0.001370396}}, 4: {full syst.: {dn: -0.003347922, up: 0.003347922}, stat: {dn: -0.0005588032, up: 0.0005588032}, unc. syst.: {dn: -0.001631116, up: 0.001631116}}, 5: {full syst.: {dn: -0.003718381, up: 0.003718381}, stat: {dn: -0.0004257915, up: 0.0004257915}, unc. syst.: {dn: -0.001877781, up: 0.001877781}}, 6: {full syst.: {dn: -0.004934176, up: 0.004934176}, stat: {dn: -0.0009496307, up: 0.0009496307}, unc. syst.: {dn: -0.002080339, up: 0.002080339}}, 7: {full syst.: {dn: -0.005474234, up: 0.005474234}, stat: {dn: -0.001120546, up: 0.001120546}, unc. syst.: {dn: -0.002363177, up: 0.002363177}}, 8: {full syst.: {dn: -0.006017818, up: 0.006017818}, stat: {dn: -0.001057679, up: 0.001057679}, unc. syst.: {dn: -0.002601972, up: 0.002601972}}, 9: {full syst.: {dn: -0.006516224, up: 0.006516224}, stat: {dn: -0.001181582, up: 0.001181582}, unc. syst.: {dn: -0.002884224, up: 0.002884224}}, 10: {full syst.: {dn: -0.007734762, up: 0.007734762}, stat: {dn: -0.001203768, up: 0.001203768}, unc. syst.: {dn: -0.003196296, up: 0.003196296}}, 11: {full syst.: {dn: -0.008871403, up: 0.008871403}, stat: {dn: -0.001331784, up: 0.001331784}, unc. syst.: {dn: -0.003492322, up: 0.003492322}}, 12: {full syst.: {dn: -0.009619954, up: 0.009619954}, stat: {dn: -0.001907777, up: 0.001907777}, unc. syst.: {dn: -0.00378536, up: 0.00378536}}, 13: {full syst.: {dn: -0.01022867, up: 0.01022867}, stat: {dn: -0.001518423, up: 0.001518423}, unc. syst.: {dn: -0.004076132, up: 0.004076132}}, 14: {full syst.: {dn: -0.01109681, up: 0.01109681}, stat: {dn: -0.001706661, up: 0.001706661}, unc. syst.: {dn: -0.004322033, up: 0.004322033}}, 15: {full syst.: {dn: -0.0127629, up: 0.0127629}, stat: {dn: -0.002000247, up: 0.002000247}, unc. syst.: {dn: -0.00500286, up: 0.00500286}}, 16: {full syst.: {dn: -0.01451574, up: 0.01451574}, stat: {dn: -0.002131972, up: 0.002131972}, unc. syst.: {dn: -0.005948738, up: 0.005948738}}, 17: {full syst.: {dn: -0.01574268, up: 0.01574268}, stat: {dn: -0.002517414, up: 0.002517414}, unc. syst.: {dn: -0.006541722, up: 0.006541722}}, 18: {full syst.: {dn: -0.01672952, up: 0.01672952}, stat: {dn: -0.002628198, up: 0.002628198}, unc. syst.: {dn: -0.006949243, up: 0.006949243}}, 19: {full syst.: {dn: -0.01822483, up: 0.01822483}, stat: {dn: -0.003003767, up: 0.003003767}, unc. syst.: {dn: -0.007456197, up: 0.007456197}}, 20: {full syst.: {dn: -0.02009242, up: 0.02009242}, stat: {dn: -0.004085727, up: 0.004085727}, unc. syst.: {dn: -0.008061095, up: 0.008061095}}, 21: {full syst.: {dn: -0.02113844, up: 0.02113844}, stat: {dn: -0.0042983, up: 0.0042983}, unc. syst.: {dn: -0.008342423, up: 0.008342423}}, 22: {full syst.: {dn: -0.02126264, up: 0.02126264}, stat: {dn: -0.004907259, up: 0.004907259}, unc. syst.: {dn: -0.008370031, up: 0.008370031}}, 23: {full syst.: {dn: -0.02247012, up: 0.02247012}, stat: {dn: -0.005586501, up: 0.005586501}, unc. syst.: {dn: -0.008566389, up: 0.008566389}}, 24: {full syst.: {dn: -0.0216637, up: 0.0216637}, stat: {dn: -0.003345733, up: 0.003345733}, unc. syst.: {dn: -0.008629803, up: 0.008629803}}, 25: {full syst.: {dn: -0.02328638, up: 0.02328638}, stat: {dn: -0.004002597, up: 0.004002597}, unc. syst.: {dn: -0.009361043, up: 0.009361043}}, 26: {full syst.: {dn: -0.02541215, up: 0.02541215}, stat: {dn: -0.004469519, up: 0.004469519}, unc. syst.: {dn: -0.01008694, up: 0.01008694}}, 27: {full syst.: {dn: -0.03190953, up: 0.03190953}, stat: {dn: -0.00632801, up: 0.00632801}, unc. syst.: {dn: -0.009492254, up: 0.009492254}}, 28: {full syst.: {dn: -0.04719897, up: 0.04719897}, stat: {dn: -0.00430044, up: 0.00430044}, unc. syst.: {dn: -0.009639234, up: 0.009639234}}, 29: {full syst.: {dn: -0.05174326, up: 0.05174326}, stat: {dn: -0.004300015, up: 0.004300015}, unc. syst.: {dn: -0.009994956, up: 0.009994956}}, 30: {full syst.: {dn: -0.05269032, up: 0.05269032}, stat: {dn: -0.004403647, up: 0.004403647}, unc. syst.: {dn: -0.01044529, up: 0.01044529}}, 31: {full syst.: {dn: -0.04946005, up: 0.04946005}, stat: {dn: -0.004499822, up: 0.004499822}, unc. syst.: {dn: -0.01043991, up: 0.01043991}}, 32: {full syst.: {dn: -0.04527135, up: 0.04527135}, stat: {dn: -0.004746569, up: 0.004746569}, unc. syst.: {dn: -0.01035945, up: 0.01035945}}, 33: {full syst.: {dn: -0.04099829, up: 0.04099829}, stat: {dn: -0.00484613, up: 0.00484613}, unc. syst.: {dn: -0.01011024, up: 0.01011024}}, 34: {full syst.: {dn: -0.03518349, up: 0.03518349}, stat: {dn: -0.00408611, up: 0.00408611}, unc. syst.: {dn: -0.009588808, up: 0.009588808}}, 35: {full syst.: {dn: -0.02977273, up: 0.02977273}, stat: {dn: -0.004422192, up: 0.004422192}, unc. syst.: {dn: -0.009035718, up: 0.009035718}}, 36: {full syst.: {dn: -0.02430309, up: 0.02430309}, stat: {dn: -0.004351648, up: 0.004351648}, unc. syst.: {dn: -0.008128182, up: 0.008128182}}, 37: {full syst.: {dn: -0.01804852, up: 0.01804852}, stat: {dn: -0.005059845, up: 0.005059845}, unc. syst.: {dn: -0.006694317, up: 0.006694317}}, 38: {full syst.: {dn: -0.01464408, up: 0.01464408}, stat: {dn: -0.007374183, up: 0.007374183}, unc. syst.: {dn: -0.005452822, up: 0.005452822}}, 39: {full syst.: {dn: -0.01284005, up: 0.01284005}, stat: {dn: -0.009845407, up: 0.009845407}, unc. syst.: {dn: -0.004144871, up: 0.004144871}}, 40: {full syst.: {dn: -0.01216625, up: 0.01216625}, stat: {dn: -0.01595778, up: 0.01595778}, unc. syst.: {dn: -0.004564544, up: 0.004564544}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d81-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t81 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +3.250000e-01 2.500000e-02 2.500000e-02 2.226077e-02 3.013632e-03 3.013632e-03 +3.750000e-01 2.500000e-02 2.500000e-02 2.866922e-02 3.533046e-03 3.533046e-03 +4.250000e-01 2.500000e-02 2.500000e-02 3.450583e-02 4.038614e-03 4.038614e-03 +4.750000e-01 2.500000e-02 2.500000e-02 4.051003e-02 3.164883e-03 3.164883e-03 +5.250000e-01 2.500000e-02 2.500000e-02 4.860454e-02 3.765818e-03 3.765818e-03 +5.750000e-01 2.500000e-02 2.500000e-02 5.589528e-02 4.187328e-03 4.187328e-03 +6.250000e-01 2.500000e-02 2.500000e-02 6.146574e-02 5.438355e-03 5.438355e-03 +6.750000e-01 2.500000e-02 2.500000e-02 6.928019e-02 6.066916e-03 6.066916e-03 +7.250000e-01 2.500000e-02 2.500000e-02 7.786354e-02 6.641015e-03 6.641015e-03 +7.750000e-01 2.500000e-02 2.500000e-02 8.500931e-02 7.223300e-03 7.223300e-03 +8.250000e-01 2.500000e-02 2.500000e-02 9.639707e-02 8.455289e-03 8.455289e-03 +8.750000e-01 2.500000e-02 2.500000e-02 1.037389e-01 9.626617e-03 9.626617e-03 +9.250000e-01 2.500000e-02 2.500000e-02 1.133182e-01 1.051247e-02 1.051247e-02 +9.750000e-01 2.500000e-02 2.500000e-02 1.202222e-01 1.111513e-02 1.111513e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.306021e-01 1.203046e-02 1.203046e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.502442e-01 1.385356e-02 1.385356e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.689367e-01 1.583160e-02 1.583160e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.826522e-01 1.723263e-02 1.723263e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.929092e-01 1.830509e-02 1.830509e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.077308e-01 1.991888e-02 1.991888e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.264548e-01 2.203134e-02 2.203134e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.367158e-01 2.312801e-02 2.312801e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.382162e-01 2.337175e-02 2.337175e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.500674e-01 2.468802e-02 2.468802e-02 +2.100000e+00 1.000000e-01 1.000000e-01 2.647609e-01 2.355808e-02 2.355808e-02 +2.300000e+00 1.000000e-01 1.000000e-01 2.829821e-01 2.541467e-02 2.541467e-02 +2.500000e+00 1.000000e-01 1.000000e-01 2.957776e-01 2.770380e-02 2.770380e-02 +2.700000e+00 1.000000e-01 1.000000e-01 2.863116e-01 3.388753e-02 3.388753e-02 +2.900000e+00 1.000000e-01 1.000000e-01 2.789422e-01 4.836477e-02 4.836477e-02 +3.100000e+00 1.000000e-01 1.000000e-01 2.736058e-01 5.287489e-02 5.287489e-02 +3.300000e+00 1.000000e-01 1.000000e-01 2.709382e-01 5.389588e-02 5.389588e-02 +3.500000e+00 1.000000e-01 1.000000e-01 2.642193e-01 5.074975e-02 5.074975e-02 +3.700000e+00 1.000000e-01 1.000000e-01 2.627188e-01 4.668344e-02 4.668344e-02 +3.900000e+00 1.000000e-01 1.000000e-01 2.588586e-01 4.250367e-02 4.250367e-02 +4.250000e+00 2.500000e-01 2.500000e-01 2.463178e-01 3.669495e-02 3.669495e-02 +4.750000e+00 2.500000e-01 2.500000e-01 2.331868e-01 3.142635e-02 3.142635e-02 +5.500000e+00 5.000000e-01 5.000000e-01 2.126680e-01 2.599316e-02 2.599316e-02 +7.000000e+00 1.000000e+00 1.000000e+00 1.787464e-01 1.990389e-02 1.990389e-02 +9.000000e+00 1.000000e+00 1.000000e+00 1.470799e-01 1.727892e-02 1.727892e-02 +1.250000e+01 2.500000e+00 2.500000e+00 1.084200e-01 1.670266e-02 1.670266e-02 +1.750000e+01 2.500000e+00 2.500000e+00 8.385075e-02 2.057920e-02 2.057920e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d82-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.01066464, up: 0.01066464}, stat: {dn: -0.005383157, up: 0.005383157}, unc. syst.: {dn: -0.00373694, up: 0.00373694}}, 1: {full syst.: {dn: -0.01368821, up: 0.01368821}, stat: {dn: -0.004077222, up: 0.004077222}, unc. syst.: {dn: -0.004795903, up: 0.004795903}}, 2: {full syst.: {dn: -0.01629437, up: 0.01629437}, stat: {dn: -0.004513595, up: 0.004513595}, unc. syst.: {dn: -0.005709226, up: 0.005709226}}, 3: {full syst.: {dn: -0.01980393, up: 0.01980393}, stat: {dn: -0.005539653, up: 0.005539653}, unc. syst.: {dn: -0.007314867, up: 0.007314867}}, 4: {full syst.: {dn: -0.02886806, up: 0.02886806}, stat: {dn: -0.007063004, up: 0.007063004}, unc. syst.: {dn: -0.01066089, up: 0.01066089}}, 5: {full syst.: {dn: -0.029024, up: 0.029024}, stat: {dn: -0.008521303, up: 0.008521303}, unc. syst.: {dn: -0.01072886, up: 0.01072886}}, 6: {full syst.: {dn: -0.02961284, up: 0.02961284}, stat: {dn: -0.009883055, up: 0.009883055}, unc. syst.: {dn: -0.01093769, up: 0.01093769}}, 7: {full syst.: {dn: -0.03245404, up: 0.03245404}, stat: {dn: -0.01204302, up: 0.01204302}, unc. syst.: {dn: -0.01198519, up: 0.01198519}}, 8: {full syst.: {dn: -0.03254228, up: 0.03254228}, stat: {dn: -0.01381758, up: 0.01381758}, unc. syst.: {dn: -0.01201793, up: 0.01201793}}, 9: {full syst.: {dn: -0.03429636, up: 0.03429636}, stat: {dn: -0.01346262, up: 0.01346262}, unc. syst.: {dn: -0.01266994, up: 0.01266994}}, 10: {full syst.: {dn: -0.03556254, up: 0.03556254}, stat: {dn: -0.01464405, up: 0.01464405}, unc. syst.: {dn: -0.01339902, up: 0.01339902}}, 11: {full syst.: {dn: -0.03489286, up: 0.03489286}, stat: {dn: -0.0176868, up: 0.0176868}, unc. syst.: {dn: -0.01319392, up: 0.01319392}}, 12: {full syst.: {dn: -0.03132761, up: 0.03132761}, stat: {dn: -0.02086391, up: 0.02086391}, unc. syst.: {dn: -0.01182054, up: 0.01182054}}, 13: {full syst.: {dn: -0.02610293, up: 0.02610293}, stat: {dn: -0.02172991, up: 0.02172991}, unc. syst.: {dn: -0.009834893, up: 0.009834893}}, 14: {full syst.: {dn: -0.02924098, up: 0.02924098}, stat: {dn: -0.02917645, up: 0.02917645}, unc. syst.: {dn: -0.01832961, up: 0.01832961}}, 15: {full syst.: {dn: -0.03284384, up: 0.03284384}, stat: {dn: -0.04895325, up: 0.04895325}, unc. syst.: {dn: -0.02058804, up: 0.02058804}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d82-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t82 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 1.000000e-01 1.000000e-01 1.786286e-01 1.251709e-02 1.251709e-02 +7.000000e-01 1.000000e-01 1.000000e-01 2.269997e-01 1.506624e-02 1.506624e-02 +9.000000e-01 1.000000e-01 1.000000e-01 2.933463e-01 1.784585e-02 1.784585e-02 +1.100000e+00 1.000000e-01 1.000000e-01 3.595366e-01 2.182638e-02 2.182638e-02 +1.300000e+00 1.000000e-01 1.000000e-01 4.370099e-01 3.157381e-02 3.157381e-02 +1.500000e+00 1.000000e-01 1.000000e-01 4.975334e-01 3.209538e-02 3.209538e-02 +1.700000e+00 1.000000e-01 1.000000e-01 5.290740e-01 3.307912e-02 3.307912e-02 +1.900000e+00 1.000000e-01 1.000000e-01 5.919665e-01 3.663255e-02 3.663255e-02 +2.100000e+00 1.000000e-01 1.000000e-01 5.983003e-01 3.734108e-02 3.734108e-02 +2.350000e+00 1.500000e-01 1.500000e-01 6.149637e-01 3.896165e-02 3.896165e-02 +2.700000e+00 2.000000e-01 2.000000e-01 6.086208e-01 4.072685e-02 4.072685e-02 +3.150000e+00 2.500000e-01 2.500000e-01 6.213211e-01 4.128455e-02 4.128455e-02 +3.700000e+00 3.000000e-01 3.000000e-01 5.513194e-01 3.945183e-02 3.945183e-02 +4.500000e+00 5.000000e-01 5.000000e-01 4.545857e-01 3.535926e-02 3.535926e-02 +5.750000e+00 7.500000e-01 7.500000e-01 4.108773e-01 4.519153e-02 4.519153e-02 +7.250000e+00 7.500000e-01 7.500000e-01 3.714648e-01 6.244202e-02 6.244202e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d83-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.8119227, up: 0.8119227}, stat: {dn: -0.5861816, up: 0.5861816}, unc. syst.: {dn: -0.1994854, up: 0.1994854}}, 1: {full syst.: {dn: -0.7108669, up: 0.7108669}, stat: {dn: -0.2441012, up: 0.2441012}, unc. syst.: {dn: -0.1766817, up: 0.1766817}}, 2: {full syst.: {dn: -0.7312451, up: 0.7312451}, stat: {dn: -0.2442841, up: 0.2442841}, unc. syst.: {dn: -0.1302764, up: 0.1302764}}, 3: {full syst.: {dn: -0.6398357, up: 0.6398357}, stat: {dn: -0.1726966, up: 0.1726966}, unc. syst.: {dn: -0.1006825, up: 0.1006825}}, 4: {full syst.: {dn: -0.6914031, up: 0.6914031}, stat: {dn: -0.1788883, up: 0.1788883}, unc. syst.: {dn: -0.1401689, up: 0.1401689}}, 5: {full syst.: {dn: -0.702057, up: 0.702057}, stat: {dn: -0.1967023, up: 0.1967023}, unc. syst.: {dn: -0.1013264, up: 0.1013264}}, 6: {full syst.: {dn: -0.6871417, up: 0.6871417}, stat: {dn: -0.2088763, up: 0.2088763}, unc. syst.: {dn: -0.149058, up: 0.149058}}, 7: {full syst.: {dn: -0.7257683, up: 0.7257683}, stat: {dn: -0.1711948, up: 0.1711948}, unc. syst.: {dn: -0.1260831, up: 0.1260831}}, 8: {full syst.: {dn: -0.7221299, up: 0.7221299}, stat: {dn: -0.144288, up: 0.144288}, unc. syst.: {dn: -0.09702308, up: 0.09702308}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d83-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t83 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 6.405963e+00 7.427679e-01 7.427679e-01 +3.897000e+00 1.430000e-01 1.430000e-01 7.434716e+00 7.562699e-01 7.562699e-01 +5.398000e+00 1.730000e-01 1.730000e-01 7.466986e+00 7.334925e-01 7.334925e-01 +6.724000e+00 2.070000e-01 2.070000e-01 7.588835e+00 7.360998e-01 7.360998e-01 +8.447000e+00 2.540000e-01 2.540000e-01 7.458191e+00 7.277957e-01 7.277957e-01 +1.079300e+01 3.240000e-01 3.240000e-01 7.598870e+00 6.703363e-01 6.703363e-01 +1.345700e+01 4.040000e-01 4.040000e-01 7.906757e+00 7.818990e-01 7.818990e-01 +1.651300e+01 4.950000e-01 4.950000e-01 7.651425e+00 7.720969e-01 7.720969e-01 +2.129400e+01 6.390000e-01 6.390000e-01 8.490977e+00 1.021089e+00 1.021089e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d84-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.02322587, up: 0.02322587}, stat: {dn: -0.005057412, up: 0.005057412}, unc. syst.: {dn: -0.01092945, up: 0.01092945}}, 1: {full syst.: {dn: -0.02101671, up: 0.02101671}, stat: {dn: -0.001083607, up: 0.001083607}, unc. syst.: {dn: -0.009692301, up: 0.009692301}}, 2: {full syst.: {dn: -0.02121051, up: 0.02121051}, stat: {dn: -0.001008982, up: 0.001008982}, unc. syst.: {dn: -0.01010727, up: 0.01010727}}, 3: {full syst.: {dn: -0.0211925, up: 0.0211925}, stat: {dn: -0.001000629, up: 0.001000629}, unc. syst.: {dn: -0.01000665, up: 0.01000665}}, 4: {full syst.: {dn: -0.02109819, up: 0.02109819}, stat: {dn: -0.001054038, up: 0.001054038}, unc. syst.: {dn: -0.01011066, up: 0.01011066}}, 5: {full syst.: {dn: -0.02131527, up: 0.02131527}, stat: {dn: -0.0008231034, up: 0.0008231034}, unc. syst.: {dn: -0.01016329, up: 0.01016329}}, 6: {full syst.: {dn: -0.0213449, up: 0.0213449}, stat: {dn: -0.0009090789, up: 0.0009090789}, unc. syst.: {dn: -0.01033148, up: 0.01033148}}, 7: {full syst.: {dn: -0.02158138, up: 0.02158138}, stat: {dn: -0.0009768839, up: 0.0009768839}, unc. syst.: {dn: -0.01034393, up: 0.01034393}}, 8: {full syst.: {dn: -0.0241931, up: 0.0241931}, stat: {dn: -0.0008030354, up: 0.0008030354}, unc. syst.: {dn: -0.0101842, up: 0.0101842}}, 9: {full syst.: {dn: -0.03128545, up: 0.03128545}, stat: {dn: -0.0007761921, up: 0.0007761921}, unc. syst.: {dn: -0.009593699, up: 0.009593699}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d84-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t84 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 1.610568e-01 3.273257e-02 3.273257e-02 +3.897000e+00 1.430000e-01 1.430000e-01 1.658720e-01 2.626155e-02 2.626155e-02 +5.398000e+00 1.730000e-01 1.730000e-01 1.671803e-01 2.395218e-02 2.395218e-02 +6.724000e+00 2.070000e-01 2.070000e-01 1.671909e-01 2.373122e-02 2.373122e-02 +8.447000e+00 2.540000e-01 2.540000e-01 1.671509e-01 2.362860e-02 2.362860e-02 +1.008000e+01 3.030000e-01 3.030000e-01 1.657362e-01 2.341944e-02 2.341944e-02 +1.150700e+01 3.450000e-01 3.450000e-01 1.662478e-01 2.345754e-02 2.345754e-02 +1.345700e+01 4.040000e-01 4.040000e-01 1.650897e-01 2.351724e-02 2.351724e-02 +1.651300e+01 4.950000e-01 4.950000e-01 1.633114e-01 2.316931e-02 2.316931e-02 +2.129400e+01 6.390000e-01 6.390000e-01 1.611739e-01 2.616240e-02 2.616240e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d85-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03347922, up: 0.03347922}, stat: {dn: -0.005588032, up: 0.005588032}, unc. syst.: {dn: -0.01631116, up: 0.01631116}}, 1: {full syst.: {dn: -0.03333041, up: 0.03333041}, stat: {dn: -0.002196293, up: 0.002196293}, unc. syst.: {dn: -0.01633482, up: 0.01633482}}, 2: {full syst.: {dn: -0.03516662, up: 0.03516662}, stat: {dn: -0.001946838, up: 0.001946838}, unc. syst.: {dn: -0.01745059, up: 0.01745059}}, 3: {full syst.: {dn: -0.03685442, up: 0.03685442}, stat: {dn: -0.002050483, up: 0.002050483}, unc. syst.: {dn: -0.0183489, up: 0.0183489}}, 4: {full syst.: {dn: -0.03777439, up: 0.03777439}, stat: {dn: -0.002196812, up: 0.002196812}, unc. syst.: {dn: -0.01898112, up: 0.01898112}}, 5: {full syst.: {dn: -0.03948861, up: 0.03948861}, stat: {dn: -0.001713599, up: 0.001713599}, unc. syst.: {dn: -0.01973256, up: 0.01973256}}, 6: {full syst.: {dn: -0.04094815, up: 0.04094815}, stat: {dn: -0.001933534, up: 0.001933534}, unc. syst.: {dn: -0.02052874, up: 0.02052874}}, 7: {full syst.: {dn: -0.04266311, up: 0.04266311}, stat: {dn: -0.002084223, up: 0.002084223}, unc. syst.: {dn: -0.02106148, up: 0.02106148}}, 8: {full syst.: {dn: -0.05012466, up: 0.05012466}, stat: {dn: -0.00178641, up: 0.00178641}, unc. syst.: {dn: -0.02144944, up: 0.02144944}}, 9: {full syst.: {dn: -0.06649435, up: 0.06649435}, stat: {dn: -0.001643681, up: 0.001643681}, unc. syst.: {dn: -0.02050951, up: 0.02050951}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d85-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t85 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 6.759513e-02 6.960489e-02 6.960489e-02 +3.897000e+00 1.430000e-01 1.430000e-01 6.999885e-02 5.455045e-02 5.455045e-02 +5.398000e+00 1.730000e-01 1.730000e-01 6.817873e-02 4.762427e-02 4.762427e-02 +6.724000e+00 2.070000e-01 2.070000e-01 6.608379e-02 4.584669e-02 4.584669e-02 +8.447000e+00 2.540000e-01 2.540000e-01 6.341144e-02 4.417760e-02 4.417760e-02 +1.008000e+01 3.030000e-01 3.030000e-01 6.052463e-02 4.233218e-02 4.233218e-02 +1.150700e+01 3.450000e-01 3.450000e-01 5.895990e-02 4.122056e-02 4.122056e-02 +1.345700e+01 4.040000e-01 4.040000e-01 5.577532e-02 3.930654e-02 3.930654e-02 +1.651300e+01 4.950000e-01 4.950000e-01 5.238284e-02 3.718288e-02 3.718288e-02 +2.129400e+01 6.390000e-01 6.390000e-01 4.860454e-02 3.765818e-02 3.765818e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d86-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.05475285, up: 0.05475285}, stat: {dn: -0.01630889, up: 0.01630889}, unc. syst.: {dn: -0.01918361, up: 0.01918361}}, 1: {full syst.: {dn: -0.05816712, up: 0.05816712}, stat: {dn: -0.01026121, up: 0.01026121}, unc. syst.: {dn: -0.02038367, up: 0.02038367}}, 2: {full syst.: {dn: -0.06220118, up: 0.06220118}, stat: {dn: -0.01062565, up: 0.01062565}, unc. syst.: {dn: -0.0217955, up: 0.0217955}}, 3: {full syst.: {dn: -0.06415744, up: 0.06415744}, stat: {dn: -0.0113918, up: 0.0113918}, unc. syst.: {dn: -0.02248095, up: 0.02248095}}, 4: {full syst.: {dn: -0.0649623, up: 0.0649623}, stat: {dn: -0.01203142, up: 0.01203142}, unc. syst.: {dn: -0.02276177, up: 0.02276177}}, 5: {full syst.: {dn: -0.06724869, up: 0.06724869}, stat: {dn: -0.01013508, up: 0.01013508}, unc. syst.: {dn: -0.02359386, up: 0.02359386}}, 6: {full syst.: {dn: -0.06931336, up: 0.06931336}, stat: {dn: -0.01117406, up: 0.01117406}, unc. syst.: {dn: -0.02441268, up: 0.02441268}}, 7: {full syst.: {dn: -0.06998905, up: 0.06998905}, stat: {dn: -0.01212009, up: 0.01212009}, unc. syst.: {dn: -0.02506329, up: 0.02506329}}, 8: {full syst.: {dn: -0.07038332, up: 0.07038332}, stat: {dn: -0.01057173, up: 0.01057173}, unc. syst.: {dn: -0.02558188, up: 0.02558188}}, 9: {full syst.: {dn: -0.06600835, up: 0.06600835}, stat: {dn: -0.01057205, up: 0.01057205}, unc. syst.: {dn: -0.02718249, up: 0.02718249}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d86-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t86 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 2.662600e-01 7.216480e-02 7.216480e-02 +3.897000e+00 1.430000e-01 1.430000e-01 2.902429e-01 7.563072e-02 7.563072e-02 +5.398000e+00 1.730000e-01 1.730000e-01 2.892596e-01 7.532285e-02 7.532285e-02 +6.724000e+00 2.070000e-01 2.070000e-01 2.871543e-01 7.433156e-02 7.433156e-02 +8.447000e+00 2.540000e-01 2.540000e-01 2.787530e-01 7.198456e-02 7.198456e-02 +1.008000e+01 3.030000e-01 3.030000e-01 2.693253e-01 6.987813e-02 6.987813e-02 +1.150700e+01 3.450000e-01 3.450000e-01 2.659864e-01 6.892999e-02 6.892999e-02 +1.345700e+01 4.040000e-01 4.040000e-01 2.578760e-01 6.676028e-02 6.676028e-02 +1.651300e+01 4.950000e-01 4.950000e-01 2.411486e-01 6.248360e-02 6.248360e-02 +2.129400e+01 6.390000e-01 6.390000e-01 2.269997e-01 6.026496e-02 6.026496e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d87-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -1.093014, up: 1.093014}, stat: {dn: -0.8963361, up: 0.8963361}, unc. syst.: {dn: -0.2673334, up: 0.2673334}}, 1: {full syst.: {dn: -1.015827, up: 1.015827}, stat: {dn: -0.4645508, up: 0.4645508}, unc. syst.: {dn: -0.1918879, up: 0.1918879}}, 2: {full syst.: {dn: -0.8597436, up: 0.8597436}, stat: {dn: -0.3282202, up: 0.3282202}, unc. syst.: {dn: -0.1656006, up: 0.1656006}}, 3: {full syst.: {dn: -0.7543883, up: 0.7543883}, stat: {dn: -0.316815, up: 0.316815}, unc. syst.: {dn: -0.1528117, up: 0.1528117}}, 4: {full syst.: {dn: -0.8993381, up: 0.8993381}, stat: {dn: -0.3781381, up: 0.3781381}, unc. syst.: {dn: -0.1510563, up: 0.1510563}}, 5: {full syst.: {dn: -0.8457537, up: 0.8457537}, stat: {dn: -0.3856996, up: 0.3856996}, unc. syst.: {dn: -0.1524431, up: 0.1524431}}, 6: {full syst.: {dn: -0.8947174, up: 0.8947174}, stat: {dn: -0.5077634, up: 0.5077634}, unc. syst.: {dn: -0.1466805, up: 0.1466805}}, 7: {full syst.: {dn: -0.7536948, up: 0.7536948}, stat: {dn: -0.3254166, up: 0.3254166}, unc. syst.: {dn: -0.1477365, up: 0.1477365}}, 8: {full syst.: {dn: -0.6998381, up: 0.6998381}, stat: {dn: -0.3848877, up: 0.3848877}, unc. syst.: {dn: -0.1443942, up: 0.1443942}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d87-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t87 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 2.342376e+00 8.116413e-01 8.116413e-01 +3.897000e+00 1.430000e-01 1.430000e-01 2.688181e+00 8.341330e-01 8.341330e-01 +5.398000e+00 1.730000e-01 1.730000e-01 3.311569e+00 1.039162e+00 1.039162e+00 +6.724000e+00 2.070000e-01 2.070000e-01 3.213289e+00 9.419673e-01 9.419673e-01 +8.447000e+00 2.540000e-01 2.540000e-01 3.471891e+00 9.872261e-01 9.872261e-01 +1.079300e+01 3.240000e-01 3.240000e-01 3.526113e+00 8.323610e-01 8.323610e-01 +1.345700e+01 4.040000e-01 4.040000e-01 3.282227e+00 9.350461e-01 9.350461e-01 +1.651300e+01 4.950000e-01 4.950000e-01 3.979518e+00 1.133372e+00 1.133372e+00 +2.129400e+01 6.390000e-01 6.390000e-01 4.221869e+00 1.438598e+00 1.438598e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d88-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0351828, up: 0.0351828}, stat: {dn: -0.005470381, up: 0.005470381}, unc. syst.: {dn: -0.0143603, up: 0.0143603}}, 1: {full syst.: {dn: -0.03294454, up: 0.03294454}, stat: {dn: -0.003262591, up: 0.003262591}, unc. syst.: {dn: -0.01286084, up: 0.01286084}}, 2: {full syst.: {dn: -0.03239873, up: 0.03239873}, stat: {dn: -0.003689678, up: 0.003689678}, unc. syst.: {dn: -0.0128652, up: 0.0128652}}, 3: {full syst.: {dn: -0.0326276, up: 0.0326276}, stat: {dn: -0.003749008, up: 0.003749008}, unc. syst.: {dn: -0.01311508, up: 0.01311508}}, 4: {full syst.: {dn: -0.03265655, up: 0.03265655}, stat: {dn: -0.004347126, up: 0.004347126}, unc. syst.: {dn: -0.01320829, up: 0.01320829}}, 5: {full syst.: {dn: -0.03226408, up: 0.03226408}, stat: {dn: -0.003567885, up: 0.003567885}, unc. syst.: {dn: -0.01308729, up: 0.01308729}}, 6: {full syst.: {dn: -0.03200936, up: 0.03200936}, stat: {dn: -0.004275687, up: 0.004275687}, unc. syst.: {dn: -0.0131619, up: 0.0131619}}, 7: {full syst.: {dn: -0.03184646, up: 0.03184646}, stat: {dn: -0.005030956, up: 0.005030956}, unc. syst.: {dn: -0.01316135, up: 0.01316135}}, 8: {full syst.: {dn: -0.03497566, up: 0.03497566}, stat: {dn: -0.004381865, up: 0.004381865}, unc. syst.: {dn: -0.01355006, up: 0.01355006}}, 9: {full syst.: {dn: -0.03946335, up: 0.03946335}, stat: {dn: -0.006816314, up: 0.006816314}, unc. syst.: {dn: -0.01363914, up: 0.01363914}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d88-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t88 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 4.063522e-01 4.230655e-02 4.230655e-02 +3.897000e+00 1.430000e-01 1.430000e-01 4.089494e-01 3.776376e-02 3.776376e-02 +5.398000e+00 1.730000e-01 1.730000e-01 3.975511e-01 3.482425e-02 3.482425e-02 +6.724000e+00 2.070000e-01 2.070000e-01 4.007831e-01 3.487286e-02 3.487286e-02 +8.447000e+00 2.540000e-01 2.540000e-01 4.053666e-01 3.499968e-02 3.499968e-02 +1.008000e+01 3.030000e-01 3.030000e-01 4.094434e-01 3.549376e-02 3.549376e-02 +1.150700e+01 3.450000e-01 3.450000e-01 4.094971e-01 3.536412e-02 3.536412e-02 +1.345700e+01 4.040000e-01 4.040000e-01 4.082003e-01 3.505431e-02 3.505431e-02 +1.651300e+01 4.950000e-01 4.950000e-01 4.127395e-01 3.551603e-02 3.551603e-02 +2.129400e+01 6.390000e-01 6.390000e-01 4.207795e-01 3.839235e-02 3.839235e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d89-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.02541215, up: 0.02541215}, stat: {dn: -0.004469519, up: 0.004469519}, unc. syst.: {dn: -0.01008694, up: 0.01008694}}, 1: {full syst.: {dn: -0.02344505, up: 0.02344505}, stat: {dn: -0.002783204, up: 0.002783204}, unc. syst.: {dn: -0.008947266, up: 0.008947266}}, 2: {full syst.: {dn: -0.02265681, up: 0.02265681}, stat: {dn: -0.002838565, up: 0.002838565}, unc. syst.: {dn: -0.008834348, up: 0.008834348}}, 3: {full syst.: {dn: -0.0223648, up: 0.0223648}, stat: {dn: -0.003002221, up: 0.003002221}, unc. syst.: {dn: -0.008813825, up: 0.008813825}}, 4: {full syst.: {dn: -0.02207268, up: 0.02207268}, stat: {dn: -0.003214406, up: 0.003214406}, unc. syst.: {dn: -0.00887094, up: 0.00887094}}, 5: {full syst.: {dn: -0.02116171, up: 0.02116171}, stat: {dn: -0.002682, up: 0.002682}, unc. syst.: {dn: -0.008472065, up: 0.008472065}}, 6: {full syst.: {dn: -0.02044248, up: 0.02044248}, stat: {dn: -0.003044511, up: 0.003044511}, unc. syst.: {dn: -0.008308989, up: 0.008308989}}, 7: {full syst.: {dn: -0.01957745, up: 0.01957745}, stat: {dn: -0.003311323, up: 0.003311323}, unc. syst.: {dn: -0.00794049, up: 0.00794049}}, 8: {full syst.: {dn: -0.01946492, up: 0.01946492}, stat: {dn: -0.002901456, up: 0.002901456}, unc. syst.: {dn: -0.007577418, up: 0.007577418}}, 9: {full syst.: {dn: -0.0187303, up: 0.0187303}, stat: {dn: -0.003674385, up: 0.003674385}, unc. syst.: {dn: -0.006474024, up: 0.006474024}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d89-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t89 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 1.899987e-01 2.015535e-02 2.015535e-02 +3.897000e+00 1.430000e-01 1.430000e-01 2.247631e-01 2.108836e-02 2.108836e-02 +5.398000e+00 1.730000e-01 1.730000e-01 2.394328e-01 2.138441e-02 2.138441e-02 +6.724000e+00 2.070000e-01 2.070000e-01 2.515889e-01 2.227562e-02 2.227562e-02 +8.447000e+00 2.540000e-01 2.540000e-01 2.602258e-01 2.295184e-02 2.295184e-02 +1.008000e+01 3.030000e-01 3.030000e-01 2.706884e-01 2.400477e-02 2.400477e-02 +1.150700e+01 3.450000e-01 3.450000e-01 2.740543e-01 2.422563e-02 2.422563e-02 +1.345700e+01 4.040000e-01 4.040000e-01 2.777721e-01 2.448335e-02 2.448335e-02 +1.651300e+01 4.950000e-01 4.950000e-01 2.868844e-01 2.524817e-02 2.524817e-02 +2.129400e+01 6.390000e-01 6.390000e-01 2.957776e-01 2.770380e-02 2.770380e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d90-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.03556254, up: 0.03556254}, stat: {dn: -0.01464405, up: 0.01464405}, unc. syst.: {dn: -0.01339902, up: 0.01339902}}, 1: {full syst.: {dn: -0.03481985, up: 0.03481985}, stat: {dn: -0.009902475, up: 0.009902475}, unc. syst.: {dn: -0.01311987, up: 0.01311987}}, 2: {full syst.: {dn: -0.03340031, up: 0.03340031}, stat: {dn: -0.009728878, up: 0.009728878}, unc. syst.: {dn: -0.01258645, up: 0.01258645}}, 3: {full syst.: {dn: -0.03225815, up: 0.03225815}, stat: {dn: -0.01029869, up: 0.01029869}, unc. syst.: {dn: -0.01215416, up: 0.01215416}}, 4: {full syst.: {dn: -0.03092389, up: 0.03092389}, stat: {dn: -0.01068699, up: 0.01068699}, unc. syst.: {dn: -0.0116515, up: 0.0116515}}, 5: {full syst.: {dn: -0.02994137, up: 0.02994137}, stat: {dn: -0.008976281, up: 0.008976281}, unc. syst.: {dn: -0.01128398, up: 0.01128398}}, 6: {full syst.: {dn: -0.02849243, up: 0.02849243}, stat: {dn: -0.009714146, up: 0.009714146}, unc. syst.: {dn: -0.01078803, up: 0.01078803}}, 7: {full syst.: {dn: -0.02707611, up: 0.02707611}, stat: {dn: -0.01067628, up: 0.01067628}, unc. syst.: {dn: -0.01020159, up: 0.01020159}}, 8: {full syst.: {dn: -0.02447573, up: 0.02447573}, stat: {dn: -0.009331422, up: 0.009331422}, unc. syst.: {dn: -0.009235576, up: 0.009235576}}, 9: {full syst.: {dn: -0.01964652, up: 0.01964652}, stat: {dn: -0.01054594, up: 0.01054594}, unc. syst.: {dn: -0.007421982, up: 0.007421982}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d90-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t90 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 3.360842e-01 2.350082e-02 2.350082e-02 +3.897000e+00 1.430000e-01 1.430000e-01 4.187763e-01 2.777468e-02 2.777468e-02 +5.398000e+00 1.730000e-01 1.730000e-01 4.633829e-01 3.084106e-02 3.084106e-02 +6.724000e+00 2.070000e-01 2.070000e-01 4.872239e-01 3.197757e-02 3.197757e-02 +8.447000e+00 2.540000e-01 2.540000e-01 5.123979e-01 3.323233e-02 3.323233e-02 +1.008000e+01 3.030000e-01 3.030000e-01 5.292330e-01 3.473120e-02 3.473120e-02 +1.150700e+01 3.450000e-01 3.450000e-01 5.520681e-01 3.597742e-02 3.597742e-02 +1.345700e+01 4.040000e-01 4.040000e-01 5.716004e-01 3.699528e-02 3.699528e-02 +1.651300e+01 4.950000e-01 4.950000e-01 5.959052e-01 3.850470e-02 3.850470e-02 +2.129400e+01 6.390000e-01 6.390000e-01 6.086208e-01 4.072685e-02 4.072685e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d91-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.8801923, up: 0.8801923}, stat: {dn: -1.007197, up: 1.007197}, unc. syst.: {dn: -0.2068456, up: 0.2068456}}, 1: {full syst.: {dn: -1.009372, up: 1.009372}, stat: {dn: -0.741265, up: 0.741265}, unc. syst.: {dn: -0.1826557, up: 0.1826557}}, 2: {full syst.: {dn: -0.8789839, up: 0.8789839}, stat: {dn: -0.7168779, up: 0.7168779}, unc. syst.: {dn: -0.1798993, up: 0.1798993}}, 3: {full syst.: {dn: -0.9209034, up: 0.9209034}, stat: {dn: -0.8839273, up: 0.8839273}, unc. syst.: {dn: -0.2219385, up: 0.2219385}}, 4: {full syst.: {dn: -1.060657, up: 1.060657}, stat: {dn: -1.002974, up: 1.002974}, unc. syst.: {dn: -0.2524036, up: 0.2524036}}, 5: {full syst.: {dn: -0.8893997, up: 0.8893997}, stat: {dn: -0.975696, up: 0.975696}, unc. syst.: {dn: -0.2064187, up: 0.2064187}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d91-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t91 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +6.724000e+00 2.070000e-01 2.070000e-01 1.195523e+00 1.336272e+00 1.336272e+00 +8.447000e+00 2.540000e-01 2.540000e-01 1.413497e+00 1.481438e+00 1.481438e+00 +1.079300e+01 3.240000e-01 3.240000e-01 1.433237e+00 1.295626e+00 1.295626e+00 +1.345700e+01 4.040000e-01 4.040000e-01 1.148862e+00 1.148430e+00 1.148430e+00 +1.651300e+01 4.950000e-01 4.950000e-01 1.284427e+00 1.265571e+00 1.265571e+00 +2.129400e+01 6.390000e-01 6.390000e-01 1.215404e+00 1.353503e+00 1.353503e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d92-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0703875, up: 0.0703875}, stat: {dn: -0.01973374, up: 0.01973374}, unc. syst.: {dn: -0.01733276, up: 0.01733276}}, 1: {full syst.: {dn: -0.06642823, up: 0.06642823}, stat: {dn: -0.01220416, up: 0.01220416}, unc. syst.: {dn: -0.01505038, up: 0.01505038}}, 2: {full syst.: {dn: -0.06968642, up: 0.06968642}, stat: {dn: -0.01353642, up: 0.01353642}, unc. syst.: {dn: -0.01643843, up: 0.01643843}}, 3: {full syst.: {dn: -0.06818346, up: 0.06818346}, stat: {dn: -0.01510121, up: 0.01510121}, unc. syst.: {dn: -0.01641995, up: 0.01641995}}, 4: {full syst.: {dn: -0.06892498, up: 0.06892498}, stat: {dn: -0.01719231, up: 0.01719231}, unc. syst.: {dn: -0.01646262, up: 0.01646262}}, 5: {full syst.: {dn: -0.06573539, up: 0.06573539}, stat: {dn: -0.01402016, up: 0.01402016}, unc. syst.: {dn: -0.01632142, up: 0.01632142}}, 6: {full syst.: {dn: -0.06838904, up: 0.06838904}, stat: {dn: -0.01743796, up: 0.01743796}, unc. syst.: {dn: -0.01749209, up: 0.01749209}}, 7: {full syst.: {dn: -0.06893534, up: 0.06893534}, stat: {dn: -0.02087724, up: 0.02087724}, unc. syst.: {dn: -0.01681306, up: 0.01681306}}, 8: {full syst.: {dn: -0.0688949, up: 0.0688949}, stat: {dn: -0.02076416, up: 0.02076416}, unc. syst.: {dn: -0.01666659, up: 0.01666659}}, 9: {full syst.: {dn: -0.07247338, up: 0.07247338}, stat: {dn: -0.03384531, up: 0.03384531}, unc. syst.: {dn: -0.017149, up: 0.017149}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d92-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t92 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 5.393128e-01 8.180455e-02 8.180455e-02 +3.897000e+00 1.430000e-01 1.430000e-01 5.367139e-01 7.386090e-02 7.386090e-02 +5.398000e+00 1.730000e-01 1.730000e-01 5.488542e-01 7.396363e-02 7.396363e-02 +6.724000e+00 2.070000e-01 2.070000e-01 5.579985e-01 7.271256e-02 7.271256e-02 +8.447000e+00 2.540000e-01 2.540000e-01 5.339464e-01 6.916715e-02 6.916715e-02 +1.008000e+01 3.030000e-01 3.030000e-01 5.464383e-01 7.291945e-02 7.291945e-02 +1.150700e+01 3.450000e-01 3.450000e-01 5.496114e-01 7.174012e-02 7.174012e-02 +1.345700e+01 4.040000e-01 4.040000e-01 5.591722e-01 7.286737e-02 7.286737e-02 +1.651300e+01 4.950000e-01 4.950000e-01 5.226330e-01 6.919657e-02 6.919657e-02 +2.129400e+01 6.390000e-01 6.390000e-01 5.352945e-01 7.512819e-02 7.512819e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d93-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.05136021, up: 0.05136021}, stat: {dn: -0.03938163, up: 0.03938163}, unc. syst.: {dn: -0.01657949, up: 0.01657949}}, 1: {full syst.: {dn: -0.05119747, up: 0.05119747}, stat: {dn: -0.02498056, up: 0.02498056}, unc. syst.: {dn: -0.01457975, up: 0.01457975}}, 2: {full syst.: {dn: -0.05249516, up: 0.05249516}, stat: {dn: -0.0266133, up: 0.0266133}, unc. syst.: {dn: -0.01430561, up: 0.01430561}}, 3: {full syst.: {dn: -0.04655704, up: 0.04655704}, stat: {dn: -0.02824271, up: 0.02824271}, unc. syst.: {dn: -0.01250525, up: 0.01250525}}, 4: {full syst.: {dn: -0.05225226, up: 0.05225226}, stat: {dn: -0.03417906, up: 0.03417906}, unc. syst.: {dn: -0.01424344, up: 0.01424344}}, 5: {full syst.: {dn: -0.05002673, up: 0.05002673}, stat: {dn: -0.02830612, up: 0.02830612}, unc. syst.: {dn: -0.01461176, up: 0.01461176}}, 6: {full syst.: {dn: -0.05042413, up: 0.05042413}, stat: {dn: -0.03383428, up: 0.03383428}, unc. syst.: {dn: -0.0152162, up: 0.0152162}}, 7: {full syst.: {dn: -0.04605121, up: 0.04605121}, stat: {dn: -0.03792984, up: 0.03792984}, unc. syst.: {dn: -0.01376106, up: 0.01376106}}, 8: {full syst.: {dn: -0.05291274, up: 0.05291274}, stat: {dn: -0.04165025, up: 0.04165025}, unc. syst.: {dn: -0.01502151, up: 0.01502151}}, 9: {full syst.: {dn: -0.05113465, up: 0.05113465}, stat: {dn: -0.06556345, up: 0.06556345}, unc. syst.: {dn: -0.01449991, up: 0.01449991}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d93-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t93 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 9.057602e-02 8.440122e-02 8.440122e-02 +3.897000e+00 1.430000e-01 1.430000e-01 1.090725e-01 6.899382e-02 6.899382e-02 +5.398000e+00 1.730000e-01 1.730000e-01 8.177456e-02 6.122706e-02 6.122706e-02 +6.724000e+00 2.070000e-01 2.070000e-01 9.470274e-02 6.260099e-02 6.260099e-02 +8.447000e+00 2.540000e-01 2.540000e-01 1.070420e-01 5.930779e-02 5.930779e-02 +1.008000e+01 3.030000e-01 3.030000e-01 1.039074e-01 6.404204e-02 6.404204e-02 +1.150700e+01 3.450000e-01 3.450000e-01 8.829855e-02 5.587119e-02 5.587119e-02 +1.345700e+01 4.040000e-01 4.040000e-01 1.069257e-01 6.056946e-02 6.056946e-02 +1.651300e+01 4.950000e-01 4.950000e-01 1.105181e-01 5.880288e-02 5.880288e-02 +2.129400e+01 6.390000e-01 6.390000e-01 1.084200e-01 6.681065e-02 6.681065e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d94-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.06568768, up: 0.06568768}, stat: {dn: -0.0979065, up: 0.0979065}, unc. syst.: {dn: -0.04117609, up: 0.04117609}}, 1: {full syst.: {dn: -0.05869128, up: 0.05869128}, stat: {dn: -0.0608021, up: 0.0608021}, unc. syst.: {dn: -0.03679042, up: 0.03679042}}, 2: {full syst.: {dn: -0.04636142, up: 0.04636142}, stat: {dn: -0.05386228, up: 0.05386228}, unc. syst.: {dn: -0.02906561, up: 0.02906561}}, 3: {full syst.: {dn: -0.05544187, up: 0.05544187}, stat: {dn: -0.06905092, up: 0.06905092}, unc. syst.: {dn: -0.0347553, up: 0.0347553}}, 4: {full syst.: {dn: -0.04615795, up: 0.04615795}, stat: {dn: -0.0646977, up: 0.0646977}, unc. syst.: {dn: -0.0289369, up: 0.0289369}}, 5: {full syst.: {dn: -0.03651896, up: 0.03651896}, stat: {dn: -0.04871205, up: 0.04871205}, unc. syst.: {dn: -0.02289201, up: 0.02289201}}, 6: {full syst.: {dn: -0.04427319, up: 0.04427319}, stat: {dn: -0.06379756, up: 0.06379756}, unc. syst.: {dn: -0.02793605, up: 0.02793605}}, 7: {full syst.: {dn: -0.03200433, up: 0.03200433}, stat: {dn: -0.05807872, up: 0.05807872}, unc. syst.: {dn: -0.02006251, up: 0.02006251}}, 8: {full syst.: {dn: -0.04111916, up: 0.04111916}, stat: {dn: -0.06721356, up: 0.06721356}, unc. syst.: {dn: -0.02622892, up: 0.02622892}}, 9: {full syst.: {dn: -0.04252567, up: 0.04252567}, stat: {dn: -0.1100036, up: 0.1100036}, unc. syst.: {dn: -0.02665807, up: 0.02665807}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d94-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t94 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 2.404774e-01 1.209127e-01 1.209127e-01 +3.897000e+00 1.430000e-01 1.430000e-01 2.298424e-01 8.304459e-02 8.304459e-02 +5.398000e+00 1.730000e-01 1.730000e-01 1.809808e-01 6.928145e-02 6.928145e-02 +6.724000e+00 2.070000e-01 2.070000e-01 2.492878e-01 8.252676e-02 8.252676e-02 +8.447000e+00 2.540000e-01 2.540000e-01 2.065139e-01 6.504262e-02 6.504262e-02 +1.008000e+01 3.030000e-01 3.030000e-01 2.610067e-01 8.457951e-02 8.457951e-02 +1.150700e+01 3.450000e-01 3.450000e-01 3.135143e-01 9.513023e-02 9.513023e-02 +1.345700e+01 4.040000e-01 4.040000e-01 2.621505e-01 7.678109e-02 7.678109e-02 +1.651300e+01 4.950000e-01 4.950000e-01 3.319000e-01 9.216885e-02 9.216885e-02 +2.129400e+01 6.390000e-01 6.390000e-01 3.714648e-01 1.248840e-01 1.248840e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d95-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.01162312, up: 0.01162312}, stat: {dn: -0.0003270574, up: 0.0003270574}, unc. syst.: {dn: -0.005061923, up: 0.005061923}}, 1: {full syst.: {dn: -0.01067675, up: 0.01067675}, stat: {dn: -0.0001514968, up: 0.0001514968}, unc. syst.: {dn: -0.00454141, up: 0.00454141}}, 2: {full syst.: {dn: -0.01045335, up: 0.01045335}, stat: {dn: -0.0001231748, up: 0.0001231748}, unc. syst.: {dn: -0.004554943, up: 0.004554943}}, 3: {full syst.: {dn: -0.01023197, up: 0.01023197}, stat: {dn: -0.0001183723, up: 0.0001183723}, unc. syst.: {dn: -0.004472225, up: 0.004472225}}, 4: {full syst.: {dn: -0.01009317, up: 0.01009317}, stat: {dn: -0.0001200407, up: 0.0001200407}, unc. syst.: {dn: -0.004481679, up: 0.004481679}}, 5: {full syst.: {dn: -0.009906567, up: 0.009906567}, stat: {dn: -8.945748e-05, up: 8.945748e-05}, unc. syst.: {dn: -0.004405276, up: 0.004405276}}, 6: {full syst.: {dn: -0.009730022, up: 0.009730022}, stat: {dn: -9.41059e-05, up: 9.41059e-05}, unc. syst.: {dn: -0.00439314, up: 0.00439314}}, 7: {full syst.: {dn: -0.009609509, up: 0.009609509}, stat: {dn: -9.889267e-05, up: 9.889267e-05}, unc. syst.: {dn: -0.004323201, up: 0.004323201}}, 8: {full syst.: {dn: -0.01030796, up: 0.01030796}, stat: {dn: -7.955809e-05, up: 7.955809e-05}, unc. syst.: {dn: -0.00417063, up: 0.00417063}}, 9: {full syst.: {dn: -0.01253222, up: 0.01253222}, stat: {dn: -7.859694e-05, up: 7.859694e-05}, unc. syst.: {dn: -0.003850838, up: 0.003850838}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d95-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t95 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 1.158913e-01 1.311075e-02 1.311075e-02 +3.896809e+00 1.169045e-01 1.169045e-01 1.221590e-01 1.112001e-02 1.112001e-02 +5.397826e+00 1.619345e-01 1.619345e-01 1.253697e-01 1.053767e-02 1.053767e-02 +6.724329e+00 2.017300e-01 2.017300e-01 1.272244e-01 1.067623e-02 1.067623e-02 +8.447464e+00 2.534240e-01 2.534240e-01 1.289670e-01 1.084226e-02 1.084226e-02 +1.007952e+01 3.023855e-01 3.023855e-01 1.305718e-01 1.104409e-02 1.104409e-02 +1.150694e+01 3.452080e-01 3.452080e-01 1.315863e-01 1.116727e-02 1.116727e-02 +1.345653e+01 4.036955e-01 4.036955e-01 1.329932e-01 1.140330e-02 1.140330e-02 +1.651347e+01 4.954045e-01 4.954045e-01 1.347539e-01 1.160346e-02 1.160346e-02 +2.129430e+01 6.388290e-01 6.388290e-01 1.369054e-01 1.268176e-02 1.268176e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d96-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.004411061, up: 0.004411061}, stat: {dn: -0.001846176, up: 0.001846176}, unc. syst.: {dn: -0.002471982, up: 0.002471982}}, 1: {full syst.: {dn: -0.004479424, up: 0.004479424}, stat: {dn: -0.0009910345, up: 0.0009910345}, unc. syst.: {dn: -0.002479514, up: 0.002479514}}, 2: {full syst.: {dn: -0.004845083, up: 0.004845083}, stat: {dn: -0.0008980552, up: 0.0008980552}, unc. syst.: {dn: -0.003087163, up: 0.003087163}}, 3: {full syst.: {dn: -0.004760545, up: 0.004760545}, stat: {dn: -0.0008649087, up: 0.0008649087}, unc. syst.: {dn: -0.002584693, up: 0.002584693}}, 4: {full syst.: {dn: -0.005073193, up: 0.005073193}, stat: {dn: -0.0006623414, up: 0.0006623414}, unc. syst.: {dn: -0.00284119, up: 0.00284119}}, 5: {full syst.: {dn: -0.005061099, up: 0.005061099}, stat: {dn: -0.000979644, up: 0.000979644}, unc. syst.: {dn: -0.00296691, up: 0.00296691}}, 6: {full syst.: {dn: -0.005114245, up: 0.005114245}, stat: {dn: -0.0009382394, up: 0.0009382394}, unc. syst.: {dn: -0.002822205, up: 0.002822205}}, 7: {full syst.: {dn: -0.005782274, up: 0.005782274}, stat: {dn: -0.0006762097, up: 0.0006762097}, unc. syst.: {dn: -0.002862694, up: 0.002862694}}, 8: {full syst.: {dn: -0.00681564, up: 0.00681564}, stat: {dn: -0.00060361, up: 0.00060361}, unc. syst.: {dn: -0.003403465, up: 0.003403465}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d96-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t96 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 4.218826e-02 7.642046e-03 7.642046e-03 +3.896809e+00 1.169045e-01 1.169045e-01 4.066866e-02 6.487447e-03 6.487447e-03 +5.397826e+00 1.619345e-01 1.619345e-01 4.005038e-02 5.916134e-03 5.916134e-03 +6.724329e+00 2.017300e-01 2.017300e-01 3.946859e-02 5.947855e-03 5.947855e-03 +8.447464e+00 2.534240e-01 2.534240e-01 3.788867e-02 5.852208e-03 5.852208e-03 +1.079323e+01 3.237970e-01 3.237970e-01 3.745305e-02 5.485571e-03 5.485571e-03 +1.345653e+01 4.036955e-01 4.036955e-01 3.635241e-02 5.814801e-03 5.814801e-03 +1.651347e+01 4.954045e-01 4.954045e-01 3.464710e-02 5.214919e-03 5.214919e-03 +2.129430e+01 6.388290e-01 6.388290e-01 3.466082e-02 5.382984e-03 5.382984e-03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d97-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.001927923, up: 0.001927923}, stat: {dn: -0.0005124269, up: 0.0005124269}, unc. syst.: {dn: -0.001013454, up: 0.001013454}}, 1: {full syst.: {dn: -0.00184644, up: 0.00184644}, stat: {dn: -0.000267222, up: 0.000267222}, unc. syst.: {dn: -0.000802654, up: 0.000802654}}, 2: {full syst.: {dn: -0.001934475, up: 0.001934475}, stat: {dn: -0.0002569575, up: 0.0002569575}, unc. syst.: {dn: -0.0008006674, up: 0.0008006674}}, 3: {full syst.: {dn: -0.001852725, up: 0.001852725}, stat: {dn: -0.000200485, up: 0.000200485}, unc. syst.: {dn: -0.0006985612, up: 0.0006985612}}, 4: {full syst.: {dn: -0.001783959, up: 0.001783959}, stat: {dn: -0.0002119508, up: 0.0002119508}, unc. syst.: {dn: -0.0007168154, up: 0.0007168154}}, 5: {full syst.: {dn: -0.001765088, up: 0.001765088}, stat: {dn: -0.0002272881, up: 0.0002272881}, unc. syst.: {dn: -0.0007080368, up: 0.0007080368}}, 6: {full syst.: {dn: -0.001674184, up: 0.001674184}, stat: {dn: -0.0002512779, up: 0.0002512779}, unc. syst.: {dn: -0.0006980226, up: 0.0006980226}}, 7: {full syst.: {dn: -0.001725821, up: 0.001725821}, stat: {dn: -0.0002095123, up: 0.0002095123}, unc. syst.: {dn: -0.0006264052, up: 0.0006264052}}, 8: {full syst.: {dn: -0.0020906, up: 0.0020906}, stat: {dn: -0.0002361604, up: 0.0002361604}, unc. syst.: {dn: -0.0007498044, up: 0.0007498044}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d97-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t97 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 1.428628e-02 2.233514e-03 2.233514e-03 +3.897000e+00 1.430000e-01 1.430000e-01 1.460563e-02 1.847901e-03 1.847901e-03 +5.398000e+00 1.730000e-01 1.730000e-01 1.477874e-02 1.831193e-03 1.831193e-03 +6.724000e+00 2.070000e-01 2.070000e-01 1.556897e-02 1.915336e-03 1.915336e-03 +8.447000e+00 2.540000e-01 2.540000e-01 1.579411e-02 1.934233e-03 1.934233e-03 +1.079300e+01 3.240000e-01 3.240000e-01 1.673327e-02 1.990169e-03 1.990169e-03 +1.345700e+01 4.040000e-01 4.040000e-01 1.700366e-02 2.109334e-03 2.109334e-03 +1.651300e+01 4.950000e-01 4.950000e-01 1.663973e-02 2.031010e-03 2.031010e-03 +2.129400e+01 6.390000e-01 6.390000e-01 1.691547e-02 2.237534e-03 2.237534e-03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d98-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0054, up: 0.0054}}, 1: {full syst.: {dn: -0.0053, up: 0.0053}}, 2: {full syst.: {dn: -0.0056, up: 0.0056}}, 3: {full syst.: {dn: -0.0061, up: 0.0061}}, 4: {full syst.: {dn: -0.0066, up: 0.0066}}, 5: {full syst.: {dn: -0.0075, up: 0.0075}}, 6: {full syst.: {dn: -0.0091, up: 0.0091}}, 7: {full syst.: {dn: -0.0112, up: 0.0112}}, 8: {full syst.: {dn: -0.0143, up: 0.0143}}, 9: {full syst.: {dn: -0.0206, up: 0.0206}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d98-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t98 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 6.507000e-01 5.400000e-03 5.400000e-03 +7.500000e+00 2.500000e+00 2.500000e+00 6.457000e-01 5.300000e-03 5.300000e-03 +1.500000e+01 5.000000e+00 5.000000e+00 6.389000e-01 5.600000e-03 5.600000e-03 +2.500000e+01 5.000000e+00 5.000000e+00 6.250000e-01 6.100000e-03 6.100000e-03 +3.500000e+01 5.000000e+00 5.000000e+00 6.037000e-01 6.600000e-03 6.600000e-03 +4.500000e+01 5.000000e+00 5.000000e+00 5.734000e-01 7.500000e-03 7.500000e-03 +5.500000e+01 5.000000e+00 5.000000e+00 5.340000e-01 9.100000e-03 9.100000e-03 +6.500000e+01 5.000000e+00 5.000000e+00 4.873000e-01 1.120000e-02 1.120000e-02 +7.500000e+01 5.000000e+00 5.000000e+00 4.355000e-01 1.430000e-02 1.430000e-02 +8.500000e+01 5.000000e+00 5.000000e+00 3.524000e-01 2.060000e-02 2.060000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d99-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0051, up: 0.0051}}, 1: {full syst.: {dn: -0.0049, up: 0.0049}}, 2: {full syst.: {dn: -0.005, up: 0.005}}, 3: {full syst.: {dn: -0.0051, up: 0.0051}}, 4: {full syst.: {dn: -0.0053, up: 0.0053}}, 5: {full syst.: {dn: -0.0056, up: 0.0056}}, 6: {full syst.: {dn: -0.0061, up: 0.0061}}, 7: {full syst.: {dn: -0.0066, up: 0.0066}}, 8: {full syst.: {dn: -0.0072, up: 0.0072}}, 9: {full syst.: {dn: -0.008, up: 0.008}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d99-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t99 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 9.490000e-02 5.100000e-03 5.100000e-03 +7.500000e+00 2.500000e+00 2.500000e+00 9.660000e-02 4.900000e-03 4.900000e-03 +1.500000e+01 5.000000e+00 5.000000e+00 9.880000e-02 5.000000e-03 5.000000e-03 +2.500000e+01 5.000000e+00 5.000000e+00 1.013000e-01 5.100000e-03 5.100000e-03 +3.500000e+01 5.000000e+00 5.000000e+00 1.058000e-01 5.300000e-03 5.300000e-03 +4.500000e+01 5.000000e+00 5.000000e+00 1.116000e-01 5.600000e-03 5.600000e-03 +5.500000e+01 5.000000e+00 5.000000e+00 1.189000e-01 6.100000e-03 6.100000e-03 +6.500000e+01 5.000000e+00 5.000000e+00 1.296000e-01 6.600000e-03 6.600000e-03 +7.500000e+01 5.000000e+00 5.000000e+00 1.398000e-01 7.200000e-03 7.200000e-03 +8.500000e+01 5.000000e+00 5.000000e+00 1.524000e-01 8.000000e-03 8.000000e-03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d100-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0266, up: 0.0266}}, 1: {full syst.: {dn: -0.0266, up: 0.0266}}, 2: {full syst.: {dn: -0.0281, up: 0.0281}}, 3: {full syst.: {dn: -0.0316, up: 0.0316}}, 4: {full syst.: {dn: -0.0347, up: 0.0347}}, 5: {full syst.: {dn: -0.041, up: 0.041}}, 6: {full syst.: {dn: -0.0522, up: 0.0522}}, 7: {full syst.: {dn: -0.0717, up: 0.0717}}, 8: {full syst.: {dn: -0.1103, up: 0.1103}}, 9: {full syst.: {dn: -0.2527, up: 0.2527}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d100-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t100 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 7.121000e-01 2.660000e-02 2.660000e-02 +7.500000e+00 2.500000e+00 2.500000e+00 7.228000e-01 2.660000e-02 2.660000e-02 +1.500000e+01 5.000000e+00 5.000000e+00 7.388000e-01 2.810000e-02 2.810000e-02 +2.500000e+01 5.000000e+00 5.000000e+00 7.799000e-01 3.160000e-02 3.160000e-02 +3.500000e+01 5.000000e+00 5.000000e+00 8.418000e-01 3.470000e-02 3.470000e-02 +4.500000e+01 5.000000e+00 5.000000e+00 9.461000e-01 4.100000e-02 4.100000e-02 +5.500000e+01 5.000000e+00 5.000000e+00 1.105500e+00 5.220000e-02 5.220000e-02 +6.500000e+01 5.000000e+00 5.000000e+00 1.304600e+00 7.170000e-02 7.170000e-02 +7.500000e+01 5.000000e+00 5.000000e+00 1.598700e+00 1.103000e-01 1.103000e-01 +8.500000e+01 5.000000e+00 5.000000e+00 2.320300e+00 2.527000e-01 2.527000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d101-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.009, up: 0.009}}, 1: {full syst.: {dn: -0.0095, up: 0.0095}}, 2: {full syst.: {dn: -0.0105, up: 0.0105}}, 3: {full syst.: {dn: -0.0117, up: 0.0117}}, 4: {full syst.: {dn: -0.0137, up: 0.0137}}, 5: {full syst.: {dn: -0.0157, up: 0.0157}}, 6: {full syst.: {dn: -0.0165, up: 0.0165}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d101-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t101 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 5.452000e-01 9.000000e-03 9.000000e-03 +7.500000e+00 2.500000e+00 2.500000e+00 5.289000e-01 9.500000e-03 9.500000e-03 +1.500000e+01 5.000000e+00 5.000000e+00 5.077000e-01 1.050000e-02 1.050000e-02 +3.000000e+01 1.000000e+01 1.000000e+01 4.757000e-01 1.170000e-02 1.170000e-02 +5.000000e+01 1.000000e+01 1.000000e+01 4.244000e-01 1.370000e-02 1.370000e-02 +7.000000e+01 1.000000e+01 1.000000e+01 3.563000e-01 1.570000e-02 1.570000e-02 +9.000000e+01 1.000000e+01 1.000000e+01 2.489000e-01 1.650000e-02 1.650000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d102-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0076, up: 0.0076}}, 1: {full syst.: {dn: -0.0074, up: 0.0074}}, 2: {full syst.: {dn: -0.0075, up: 0.0075}}, 3: {full syst.: {dn: -0.0074, up: 0.0074}}, 4: {full syst.: {dn: -0.0071, up: 0.0071}}, 5: {full syst.: {dn: -0.0065, up: 0.0065}}, 6: {full syst.: {dn: -0.005, up: 0.005}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d102-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t102 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 1.425000e-01 7.600000e-03 7.600000e-03 +7.500000e+00 2.500000e+00 2.500000e+00 1.452000e-01 7.400000e-03 7.400000e-03 +1.500000e+01 5.000000e+00 5.000000e+00 1.499000e-01 7.500000e-03 7.500000e-03 +3.000000e+01 1.000000e+01 1.000000e+01 1.558000e-01 7.400000e-03 7.400000e-03 +5.000000e+01 1.000000e+01 1.000000e+01 1.631000e-01 7.100000e-03 7.100000e-03 +7.000000e+01 1.000000e+01 1.000000e+01 1.685000e-01 6.500000e-03 6.500000e-03 +9.000000e+01 1.000000e+01 1.000000e+01 1.680000e-01 5.000000e-03 5.000000e-03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d103-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0472, up: 0.0472}}, 1: {full syst.: {dn: -0.0524, up: 0.0524}}, 2: {full syst.: {dn: -0.0625, up: 0.0625}}, 3: {full syst.: {dn: -0.0795, up: 0.0795}}, 4: {full syst.: {dn: -0.1197, up: 0.1197}}, 5: {full syst.: {dn: -0.2032, up: 0.2032}}, 6: {full syst.: {dn: -0.4677, up: 0.4677}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d103-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t103 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e+00 2.500000e+00 2.500000e+00 1.093400e+00 4.720000e-02 4.720000e-02 +7.500000e+00 2.500000e+00 2.500000e+00 1.167600e+00 5.240000e-02 5.240000e-02 +1.500000e+01 5.000000e+00 5.000000e+00 1.283100e+00 6.250000e-02 6.250000e-02 +3.000000e+01 1.000000e+01 1.000000e+01 1.448200e+00 7.950000e-02 7.950000e-02 +5.000000e+01 1.000000e+01 1.000000e+01 1.786200e+00 1.197000e-01 1.197000e-01 +7.000000e+01 1.000000e+01 1.000000e+01 2.419500e+00 2.032000e-01 2.032000e-01 +9.000000e+01 1.000000e+01 1.000000e+01 4.239300e+00 4.677000e-01 4.677000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d104-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.0151, up: 0.0151}}, 1: {full syst.: {dn: -0.015, up: 0.015}}, 2: {full syst.: {dn: -0.016, up: 0.016}}, 3: {full syst.: {dn: -0.0169, up: 0.0169}}, 4: {full syst.: {dn: -0.0176, up: 0.0176}}, 5: {full syst.: {dn: -0.0179, up: 0.0179}}, 6: {full syst.: {dn: -0.0184, up: 0.0184}}, 7: {full syst.: {dn: -0.0187, up: 0.0187}}, 8: {full syst.: {dn: -0.0187, up: 0.0187}}, 9: {full syst.: {dn: -0.0163, up: 0.0163}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d104-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t104 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.000000e+00 5.000000e-01 5.000000e-01 4.647000e-01 1.510000e-02 1.510000e-02 +2.000000e+00 5.000000e-01 5.000000e-01 4.336000e-01 1.500000e-02 1.500000e-02 +3.000000e+00 5.000000e-01 5.000000e-01 4.024000e-01 1.600000e-02 1.600000e-02 +4.000000e+00 5.000000e-01 5.000000e-01 3.741000e-01 1.690000e-02 1.690000e-02 +5.000000e+00 5.000000e-01 5.000000e-01 3.517000e-01 1.760000e-02 1.760000e-02 +6.000000e+00 5.000000e-01 5.000000e-01 3.262000e-01 1.790000e-02 1.790000e-02 +7.000000e+00 5.000000e-01 5.000000e-01 2.903000e-01 1.840000e-02 1.840000e-02 +8.000000e+00 5.000000e-01 5.000000e-01 2.496000e-01 1.870000e-02 1.870000e-02 +9.000000e+00 5.000000e-01 5.000000e-01 2.010000e-01 1.870000e-02 1.870000e-02 +1.000000e+01 5.000000e-01 5.000000e-01 1.215000e-01 1.630000e-02 1.630000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d105-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.009, up: 0.009}}, 1: {full syst.: {dn: -0.0078, up: 0.0078}}, 2: {full syst.: {dn: -0.0074, up: 0.0074}}, 3: {full syst.: {dn: -0.007, up: 0.007}}, 4: {full syst.: {dn: -0.0068, up: 0.0068}}, 5: {full syst.: {dn: -0.0064, up: 0.0064}}, 6: {full syst.: {dn: -0.0059, up: 0.0059}}, 7: {full syst.: {dn: -0.0054, up: 0.0054}}, 8: {full syst.: {dn: -0.0051, up: 0.0051}}, 9: {full syst.: {dn: -0.0043, up: 0.0043}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d105-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t105 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.000000e+00 5.000000e-01 5.000000e-01 1.683000e-01 9.000000e-03 9.000000e-03 +2.000000e+00 5.000000e-01 5.000000e-01 1.676000e-01 7.800000e-03 7.800000e-03 +3.000000e+00 5.000000e-01 5.000000e-01 1.696000e-01 7.400000e-03 7.400000e-03 +4.000000e+00 5.000000e-01 5.000000e-01 1.722000e-01 7.000000e-03 7.000000e-03 +5.000000e+00 5.000000e-01 5.000000e-01 1.737000e-01 6.800000e-03 6.800000e-03 +6.000000e+00 5.000000e-01 5.000000e-01 1.740000e-01 6.400000e-03 6.400000e-03 +7.000000e+00 5.000000e-01 5.000000e-01 1.744000e-01 5.900000e-03 5.900000e-03 +8.000000e+00 5.000000e-01 5.000000e-01 1.758000e-01 5.400000e-03 5.400000e-03 +9.000000e+00 5.000000e-01 5.000000e-01 1.735000e-01 5.100000e-03 5.100000e-03 +1.000000e+01 5.000000e-01 5.000000e-01 1.650000e-01 4.300000e-03 4.300000e-03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2018_I1684320/d106-x01-y01 +Variations: [""] +ErrorBreakdown: {0: {full syst.: {dn: -0.1172, up: 0.1172}}, 1: {full syst.: {dn: -0.1356, up: 0.1356}}, 2: {full syst.: {dn: -0.1688, up: 0.1688}}, 3: {full syst.: {dn: -0.2084, up: 0.2084}}, 4: {full syst.: {dn: -0.2488, up: 0.2488}}, 5: {full syst.: {dn: -0.295, up: 0.295}}, 6: {full syst.: {dn: -0.3868, up: 0.3868}}, 7: {full syst.: {dn: -0.5411, up: 0.5411}}, 8: {full syst.: {dn: -0.8396, up: 0.8396}}, 9: {full syst.: {dn: -2.0103, up: 2.0103}}} + +IsRef: 1 +Path: /REF/ALICE_2018_I1684320/d106-x01-y01 +Title: doi:10.17182/hepdata.84282.v1/t106 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.000000e+00 5.000000e-01 5.000000e-01 1.472500e+00 1.172000e-01 1.172000e-01 +2.000000e+00 5.000000e-01 5.000000e-01 1.674900e+00 1.356000e-01 1.356000e-01 +3.000000e+00 5.000000e-01 5.000000e-01 1.907600e+00 1.688000e-01 1.688000e-01 +4.000000e+00 5.000000e-01 5.000000e-01 2.158300e+00 2.084000e-01 2.084000e-01 +5.000000e+00 5.000000e-01 5.000000e-01 2.406300e+00 2.488000e-01 2.488000e-01 +6.000000e+00 5.000000e-01 5.000000e-01 2.702600e+00 2.950000e-01 2.950000e-01 +7.000000e+00 5.000000e-01 5.000000e-01 3.258600e+00 3.868000e-01 3.868000e-01 +8.000000e+00 5.000000e-01 5.000000e-01 4.093700e+00 5.411000e-01 5.411000e-01 +9.000000e+00 5.000000e-01 5.000000e-01 5.611000e+00 8.396000e-01 8.396000e-01 +1.000000e+01 5.000000e-01 5.000000e-01 1.070110e+01 2.010300e+00 2.010300e+00 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginALICE/ALICE_MEANPT_DIRECT.cc b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.cc @@ -0,0 +1,215 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/CentralityProjection.hh" +#include "Rivet/Projections/AliceCommon.hh" +#include "Rivet/Tools/AliceCommon.hh" +#include "Rivet/Projections/PrimaryParticles.hh" +namespace Rivet { + + /// Primary particles + resonances projection. + class PrimaryResonances : public Rivet::PrimaryParticles { + public: + PrimaryResonances(const Cut& c=Cuts::open()) + : Rivet::PrimaryParticles({},c) {} + + virtual int compare(const Projection& p) const { + return UNDEFINED; + } + + virtual std::unique_ptr clone() const { + return std::unique_ptr(new PrimaryResonances(*this)); + } + protected: + bool isPrimaryPID(const HepMC::GenParticle* p) const + { + int pdg = PID::abspid(p->pdg_id()); + if (pdg > 1000000000) return true; + + switch (pdg) { + case 313: // K*0 (892) + case 333: // phi + return true; + } + return false; + } + }; + + /// @brief Strangeness enhancement and in pp 7 TeV, no spectra. + class ALICE_MEANPT_DIRECT : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ALICE_MEANPT_DIRECT); + + int profileIndex(vector cBins, double c) { + int index = 100; + if (c > 0 && c <= cBins[0]) return cBins.size() - 1; + for (size_t i = 0; i < cBins.size() - 1; ++i) { + if (c > cBins[i] && c <= cBins[i + 1]) { + index = i; + break; + } + } + // Catch low fluctuation. + return max(0, int(cBins.size() - index - 2)); + } + + /// Book histograms and initialise projections before the run + void init() { + // Centrality projection. + declareCentrality(ALICE::V0MMultiplicity(), + "ALICE_2015_PPCentrality","V0M","V0M"); + // Central primary particles + declare(ALICE::PrimaryParticles(Cuts::abseta < 0.5),"PP"); + declare(ALICE::PrimaryParticles(Cuts::absrap < 0.5),"PPy"); + declare(PrimaryResonances(Cuts::absrap < 0.5),"PRy"); + centralityBins = {1.,5.,10.,15.,20., 30., 40., 50., 70., 100.}; + centralityBinsPhi = {1.,5.,10.,20., 30., 40., 50., 70., 100.}; + centralityBinsOmega = {5.,15.,30.,50.,100.}; + // Book histograms + + pipT = bookProfile1D(1,1,1); + kpmpT = bookProfile1D(2,1,1); + ppT = bookProfile1D(3,1,1); + kzeropT = bookProfile1D(4,1,1); + lambdapT = bookProfile1D(5,1,1); + kstarpT = bookProfile1D(6,1,1); + phipT = bookProfile1D(7,1,1); + xipT = bookProfile1D(8,1,1); + omegapT = bookProfile1D(9,1,1); + + piYield = bookProfile1D(1,2,1); + kpmYield = bookProfile1D(2,2,1); + kstarYield = bookProfile1D(3,2,1); + phiYield = bookProfile1D(4,2,1); + piRebinnedK = shared_ptr(kstarYield->newclone()); + piRebinnedK->setTitle("piRebinnedK"); + piRebinnedK->setPath("/" + name() + "/piRebinnedK"); + addAnalysisObject(piRebinnedK); + + piRebinnedP = shared_ptr(phiYield->newclone()); + piRebinnedP->setTitle("piRebinnedP"); + piRebinnedP->setPath("/" + name() + "/piRebinnedP"); + addAnalysisObject(piRebinnedP); + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + if (apply(event,"PP").particles().size() < 1) vetoEvent; + const PrimaryParticles& prim = apply(event,"PPy"); + const PrimaryResonances& primR = apply(event,"PRy"); + const double weight = event.weight(); + const CentralityProjection& cent = apply(event,"V0M"); + double c = cent(); + // Fill the pt histograms and count yields. + int npi = 0, nkpm = 0, nkstar = 0, nphi = 0; + // Profile centrality index. + int index = profileIndex(centralityBins,c); + int indexPhi = profileIndex(centralityBinsPhi, c); + int indexOmega = profileIndex(centralityBinsOmega, c); + for (auto p : prim.particles()) { + const double pT = p.pT(); + const int pid = abs(p.pid()); + if (pid == 211) { + ++npi; + pipT->fillBin(index, pT, weight); + } + else if (pid == 321) { + ++nkpm; + kpmpT->fillBin(index, pT, weight); + } + else if (pid == 2212) { + ppT->fillBin(index, pT, weight); + } + else if (pid == 310) { + kzeropT->fillBin(index, pT, weight); + } + else if (pid == 3122) { + lambdapT->fillBin(index, pT, weight); + } + else if (pid == 3312) { + xipT->fillBin(index, pT, weight); + } + else if (pid == 3334) { + omegapT->fillBin(indexOmega, pT, weight); + } + } + for (auto p : primR.particles()) { + const double pT = p.pT(); + const int pid = abs(p.pid()); + if (pid == 313) { + ++nkstar; + kstarpT->fillBin(indexPhi, pT, weight); + } + else if (pid == 333) { + ++nphi; + phipT->fillBin(indexPhi, pT, weight); + } + + } + // Fill the profiles of yields. + piYield->fillBin(index, double(npi)/2., weight); + kpmYield->fillBin(index, double(nkpm)/2., weight); + kstarYield->fillBin(indexPhi, double(nkstar)/2., weight); + phiYield->fillBin(indexPhi, double(nphi), weight); + piRebinnedK->fillBin(indexPhi,double(npi)/2.,weight); + piRebinnedP->fillBin(indexPhi,double(npi)/2.,weight); + + } + + + /// Normalise histograms etc., after the run + void finalize() { + // Make the ratios + kpmpi = bookScatter2D(1, 1, 2, true); + kstarpi = bookScatter2D(2, 1, 2, true); + phipi = bookScatter2D(3, 1, 2, true); + + divide(kpmYield, piYield, kpmpi); + divide(kstarYield, piRebinnedK, kstarpi); + divide(phiYield, piRebinnedP, phipi); + } + + //@} + + + /// @name Histograms + //@{ + // Histograms ordered in centrality classes + vector centralityBins; + vector centralityBinsPhi; + vector centralityBinsOmega; + + // Average pT + Profile1DPtr pipT; + Profile1DPtr kpmpT; + Profile1DPtr ppT; + Profile1DPtr kzeropT; + Profile1DPtr lambdapT; + Profile1DPtr kstarpT; + Profile1DPtr phipT; + Profile1DPtr xipT; + Profile1DPtr omegapT; + + // Total yields + Profile1DPtr piYield; + Profile1DPtr kpmYield; + Profile1DPtr kstarYield; + Profile1DPtr phiYield; + Profile1DPtr piRebinnedK; + Profile1DPtr piRebinnedP; + + // Ratios + Scatter2DPtr kpmpi; + Scatter2DPtr kstarpi; + Scatter2DPtr phipi; + //@} + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ALICE_MEANPT_DIRECT); + + +} diff --git a/analyses/pluginALICE/ALICE_MEANPT_DIRECT.info b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.info new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.info @@ -0,0 +1,45 @@ +Name: ALICE_MEANPT_DIRECT +Year: 2018 +Summary: Mean pT of identified hadrons and phi/phi ratio -- DO NOT PUBLISH! +Experiment: ALICE +Collider: LHC +InspireID: 1684320 +Status: UNVALIDATED +Authors: + - Christian Bierlich +#References: +#- '' +#- '' +#- '' +RunInfo: +NeedCrossSection: no +#Beams: +#Energies: +#Luminosity_fb: +Beams: [p+, p+] +Energies: [7000] +Options: + - cent=REF,GEN,IMP,USR +Reentrant: True +Description: + ' 50\;\GeV$.>' +Keywords: [] +BibKey: Acharya:2018orn +BibTeX: '@article{Acharya:2018orn, + author = "Acharya, Shreyasi and others", + title = "{Multiplicity dependence of light-flavor hadron + production in pp collisions at $\sqrt{s}$ = 7 TeV}", + collaboration = "ALICE", + journal = "Submitted to: Phys. Rev.", + year = "2018", + eprint = "1807.11321", + archivePrefix = "arXiv", + primaryClass = "nucl-ex", + reportNumber = "CERN-EP-2018-209", + SLACcitation = "%%CITATION = ARXIV:1807.11321;%%" +}' +ToDo: + - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-) + diff --git a/analyses/pluginALICE/ALICE_MEANPT_DIRECT.plot b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.plot @@ -0,0 +1,89 @@ +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d01-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $\pi^+ + \pi^-$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d02-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $K^+ + K^-$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d03-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $p + \bar{p}$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d04-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $K^0_s$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d05-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $\Lambda + \bar{\Lambda}$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d06-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $K^*(892) + \bar{K}^*(892)$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d07-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $\phi$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d08-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $\Xi^- + \bar{\Xi}^+$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d09-x01-y01 +Title=Average $p_\perp(N_{ch})$ for $\Omega^- + \bar{\Omega}^+$ +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$\langle p_\perp \rangle$ +LogY=0 +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d01-x02-y01 +Title=$\pi^+ \pi^-$ integrated yield +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$dN/dy$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d02-x02-y01 +Title=$K^+ K^-$ integrated yield +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$dN/dy$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d03-x02-y01 +Title=$K^*(892) + \bar{K}^*(892)$ integrated yield +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$dN/dy$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d04-x02-y01 +Title=$\phi$ integrated yield +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$dN/dy$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d01-x01-y02 +Title=$(K^+ + K^-)/(\pi^+ + \pi^-)$ ratio +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$N(K^+ + K^-)/N(\pi^+ + \pi^-)$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d02-x01-y02 +Title=$(K^*(892) + \bar{K}^*(892))/(\pi^+ + \pi^-)$ ratio +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$N(K^*(892) + \bar{K}^*(892))/N(\pi^+ + \pi^-)$ +# END PLOT +# BEGIN PLOT /ALICE_MEANPT_DIRECT/d03-x01-y02 +Title=$\phi/(\pi^+ + \pi^-)$ ratio +XLabel=$\langle \frac{dN}{d\eta} \rangle_{|\eta| = 0}$ +YLabel=$N(\phi)/N(\pi^+ + \pi^-)$ +# END PLOT diff --git a/analyses/pluginALICE/ALICE_MEANPT_DIRECT.yoda b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_MEANPT_DIRECT.yoda @@ -0,0 +1,313 @@ + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d01-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d01-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 3.904e-01 0.09e-01 0.09e-01 +3.896809e+00 1.169045e-01 1.169045e-01 4.237e-01 0.08e-01 0.08e-01 +5.397826e+00 1.619345e-01 1.619345e-01 4.427e-01 0.08e-01 0.08e-01 +6.724329e+00 2.017300e-01 2.017300e-01 4.557e-01 0.09e-01 0.09e-01 +8.447464e+00 2.534240e-01 2.534240e-01 4.693e-01 0.09e-01 0.09e-01 +1.007952e+01 3.023855e-01 3.023855e-01 4.806e-01 0.10e-01 0.10e-01 +1.150694e+01 3.452080e-01 3.452080e-01 4.898e-01 0.10e-01 0.10e-01 +1.345653e+01 4.036955e-01 4.036955e-01 5.008e-01 0.10e-01 0.10e-01 +1.651347e+01 4.954045e-01 4.954045e-01 5.158e-01 0.11e-01 0.11e-01 +2.129430e+01 6.388290e-01 6.388290e-01 5.359e-01 0.12e-01 0.12e-01 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d02-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d02-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 5.885e-01 0.16e-01 0.16e-01 +3.896809e+00 1.169045e-01 1.169045e-01 6.755e-01 0.15e-01 0.15e-01 +5.397826e+00 1.619345e-01 1.619345e-01 7.231e-01 0.13e-01 0.13e-01 +6.724329e+00 2.017300e-01 2.017300e-01 7.538e-01 0.13e-01 0.13e-01 +8.447464e+00 2.534240e-01 2.534240e-01 7.867e-01 0.13e-01 0.13e-01 +1.007952e+01 3.023855e-01 3.023855e-01 8.113e-01 0.13e-01 0.13e-01 +1.150694e+01 3.452080e-01 3.452080e-01 8.317e-01 0.13e-01 0.13e-01 +1.345653e+01 4.036955e-01 4.036955e-01 8.558e-01 0.14e-01 0.14e-01 +1.651347e+01 4.954045e-01 4.954045e-01 8.892e-01 0.13e-01 0.13e-01 +2.129430e+01 6.388290e-01 6.388290e-01 9.332e-01 0.14e-01 0.14e-01 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d03-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d03-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 6.647e-01 0.22e-01 0.22e-01 +3.896809e+00 1.169045e-01 1.169045e-01 7.716e-01 0.22e-01 0.22e-01 +5.397826e+00 1.619345e-01 1.619345e-01 8.285e-01 0.19e-01 0.19e-01 +6.724329e+00 2.017300e-01 2.017300e-01 8.725e-01 0.20e-01 0.20e-01 +8.447464e+00 2.534240e-01 2.534240e-01 9.170e-01 0.20e-01 0.20e-01 +1.007952e+01 3.023855e-01 3.023855e-01 9.539e-01 0.20e-01 0.20e-01 +1.150694e+01 3.452080e-01 3.452080e-01 9.815e-01 0.20e-01 0.20e-01 +1.345653e+01 4.036955e-01 4.036955e-01 1.020e+00 0.21e-01 0.21e-01 +1.651347e+01 4.954045e-01 4.954045e-01 1.071e+00 0.21e-01 0.21e-01 +2.129430e+01 6.388290e-01 6.388290e-01 1.135e+00 0.22e-01 0.22e-01 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d04-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d04-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 6.113e-01 0.07e-01 0.07e-01 +3.896809e+00 1.169045e-01 1.169045e-01 6.869e-01 0.08e-01 0.08e-01 +5.397826e+00 1.619345e-01 1.619345e-01 7.299e-01 0.09e-01 0.09e-01 +6.724329e+00 2.017300e-01 2.017300e-01 7.563e-01 0.09e-01 0.09e-01 +8.447464e+00 2.534240e-01 2.534240e-01 7.900e-01 0.10e-01 0.10e-01 +1.007952e+01 3.023855e-01 3.023855e-01 8.155e-01 0.10e-01 0.10e-01 +1.150694e+01 3.452080e-01 3.452080e-01 8.350e-01 0.10e-01 0.10e-01 +1.345653e+01 4.036955e-01 4.036955e-01 8.612e-01 0.11e-01 0.11e-01 +1.651347e+01 4.954045e-01 4.954045e-01 8.915e-01 0.11e-01 0.11e-01 +2.129430e+01 6.388290e-01 6.388290e-01 9.367e-01 0.12e-01 0.12e-01 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d05-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d05-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 7.669e-01 0.32e-01 0.32e-01 +3.896809e+00 1.169045e-01 1.169045e-01 8.708e-01 0.26e-01 0.26e-01 +5.397826e+00 1.619345e-01 1.619345e-01 9.309e-01 0.22e-01 0.22e-01 +6.724329e+00 2.017300e-01 2.017300e-01 9.759e-01 0.24e-01 0.24e-01 +8.447464e+00 2.534240e-01 2.534240e-01 1.027e+00 0.03e+00 0.03e+00 +1.007952e+01 3.023855e-01 3.023855e-01 1.069e+00 0.03e+00 0.03e+00 +1.150694e+01 3.452080e-01 3.452080e-01 1.103e+00 0.03e+00 0.03e+00 +1.345653e+01 4.036955e-01 4.036955e-01 1.144e+00 0.03e+00 0.03e+00 +1.651347e+01 4.954045e-01 4.954045e-01 1.201e+00 0.03e+00 0.03e+00 +2.129430e+01 6.388290e-01 6.388290e-01 1.277e+00 0.03e+00 0.03e+00 +END YODA_SCATTER2D_V2 + + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d06-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d06-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 7.185e-01 0.245e-01 0.245e-01 +3.896809e+00 1.169045e-01 1.169045e-01 8.656e-01 0.283e-01 0.283e-01 +5.397826e+00 1.619345e-01 1.619345e-01 9.557e-01 0.292e-01 0.292e-01 +6.724329e+00 2.017300e-01 2.017300e-01 1.014e+00 0.031e+00 0.031e+00 +8.447464e+00 2.534240e-01 2.534240e-01 1.064e+00 0.033e+00 0.033e+00 +1.079323e+01 3.237970e-01 3.237970e-01 1.150e+00 0.035e+00 0.035e+00 +1.345653e+01 4.036955e-01 4.036955e-01 1.211e+00 0.037e+00 0.037e+00 +1.651347e+01 4.954045e-01 4.954045e-01 1.295e+00 0.035e+00 0.035e+00 +2.129430e+01 6.388290e-01 6.388290e-01 1.307e+00 0.043e+00 0.043e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d07-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d07-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 8.225e-01 0.374e-01 0.374e-01 +3.896809e+00 1.169045e-01 1.169045e-01 9.910e-01 0.268e-01 0.268e-01 +5.397826e+00 1.619345e-01 1.619345e-01 1.081e+00 0.031e+00 0.031e+00 +6.724329e+00 2.017300e-01 2.017300e-01 1.127e+00 0.033e+00 0.033e+00 +8.447464e+00 2.534240e-01 2.534240e-01 1.201e+00 0.034e+00 0.034e+00 +1.079323e+01 3.237970e-01 3.237970e-01 1.248e+00 0.030e+00 0.030e+00 +1.345653e+01 4.036955e-01 4.036955e-01 1.297e+00 0.036e+00 0.036e+00 +1.651347e+01 4.954045e-01 4.954045e-01 1.360e+00 0.034e+00 0.034e+00 +2.129430e+01 6.388290e-01 6.388290e-01 1.440e+00 0.037e+00 0.037e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d08-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d08-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 8.975e-01 0.634e-01 0.634e-01 +3.896809e+00 1.169045e-01 1.169045e-01 1.012e+00 0.054e+00 0.054e+00 +5.397826e+00 1.619345e-01 1.619345e-01 1.092e+00 0.048e+00 0.048e+00 +6.724329e+00 2.017300e-01 2.017300e-01 1.141e+00 0.048e+00 0.048e+00 +8.447464e+00 2.534240e-01 2.534240e-01 1.188e+00 0.044e+00 0.044e+00 +1.007952e+01 3.023855e-01 3.023855e-01 1.232e+00 0.042e+00 0.042e+00 +1.150694e+01 3.452080e-01 3.452080e-01 1.268e+00 0.037e+00 0.037e+00 +1.345653e+01 4.036955e-01 4.036955e-01 1.293e+00 0.037e+00 0.037e+00 +1.651347e+01 4.954045e-01 4.954045e-01 1.382e+00 0.035e+00 0.035e+00 +2.129430e+01 6.388290e-01 6.388290e-01 1.463e+00 0.036e+00 0.036e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d09-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d09-x01-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.890000e+00 1.400000e-01 1.400000e-01 1.125e+00 0.16e+00 0.16e+00 +6.060000e+00 1.900000e-01 1.900000e-01 1.283e+00 0.11e+00 0.11e+00 +8.990000e+00 2.700000e-01 2.700000e-01 1.465e+00 0.09e+00 0.09e+00 +1.248000e+01 3.700000e-01 3.700000e-01 1.561e+00 0.10e+00 0.10e+00 +1.747000e+01 5.200000e-01 5.200000e-01 1.645e+00 0.08e+00 0.08e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d01-x02-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d01-x02-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 12.100e-01 0.86e-01 0.09e-01 +3.896809e+00 1.169045e-01 1.169045e-01 19.887e-01 1.03e-01 0.08e-01 +5.397826e+00 1.619345e-01 1.619345e-01 2.699e+00 0.13e+00 0.13e+00 +6.724329e+00 2.017300e-01 2.017300e-01 3.326e+00 0.15e+00 0.15e+00 +8.447464e+00 2.534240e-01 2.534240e-01 4.138e+00 0.19e+00 0.19e+00 +1.007952e+01 3.023855e-01 3.023855e-01 4.892e+00 0.23e+00 0.23e+00 +1.150694e+01 3.452080e-01 3.452080e-01 5.554e+00 0.26e+00 0.26e+00 +1.345653e+01 4.036955e-01 4.036955e-01 6.459e+00 0.30e+00 0.30e+00 +1.651347e+01 4.954045e-01 4.954045e-01 7.878e+00 0.38e+00 0.38e+00 +2.129430e+01 6.388290e-01 6.388290e-01 10.035e+00 0.52e+00 0.52e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d02-x02-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d02-x02-y01 +Title: +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 1.402e-01 0.12e-01 0.12e-01 +3.896809e+00 1.169045e-01 1.169045e-01 2.429e-01 0.16e-01 0.16e-01 +5.397826e+00 1.619345e-01 1.619345e-01 3.383e-01 0.21e-01 0.21e-01 +6.724329e+00 2.017300e-01 2.017300e-01 4.231e-01 0.26e-01 0.26e-01 +8.447464e+00 2.534240e-01 2.534240e-01 5.337e-01 0.33e-01 0.33e-01 +1.007952e+01 3.023855e-01 3.023855e-01 6.388e-01 0.40e-01 0.40e-01 +1.150694e+01 3.452080e-01 3.452080e-01 7.308e-01 0.45e-01 0.45e-01 +1.345653e+01 4.036955e-01 4.036955e-01 8.590e-01 0.54e-01 0.54e-01 +1.651347e+01 4.954045e-01 4.954045e-01 1.062e+00 0.07e+00 0.07e+00 +2.129430e+01 6.388290e-01 6.388290e-01 1.374e+00 0.10e+00 0.10e+00 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d03-x02-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d03-x02-y01 +Title: Table 96 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 5.105e-02 0.83e-02 0.83e-02 +3.896809e+00 1.169045e-01 1.169045e-01 8.088e-02 1.14e-02 1.14e-02 +5.397826e+00 1.619345e-01 1.619345e-01 1.081e-01 0.14e-01 0.14e-01 +6.724329e+00 2.017300e-01 2.017300e-01 1.313e-01 0.18e-01 0.18e-01 +8.447464e+00 2.534240e-01 2.534240e-01 1.568e-01 0.21e-01 0.21e-01 +1.079323e+01 3.237970e-01 3.237970e-01 1.950e-01 0.28e-01 0.28e-01 +1.345653e+01 4.036955e-01 4.036955e-01 2.348e-01 0.35e-01 0.35e-01 +1.651347e+01 4.954045e-01 4.954045e-01 2.730e-01 0.40e-01 0.40e-01 +2.129430e+01 6.388290e-01 6.388290e-01 3.478e-01 0.58e-01 0.58e-01 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d04-x02-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d04-x02-y01 +Title: Table 96 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 1.729e-02 0.25e-02 0.25e-02 +3.897000e+00 1.430000e-01 1.430000e-01 2.905e-02 0.50e-02 0.50e-02 +5.398000e+00 1.730000e-01 1.730000e-01 3.988e-02 0.48e-02 0.48e-02 +6.724000e+00 2.070000e-01 2.070000e-01 5.178e-02 0.61e-02 0.61e-02 +8.447000e+00 2.540000e-01 2.540000e-01 6.536e-02 0.75e-02 0.75e-02 +1.079300e+01 3.240000e-01 3.240000e-01 8.711e-02 0.98e-02 0.98e-02 +1.345700e+01 4.040000e-01 4.040000e-01 1.098e-01 0.13e-01 0.13e-01 +1.651300e+01 4.950000e-01 4.950000e-01 1.311e-01 0.15e-01 0.15e-01 +2.129400e+01 6.390000e-01 6.390000e-01 1.697e-01 0.22e-01 0.22e-01 +END YODA_SCATTER2D_V2 + +# kpm / pi +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d01-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d01-x01-y02 +Title: Table 95 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 1.158913e-01 1.311075e-02 1.311075e-02 +3.896809e+00 1.169045e-01 1.169045e-01 1.221590e-01 1.112001e-02 1.112001e-02 +5.397826e+00 1.619345e-01 1.619345e-01 1.253697e-01 1.053767e-02 1.053767e-02 +6.724329e+00 2.017300e-01 2.017300e-01 1.272244e-01 1.067623e-02 1.067623e-02 +8.447464e+00 2.534240e-01 2.534240e-01 1.289670e-01 1.084226e-02 1.084226e-02 +1.007952e+01 3.023855e-01 3.023855e-01 1.305718e-01 1.104409e-02 1.104409e-02 +1.150694e+01 3.452080e-01 3.452080e-01 1.315863e-01 1.116727e-02 1.116727e-02 +1.345653e+01 4.036955e-01 4.036955e-01 1.329932e-01 1.140330e-02 1.140330e-02 +1.651347e+01 4.954045e-01 4.954045e-01 1.347539e-01 1.160346e-02 1.160346e-02 +2.129430e+01 6.388290e-01 6.388290e-01 1.369054e-01 1.268176e-02 1.268176e-02 +END YODA_SCATTER2D_V2 + +# kstar / pi +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d02-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d02-x01-y02 +Title: Table 96 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261159e+00 6.783450e-02 6.783450e-02 4.218826e-02 7.642046e-03 7.642046e-03 +3.896809e+00 1.169045e-01 1.169045e-01 4.066866e-02 6.487447e-03 6.487447e-03 +5.397826e+00 1.619345e-01 1.619345e-01 4.005038e-02 5.916134e-03 5.916134e-03 +6.724329e+00 2.017300e-01 2.017300e-01 3.946859e-02 5.947855e-03 5.947855e-03 +8.447464e+00 2.534240e-01 2.534240e-01 3.788867e-02 5.852208e-03 5.852208e-03 +1.079323e+01 3.237970e-01 3.237970e-01 3.745305e-02 5.485571e-03 5.485571e-03 +1.345653e+01 4.036955e-01 4.036955e-01 3.635241e-02 5.814801e-03 5.814801e-03 +1.651347e+01 4.954045e-01 4.954045e-01 3.464710e-02 5.214919e-03 5.214919e-03 +2.129430e+01 6.388290e-01 6.388290e-01 3.466082e-02 5.382984e-03 5.382984e-03 +END YODA_SCATTER2D_V2 + +# phi / pi +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_MEANPT_DIRECT/d03-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_MEANPT_DIRECT/d03-x01-y02 +Title: Table 97 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.261000e+00 1.170000e-01 1.170000e-01 1.428628e-02 2.233514e-03 2.233514e-03 +3.897000e+00 1.430000e-01 1.430000e-01 1.460563e-02 1.847901e-03 1.847901e-03 +5.398000e+00 1.730000e-01 1.730000e-01 1.477874e-02 1.831193e-03 1.831193e-03 +6.724000e+00 2.070000e-01 2.070000e-01 1.556897e-02 1.915336e-03 1.915336e-03 +8.447000e+00 2.540000e-01 2.540000e-01 1.579411e-02 1.934233e-03 1.934233e-03 +1.079300e+01 3.240000e-01 3.240000e-01 1.673327e-02 1.990169e-03 1.990169e-03 +1.345700e+01 4.040000e-01 4.040000e-01 1.700366e-02 2.109334e-03 2.109334e-03 +1.651300e+01 4.950000e-01 4.950000e-01 1.663973e-02 2.031010e-03 2.031010e-03 +2.129400e+01 6.390000e-01 6.390000e-01 1.691547e-02 2.237534e-03 2.237534e-03 +END YODA_SCATTER2D_V2 diff --git a/m4/libtool.m4 b/m4/libtool.m4 --- a/m4/libtool.m4 +++ b/m4/libtool.m4 @@ -1,8387 +1,7986 @@ # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # -# Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl -# Copyright (C) 2014 Free Software Foundation, Inc. -# This is free software; see the source for copying conditions. There is NO -# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - -# GNU Libtool is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of of the License, or -# (at your option) any later version. +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 # -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program or library that is built -# using GNU Libtool, you may include this file under the same -# distribution terms that you use for the rest of that program. +# This file is part of GNU Libtool. # -# GNU Libtool is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of +# GNU Libtool is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program. If not, see . +# along with GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) -# serial 58 LT_INIT +# serial 57 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], -[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed -LIBTOOL_DEPS=$ltmain +LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) -# _LT_PREPARE_CC_BASENAME -# ----------------------- -m4_defun([_LT_PREPARE_CC_BASENAME], [ -# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. -func_cc_basename () -{ - for cc_temp in @S|@*""; do - case $cc_temp in - compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; - distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; - \-*) ;; - *) break;; - esac - done - func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` -} -])# _LT_PREPARE_CC_BASENAME - - # _LT_CC_BASENAME(CC) # ------------------- -# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, -# but that macro is also expanded into generated libtool script, which -# arranges for $SED and $ECHO to be set by different means. +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], -[m4_require([_LT_PREPARE_CC_BASENAME])dnl -AC_REQUIRE([_LT_DECL_SED])dnl -AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl -func_cc_basename $1 -cc_basename=$func_cc_basename_result +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set -# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl -m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ -# See if we are running on zsh, and set the options that allow our +# See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. -if test -n "\${ZSH_VERSION+set}"; then +if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) -if test -n "${ZSH_VERSION+set}"; then +if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. - if test set != "${COLLECT_NAMES+set}"; then + if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes -# All known linkers require a '.a' archive for static linking (except MSVC, +# All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a -with_gnu_ld=$lt_cv_prog_gnu_ld - -old_CC=$CC -old_CFLAGS=$CFLAGS +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- -# Note that this code is called both from 'configure', and 'config.status' +# Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, -# 'config.status' has no value for ac_aux_dir unless we are using Automake, +# `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) -ltmain=$ac_aux_dir/ltmain.sh +ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS -# in macros and then make a single call at the end using the 'libtool' +# in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ -# Quote a variable value, and forward it to 'config.status' so that its -# declaration there will have the same value as in 'configure'. VARNAME +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl -available_tags='_LT_TAGS'dnl +available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables -# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations -# into 'config.status', and then the shell code to quote escape them in -# for loops in 'config.status'. Finally, any additional code accumulated +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) - eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the -# '#!' sequence but before initialization text begins. After this +# `#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF -test 0 = "$lt_write_fail" && chmod +x $1[]dnl +test $lt_write_fail = 0 && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ -'$as_me' creates a local libtool stub from the current configuration, +\`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." -while test 0 != $[#] +while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] -Try '$[0] --help' for more information.]) ;; +Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] -Try '$[0] --help' for more information.]) ;; +Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: -test yes = "$silent" && +test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ - # See if we are running on zsh, and set the options that allow our + # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. - if test -n "${ZSH_VERSION+set}"; then + if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi - cfgfile=${ofile}T + cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL -# Generated automatically by $as_me ($PACKAGE) $VERSION + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. - -# Provide generalized library-building support services. -# Written by Gordon Matzigkeit, 1996 - +# _LT_COPYING _LT_LIBTOOL_TAGS -# Configured defaults for sys_lib_dlsearch_path munging. -: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} - # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF - cat <<'_LT_EOF' >> "$cfgfile" - -# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE - -_LT_PREPARE_MUNGE_PATH_LIST -_LT_PREPARE_CC_BASENAME - -# ### END FUNCTIONS SHARED WITH CONFIGURE - -_LT_EOF - case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. -if test set != "${COLLECT_NAMES+set}"; then +if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) + _LT_PROG_REPLACE_SHELLFNS + mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no - if test -z "$LT_MULTI_MODULE"; then + if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. - elif test -f libconftest.dylib && test 0 = "$_lt_result"; then + elif test -f libconftest.dylib && test $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) - LDFLAGS=$save_LDFLAGS + LDFLAGS="$save_LDFLAGS" ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD - elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) - _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; - 10.[[012]][[,.]]*) - _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) - _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac - if test yes = "$lt_cv_apple_cc_single_mod"; then + if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi - if test yes = "$lt_cv_ld_exported_symbols_list"; then - _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else - _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi - if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - if test yes = "$lt_cv_ld_force_load"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in - ifort*|nagfor*) _lt_dar_can_shared=yes ;; + ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac - if test yes = "$_lt_dar_can_shared"; then + if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=func_echo_all - _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" - _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" - _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], -[ if test yes != "$lt_cv_apple_cc_single_mod"; then - _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" - _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl -if test set = "${lt_cv_aix_libpath+set}"; then +if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then - _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start -# of the generated configure script that will find a shell with a builtin -# printf (that we can use as an echo command). +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { - $ECHO "$*" + $ECHO "$*" } -case $ECHO in +case "$ECHO" in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], -[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], - [Search for dependent libraries within DIR (or the compiler's sysroot - if not specified).])], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= -case $with_sysroot in #( +case ${with_sysroot} in #( yes) - if test yes = "$GCC"; then + if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) - AC_MSG_RESULT([$with_sysroot]) + AC_MSG_RESULT([${with_sysroot}]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl -[dependent libraries, and where our libraries should be installed.])]) +[dependent libraries, and in which our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) -test no = "$enable_libtool_lock" || enable_libtool_lock=yes +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) - # Find out what ABI is being produced by ac_compile, and set mode - # options accordingly. + # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) - HPUX_IA64_MODE=32 + HPUX_IA64_MODE="32" ;; *ELF-64*) - HPUX_IA64_MODE=64 + HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. + # Find out which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then - if test yes = "$lt_cv_prog_gnu_ld"; then + if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; -mips64*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. - echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext - if AC_TRY_EVAL(ac_compile); then - emul=elf - case `/usr/bin/file conftest.$ac_objext` in - *32-bit*) - emul="${emul}32" - ;; - *64-bit*) - emul="${emul}64" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *MSB*) - emul="${emul}btsmip" - ;; - *LSB*) - emul="${emul}ltsmip" - ;; - esac - case `/usr/bin/file conftest.$ac_objext` in - *N32*) - emul="${emul}n32" - ;; - esac - LD="${LD-ld} -m $emul" - fi - rm -rf conftest* - ;; - -x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. Note that the listed cases only cover the - # situations where additional linker options are needed (such as when - # doing 32-bit compilation for a host where ld defaults to 64-bit, or - # vice versa); the common cases where no linker options are needed do - # not appear in the list. + # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) - case `/usr/bin/file conftest.o` in - *x86-64*) - LD="${LD-ld} -m elf32_x86_64" - ;; - *) - LD="${LD-ld} -m elf_i386" - ;; - esac + LD="${LD-ld} -m elf_i386" ;; - powerpc64le-*linux*) - LD="${LD-ld} -m elf32lppclinux" - ;; - powerpc64-*linux*) + ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; - powerpcle-*linux*) - LD="${LD-ld} -m elf64lppc" - ;; - powerpc-*linux*) + ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. - SAVE_CFLAGS=$CFLAGS + SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) - if test yes != "$lt_cv_cc_needs_belf"; then + if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf - CFLAGS=$SAVE_CFLAGS + CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) - # Find out what ABI is being produced by ac_compile, and set linker - # options accordingly. + # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in - i?86-*-solaris*|x86_64-*-solaris*) + i?86-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then - LD=${LD-ld}_sol2 + LD="${LD-ld}_sol2" fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac -need_locks=$enable_libtool_lock +need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) - if test 0 -eq "$ac_status"; then + if test "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) - if test 0 -ne "$ac_status"; then + if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) -if test no = "$lt_cv_ar_at_file"; then +if test "x$lt_cv_ar_at_file" = xno; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in - bitrig* | openbsd*) + openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext - lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment + lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) -if test yes = "[$]$2"; then +if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no - save_LDFLAGS=$LDFLAGS + save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* - LDFLAGS=$save_LDFLAGS + LDFLAGS="$save_LDFLAGS" ]) -if test yes = "[$]$2"; then +if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 - teststring=ABCD + teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; - bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` - if test -n "$lt_cv_sys_max_cmd_len" && \ - test undefined != "$lt_cv_sys_max_cmd_len"; then + if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. - for i in 1 2 3 4 5 6 7 8; do + for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. - while { test X`env echo "$teststring$teststring" 2>/dev/null` \ + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && - test 17 != "$i" # 1/2 MB should be enough + test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) -if test -n "$lt_cv_sys_max_cmd_len"; then +if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test yes = "$cross_compiling"; then : +if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif -/* When -fvisibility=hidden is used, assume the code has been annotated +/* When -fvisbility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ -#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF - if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl -if test yes != "$enable_dlopen"; then +if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) - lt_cv_dlopen=load_add_on + lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) - lt_cv_dlopen=LoadLibrary + lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) - lt_cv_dlopen=dlopen + lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) - # if libdl is installed we need to link against it + # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ - lt_cv_dlopen=dyld + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; - tpf*) - # Don't try to run any link tests for TPF. We know it's impossible - # because TPF is a cross-compiler, and we know how we open DSOs. - lt_cv_dlopen=dlopen - lt_cv_dlopen_libs= - lt_cv_dlopen_self=no - ;; - *) AC_CHECK_FUNC([shl_load], - [lt_cv_dlopen=shl_load], + [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], - [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], - [lt_cv_dlopen=dlopen], + [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], - [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], - [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac - if test no = "$lt_cv_dlopen"; then + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else enable_dlopen=no - else - enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) - save_CPPFLAGS=$CPPFLAGS - test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" - - save_LDFLAGS=$LDFLAGS + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" - save_LIBS=$LIBS + save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) - if test yes = "$lt_cv_dlopen_self"; then + if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi - CPPFLAGS=$save_CPPFLAGS - LDFLAGS=$save_LDFLAGS - LIBS=$save_LIBS + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) -hard_links=nottested -if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) - if test no = "$hard_links"; then - AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl -AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", - [Define to the sub-directory where libtool stores uninstalled libraries.]) +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || - test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. - if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one - ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && - test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) -if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || - test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no -elif test yes = "$shlibpath_overrides_runpath" || - test no = "$enable_shared"; then +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) - if test -n "$STRIP"; then + if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB -# _LT_PREPARE_MUNGE_PATH_LIST -# --------------------------- -# Make sure func_munge_path_list() is defined correctly. -m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], -[[# func_munge_path_list VARIABLE PATH -# ----------------------------------- -# VARIABLE is name of variable containing _space_ separated list of -# directories to be munged by the contents of PATH, which is string -# having a format: -# "DIR[:DIR]:" -# string "DIR[ DIR]" will be prepended to VARIABLE -# ":DIR[:DIR]" -# string "DIR[ DIR]" will be appended to VARIABLE -# "DIRP[:DIRP]::[DIRA:]DIRA" -# string "DIRP[ DIRP]" will be prepended to VARIABLE and string -# "DIRA[ DIRA]" will be appended to VARIABLE -# "DIR[:DIR]" -# VARIABLE will be replaced by "DIR[ DIR]" -func_munge_path_list () -{ - case x@S|@2 in - x) - ;; - *:) - eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" - ;; - x:*) - eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" - ;; - *::*) - eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" - eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" - ;; - *) - eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" - ;; - esac -} -]])# _LT_PREPARE_PATH_LIST - - # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl -m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ -if test yes = "$GCC"; then +if test "$GCC" = yes; then case $host_os in - darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; - *) lt_awk_arg='/^libraries:/' ;; + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; esac case $host_os in - mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; - *) lt_sed_strip_eq='s|=/|/|g' ;; + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it - # and add multilib dir if necessary... + # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= - lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` - # ...but if some path component already ends with the multilib dir we assume - # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). - case "$lt_multi_os_dir; $lt_search_path_spec " in - "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) - lt_multi_os_dir= - ;; - esac + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do - if test -d "$lt_sys_path$lt_multi_os_dir"; then - lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" - elif test -n "$lt_multi_os_dir"; then + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' -BEGIN {RS = " "; FS = "/|\n";} { - lt_foo = ""; - lt_count = 0; +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { - lt_foo = "/" $lt_i lt_foo; + lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ - $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= -shrext_cmds=.so +shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown -AC_ARG_VAR([LT_SYS_LIBRARY_PATH], -[User-defined run-time library search path.]) - case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname.a' + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='$libname$release$shared_ext$major' + soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # AIX 5 supports IA64 - library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with - # the line '#! .'. This would cause the generated library to - # depend on '.', always an invalid library. This was fixed in + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' - echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac - # Using Import Files as archive members, it is possible to support - # filename-based versioning of shared library archives on AIX. While - # this would work for both with and without runtime linking, it will - # prevent static linking of such archives. So we do filename-based - # shared library versioning with .so extension only, which is used - # when both runtime linking and shared linking is enabled. - # Unfortunately, runtime linking may impact performance, so we do - # not want this to be the default eventually. Also, we use the - # versioned .so libs for executables only if there is the -brtl - # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. - # To allow for filename-based versioning support, we need to create - # libNAME.so.V as an archive file, containing: - # *) an Import File, referring to the versioned filename of the - # archive as well as the shared archive member, telling the - # bitwidth (32 or 64) of that shared object, and providing the - # list of exported symbols of that shared object, eventually - # decorated with the 'weak' keyword - # *) the shared object with the F_LOADONLY flag set, to really avoid - # it being seen by the linker. - # At run time we better use the real file rather than another symlink, - # but for link time we create the symlink libNAME.so -> libNAME.so.V - - case $with_aix_soname,$aix_use_runtimelinking in - # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. - aix,yes) # traditional libtool - dynamic_linker='AIX unversionable lib.so' + if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - ;; - aix,no) # traditional AIX only - dynamic_linker='AIX lib.a[(]lib.so.V[)]' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - ;; - svr4,*) # full svr4 only - dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,yes) # both, prefer svr4 - dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" - library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' - # unpreferred sharedlib libNAME.a needs extra handling - postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' - postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' - # We do not specify a path in Import Files, so LIBPATH fires. - shlibpath_overrides_runpath=yes - ;; - *,no) # both, prefer aix - dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" - library_names_spec='$libname$release.a $libname.a' - soname_spec='$libname$release$shared_ext$major' - # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling - postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' - postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' - ;; - esac + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) - library_names_spec='$libname$shared_ext' + library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows - shrext_cmds=.dll + shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' - soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix - soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' - library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' - soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' - library_names_spec='$libname.dll.lib' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) - sys_lib_search_path_spec=$LIB + sys_lib_search_path_spec="$LIB" if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper - library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no - library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' - soname_spec='$libname$release$major$shared_ext' + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LIBRARY_PATH - shlibpath_overrides_runpath=no + shlibpath_overrides_runpath=yes sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' - if test 32 = "$HPUX_IA64_MODE"; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" - sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" - sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) - if test yes = "$lt_cv_prog_gnu_ld"; then + if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff" - sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; -linux*android*) - version_type=none # Android doesn't support versioned libraries. - need_lib_prefix=no - need_version=no - library_names_spec='$libname$release$shared_ext' - soname_spec='$libname$release$shared_ext' - finish_cmds= - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - - # This implies no fast_install, which is unacceptable. - # Some rework will be needed to allow for fast_install - # before this can be enabled. - hardcode_into_libs=yes - - dynamic_linker='Android linker' - # Don't embed -rpath directories since the linker doesn't support them. - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - ;; - # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) +linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes - # Ideally, we could use ldconfig to report *all* directores which are - # searched for libraries, however this is still not possible. Aside from not - # being certain /sbin/ldconfig is available, command - # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, - # even though it is searched at run-time. Try to do the best guess by - # appending ld.so.conf contents (and includes) to the search path. + # Add ABI-specific directories to the system library path. + sys_lib_dlsearch_path_spec="/lib64 /usr/lib64 /lib /usr/lib" + + # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` - sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec $lt_ld_extra" + fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; -netbsdelf*-gnu) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=no - hardcode_into_libs=yes - dynamic_linker='NetBSD ld.elf_so' - ;; - netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; -openbsd* | bitrig*) +openbsd*) version_type=sunos - sys_lib_dlsearch_path_spec=/usr/lib + sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then - need_version=no - else - need_version=yes - fi - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi ;; os2*) libname_spec='$name' - version_type=windows - shrext_cmds=.dll - need_version=no + shrext_cmds=".dll" need_lib_prefix=no - # OS/2 can only load a DLL with a base name of 8 characters or less. - soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; - v=$($ECHO $release$versuffix | tr -d .-); - n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); - $ECHO $n$v`$shared_ext' - library_names_spec='${libname}_dll.$libext' + library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' - shlibpath_var=BEGINLIBPATH - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - postinstall_cmds='base_file=`basename \$file`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname~ - if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then - eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; - fi' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $RM \$dlpath' + shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no - soname_spec='$libname$release$shared_ext$major' - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos - library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes - if test yes = "$with_gnu_ld"; then + if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) - if test -d /usr/nec; then + if test -d /usr/nec ;then version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' - soname_spec='$libname$shared_ext.$major' + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) - version_type=sco + version_type=freebsd-elf need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes - if test yes = "$with_gnu_ld"; then + if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor - library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' - soname_spec='$libname$release$shared_ext$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) -test no = "$dynamic_linker" && can_build_shared=no +test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" -if test yes = "$GCC"; then +if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi -if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then - sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi - -if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then - sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi -# remember unaugmented sys_lib_dlsearch_path content for libtool script decls... -configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec - -# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code -func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" - -# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool -configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH - _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) -_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], - [Detected run-time system search path for libraries]) -_LT_DECL([], [configure_time_lt_sys_library_path], [2], - [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- -# find a file program that can recognize shared library +# find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) - lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) - lt_save_MAGIC_CMD=$MAGIC_CMD - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do - IFS=$lt_save_ifs + IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. - if test -f "$ac_dir/$1"; then - lt_cv_path_MAGIC_CMD=$ac_dir/"$1" + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` - MAGIC_CMD=$lt_cv_path_MAGIC_CMD + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done - IFS=$lt_save_ifs - MAGIC_CMD=$lt_save_MAGIC_CMD + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) -MAGIC_CMD=$lt_cv_path_MAGIC_CMD +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- -# find a file program that can recognize a shared library +# find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], - [test no = "$withval" || with_gnu_ld=yes], + [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld -if test yes = "$GCC"; then +if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) - # gcc leaves a trailing carriage return, which upsets mingw + # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done - test -z "$LD" && LD=$ac_prog + test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac -elif test yes = "$with_gnu_ld"; then +elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do - IFS=$lt_save_ifs + IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then - lt_cv_path_LD=$ac_dir/$ac_prog + lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i -cat conftest.i conftest.i >conftest2.i -: ${lt_DD:=$DD} -AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], -[if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: -fi]) -rm -f conftest.i conftest2.i conftest.out]) -])# _LT_PATH_DD - - -# _LT_CMD_TRUNCATE -# ---------------- -# find command to truncate a binary pipe -m4_defun([_LT_CMD_TRUNCATE], -[m4_require([_LT_PATH_DD]) -AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], -[printf 0123456789abcdef0123456789abcdef >conftest.i -cat conftest.i conftest.i >conftest2.i -lt_cv_truncate_bin= -if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then - cmp -s conftest.i conftest.out \ - && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" -fi -rm -f conftest.i conftest2.i conftest.out -test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) -_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], - [Command to truncate a binary pipe]) -])# _LT_CMD_TRUNCATE - - # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. -# 'unknown' -- same as none, but documents that we really don't know. +# `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path -# that responds to the $file_magic_cmd with a given extended regex. -# If you have 'file' or equivalent on your system and you're not sure -# whether 'pass_all' will *always* work, you probably want this one. +# which responds to the $file_magic_cmd with a given extended regex. +# If you have `file' or equivalent on your system and you're not sure +# whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. - if ( file / ) >/dev/null 2>&1; then + # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. + if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. -linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) +linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; -netbsd* | netbsdelf*-gnu) +netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; -openbsd* | bitrig*) - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; -os2*) - lt_cv_deplibs_check_method=pass_all - ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. - lt_cv_path_NM=$NM + lt_cv_path_NM="$NM" else - lt_nm_to_check=${ac_tool_prefix}nm + lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do - lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do - IFS=$lt_save_ifs + IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. - tmp_nm=$ac_dir/$lt_tmp_nm - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. - # Adding the 'sed 1q' prevents false positives on HP-UX, which says: + # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file - # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty - case $build_os in - mingw*) lt_bad_file=conftest.nm/nofile ;; - *) lt_bad_file=/dev/null ;; - esac - case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in - *$lt_bad_file* | *'Invalid file or object type'*) + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" - break 2 + break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" - break 2 + break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done - IFS=$lt_save_ifs + IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) -if test no != "$lt_cv_path_NM"; then - NM=$lt_cv_path_NM +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) - case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in *COFF*) - DUMPBIN="$DUMPBIN -symbols -headers" + DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) - if test : != "$DUMPBIN"; then - NM=$DUMPBIN + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) - # two different shell functions defined in ltmain.sh; - # decide which one to use based on capabilities of $DLLTOOL + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib - lt_cv_sharedlib_from_linklib_cmd=$ECHO + lt_cv_sharedlib_from_linklib_cmd="$ECHO" ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) -if test yes != "$lt_cv_path_mainfest_tool"; then +if test "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL -# _LT_DLL_DEF_P([FILE]) -# --------------------- -# True iff FILE is a Windows DLL '.def' file. -# Keep in sync with func_dll_def_p in the libtool script -AC_DEFUN([_LT_DLL_DEF_P], -[dnl - test DEF = "`$SED -n dnl - -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace - -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments - -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl - -e q dnl Only consider the first "real" line - $1`" dnl -])# _LT_DLL_DEF_P - - # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM=-lm) + AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= -if test yes = "$GCC"; then +if test "$GCC" = yes; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac -if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Gets list of data symbols to import. - lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" - # Adjust the below global symbol transforms to fixup imported variables. - lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" - lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" - lt_c_name_lib_hook="\ - -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ - -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" -else - # Disable hooks by default. - lt_cv_sys_global_symbol_to_import= - lt_cdecl_hook= - lt_c_name_hook= - lt_c_name_lib_hook= -fi - # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. -lt_cv_sys_global_symbol_to_cdecl="sed -n"\ -$lt_cdecl_hook\ -" -e 's/^T .* \(.*\)$/extern int \1();/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address -lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ -$lt_c_name_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" - -# Transform an extracted symbol line into symbol name with lib prefix and -# symbol address. -lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ -$lt_c_name_lib_hook\ -" -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ -" -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ -" -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then - # Fake it for dumpbin and say T for any non-static function, - # D for any global variable and I for any imported variable. + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ -" /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ -" /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ -" /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ -" {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ -" {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ -" s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ -" s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ -#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE -/* DATA imports from DLLs on WIN32 can't be const, because runtime +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST -#elif defined __osf__ +#elif defined(__osf__) /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF - $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS - LIBS=conftstm.$ac_objext + LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" - if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. - if test yes = "$pipe_works"; then + if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) -_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], - [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) -_LT_DECL([nm_interface], [lt_cv_nm_interface], [1], - [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. - if test yes = "$GXX"; then + if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' - if test ia64 != "$host_cpu"; then + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) - # old Intel C++ for x86_64, which still supported -KPIC. + # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; - netbsd* | netbsdelf*-gnu) + netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ - if test yes = "$GCC"; then + if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but - # adding the '-m68020' flag to GCC prevents building anything better, - # like '-m68040'. + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; - darwin* | rhapsody*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' - case $cc_basename in - nagfor*) - # NAG Fortran compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) - case $host_os in - os2*) - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' - ;; - esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? - _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in - # old Intel for x86_64, which still supported -KPIC. + # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) - if test -d /usr/nec; then + if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in - # For platforms that do not support PIC, -DPIC is meaningless: + # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) - _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; - linux* | k*bsd*-gnu | gnu*) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ' (' and ')$', so one must not match beginning or - # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', - # as well as any symbol that contains 'd'. + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. - if test yes != "$GCC"; then + if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; - openbsd* | bitrig*) + openbsd*) with_gnu_ld=no ;; - linux* | k*bsd*-gnu | gnu*) - _LT_TAGVAR(link_all_deplibs, $1)=no - ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no - if test yes = "$with_gnu_ld"; then + if test "$with_gnu_ld" = yes; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi - if test yes = "$lt_use_gnu_ld_interface"; then + if test "$lt_use_gnu_ld_interface" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='$wl' + wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no - case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in + case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken - if test ia64 != "$host_cpu"; then + if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no - if test linux-dietlibc = "$host_os"; then + if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ - && test no = "$tmp_diet" + && test "$tmp_diet" = no then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; - nagfor*) # NAGFOR 5.3 - tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac - _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - - if test yes = "$supports_anon_versioning"; then + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in - tcc*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' - ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' - if test yes = "$supports_anon_versioning"; then + if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 -*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac - if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes - if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag= + no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to GNU nm, but means don't demangle to AIX nm. - # Without the "-l" option, or with the "-B" option, AIX nm treats - # weak defined symbols like other global defined symbols, whereas - # GNU nm marks them as "W". - # While the 'weak' keyword is ignored in the Export File, we need - # it in the Import File for the 'aix-soname' feature, so we have - # to replace the "-B" option with "-P" for AIX nm. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then - _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else - _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive + # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do - if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # traditional, no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - ;; - esac - - if test yes = "$GCC"; then + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` + collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag="$shared_flag "'$wl-G' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' else # not using gcc - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' else - shared_flag='$wl-bM:SRE' + shared_flag='${wl}-bM:SRE' fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else - if test ia64 = "$host_cpu"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' - if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared libraries. - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll + shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll + shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) - if test yes,no = "$GCC,$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) - if test yes,no = "$GCC,$with_gnu_ld"; then + if test "$GCC" = yes && test "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], - [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], - [save_LDFLAGS=$LDFLAGS - LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) - LDFLAGS=$save_LDFLAGS]) - if test yes = "$lt_cv_irix_exported_symbol"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi - _LT_TAGVAR(link_all_deplibs, $1)=no else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; - linux*) - case $cc_basename in - tcc*) - # Fabrice Bellard et al's Tiny C Compiler - _LT_TAGVAR(ld_shlibs, $1)=yes - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - ;; - esac - ;; - - netbsd* | netbsdelf*-gnu) + netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; - openbsd* | bitrig*) + openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes - if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) - if test yes = "$GCC"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag - if test yes = "$GCC"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' - if test yes = "$GCC"; then - wlarc='$wl' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' - _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) - wlarc='$wl' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. GCC discards it without '$wl', + # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) - if test yes = "$GCC"; then - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) - if test sequent = "$host_vendor"; then + if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not + # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' - if test yes = "$GCC"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac - if test sni = "$host_vendor"; then + if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) -test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - if test yes,yes = "$GCC,$enable_shared"; then + if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], - [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], - [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is - "absolute", i.e impossible to change by setting $shlibpath_var if the + "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to 'libtool'. +# the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl -lt_save_CC=$CC +lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB - # Report what library types will actually be built + # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no + test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test yes = "$enable_shared" && enable_static=no + test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes + test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP -CC=$lt_save_CC +CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write -# the compiler configuration to 'libtool'. +# the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl -if test -n "$CXX" && ( test no != "$CXX" && - ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || - (test g++ != "$CXX"))); then +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_caught_CXX_error"; then +if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately - if test yes = "$GXX"; then + if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi - if test yes = "$GXX"; then + if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. - if test yes = "$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) - wlarc='$wl' + wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' - no_entry_flag= + no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we - # have runtime linking enabled, and use it for executables. - # For shared libraries, we enable/disable runtime linking - # depending on the kind of the shared library created - - # when "with_aix_soname,aix_use_runtimelinking" is: - # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables - # "aix,yes" lib.so shared, rtl:yes, for executables - # lib.a static archive - # "both,no" lib.so.V(shr.o) shared, rtl:yes - # lib.a(lib.so.V) shared, rtl:no, for executables - # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a(lib.so.V) shared, rtl:no - # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables - # lib.a static archive + # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done - if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then - # With aix-soname=svr4, we create the lib.so.V shared archives only, - # so we don't have lib.a shared libs to link our executables. - # We have to force runtime linking in this case. - aix_use_runtimelinking=yes - LDFLAGS="$LDFLAGS -Wl,-brtl" - fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(file_list_spec, $1)='$wl-f,' - case $with_aix_soname,$aix_use_runtimelinking in - aix,*) ;; # no import file - svr4,* | *,yes) # use import file - # The Import File defines what to hardcode. - _LT_TAGVAR(hardcode_direct, $1)=no - _LT_TAGVAR(hardcode_direct_absolute, $1)=no - ;; - esac - - if test yes = "$GXX"; then + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ - collect2name=`$CC -print-prog-name=collect2` + collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' - if test yes = "$aix_use_runtimelinking"; then - shared_flag=$shared_flag' $wl-G' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' fi - # Need to ensure runtime linking is disabled for the traditional - # shared library, or the linker may eventually find shared libraries - # /with/ Import File - we do not want to mix them. - shared_flag_aix='-shared' - shared_flag_svr4='-shared $wl-G' else # not using gcc - if test ia64 = "$host_cpu"; then + if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else - if test yes = "$aix_use_runtimelinking"; then - shared_flag='$wl-G' + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' else - shared_flag='$wl-bM:SRE' + shared_flag='${wl}-bM:SRE' fi - shared_flag_aix='$wl-bM:SRE' - shared_flag_svr4='$wl-G' fi fi - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes - if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then + if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. - # The "-G" linker flag allows undefined symbols. - _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" - - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else - if test ia64 = "$host_cpu"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" - _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' - if test yes = "$with_gnu_ld"; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then # We only use this code for GNU lds that support --whole-archive. - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes - _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' - # -brtl affects multiple linker settings, -berok does not and is overridden later - compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' - if test svr4 != "$with_aix_soname"; then - # This is similar to how AIX traditionally builds its shared - # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' - fi - if test aix != "$with_aix_soname"; then - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' - else - # used by -dlpreopen to get the symbols - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' - fi - _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME - _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. - shrext_cmds=.dll + shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. - _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp "$export_symbols" "$output_objdir/$soname.def"; - echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; - else - $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; - fi~ - $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ - linknames=' + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ - lt_tool_outputfile="@TOOL_OUTPUT@"~ - case $lt_outputfile in - *.exe|*.EXE) ;; - *) - lt_outputfile=$lt_outputfile.exe - lt_tool_outputfile=$lt_tool_outputfile.exe - ;; - esac~ - func_to_tool_file "$lt_outputfile"~ - if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then - $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; - $RM "$lt_outputfile.manifest"; - fi' + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' - # If the export-symbols file already is a .def file, use it as - # is; otherwise, prepend EXPORTS... - _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then - cp $export_symbols $output_objdir/$soname.def; - else - echo EXPORTS > $output_objdir/$soname.def; - cat $export_symbols >> $output_objdir/$soname.def; - fi~ - $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; - os2*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' - _LT_TAGVAR(hardcode_minus_L, $1)=yes - _LT_TAGVAR(allow_undefined_flag, $1)=unsupported - shrext_cmds=.dll - _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ - $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ - $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ - $ECHO EXPORTS >> $output_objdir/$libname.def~ - prefix_cmds="$SED"~ - if test EXPORTS = "`$SED 1q $export_symbols`"; then - prefix_cmds="$prefix_cmds -e 1d"; - fi~ - prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ - cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ - $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ - emximp -o $lib $output_objdir/$libname.def' - _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' - _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes - ;; - dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; + gnu*) + ;; + haiku*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test yes = "$GXX"; then - _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) - if test yes = "$GXX"; then - if test no = "$with_gnu_ld"; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; - linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) + linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac - _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ - compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ - $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ - $RANLIB $oldlib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ - rm -rf $tpldir~ - $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ - $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' - _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' - if test yes = "$supports_anon_versioning"; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ - cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ - echo "local: *; };" >> $output_objdir/$libname.ver~ - $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; - openbsd* | bitrig*) + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' - _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. - _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' - - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' - _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ - echo "-hidden">> $lib.exp~ - $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ - $RM $lib.exp' + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) - if test yes,no = "$GXX,$with_gnu_ld"; then - _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' - _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, - # but understands '-z linker_flag'. + # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker - if test yes,no = "$GXX,$with_gnu_ld"; then - _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else - # g++ 2.7 appears to require '-G' NOT '-shared' on this + # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. - _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ - $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) - _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) - # Note: We CANNOT use -z defs as we might desire, because we do not + # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. - _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' - _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no - _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes - _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) - _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ - '"$_LT_TAGVAR(old_archive_cmds, $1)" + '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ - '"$_LT_TAGVAR(reload_cmds, $1)" + '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) - _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) - test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no - - _LT_TAGVAR(GCC, $1)=$GXX - _LT_TAGVAR(LD, $1)=$LD + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld -fi # test yes != "$_lt_caught_CXX_error" +fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { - case @S|@2 in - .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; - *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF - # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do - case $prev$p in + case ${prev}${p} in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. - if test x-L = "$p" || - test x-R = "$p"; then + if test $p = "-L" || + test $p = "-R"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac - if test no = "$pre_test_object_deps_done"; then - case $prev in + if test "$pre_test_object_deps_done" = no; then + case ${prev} in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then - _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else - _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then - _LT_TAGVAR(postdeps, $1)=$prev$p + _LT_TAGVAR(postdeps, $1)="${prev}${p}" else - _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi - if test no = "$pre_test_object_deps_done"; then + if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then - _LT_TAGVAR(predep_objects, $1)=$p + _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then - _LT_TAGVAR(postdep_objects, $1)=$p + _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then - _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. +# to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) -if test -z "$F77" || test no = "$F77"; then +if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_disable_F77"; then +if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC=$CC + lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no + test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test yes = "$enable_shared" && enable_static=no + test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes + test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)=$G77 - _LT_TAGVAR(LD, $1)=$LD + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC - CC=$lt_save_CC - CFLAGS=$lt_save_CFLAGS -fi # test yes != "$_lt_disable_F77" + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. +# to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) -if test -z "$FC" || test no = "$FC"; then +if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. -if test yes != "$_lt_disable_FC"; then +if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. - lt_save_CC=$CC + lt_save_CC="$CC" lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) - test no = "$can_build_shared" && enable_shared=no + test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) - test yes = "$enable_shared" && enable_static=no + test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) - if test ia64 != "$host_cpu"; then - case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in - yes,aix,yes) ;; # shared object as lib.so file only - yes,svr4,*) ;; # shared object as lib.so archive member only - yes,*) enable_static=no ;; # shared object in lib.a archive as well - esac + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. - test yes = "$enable_shared" || enable_static=yes + test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) - _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu - _LT_TAGVAR(LD, $1)=$LD + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS -fi # test yes != "$_lt_disable_FC" +fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. +# to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)=$LD +_LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. +# to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC -_LT_TAGVAR(LD, $1)=$LD +_LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG -# to write the compiler configuration to 'libtool'. +# to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests -lt_simple_link_test_code=$lt_simple_compile_test_code +lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. -lt_save_CC=$CC +lt_save_CC="$CC" lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) - test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do - test ! -f "$lt_ac_sed" && continue + test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough - test 10 -lt "$lt_ac_count" && break + test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` - if test "$lt_ac_count" -gt "$lt_ac_max"; then + if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], -[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- -# Determine what file name conversion functions should be used by +# Determine which file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/src/Core/AnalysisHandler.cc b/src/Core/AnalysisHandler.cc --- a/src/Core/AnalysisHandler.cc +++ b/src/Core/AnalysisHandler.cc @@ -1,575 +1,576 @@ // -*- C++ -*- #include "Rivet/Config/RivetCommon.hh" #include "Rivet/AnalysisHandler.hh" #include "Rivet/Analysis.hh" #include "Rivet/Tools/ParticleName.hh" #include "Rivet/Tools/BeamConstraint.hh" #include "Rivet/Tools/Logging.hh" #include "Rivet/Projections/Beam.hh" #include "YODA/IO.h" namespace Rivet { AnalysisHandler::AnalysisHandler(const string& runname) : _runname(runname), _eventcounter("/_EVTCOUNT"), _xs(NAN), _xserr(NAN), _initialised(false), _ignoreBeams(false), _dumpPeriod(0), _dumping(false) { } AnalysisHandler::~AnalysisHandler() { } Log& AnalysisHandler::getLog() const { return Log::getLog("Rivet.Analysis.Handler"); } void AnalysisHandler::init(const GenEvent& ge) { if (_initialised) throw UserError("AnalysisHandler::init has already been called: cannot re-initialize!"); setRunBeams(Rivet::beams(ge)); MSG_DEBUG("Initialising the analysis handler"); _eventcounter.reset(); // Check that analyses are beam-compatible, and remove those that aren't const size_t num_anas_requested = analysisNames().size(); vector anamestodelete; for (const AnaHandle a : _analyses) { if (!_ignoreBeams && !a->isCompatible(beams())) { //MSG_DEBUG(a->name() << " requires beams " << a->requiredBeams() << " @ " << a->requiredEnergies() << " GeV"); anamestodelete.push_back(a->name()); } } for (const string& aname : anamestodelete) { MSG_WARNING("Analysis '" << aname << "' is incompatible with the provided beams: removing"); removeAnalysis(aname); } if (num_anas_requested > 0 && analysisNames().empty()) { cerr << "All analyses were incompatible with the first event's beams\n" << "Exiting, since this probably wasn't intentional!" << endl; exit(1); } // Warn if any analysis' status is not unblemished for (const AnaHandle a : analyses()) { if (toUpper(a->status()) == "PRELIMINARY") { MSG_WARNING("Analysis '" << a->name() << "' is preliminary: be careful, it may change and/or be renamed!"); } else if (toUpper(a->status()) == "OBSOLETE") { MSG_WARNING("Analysis '" << a->name() << "' is obsolete: please update!"); } else if (toUpper(a->status()).find("UNVALIDATED") != string::npos) { MSG_WARNING("Analysis '" << a->name() << "' is unvalidated: be careful, it may be broken!"); } } // Initialize the remaining analyses for (AnaHandle a : _analyses) { MSG_DEBUG("Initialising analysis: " << a->name()); try { // Allow projection registration in the init phase onwards a->_allowProjReg = true; a->init(); //MSG_DEBUG("Checking consistency of analysis: " << a->name()); //a->checkConsistency(); } catch (const Error& err) { cerr << "Error in " << a->name() << "::init method: " << err.what() << endl; exit(1); } MSG_DEBUG("Done initialising analysis: " << a->name()); } _initialised = true; MSG_DEBUG("Analysis handler initialised"); } void AnalysisHandler::analyze(const GenEvent& ge) { // Call init with event as template if not already initialised if (!_initialised) init(ge); assert(_initialised); // Ensure that beam details match those from the first event (if we're checking beams) if ( !_ignoreBeams ) { const PdgIdPair beams = Rivet::beamIds(ge); const double sqrts = Rivet::sqrtS(ge); if (!compatible(beams, _beams) || !fuzzyEquals(sqrts, sqrtS())) { cerr << "Event beams mismatch: " << PID::toBeamsString(beams) << " @ " << sqrts/GeV << " GeV" << " vs. first beams " << this->beams() << " @ " << this->sqrtS()/GeV << " GeV" << endl; exit(1); } } // Create the Rivet event wrapper /// @todo Filter/normalize the event here Event event(ge); // Weights /// @todo Drop this / just report first weight when we support multiweight events _eventcounter.fill(event.weight()); MSG_DEBUG("Event #" << _eventcounter.numEntries() << " weight = " << event.weight()); // Cross-section #ifdef HEPMC_HAS_CROSS_SECTION if (ge.cross_section()) { _xs = ge.cross_section()->cross_section(); _xserr = ge.cross_section()->cross_section_error(); } #endif // Run the analyses for (AnaHandle a : _analyses) { MSG_TRACE("About to run analysis " << a->name()); try { a->analyze(event); } catch (const Error& err) { cerr << "Error in " << a->name() << "::analyze method: " << err.what() << endl; exit(1); } MSG_TRACE("Finished running analysis " << a->name()); } if ( _dumpPeriod > 0 && numEvents()%_dumpPeriod == 0 ) { MSG_INFO("Dumping intermediate results to " << _dumpFile << "."); _dumping = true; finalize(); _dumping = false; writeData(_dumpFile); } } void AnalysisHandler::analyze(const GenEvent* ge) { if (ge == nullptr) { MSG_ERROR("AnalysisHandler received null pointer to GenEvent"); //throw Error("AnalysisHandler received null pointer to GenEvent"); } analyze(*ge); } void AnalysisHandler::finalize() { if (!_initialised) return; // First we make copies of all analysis objects. map backupAOs; for (auto ao : getData(false, true) ) backupAOs[ao->path()] = AnalysisObjectPtr(ao->newclone()); // Now we run the (re-entrant) finalize() functions for all analyses. MSG_INFO("Finalising analyses"); for (AnaHandle a : _analyses) { a->setCrossSection(_xs); try { if ( !_dumping || a->info().reentrant() ) a->finalize(); else if ( _dumping ) MSG_INFO("Skipping periodic dump of " << a->name() << " as it is not declared reentrant."); } catch (const Error& err) { cerr << "Error in " << a->name() << "::finalize method: " << err.what() << endl; exit(1); } } // Now we copy all analysis objects to the list of finalized // ones, and restore the value to their original ones. _finalizedAOs.clear(); for ( auto ao : getData() ) _finalizedAOs.push_back(AnalysisObjectPtr(ao->newclone())); for ( auto ao : getData(false, true) ) { // TODO: This should be possible to do in a nicer way, with a flag etc. if (ao->path().find("/FINAL") != std::string::npos) continue; auto aoit = backupAOs.find(ao->path()); if ( aoit == backupAOs.end() ) { AnaHandle ana = analysis(split(ao->path(), "/")[0]); if ( ana ) ana->removeAnalysisObject(ao->path()); } else copyao(aoit->second, ao); } // Print out number of events processed const int nevts = _eventcounter.numEntries(); MSG_INFO("Processed " << nevts << " event" << (nevts != 1 ? "s" : "")); // // Delete analyses // MSG_DEBUG("Deleting analyses"); // _analyses.clear(); // Print out MCnet boilerplate cout << endl; cout << "The MCnet usage guidelines apply to Rivet: see http://www.montecarlonet.org/GUIDELINES" << endl; cout << "Please acknowledge plots made with Rivet analyses, and cite arXiv:1003.0694 (http://arxiv.org/abs/1003.0694)" << endl; } AnalysisHandler& AnalysisHandler::addAnalysis(const string& analysisname, std::map pars) { // Make an option handle. std::string parHandle = ""; for (map::iterator par = pars.begin(); par != pars.end(); ++par) { parHandle +=":"; parHandle += par->first + "=" + par->second; } return addAnalysis(analysisname + parHandle); } AnalysisHandler& AnalysisHandler::addAnalysis(const string& analysisname) { // Check for a duplicate analysis /// @todo Might we want to be able to run an analysis twice, with different params? /// Requires avoiding histo tree clashes, i.e. storing the histos on the analysis objects. string ananame = analysisname; vector anaopt = split(analysisname, ":"); if ( anaopt.size() > 1 ) ananame = anaopt[0]; AnaHandle analysis( AnalysisLoader::getAnalysis(ananame) ); if (analysis.get() != 0) { // < Check for null analysis. MSG_DEBUG("Adding analysis '" << analysisname << "'"); map opts; for ( int i = 1, N = anaopt.size(); i < N; ++i ) { vector opt = split(anaopt[i], "="); if ( opt.size() != 2 ) { MSG_WARNING("Error in option specification. Skipping analysis " << analysisname); return *this; } if ( !analysis->info().validOption(opt[0], opt[1]) ) { MSG_WARNING("Cannot set option '" << opt[0] << "' to '" << opt[1] << "'. Skipping analysis " << analysisname); return *this; } opts[opt[0]] = opt[1]; } for ( auto opt: opts) { analysis->_options[opt.first] = opt.second; analysis->_optstring += ":" + opt.first + "=" + opt.second; } for (const AnaHandle& a : _analyses) { if (a->name() == analysis->name() ) { MSG_WARNING("Analysis '" << analysisname << "' already registered: skipping duplicate"); return *this; } } analysis->_analysishandler = this; _analyses.insert(analysis); } else { MSG_WARNING("Analysis '" << analysisname << "' not found."); } // MSG_WARNING(_analyses.size()); // for (const AnaHandle& a : _analyses) MSG_WARNING(a->name()); return *this; } AnalysisHandler& AnalysisHandler::removeAnalysis(const string& analysisname) { std::shared_ptr toremove; for (const AnaHandle a : _analyses) { if (a->name() == analysisname) { toremove = a; break; } } if (toremove.get() != 0) { MSG_DEBUG("Removing analysis '" << analysisname << "'"); _analyses.erase(toremove); } return *this; } ///////////////////////////// void AnalysisHandler::addData(const std::vector& aos) { for (const AnalysisObjectPtr ao : aos) { string path = ao->path(); if ( path.substr(0, 5) != "/RAW/" ) { _orphanedPreloads.push_back(ao); continue; } path = path.substr(4); ao->setPath(path); if (path.size() > 1) { // path > "/" try { const string ananame = split(path, "/")[0]; AnaHandle a = analysis(ananame); a->addAnalysisObject(ao); /// @todo Need to statistically merge... } catch (const Error& e) { MSG_TRACE("Adding analysis object " << path << " to the list of orphans."); _orphanedPreloads.push_back(ao); } } } } void AnalysisHandler::stripOptions(AnalysisObjectPtr ao, const vector & delopts) const { string path = ao->path(); string ananame = split(path, "/")[0]; vector anaopts = split(ananame, ":"); for ( int i = 1, N = anaopts.size(); i < N; ++i ) for ( auto opt : delopts ) if ( opt == "*" || anaopts[i].find(opt + "=") == 0 ) path.replace(path.find(":" + anaopts[i]), (":" + anaopts[i]).length(), ""); ao->setPath(path); } void AnalysisHandler:: mergeYodas(const vector & aofiles, const vector & delopts, bool equiv) { vector< vector > aosv; vector xsecs; vector xsecerrs; vector sows; set ananames; _eventcounter.reset(); // First scan all files and extract analysis objects and add the // corresponding anayses.. for ( auto file : aofiles ) { Scatter1DPtr xsec; CounterPtr sow; // For each file make sure that cross section and sum-of-weights // objects are present and stor all RAW ones in a vector; vector aos; try { /// @todo Use new YODA SFINAE to fill the smart ptr vector directly vector aos_raw; YODA::read(file, aos_raw); for (AnalysisObject* aor : aos_raw) { AnalysisObjectPtr ao = AnalysisObjectPtr(aor); if ( ao->path().substr(0, 5) != "/RAW/" ) continue; ao->setPath(ao->path().substr(4)); if ( ao->path() == "/_XSEC" ) xsec = dynamic_pointer_cast(ao); else if ( ao->path() == "/_EVTCOUNT" ) sow = dynamic_pointer_cast(ao); else { stripOptions(ao, delopts); string ananame = split(ao->path(), "/")[0]; if ( ananames.insert(ananame).second ) addAnalysis(ananame); aos.push_back(ao); } } if ( !xsec || !sow ) { MSG_ERROR( "Error in AnalysisHandler::mergeYodas: The file " << file << " did not contain weights and cross section info."); exit(1); } xsecs.push_back(xsec->point(0).x()); sows.push_back(sow); xsecerrs.push_back(sqr(xsec->point(0).xErrAvg())); _eventcounter += *sow; sows.push_back(sow); aosv.push_back(aos); } catch (...) { //< YODA::ReadError& throw UserError("Unexpected error in reading file: " + file); } } // Now calculate the scale to be applied for all bins in a file // and get the common cross section and sum of weights. _xs = _xserr = 0.0; for ( int i = 0, N = sows.size(); i < N; ++i ) { double effnent = sows[i]->effNumEntries(); _xs += (equiv? effnent: 1.0)*xsecs[i]; _xserr += (equiv? sqr(effnent): 1.0)*xsecerrs[i]; } vector scales(sows.size(), 1.0); if ( equiv ) { _xs /= _eventcounter.effNumEntries(); _xserr = sqrt(_xserr)/_eventcounter.effNumEntries(); } else { _xserr = sqrt(_xserr); for ( int i = 0, N = sows.size(); i < N; ++i ) scales[i] = (_eventcounter.sumW()/sows[i]->sumW())*(xsecs[i]/_xs); } // Initialize the analyses allowing them to book analysis objects. for (AnaHandle a : _analyses) { MSG_DEBUG("Initialising analysis: " << a->name()); if ( !a->info().reentrant() ) MSG_WARNING("Analysis " << a->name() << " has not been validated to have " << "a reentrant finalize method. The result is unpredictable."); try { // Allow projection registration in the init phase onwards a->_allowProjReg = true; cerr << "sqrtS " << sqrtS() << endl; a->init(); //MSG_DEBUG("Checking consistency of analysis: " << a->name()); //a->checkConsistency(); } catch (const Error& err) { cerr << "Error in " << a->name() << "::init method: " << err.what() << endl; exit(1); } MSG_DEBUG("Done initialising analysis: " << a->name()); } _initialised = true; // Get a list of all anaysis objects to handle. map current; for ( auto ao : getData(false, true) ) current[ao->path()] = ao; // Go through all objects to be merged and add them to current // after appropriate scaling. for ( int i = 0, N = aosv.size(); i < N; ++i) for ( auto ao : aosv[i] ) { if ( ao->path() == "/_XSEC" || ao->path() == "_EVTCOUNT" ) continue; auto aoit = current.find(ao->path()); if ( aoit == current.end() ) { MSG_WARNING("" << ao->path() << " was not properly booked."); continue; } if ( !addaos(aoit->second, ao, scales[i]) ) MSG_WARNING("Cannot merge objects with path " << ao->path() <<" of type " << ao->annotation("Type") ); } // Now we can simply finalize() the analysis, leaving the // controlling program to write it out some yoda-file. finalize(); } void AnalysisHandler::readData(const string& filename) { vector aos; try { /// @todo Use new YODA SFINAE to fill the smart ptr vector directly vector aos_raw; YODA::read(filename, aos_raw); for (AnalysisObject* aor : aos_raw) aos.push_back(AnalysisObjectPtr(aor)); } catch (...) { //< YODA::ReadError& throw UserError("Unexpected error in reading file: " + filename); } if (!aos.empty()) addData(aos); + } vector AnalysisHandler:: getData(bool includeorphans, bool includetmps) const { vector rtn; // Event counter rtn.push_back( make_shared(_eventcounter) ); // Cross-section + err as scatter YODA::Scatter1D::Points pts; pts.insert(YODA::Point1D(_xs, _xserr)); rtn.push_back( make_shared(pts, "/_XSEC") ); // Analysis histograms for (const AnaHandle a : analyses()) { vector aos = a->analysisObjects(); // MSG_WARNING(a->name() << " " << aos.size()); for (const AnalysisObjectPtr ao : aos) { // Exclude paths from final write-out if they contain a "TMP" layer (i.e. matching "/TMP/") /// @todo This needs to be much more nuanced for re-entrant histogramming if ( !includetmps && ao->path().find("/TMP/" ) != string::npos) continue; rtn.push_back(ao); } } // Sort histograms alphanumerically by path before write-out sort(rtn.begin(), rtn.end(), [](AnalysisObjectPtr a, AnalysisObjectPtr b) {return a->path() < b->path();}); if ( includeorphans ) rtn.insert(rtn.end(), _orphanedPreloads.begin(), _orphanedPreloads.end()); return rtn; } void AnalysisHandler::writeData(const string& filename) const { vector out = _finalizedAOs; out.reserve(2*out.size()); vector aos = getData(false, true); for ( auto ao : aos ) { ao = AnalysisObjectPtr(ao->newclone()); ao->setPath("/RAW" + ao->path()); out.push_back(ao); } try { YODA::write(filename, out.begin(), out.end()); } catch (...) { //< YODA::WriteError& throw UserError("Unexpected error in writing file: " + filename); } } std::vector AnalysisHandler::analysisNames() const { std::vector rtn; for (AnaHandle a : _analyses) { rtn.push_back(a->name()); } return rtn; } const AnaHandle AnalysisHandler::analysis(const std::string& analysisname) const { for (const AnaHandle a : analyses()) if (a->name() == analysisname) return a; throw Error("No analysis named '" + analysisname + "' registered in AnalysisHandler"); } AnalysisHandler& AnalysisHandler::addAnalyses(const std::vector& analysisnames) { for (const string& aname : analysisnames) { //MSG_DEBUG("Adding analysis '" << aname << "'"); addAnalysis(aname); } return *this; } AnalysisHandler& AnalysisHandler::removeAnalyses(const std::vector& analysisnames) { for (const string& aname : analysisnames) { removeAnalysis(aname); } return *this; } bool AnalysisHandler::needCrossSection() const { bool rtn = false; for (const AnaHandle a : _analyses) { if (!rtn) rtn = a->needsCrossSection(); if (rtn) break; } return rtn; } AnalysisHandler& AnalysisHandler::setCrossSection(double xs, double xserr) { _xs = xs; _xserr = xserr; return *this; } bool AnalysisHandler::hasCrossSection() const { return (!std::isnan(crossSection())); } AnalysisHandler& AnalysisHandler::addAnalysis(Analysis* analysis) { analysis->_analysishandler = this; _analyses.insert(AnaHandle(analysis)); return *this; } PdgIdPair AnalysisHandler::beamIds() const { return Rivet::beamIds(beams()); } double AnalysisHandler::sqrtS() const { return Rivet::sqrtS(beams()); } void AnalysisHandler::setIgnoreBeams(bool ignore) { _ignoreBeams=ignore; } }