diff --git a/analyses/pluginALICE/ALICE_2016_I1394676.cc b/analyses/pluginALICE/ALICE_2016_I1394676.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1394676.cc @@ -0,0 +1,108 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/ChargedFinalState.hh" +#include "Rivet/Tools/AliceCommon.hh" +#include "Rivet/Projections/AliceCommon.hh" +namespace Rivet { + + + /// @brief ALICE PbPb at 2.76 TeV eta distributions, peripheral events. + class ALICE_2016_I1394676 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ALICE_2016_I1394676); + + + /// @name Analysis methods + //@{ + + /// Book histograms and initialise projections before the run + void init() { + // Initialise and register projections + // Centrality projection. + declareCentrality(ALICE::V0MMultiplicity(), "ALICE_2015_PBPBCentrality", + "V0M","V0M"); + // Projections for the 2-out-of-3 trigger. + declare(ChargedFinalState( (Cuts::eta > 2.8 && Cuts::eta < 5.1) && + Cuts::pT > 0.1*GeV), "VZERO1"); + declare(ChargedFinalState( (Cuts::eta > -3.7 && Cuts::eta < -1.7) && + Cuts::pT > 0.1*GeV), "VZERO2"); + declare(ChargedFinalState(Cuts::abseta < 1. && Cuts::pT > 0.15*GeV), + "SPD"); + + // Primary particles. + declare(ALICE::PrimaryParticles(Cuts::abseta < 5.6),"APRIM"); + + // The centrality bins and the corresponding histograms and sow counters. + centralityBins = { 40, 50, 60, 70, 80, 90 }; + vector< std::tuple > refData; + for (int i = 0, N = centralityBins.size(); i < N; ++i) { + histEta[centralityBins[i]] = bookHisto1D(1, 1, i + 1); + sow[centralityBins[i]] = bookCounter("sow_" + toString(i)); + } + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + const double weight = event.weight(); + // Trigger projections. + const ChargedFinalState& vz1 = + applyProjection(event,"VZERO1"); + const ChargedFinalState& vz2 = + applyProjection(event,"VZERO2"); + const ChargedFinalState& spd = + applyProjection(event,"SPD"); + int fwdTrig = (vz1.particles().size() > 0 ? 1 : 0); + int bwdTrig = (vz2.particles().size() > 0 ? 1 : 0); + int cTrig = (spd.particles().size() > 0 ? 1 : 0); + + if (fwdTrig + bwdTrig + cTrig < 2) vetoEvent; + const CentralityProjection& cent = apply(event,"V0M"); + double c = cent(); + // No centralities below 30 % + if (c < 30.) return; + // Find the correct centrality histogram + auto hItr = histEta.upper_bound(c); + if (hItr == histEta.end()) return; + // Find the correct sow. + auto sItr = sow.upper_bound(c); + if (sItr == sow.end()) return; + sItr->second->fill(weight); + + // Fill the histograms. + for ( const auto& p : + applyProjection(event,"APRIM").particles() ) + if(p.abscharge() > 0) hItr->second->fill(p.eta(), weight); + + } + + + /// Normalise histograms etc., after the run + void finalize() { + + for (int i = 0, N = centralityBins.size(); i < N; ++i) + histEta[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + + } + + //@} + + + /// @name Histograms + //@{ + vector centralityBins; + map histEta; + map sow; + //@} + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ALICE_2016_I1394676); + + +} diff --git a/analyses/pluginALICE/ALICE_2016_I1394676.info b/analyses/pluginALICE/ALICE_2016_I1394676.info new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1394676.info @@ -0,0 +1,43 @@ +Name: ALICE_2016_I1394676 +Year: 2016 +Summary: Charged particle production as function of centrality, peripheral events only, in PbPb collisions at 2.76 TeV. +Experiment: ALICE +Collider: LHC +InspireID: 1394676 +Status: UNVALIDATED +Authors: + - Christian Bierlich +References: +- Phys.Lett.B754(2016)373-385 +- DOI:10.1016/j.physletb.2015.12.082" +- arXiv:1509.07299 +RunInfo: PbPb minimum bias events. The analysis holds the Primary Particle definition, so don't limit decays on generator level. +NeedCrossSection: no +Beams: [1000822080, 1000822080] +# This is _total_ energy of beams, so this becomes 208*2760=574080 +Energies: [574080] +Options: + - cent=REF,GEN,IMP,USR +Description: + 'Charged particle pseudorapidity density in centrality classes 30-40, 40-50, 50-60, 60-70, 70-80, 80-90. Measurements cover a wide $\eta$ range from -3.5 to 5. Centrality classes refer to forward V0 spectrum, as also measured by ALICE, can be modified to use a user definition instead.' +BibKey: Adam:2015kda +BibTeX: '@article{Adam:2015kda, + author = "Adam, Jaroslav and others", + title = "{Centrality evolution of the charged-particle + pseudorapidity density over a broad pseudorapidity range + in Pb-Pb collisions at $\sqrt{s_{\rm NN}} =$ 2.76 TeV}", + collaboration = "ALICE", + journal = "Phys. Lett.", + volume = "B754", + year = "2016", + pages = "373-385", + doi = "10.1016/j.physletb.2015.12.082", + eprint = "1509.07299", + archivePrefix = "arXiv", + primaryClass = "nucl-ex", + reportNumber = "CERN-PH-EP-2015-257, ALICE-PUBLIC-2015-010", + SLACcitation = "%%CITATION = ARXIV:1509.07299;%%" +}' +ToDo: + - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-) + diff --git a/analyses/pluginALICE/ALICE_2016_I1394676.plot b/analyses/pluginALICE/ALICE_2016_I1394676.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1394676.plot @@ -0,0 +1,8 @@ +# BEGIN PLOT /ALICE_2016_I1394676/d01-x01-y01 +#Title=[Uncomment and insert title for histogram d01-x01-y01 here] +#XLabel=[Uncomment and insert x-axis label for histogram d01-x01-y01 here] +#YLabel=[Uncomment and 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_2016_I1394676.yoda b/analyses/pluginALICE/ALICE_2016_I1394676.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1394676.yoda @@ -0,0 +1,340 @@ +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y01 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 3.950000e+02 1.800000e+01 1.800000e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 4.100000e+02 1.800000e+01 1.800000e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 4.220000e+02 1.900000e+01 1.900000e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 4.370000e+02 2.000000e+01 2.000000e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 4.470000e+02 2.000000e+01 2.000000e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 4.550000e+02 2.000000e+01 2.000000e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 4.610000e+02 2.000000e+01 2.000000e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 4.570000e+02 1.300000e+01 1.300000e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 4.560000e+02 1.300000e+01 1.300000e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 4.510000e+02 1.300000e+01 1.300000e+01 +-8.750000e-01 1.150000e-01 1.150000e-01 4.460000e+02 1.300000e+01 1.300000e+01 +-6.250000e-01 1.150000e-01 1.150000e-01 4.340000e+02 1.200000e+01 1.200000e+01 +-3.750000e-01 1.150000e-01 1.150000e-01 4.280000e+02 1.100000e+01 1.100000e+01 +-1.225000e-01 1.175000e-01 1.175000e-01 4.220000e+02 1.100000e+01 1.100000e+01 +1.225000e-01 1.175000e-01 1.175000e-01 4.220000e+02 1.100000e+01 1.100000e+01 +3.750000e-01 1.150000e-01 1.150000e-01 4.280000e+02 1.100000e+01 1.100000e+01 +6.250000e-01 1.150000e-01 1.150000e-01 4.340000e+02 1.200000e+01 1.200000e+01 +8.750000e-01 1.150000e-01 1.150000e-01 4.460000e+02 1.300000e+01 1.300000e+01 +1.125000e+00 1.250000e-01 1.250000e-01 4.510000e+02 1.300000e+01 1.300000e+01 +1.375000e+00 1.250000e-01 1.250000e-01 4.560000e+02 1.300000e+01 1.300000e+01 +1.625000e+00 1.250000e-01 1.250000e-01 4.570000e+02 1.300000e+01 1.300000e+01 +1.875000e+00 1.250000e-01 1.250000e-01 4.610000e+02 2.000000e+01 2.000000e+01 +2.125000e+00 1.250000e-01 1.250000e-01 4.550000e+02 2.000000e+01 2.000000e+01 +2.375000e+00 1.250000e-01 1.250000e-01 4.470000e+02 2.000000e+01 2.000000e+01 +2.625000e+00 1.250000e-01 1.250000e-01 4.370000e+02 2.000000e+01 2.000000e+01 +2.875000e+00 1.250000e-01 1.250000e-01 4.220000e+02 1.900000e+01 1.900000e+01 +3.125000e+00 1.250000e-01 1.250000e-01 4.100000e+02 1.800000e+01 1.800000e+01 +3.375000e+00 1.250000e-01 1.250000e-01 3.950000e+02 1.800000e+01 1.800000e+01 +3.625000e+00 1.250000e-01 1.250000e-01 3.610000e+02 2.500000e+01 2.400000e+01 +3.875000e+00 1.250000e-01 1.250000e-01 3.420000e+02 2.300000e+01 2.300000e+01 +4.125000e+00 1.250000e-01 1.250000e-01 3.200000e+02 2.200000e+01 2.100000e+01 +4.375000e+00 1.250000e-01 1.250000e-01 3.010000e+02 2.000000e+01 2.000000e+01 +4.625000e+00 1.250000e-01 1.250000e-01 2.830000e+02 1.900000e+01 1.900000e+01 +4.875000e+00 1.250000e-01 1.250000e-01 2.650000e+02 1.800000e+01 1.700000e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y02 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y02 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 2.460000e+02 1.100000e+01 1.100000e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 2.550000e+02 1.100000e+01 1.100000e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 2.620000e+02 1.200000e+01 1.200000e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 2.710000e+02 1.200000e+01 1.200000e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 2.760000e+02 1.200000e+01 1.200000e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 2.800000e+02 1.300000e+01 1.300000e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 2.830000e+02 1.200000e+01 1.200000e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 2.786000e+02 8.200000e+00 8.200000e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 2.792000e+02 8.200000e+00 8.200000e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 2.765000e+02 8.100000e+00 8.100000e+00 +-8.750000e-01 1.150000e-01 1.150000e-01 2.699000e+02 7.900000e+00 7.900000e+00 +-6.250000e-01 1.150000e-01 1.150000e-01 2.669000e+02 7.300000e+00 7.300000e+00 +-3.750000e-01 1.150000e-01 1.150000e-01 2.618000e+02 6.500000e+00 6.500000e+00 +-1.225000e-01 1.175000e-01 1.175000e-01 2.591000e+02 6.500000e+00 6.500000e+00 +1.225000e-01 1.175000e-01 1.175000e-01 2.591000e+02 6.500000e+00 6.500000e+00 +3.750000e-01 1.150000e-01 1.150000e-01 2.618000e+02 6.500000e+00 6.500000e+00 +6.250000e-01 1.150000e-01 1.150000e-01 2.669000e+02 7.300000e+00 7.300000e+00 +8.750000e-01 1.150000e-01 1.150000e-01 2.699000e+02 7.900000e+00 7.900000e+00 +1.125000e+00 1.250000e-01 1.250000e-01 2.765000e+02 8.100000e+00 8.100000e+00 +1.375000e+00 1.250000e-01 1.250000e-01 2.792000e+02 8.200000e+00 8.200000e+00 +1.625000e+00 1.250000e-01 1.250000e-01 2.786000e+02 8.200000e+00 8.200000e+00 +1.875000e+00 1.250000e-01 1.250000e-01 2.830000e+02 1.200000e+01 1.200000e+01 +2.125000e+00 1.250000e-01 1.250000e-01 2.800000e+02 1.300000e+01 1.300000e+01 +2.375000e+00 1.250000e-01 1.250000e-01 2.760000e+02 1.200000e+01 1.200000e+01 +2.625000e+00 1.250000e-01 1.250000e-01 2.710000e+02 1.200000e+01 1.200000e+01 +2.875000e+00 1.250000e-01 1.250000e-01 2.620000e+02 1.200000e+01 1.200000e+01 +3.125000e+00 1.250000e-01 1.250000e-01 2.550000e+02 1.100000e+01 1.100000e+01 +3.375000e+00 1.250000e-01 1.250000e-01 2.460000e+02 1.100000e+01 1.100000e+01 +3.625000e+00 1.250000e-01 1.250000e-01 2.250000e+02 1.500000e+01 1.500000e+01 +3.875000e+00 1.250000e-01 1.250000e-01 2.130000e+02 1.400000e+01 1.400000e+01 +4.125000e+00 1.250000e-01 1.250000e-01 2.000000e+02 1.400000e+01 1.300000e+01 +4.375000e+00 1.250000e-01 1.250000e-01 1.880000e+02 1.300000e+01 1.200000e+01 +4.625000e+00 1.250000e-01 1.250000e-01 1.770000e+02 1.200000e+01 1.200000e+01 +4.875000e+00 1.250000e-01 1.250000e-01 1.670000e+02 1.100000e+01 1.100000e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y03 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y03 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.429000e+02 6.400000e+00 6.400000e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 1.479000e+02 6.700000e+00 6.700000e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 1.520000e+02 6.900000e+00 6.900000e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 1.563000e+02 7.000000e+00 7.000000e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 1.586000e+02 7.200000e+00 7.200000e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 1.603000e+02 7.200000e+00 7.200000e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 1.618000e+02 7.200000e+00 7.200000e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 1.603000e+02 4.700000e+00 4.700000e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 1.591000e+02 4.700000e+00 4.700000e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 1.570000e+02 4.600000e+00 4.600000e+00 +-8.750000e-01 1.150000e-01 1.150000e-01 1.532000e+02 4.500000e+00 4.500000e+00 +-6.250000e-01 1.150000e-01 1.150000e-01 1.514000e+02 4.100000e+00 4.100000e+00 +-3.750000e-01 1.150000e-01 1.150000e-01 1.480000e+02 3.600000e+00 3.600000e+00 +-1.225000e-01 1.175000e-01 1.175000e-01 1.471000e+02 3.600000e+00 3.600000e+00 +1.225000e-01 1.175000e-01 1.175000e-01 1.471000e+02 3.600000e+00 3.600000e+00 +3.750000e-01 1.150000e-01 1.150000e-01 1.480000e+02 3.600000e+00 3.600000e+00 +6.250000e-01 1.150000e-01 1.150000e-01 1.514000e+02 4.100000e+00 4.100000e+00 +8.750000e-01 1.150000e-01 1.150000e-01 1.532000e+02 4.500000e+00 4.500000e+00 +1.125000e+00 1.250000e-01 1.250000e-01 1.570000e+02 4.600000e+00 4.600000e+00 +1.375000e+00 1.250000e-01 1.250000e-01 1.591000e+02 4.700000e+00 4.700000e+00 +1.625000e+00 1.250000e-01 1.250000e-01 1.603000e+02 4.700000e+00 4.700000e+00 +1.875000e+00 1.250000e-01 1.250000e-01 1.618000e+02 7.200000e+00 7.200000e+00 +2.125000e+00 1.250000e-01 1.250000e-01 1.603000e+02 7.200000e+00 7.200000e+00 +2.375000e+00 1.250000e-01 1.250000e-01 1.586000e+02 7.200000e+00 7.200000e+00 +2.625000e+00 1.250000e-01 1.250000e-01 1.563000e+02 7.000000e+00 7.000000e+00 +2.875000e+00 1.250000e-01 1.250000e-01 1.520000e+02 6.900000e+00 6.900000e+00 +3.125000e+00 1.250000e-01 1.250000e-01 1.479000e+02 6.700000e+00 6.700000e+00 +3.375000e+00 1.250000e-01 1.250000e-01 1.429000e+02 6.400000e+00 6.400000e+00 +3.625000e+00 1.250000e-01 1.250000e-01 1.309000e+02 8.900000e+00 8.600000e+00 +3.875000e+00 1.250000e-01 1.250000e-01 1.240000e+02 8.400000e+00 8.100000e+00 +4.125000e+00 1.250000e-01 1.250000e-01 1.166000e+02 7.900000e+00 7.700000e+00 +4.375000e+00 1.250000e-01 1.250000e-01 1.102000e+02 7.500000e+00 7.200000e+00 +4.625000e+00 1.250000e-01 1.250000e-01 1.042000e+02 7.100000e+00 6.800000e+00 +4.875000e+00 1.250000e-01 1.250000e-01 9.840000e+01 6.700000e+00 6.500000e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y04 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y04 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 7.610000e+01 3.400000e+00 3.400000e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 7.850000e+01 3.500000e+00 3.500000e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 8.000000e+01 3.600000e+00 3.600000e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 8.180000e+01 3.700000e+00 3.700000e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 8.310000e+01 3.700000e+00 3.700000e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 8.350000e+01 3.800000e+00 3.800000e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 8.430000e+01 3.800000e+00 3.800000e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 8.030000e+01 2.400000e+00 2.400000e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 8.190000e+01 2.500000e+00 2.500000e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 8.170000e+01 2.500000e+00 2.500000e+00 +-8.750000e-01 1.150000e-01 1.150000e-01 7.890000e+01 2.400000e+00 2.400000e+00 +-6.250000e-01 1.150000e-01 1.150000e-01 7.750000e+01 2.100000e+00 2.100000e+00 +-3.750000e-01 1.150000e-01 1.150000e-01 7.580000e+01 1.900000e+00 1.900000e+00 +-1.225000e-01 1.175000e-01 1.175000e-01 7.470000e+01 1.800000e+00 1.800000e+00 +1.225000e-01 1.175000e-01 1.175000e-01 7.470000e+01 1.800000e+00 1.800000e+00 +3.750000e-01 1.150000e-01 1.150000e-01 7.580000e+01 1.900000e+00 1.900000e+00 +6.250000e-01 1.150000e-01 1.150000e-01 7.750000e+01 2.100000e+00 2.100000e+00 +8.750000e-01 1.150000e-01 1.150000e-01 7.890000e+01 2.400000e+00 2.400000e+00 +1.125000e+00 1.250000e-01 1.250000e-01 8.170000e+01 2.500000e+00 2.500000e+00 +1.375000e+00 1.250000e-01 1.250000e-01 8.190000e+01 2.500000e+00 2.500000e+00 +1.625000e+00 1.250000e-01 1.250000e-01 8.030000e+01 2.400000e+00 2.400000e+00 +1.875000e+00 1.250000e-01 1.250000e-01 8.430000e+01 3.800000e+00 3.800000e+00 +2.125000e+00 1.250000e-01 1.250000e-01 8.350000e+01 3.800000e+00 3.800000e+00 +2.375000e+00 1.250000e-01 1.250000e-01 8.310000e+01 3.700000e+00 3.700000e+00 +2.625000e+00 1.250000e-01 1.250000e-01 8.180000e+01 3.700000e+00 3.700000e+00 +2.875000e+00 1.250000e-01 1.250000e-01 8.000000e+01 3.600000e+00 3.600000e+00 +3.125000e+00 1.250000e-01 1.250000e-01 7.850000e+01 3.500000e+00 3.500000e+00 +3.375000e+00 1.250000e-01 1.250000e-01 7.610000e+01 3.400000e+00 3.400000e+00 +3.625000e+00 1.250000e-01 1.250000e-01 6.940000e+01 4.700000e+00 4.600000e+00 +3.875000e+00 1.250000e-01 1.250000e-01 6.600000e+01 4.500000e+00 4.300000e+00 +4.125000e+00 1.250000e-01 1.250000e-01 6.240000e+01 4.200000e+00 4.100000e+00 +4.375000e+00 1.250000e-01 1.250000e-01 5.910000e+01 4.000000e+00 3.900000e+00 +4.625000e+00 1.250000e-01 1.250000e-01 5.630000e+01 3.800000e+00 3.700000e+00 +4.875000e+00 1.250000e-01 1.250000e-01 5.360000e+01 3.600000e+00 3.500000e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y05 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y05 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 3.520000e+01 1.600000e+00 1.600000e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 3.610000e+01 1.600000e+00 1.600000e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 3.670000e+01 1.700000e+00 1.700000e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 3.760000e+01 1.700000e+00 1.700000e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 3.770000e+01 1.700000e+00 1.700000e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 3.790000e+01 1.700000e+00 1.700000e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 3.800000e+01 1.700000e+00 1.700000e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 3.830000e+01 1.300000e+00 1.300000e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 3.830000e+01 1.200000e+00 1.200000e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 3.690000e+01 1.200000e+00 1.200000e+00 +-8.750000e-01 1.150000e-01 1.150000e-01 3.700000e+01 1.200000e+00 1.200000e+00 +-6.250000e-01 1.150000e-01 1.150000e-01 3.530000e+01 1.000000e+00 1.000000e+00 +-3.750000e-01 1.150000e-01 1.150000e-01 3.481000e+01 8.600000e-01 8.600000e-01 +-1.225000e-01 1.175000e-01 1.175000e-01 3.482000e+01 8.600000e-01 8.600000e-01 +1.225000e-01 1.175000e-01 1.175000e-01 3.482000e+01 8.600000e-01 8.600000e-01 +3.750000e-01 1.150000e-01 1.150000e-01 3.481000e+01 8.600000e-01 8.600000e-01 +6.250000e-01 1.150000e-01 1.150000e-01 3.530000e+01 1.000000e+00 1.000000e+00 +8.750000e-01 1.150000e-01 1.150000e-01 3.700000e+01 1.200000e+00 1.200000e+00 +1.125000e+00 1.250000e-01 1.250000e-01 3.690000e+01 1.200000e+00 1.200000e+00 +1.375000e+00 1.250000e-01 1.250000e-01 3.830000e+01 1.200000e+00 1.200000e+00 +1.625000e+00 1.250000e-01 1.250000e-01 3.830000e+01 1.300000e+00 1.300000e+00 +1.875000e+00 1.250000e-01 1.250000e-01 3.800000e+01 1.700000e+00 1.700000e+00 +2.125000e+00 1.250000e-01 1.250000e-01 3.790000e+01 1.700000e+00 1.700000e+00 +2.375000e+00 1.250000e-01 1.250000e-01 3.770000e+01 1.700000e+00 1.700000e+00 +2.625000e+00 1.250000e-01 1.250000e-01 3.760000e+01 1.700000e+00 1.700000e+00 +2.875000e+00 1.250000e-01 1.250000e-01 3.670000e+01 1.700000e+00 1.700000e+00 +3.125000e+00 1.250000e-01 1.250000e-01 3.610000e+01 1.600000e+00 1.600000e+00 +3.375000e+00 1.250000e-01 1.250000e-01 3.520000e+01 1.600000e+00 1.600000e+00 +3.625000e+00 1.250000e-01 1.250000e-01 3.230000e+01 2.200000e+00 2.100000e+00 +3.875000e+00 1.250000e-01 1.250000e-01 3.050000e+01 2.100000e+00 2.000000e+00 +4.125000e+00 1.250000e-01 1.250000e-01 2.900000e+01 2.000000e+00 1.900000e+00 +4.375000e+00 1.250000e-01 1.250000e-01 2.770000e+01 1.900000e+00 1.800000e+00 +4.625000e+00 1.250000e-01 1.250000e-01 2.660000e+01 1.800000e+00 1.800000e+00 +4.875000e+00 1.250000e-01 1.250000e-01 2.520000e+01 1.700000e+00 1.700000e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d01-x01-y06 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d01-x01-y06 +Title: doi:10.17182/hepdata.70834.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.392000e+01 6.300000e-01 6.300000e-01 +-3.125000e+00 1.250000e-01 1.250000e-01 1.431000e+01 6.500000e-01 6.500000e-01 +-2.875000e+00 1.250000e-01 1.250000e-01 1.444000e+01 6.500000e-01 6.500000e-01 +-2.625000e+00 1.250000e-01 1.250000e-01 1.467000e+01 6.600000e-01 6.600000e-01 +-2.375000e+00 1.250000e-01 1.250000e-01 1.461000e+01 6.600000e-01 6.600000e-01 +-2.125000e+00 1.250000e-01 1.250000e-01 1.458000e+01 6.600000e-01 6.600000e-01 +-1.875000e+00 1.250000e-01 1.250000e-01 1.474000e+01 6.700000e-01 6.700000e-01 +-1.625000e+00 1.250000e-01 1.250000e-01 1.451000e+01 5.500000e-01 5.500000e-01 +-1.375000e+00 1.250000e-01 1.250000e-01 1.432000e+01 5.500000e-01 5.500000e-01 +-1.125000e+00 1.250000e-01 1.250000e-01 1.480000e+01 5.600000e-01 5.600000e-01 +-8.750000e-01 1.150000e-01 1.150000e-01 1.418000e+01 5.400000e-01 5.400000e-01 +-6.250000e-01 1.150000e-01 1.150000e-01 1.372000e+01 4.400000e-01 4.400000e-01 +-3.750000e-01 1.150000e-01 1.150000e-01 1.353000e+01 3.500000e-01 3.500000e-01 +-1.225000e-01 1.175000e-01 1.175000e-01 1.340000e+01 3.500000e-01 3.500000e-01 +1.225000e-01 1.175000e-01 1.175000e-01 1.340000e+01 3.500000e-01 3.500000e-01 +3.750000e-01 1.150000e-01 1.150000e-01 1.353000e+01 3.500000e-01 3.500000e-01 +6.250000e-01 1.150000e-01 1.150000e-01 1.372000e+01 4.400000e-01 4.400000e-01 +8.750000e-01 1.150000e-01 1.150000e-01 1.418000e+01 5.400000e-01 5.400000e-01 +1.125000e+00 1.250000e-01 1.250000e-01 1.480000e+01 5.600000e-01 5.600000e-01 +1.375000e+00 1.250000e-01 1.250000e-01 1.432000e+01 5.500000e-01 5.500000e-01 +1.625000e+00 1.250000e-01 1.250000e-01 1.451000e+01 5.500000e-01 5.500000e-01 +1.875000e+00 1.250000e-01 1.250000e-01 1.474000e+01 6.700000e-01 6.700000e-01 +2.125000e+00 1.250000e-01 1.250000e-01 1.458000e+01 6.600000e-01 6.600000e-01 +2.375000e+00 1.250000e-01 1.250000e-01 1.461000e+01 6.600000e-01 6.600000e-01 +2.625000e+00 1.250000e-01 1.250000e-01 1.467000e+01 6.600000e-01 6.600000e-01 +2.875000e+00 1.250000e-01 1.250000e-01 1.444000e+01 6.500000e-01 6.500000e-01 +3.125000e+00 1.250000e-01 1.250000e-01 1.431000e+01 6.500000e-01 6.500000e-01 +3.375000e+00 1.250000e-01 1.250000e-01 1.392000e+01 6.300000e-01 6.300000e-01 +3.625000e+00 1.250000e-01 1.250000e-01 1.317000e+01 9.000000e-01 8.700000e-01 +3.875000e+00 1.250000e-01 1.250000e-01 1.232000e+01 8.400000e-01 8.100000e-01 +4.125000e+00 1.250000e-01 1.250000e-01 1.192000e+01 8.100000e-01 7.800000e-01 +4.375000e+00 1.250000e-01 1.250000e-01 1.144000e+01 7.800000e-01 7.500000e-01 +4.625000e+00 1.250000e-01 1.250000e-01 1.111000e+01 7.600000e-01 7.300000e-01 +4.875000e+00 1.250000e-01 1.250000e-01 1.068000e+01 7.300000e-01 7.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d02-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d02-x01-y01 +Title: doi:10.17182/hepdata.70834.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.200000e+00 1.000000e-01 1.000000e-01 1.250000e+01 4.000000e-01 4.000000e-01 +1.490000e+01 3.000000e-01 3.000000e-01 1.150000e+01 2.000000e-01 2.000000e-01 +3.000000e+01 5.000000e-01 5.000000e-01 1.110000e+01 2.000000e-01 2.000000e-01 +5.200000e+01 1.000000e+00 1.000000e+00 1.080000e+01 1.000000e-01 1.000000e-01 +8.400000e+01 1.000000e+00 1.000000e+00 1.060000e+01 1.000000e-01 1.000000e-01 +1.280000e+02 1.000000e+00 1.000000e+00 1.050000e+01 1.000000e-01 1.000000e-01 +1.850000e+02 2.000000e+00 2.000000e+00 1.040000e+01 1.000000e-01 1.000000e-01 +2.600000e+02 2.000000e+00 2.000000e+00 1.026000e+01 4.000000e-02 4.000000e-02 +3.290000e+02 4.000000e+00 4.000000e+00 1.018000e+01 4.000000e-02 4.000000e-02 +3.868000e+02 4.000000e-01 4.000000e-01 1.012000e+01 4.000000e-02 4.000000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d03-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d03-x01-y01 +Title: doi:10.17182/hepdata.70834.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.200000e+00 0.000000e+00 0.000000e+00 3.942000e+00 3.700000e-02 3.700000e-02 +1.500000e+01 0.000000e+00 0.000000e+00 4.906000e+00 4.400000e-02 4.400000e-02 +3.000000e+01 0.000000e+00 0.000000e+00 5.275000e+00 4.200000e-02 4.200000e-02 +5.200000e+01 0.000000e+00 0.000000e+00 5.951000e+00 4.700000e-02 4.700000e-02 +8.400000e+01 0.000000e+00 0.000000e+00 6.472000e+00 5.500000e-02 5.500000e-02 +1.300000e+02 0.000000e+00 0.000000e+00 6.963000e+00 5.700000e-02 5.700000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d03-x01-y02 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d03-x01-y02 +Title: doi:10.17182/hepdata.70834.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.200000e+00 0.000000e+00 0.000000e+00 4.130000e+00 4.800000e-02 4.800000e-02 +1.500000e+01 0.000000e+00 0.000000e+00 5.134000e+00 5.400000e-02 5.400000e-02 +3.000000e+01 0.000000e+00 0.000000e+00 5.538000e+00 5.800000e-02 5.800000e-02 +5.200000e+01 0.000000e+00 0.000000e+00 6.181000e+00 6.300000e-02 6.300000e-02 +8.400000e+01 0.000000e+00 0.000000e+00 6.663000e+00 6.800000e-02 6.800000e-02 +1.300000e+02 0.000000e+00 0.000000e+00 7.136000e+00 7.100000e-02 7.100000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d03-x01-y03 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d03-x01-y03 +Title: doi:10.17182/hepdata.70834.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.200000e+00 0.000000e+00 0.000000e+00 3.971000e+00 5.700000e-02 5.700000e-02 +1.500000e+01 0.000000e+00 0.000000e+00 4.821000e+00 6.800000e-02 6.800000e-02 +3.000000e+01 0.000000e+00 0.000000e+00 5.226000e+00 7.200000e-02 7.200000e-02 +5.200000e+01 0.000000e+00 0.000000e+00 5.725000e+00 7.800000e-02 7.800000e-02 +8.400000e+01 0.000000e+00 0.000000e+00 6.115000e+00 8.400000e-02 8.400000e-02 +1.300000e+02 0.000000e+00 0.000000e+00 6.474000e+00 9.000000e-02 9.000000e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d03-x01-y04 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d03-x01-y04 +Title: doi:10.17182/hepdata.70834.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.200000e+00 0.000000e+00 0.000000e+00 3.483000e+00 6.700000e-02 6.700000e-02 +1.500000e+01 0.000000e+00 0.000000e+00 4.086000e+00 7.800000e-02 7.800000e-02 +3.000000e+01 0.000000e+00 0.000000e+00 4.381000e+00 8.600000e-02 8.600000e-02 +5.200000e+01 0.000000e+00 0.000000e+00 4.721000e+00 8.900000e-02 8.900000e-02 +8.400000e+01 0.000000e+00 0.000000e+00 4.997000e+00 9.400000e-02 9.400000e-02 +1.300000e+02 0.000000e+00 0.000000e+00 5.260000e+00 1.000000e-01 1.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1394676/d04-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1394676/d04-x01-y01 +Title: doi:10.17182/hepdata.70834.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.152000e+00 9.200000e-02 9.200000e-02 1.618000e+02 2.992925e+01 2.992925e+01 +1.495000e+01 2.600000e-01 2.600000e-01 4.080000e+02 5.316014e+01 5.316014e+01 +3.005000e+01 4.700000e-01 4.700000e-01 8.810000e+02 9.148224e+01 9.148224e+01 +5.202000e+01 7.000000e-01 7.000000e-01 1.684000e+03 1.445545e+02 1.445545e+02 +8.409000e+01 9.200000e-01 9.200000e-01 2.920000e+03 2.247576e+02 2.247576e+02 +1.279000e+02 1.300000e+00 1.300000e+00 4.731000e+03 3.539901e+02 3.539901e+02 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginALICE/ALICE_2016_I1507090.cc b/analyses/pluginALICE/ALICE_2016_I1507090.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507090.cc @@ -0,0 +1,105 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Projections/ChargedFinalState.hh" +#include "Rivet/Tools/AliceCommon.hh" +#include "Rivet/Projections/AliceCommon.hh" +namespace Rivet { + + + /// @brief ALICE PbPb at 5.02 TeV eta distributions. + class ALICE_2016_I1507090 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ALICE_2016_I1507090); + + + /// @name Analysis methods + //@{ + + /// Book histograms and initialise projections before the run + void init() { + // Initialise and register projections + // Centrality projection. + declareCentrality(ALICE::V0MMultiplicity(), "ALICE_2015_PBPBCentrality", + "V0M","V0M"); + // Projections for the 2-out-of-3 trigger. + declare(ChargedFinalState( (Cuts::eta > 2.8 && Cuts::eta < 5.1) && + Cuts::pT > 0.1*GeV), "VZERO1"); + declare(ChargedFinalState( (Cuts::eta > -3.7 && Cuts::eta < -1.7) && + Cuts::pT > 0.1*GeV), "VZERO2"); + declare(ChargedFinalState(Cuts::abseta < 1. && Cuts::pT > 0.15*GeV), + "SPD"); + + // Primary particles. + declare(ALICE::PrimaryParticles(Cuts::abseta < 5.6),"APRIM"); + + // The centrality bins and the corresponding histograms. + centralityBins = + { 5, 10, 20, 30, 40, 50, 60, 70, 80, 90 }; + for (int i = 0, N = centralityBins.size(); i < N; ++i) { + histEta[centralityBins[i]] = bookHisto1D(1, 1, i + 1); + sow[centralityBins[i]] = bookCounter("sow_" + toString(i)); + } + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + const double weight = event.weight(); + // Trigger projections. + const ChargedFinalState& vz1 = + applyProjection(event,"VZERO1"); + const ChargedFinalState& vz2 = + applyProjection(event,"VZERO2"); + const ChargedFinalState& spd = + applyProjection(event,"SPD"); + int fwdTrig = (vz1.particles().size() > 0 ? 1 : 0); + int bwdTrig = (vz2.particles().size() > 0 ? 1 : 0); + int cTrig = (spd.particles().size() > 0 ? 1 : 0); + + if (fwdTrig + bwdTrig + cTrig < 2) vetoEvent; + const CentralityProjection& cent = apply(event,"V0M"); + double c = cent(); + // Find the correct centrality histogram + auto hItr = histEta.upper_bound(c); + if (hItr == histEta.end()) return; + // Find the correct sow. + auto sItr = sow.upper_bound(c); + if (sItr == sow.end()) return; + sItr->second->fill(weight); + + // Fill the histograms. + for ( const auto& p : + applyProjection(event,"APRIM").particles() ) + if(p.abscharge() > 0) hItr->second->fill(p.eta(), weight); + + } + + + /// Normalise histograms etc., after the run + void finalize() { + for (int i = 0, N = centralityBins.size(); i < N; ++i) + histEta[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]->sumW()); + + } + + //@} + + + /// @name Histograms + //@{ + vector centralityBins; + map histEta; + map sow; + //@} + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ALICE_2016_I1507090); + + +} diff --git a/analyses/pluginALICE/ALICE_2016_I1507090.info b/analyses/pluginALICE/ALICE_2016_I1507090.info new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507090.info @@ -0,0 +1,41 @@ +Name: ALICE_2016_I1507090 +Year: 2016 +Summary: Charged particle production as function of centrality in PbPb collisions at 5.02 TeV. +Experiment: ALICE +Collider: LHC +InspireID: 1507090 +Status: UNVALIDATED +Authors: + - Christian Bierlich +References: +- Phys.Lett.B772(2017)567-577 +- DOI:10.1016/j.physletb.2017.07.017 +- arXiv:1612.08966 +RunInfo: PbPb minimum bias events. The analysis holds the Primary Particle definition, so don't limit decays on generator level. +NeedCrossSection: no +Options: + - cent=REF,GEN,IMP,USR +Beams: [1000822080, 1000822080] +# This is _total_ energy of beams, so this becomes 208*5023=1044784 +Energies: [1044784] +Description: + 'Charged particle pseudorapidity density in centrality classes. Measurements cover a wide $\eta$ range from -3.5 to 5. Centrality classes refer to forward V0 spectrum, as also measured by ALICE, can be modified to use a user definition instead.' +BibKey: Adam:2016ddh +BibTeX: '@article{Adam:2016ddh, + author = "Adam, Jaroslav and others", + title = "{Centrality dependence of the pseudorapidity density + distribution for charged particles in Pb-Pb collisions at + $\sqrt{s_{\rm NN}}=5.02$ TeV}", + collaboration = "ALICE", + journal = "Phys. Lett.", + volume = "B772", + year = "2017", + pages = "567-577", + doi = "10.1016/j.physletb.2017.07.017", + eprint = "1612.08966", + archivePrefix = "arXiv", + primaryClass = "nucl-ex", + reportNumber = "CERN-EP-2016-327", + SLACcitation = "%%CITATION = ARXIV:1612.08966;%%" +}' + diff --git a/analyses/pluginALICE/ALICE_2016_I1507090.plot b/analyses/pluginALICE/ALICE_2016_I1507090.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507090.plot @@ -0,0 +1,73 @@ +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y01 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 0-5 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y02 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 5-10 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y03 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 10-20 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y04 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 20-30 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y05 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 30-40 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y06 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 40-50 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y07 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 50-60 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y08 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 60-70 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y09 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 70-80 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +# BEGIN PLOT /ALICE_2016_I1507090/d01-x01-y10 +Title=$\sqrt{s}=5.02$ TeV/nn, Centrality: 80-90 pct. +XLabel=$\eta$ +YLabel=$\frac{1}{N_{evt}}\frac{dN_{ch}}{d\eta}$ +LogY=0 +LogX=0 +# END PLOT +Stack=d01-x01-y01 d01-x01-y02 + + diff --git a/analyses/pluginALICE/ALICE_2016_I1507090.yoda b/analyses/pluginALICE/ALICE_2016_I1507090.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507090.yoda @@ -0,0 +1,516 @@ +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y01 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.643000e+03 7.406079e+01 7.406079e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 1.670000e+03 7.500667e+01 7.500667e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 1.718000e+03 7.700649e+01 7.700649e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 1.787000e+03 8.100617e+01 8.100617e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 1.835000e+03 8.300602e+01 8.300602e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 1.912000e+03 8.600581e+01 8.600581e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 1.968000e+03 6.400781e+01 6.400781e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 2.001000e+03 8.002500e+01 8.002500e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 2.021000e+03 7.100704e+01 7.100704e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 2.017000e+03 6.400781e+01 6.400781e+01 +-8.750000e-01 1.250000e-01 1.250000e-01 1.995000e+03 5.600893e+01 5.600893e+01 +-6.250000e-01 1.250000e-01 1.250000e-01 1.970000e+03 5.200961e+01 5.200961e+01 +-3.750000e-01 1.250000e-01 1.250000e-01 1.943000e+03 4.701064e+01 4.701064e+01 +-1.250000e-01 1.250000e-01 1.250000e-01 1.929000e+03 4.601087e+01 4.601087e+01 +1.250000e-01 1.250000e-01 1.250000e-01 1.929000e+03 4.601087e+01 4.601087e+01 +3.750000e-01 1.250000e-01 1.250000e-01 1.943000e+03 4.701064e+01 4.701064e+01 +6.250000e-01 1.250000e-01 1.250000e-01 1.970000e+03 5.200961e+01 5.200961e+01 +8.750000e-01 1.250000e-01 1.250000e-01 1.995000e+03 5.600893e+01 5.600893e+01 +1.125000e+00 1.250000e-01 1.250000e-01 2.017000e+03 6.400781e+01 6.400781e+01 +1.375000e+00 1.250000e-01 1.250000e-01 2.021000e+03 7.100704e+01 7.100704e+01 +1.625000e+00 1.250000e-01 1.250000e-01 2.001000e+03 8.002500e+01 8.002500e+01 +1.875000e+00 1.250000e-01 1.250000e-01 1.968000e+03 6.400781e+01 6.400781e+01 +2.125000e+00 1.250000e-01 1.250000e-01 1.912000e+03 8.600581e+01 8.600581e+01 +2.375000e+00 1.250000e-01 1.250000e-01 1.835000e+03 8.300602e+01 8.300602e+01 +2.625000e+00 1.250000e-01 1.250000e-01 1.787000e+03 8.100617e+01 8.100617e+01 +2.875000e+00 1.250000e-01 1.250000e-01 1.718000e+03 7.700649e+01 7.700649e+01 +3.125000e+00 1.250000e-01 1.250000e-01 1.670000e+03 7.500667e+01 7.500667e+01 +3.375000e+00 1.250000e-01 1.250000e-01 1.643000e+03 7.406079e+01 7.406079e+01 +3.625000e+00 1.250000e-01 1.250000e-01 1.563000e+03 1.060189e+02 1.030194e+02 +3.875000e+00 1.250000e-01 1.250000e-01 1.474000e+03 1.000050e+02 9.700515e+01 +4.125000e+00 1.250000e-01 1.250000e-01 1.370000e+03 9.300538e+01 9.000556e+01 +4.375000e+00 1.250000e-01 1.250000e-01 1.324000e+03 9.000556e+01 8.700575e+01 +4.625000e+00 1.250000e-01 1.250000e-01 1.281000e+03 8.700575e+01 8.400595e+01 +4.875000e+00 1.250000e-01 1.250000e-01 1.244000e+03 8.500588e+01 8.200610e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y02 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y02 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.364000e+03 6.203225e+01 6.203225e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 1.391000e+03 6.300794e+01 6.300794e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 1.424000e+03 6.400781e+01 6.400781e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 1.474000e+03 6.700746e+01 6.700746e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 1.507000e+03 6.800735e+01 6.800735e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 1.569000e+03 7.100704e+01 7.100704e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 1.644000e+03 5.300943e+01 5.300943e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 1.679000e+03 6.702984e+01 6.702984e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 1.682000e+03 5.900847e+01 5.900847e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 1.672000e+03 5.200961e+01 5.200961e+01 +-8.750000e-01 1.250000e-01 1.250000e-01 1.646000e+03 4.701064e+01 4.701064e+01 +-6.250000e-01 1.250000e-01 1.250000e-01 1.621000e+03 4.201190e+01 4.201190e+01 +-3.750000e-01 1.250000e-01 1.250000e-01 1.597000e+03 3.901282e+01 3.901282e+01 +-1.250000e-01 1.250000e-01 1.250000e-01 1.583000e+03 3.701351e+01 3.701351e+01 +1.250000e-01 1.250000e-01 1.250000e-01 1.583000e+03 3.701351e+01 3.701351e+01 +3.750000e-01 1.250000e-01 1.250000e-01 1.597000e+03 3.901282e+01 3.901282e+01 +6.250000e-01 1.250000e-01 1.250000e-01 1.621000e+03 4.201190e+01 4.201190e+01 +8.750000e-01 1.250000e-01 1.250000e-01 1.646000e+03 4.701064e+01 4.701064e+01 +1.125000e+00 1.250000e-01 1.250000e-01 1.672000e+03 5.200961e+01 5.200961e+01 +1.375000e+00 1.250000e-01 1.250000e-01 1.682000e+03 5.900847e+01 5.900847e+01 +1.625000e+00 1.250000e-01 1.250000e-01 1.679000e+03 6.702984e+01 6.702984e+01 +1.875000e+00 1.250000e-01 1.250000e-01 1.644000e+03 5.300943e+01 5.300943e+01 +2.125000e+00 1.250000e-01 1.250000e-01 1.569000e+03 7.100704e+01 7.100704e+01 +2.375000e+00 1.250000e-01 1.250000e-01 1.507000e+03 6.800735e+01 6.800735e+01 +2.625000e+00 1.250000e-01 1.250000e-01 1.474000e+03 6.700746e+01 6.700746e+01 +2.875000e+00 1.250000e-01 1.250000e-01 1.424000e+03 6.400781e+01 6.400781e+01 +3.125000e+00 1.250000e-01 1.250000e-01 1.391000e+03 6.300794e+01 6.300794e+01 +3.375000e+00 1.250000e-01 1.250000e-01 1.364000e+03 6.203225e+01 6.203225e+01 +3.625000e+00 1.250000e-01 1.250000e-01 1.292000e+03 8.802272e+01 8.502353e+01 +3.875000e+00 1.250000e-01 1.250000e-01 1.218000e+03 8.300602e+01 8.000625e+01 +4.125000e+00 1.250000e-01 1.250000e-01 1.132000e+03 7.700649e+01 7.400676e+01 +4.375000e+00 1.250000e-01 1.250000e-01 1.093000e+03 7.400676e+01 7.200694e+01 +4.625000e+00 1.250000e-01 1.250000e-01 1.062000e+03 7.200694e+01 7.000714e+01 +4.875000e+00 1.250000e-01 1.250000e-01 1.032000e+03 7.000714e+01 6.800735e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y03 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y03 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.038000e+03 4.704253e+01 4.704253e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 1.061000e+03 4.801042e+01 4.801042e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 1.080000e+03 4.901020e+01 4.901020e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 1.114000e+03 5.001000e+01 5.001000e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 1.136000e+03 5.100980e+01 5.100980e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 1.178000e+03 5.300943e+01 5.300943e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 1.229000e+03 3.901282e+01 3.901282e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 1.253000e+03 4.901020e+01 4.901020e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 1.256000e+03 4.301163e+01 4.301163e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 1.247000e+03 3.801316e+01 3.801316e+01 +-8.750000e-01 1.250000e-01 1.250000e-01 1.229000e+03 3.401470e+01 3.401470e+01 +-6.250000e-01 1.250000e-01 1.250000e-01 1.210000e+03 3.101612e+01 3.101612e+01 +-3.750000e-01 1.250000e-01 1.250000e-01 1.191000e+03 2.801785e+01 2.801785e+01 +-1.250000e-01 1.250000e-01 1.250000e-01 1.181000e+03 2.801785e+01 2.801785e+01 +1.250000e-01 1.250000e-01 1.250000e-01 1.181000e+03 2.801785e+01 2.801785e+01 +3.750000e-01 1.250000e-01 1.250000e-01 1.191000e+03 2.801785e+01 2.801785e+01 +6.250000e-01 1.250000e-01 1.250000e-01 1.210000e+03 3.101612e+01 3.101612e+01 +8.750000e-01 1.250000e-01 1.250000e-01 1.229000e+03 3.401470e+01 3.401470e+01 +1.125000e+00 1.250000e-01 1.250000e-01 1.247000e+03 3.801316e+01 3.801316e+01 +1.375000e+00 1.250000e-01 1.250000e-01 1.256000e+03 4.301163e+01 4.301163e+01 +1.625000e+00 1.250000e-01 1.250000e-01 1.253000e+03 4.901020e+01 4.901020e+01 +1.875000e+00 1.250000e-01 1.250000e-01 1.229000e+03 3.901282e+01 3.901282e+01 +2.125000e+00 1.250000e-01 1.250000e-01 1.178000e+03 5.300943e+01 5.300943e+01 +2.375000e+00 1.250000e-01 1.250000e-01 1.136000e+03 5.100980e+01 5.100980e+01 +2.625000e+00 1.250000e-01 1.250000e-01 1.114000e+03 5.001000e+01 5.001000e+01 +2.875000e+00 1.250000e-01 1.250000e-01 1.080000e+03 4.901020e+01 4.901020e+01 +3.125000e+00 1.250000e-01 1.250000e-01 1.061000e+03 4.801042e+01 4.801042e+01 +3.375000e+00 1.250000e-01 1.250000e-01 1.038000e+03 4.704253e+01 4.704253e+01 +3.625000e+00 1.250000e-01 1.250000e-01 9.770000e+02 6.600758e+01 6.400781e+01 +3.875000e+00 1.250000e-01 1.250000e-01 9.213000e+02 6.260128e+01 6.060132e+01 +4.125000e+00 1.250000e-01 1.250000e-01 8.577000e+02 5.830137e+01 5.640142e+01 +4.375000e+00 1.250000e-01 1.250000e-01 8.296000e+02 5.640142e+01 5.450147e+01 +4.625000e+00 1.250000e-01 1.250000e-01 8.074000e+02 5.490228e+01 5.310235e+01 +4.875000e+00 1.250000e-01 1.250000e-01 7.870000e+02 5.300943e+01 5.200961e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y04 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y04 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 7.140000e+02 3.201562e+01 3.201562e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 7.260000e+02 3.301515e+01 3.301515e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 7.380000e+02 3.301515e+01 3.301515e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 7.590000e+02 3.401470e+01 3.401470e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 7.720000e+02 3.501428e+01 3.501428e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 7.970000e+02 3.601389e+01 3.601389e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 8.270000e+02 2.601922e+01 2.601922e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 8.420000e+02 3.101612e+01 3.101612e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 8.440000e+02 2.801785e+01 2.801785e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 8.380000e+02 2.501999e+01 2.501999e+01 +-8.750000e-01 1.250000e-01 1.250000e-01 8.260000e+02 2.202272e+01 2.202272e+01 +-6.250000e-01 1.250000e-01 1.250000e-01 8.119000e+02 2.010622e+01 2.010622e+01 +-3.750000e-01 1.250000e-01 1.250000e-01 7.992000e+02 1.870668e+01 1.870668e+01 +-1.250000e-01 1.250000e-01 1.250000e-01 7.924000e+02 1.790698e+01 1.790698e+01 +1.250000e-01 1.250000e-01 1.250000e-01 7.924000e+02 1.790698e+01 1.790698e+01 +3.750000e-01 1.250000e-01 1.250000e-01 7.992000e+02 1.870668e+01 1.870668e+01 +6.250000e-01 1.250000e-01 1.250000e-01 8.119000e+02 2.010622e+01 2.010622e+01 +8.750000e-01 1.250000e-01 1.250000e-01 8.260000e+02 2.202272e+01 2.202272e+01 +1.125000e+00 1.250000e-01 1.250000e-01 8.380000e+02 2.501999e+01 2.501999e+01 +1.375000e+00 1.250000e-01 1.250000e-01 8.440000e+02 2.801785e+01 2.801785e+01 +1.625000e+00 1.250000e-01 1.250000e-01 8.420000e+02 3.101612e+01 3.101612e+01 +1.875000e+00 1.250000e-01 1.250000e-01 8.270000e+02 2.601922e+01 2.601922e+01 +2.125000e+00 1.250000e-01 1.250000e-01 7.970000e+02 3.601389e+01 3.601389e+01 +2.375000e+00 1.250000e-01 1.250000e-01 7.720000e+02 3.501428e+01 3.501428e+01 +2.625000e+00 1.250000e-01 1.250000e-01 7.590000e+02 3.401470e+01 3.401470e+01 +2.875000e+00 1.250000e-01 1.250000e-01 7.380000e+02 3.301515e+01 3.301515e+01 +3.125000e+00 1.250000e-01 1.250000e-01 7.260000e+02 3.301515e+01 3.301515e+01 +3.375000e+00 1.250000e-01 1.250000e-01 7.140000e+02 3.201562e+01 3.201562e+01 +3.625000e+00 1.250000e-01 1.250000e-01 6.650000e+02 4.501111e+01 4.401136e+01 +3.875000e+00 1.250000e-01 1.250000e-01 6.254000e+02 4.250106e+01 4.110109e+01 +4.125000e+00 1.250000e-01 1.250000e-01 5.826000e+02 3.960114e+01 3.830117e+01 +4.375000e+00 1.250000e-01 1.250000e-01 5.655000e+02 3.840117e+01 3.720121e+01 +4.625000e+00 1.250000e-01 1.250000e-01 5.514000e+02 3.750213e+01 3.620221e+01 +4.875000e+00 1.250000e-01 1.250000e-01 5.380000e+02 3.701351e+01 3.501428e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y05 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y05 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 4.750000e+02 2.102380e+01 2.102380e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 4.827000e+02 2.180573e+01 2.180573e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 4.897000e+02 2.210362e+01 2.210362e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 5.026000e+02 2.270352e+01 2.270352e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 5.106000e+02 2.300543e+01 2.300543e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 5.220000e+02 2.350340e+01 2.350340e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 5.399000e+02 1.590503e+01 1.590503e+01 +-1.625000e+00 1.250000e-01 1.250000e-01 5.490000e+02 1.902630e+01 1.902630e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 5.493000e+02 1.670748e+01 1.670748e+01 +-1.125000e+00 1.250000e-01 1.250000e-01 5.455000e+02 1.510530e+01 1.510530e+01 +-8.750000e-01 1.250000e-01 1.250000e-01 5.375000e+02 1.360588e+01 1.360588e+01 +-6.250000e-01 1.250000e-01 1.250000e-01 5.276000e+02 1.260635e+01 1.260635e+01 +-3.750000e-01 1.250000e-01 1.250000e-01 5.193000e+02 1.170684e+01 1.170684e+01 +-1.250000e-01 1.250000e-01 1.250000e-01 5.147000e+02 1.140702e+01 1.140702e+01 +1.250000e-01 1.250000e-01 1.250000e-01 5.147000e+02 1.140702e+01 1.140702e+01 +3.750000e-01 1.250000e-01 1.250000e-01 5.193000e+02 1.170684e+01 1.170684e+01 +6.250000e-01 1.250000e-01 1.250000e-01 5.276000e+02 1.260635e+01 1.260635e+01 +8.750000e-01 1.250000e-01 1.250000e-01 5.375000e+02 1.360588e+01 1.360588e+01 +1.125000e+00 1.250000e-01 1.250000e-01 5.455000e+02 1.510530e+01 1.510530e+01 +1.375000e+00 1.250000e-01 1.250000e-01 5.493000e+02 1.670748e+01 1.670748e+01 +1.625000e+00 1.250000e-01 1.250000e-01 5.490000e+02 1.902630e+01 1.902630e+01 +1.875000e+00 1.250000e-01 1.250000e-01 5.399000e+02 1.590503e+01 1.590503e+01 +2.125000e+00 1.250000e-01 1.250000e-01 5.220000e+02 2.350340e+01 2.350340e+01 +2.375000e+00 1.250000e-01 1.250000e-01 5.106000e+02 2.300543e+01 2.300543e+01 +2.625000e+00 1.250000e-01 1.250000e-01 5.026000e+02 2.270352e+01 2.270352e+01 +2.875000e+00 1.250000e-01 1.250000e-01 4.897000e+02 2.210362e+01 2.210362e+01 +3.125000e+00 1.250000e-01 1.250000e-01 4.827000e+02 2.180573e+01 2.180573e+01 +3.375000e+00 1.250000e-01 1.250000e-01 4.750000e+02 2.102380e+01 2.102380e+01 +3.625000e+00 1.250000e-01 1.250000e-01 4.400000e+02 3.001666e+01 2.901724e+01 +3.875000e+00 1.250000e-01 1.250000e-01 4.136000e+02 2.810160e+01 2.720165e+01 +4.125000e+00 1.250000e-01 1.250000e-01 3.867000e+02 2.630171e+01 2.540177e+01 +4.375000e+00 1.250000e-01 1.250000e-01 3.756000e+02 2.550176e+01 2.470182e+01 +4.625000e+00 1.250000e-01 1.250000e-01 3.680000e+02 2.500180e+01 2.420186e+01 +4.875000e+00 1.250000e-01 1.250000e-01 3.599000e+02 2.450327e+01 2.370338e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y06 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y06 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 3.020000e+02 1.403567e+01 1.403567e+01 +-3.125000e+00 1.250000e-01 1.250000e-01 3.063000e+02 1.380580e+01 1.380580e+01 +-2.875000e+00 1.250000e-01 1.250000e-01 3.101000e+02 1.400321e+01 1.400321e+01 +-2.625000e+00 1.250000e-01 1.250000e-01 3.179000e+02 1.430315e+01 1.430315e+01 +-2.375000e+00 1.250000e-01 1.250000e-01 3.223000e+02 1.450552e+01 1.450552e+01 +-2.125000e+00 1.250000e-01 1.250000e-01 3.276000e+02 1.480304e+01 1.480304e+01 +-1.875000e+00 1.250000e-01 1.250000e-01 3.351000e+02 9.304837e+00 9.304837e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 3.400000e+02 1.104536e+01 1.104536e+01 +-1.375000e+00 1.250000e-01 1.250000e-01 3.402000e+02 9.608330e+00 9.608330e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 3.377000e+02 8.705171e+00 8.705171e+00 +-8.750000e-01 1.250000e-01 1.250000e-01 3.325000e+02 7.905694e+00 7.905694e+00 +-6.250000e-01 1.250000e-01 1.250000e-01 3.263000e+02 7.406079e+00 7.406079e+00 +-3.750000e-01 1.250000e-01 1.250000e-01 3.207000e+02 7.006426e+00 7.006426e+00 +-1.250000e-01 1.250000e-01 1.250000e-01 3.175000e+02 6.706713e+00 6.706713e+00 +1.250000e-01 1.250000e-01 1.250000e-01 3.175000e+02 6.706713e+00 6.706713e+00 +3.750000e-01 1.250000e-01 1.250000e-01 3.207000e+02 7.006426e+00 7.006426e+00 +6.250000e-01 1.250000e-01 1.250000e-01 3.263000e+02 7.406079e+00 7.406079e+00 +8.750000e-01 1.250000e-01 1.250000e-01 3.325000e+02 7.905694e+00 7.905694e+00 +1.125000e+00 1.250000e-01 1.250000e-01 3.377000e+02 8.705171e+00 8.705171e+00 +1.375000e+00 1.250000e-01 1.250000e-01 3.402000e+02 9.608330e+00 9.608330e+00 +1.625000e+00 1.250000e-01 1.250000e-01 3.400000e+02 1.104536e+01 1.104536e+01 +1.875000e+00 1.250000e-01 1.250000e-01 3.351000e+02 9.304837e+00 9.304837e+00 +2.125000e+00 1.250000e-01 1.250000e-01 3.276000e+02 1.480304e+01 1.480304e+01 +2.375000e+00 1.250000e-01 1.250000e-01 3.223000e+02 1.450552e+01 1.450552e+01 +2.625000e+00 1.250000e-01 1.250000e-01 3.179000e+02 1.430315e+01 1.430315e+01 +2.875000e+00 1.250000e-01 1.250000e-01 3.101000e+02 1.400321e+01 1.400321e+01 +3.125000e+00 1.250000e-01 1.250000e-01 3.063000e+02 1.380580e+01 1.380580e+01 +3.375000e+00 1.250000e-01 1.250000e-01 3.020000e+02 1.403567e+01 1.403567e+01 +3.625000e+00 1.250000e-01 1.250000e-01 2.775000e+02 1.890661e+01 1.820687e+01 +3.875000e+00 1.250000e-01 1.250000e-01 2.613000e+02 1.780112e+01 1.720116e+01 +4.125000e+00 1.250000e-01 1.250000e-01 2.447000e+02 1.660120e+01 1.610124e+01 +4.375000e+00 1.250000e-01 1.250000e-01 2.384000e+02 1.620123e+01 1.570127e+01 +4.625000e+00 1.250000e-01 1.250000e-01 2.338000e+02 1.590126e+01 1.540130e+01 +4.875000e+00 1.250000e-01 1.250000e-01 2.294000e+02 1.560288e+01 1.510298e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y07 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y07 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.780000e+02 8.062258e+00 8.062258e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 1.799000e+02 8.105554e+00 8.105554e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 1.817000e+02 8.202439e+00 8.202439e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 1.860000e+02 8.402381e+00 8.402381e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 1.882000e+02 8.505292e+00 8.505292e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 1.898000e+02 8.602325e+00 8.602325e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 1.935000e+02 4.904080e+00 4.904080e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 1.964000e+02 5.514526e+00 5.514526e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 1.965000e+02 5.008992e+00 5.008992e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 1.948000e+02 4.604346e+00 4.604346e+00 +-8.750000e-01 1.250000e-01 1.250000e-01 1.914000e+02 4.304649e+00 4.304649e+00 +-6.250000e-01 1.250000e-01 1.250000e-01 1.875000e+02 4.004997e+00 4.004997e+00 +-3.750000e-01 1.250000e-01 1.250000e-01 1.843000e+02 3.805260e+00 3.805260e+00 +-1.250000e-01 1.250000e-01 1.250000e-01 1.825000e+02 3.705401e+00 3.705401e+00 +1.250000e-01 1.250000e-01 1.250000e-01 1.825000e+02 3.705401e+00 3.705401e+00 +3.750000e-01 1.250000e-01 1.250000e-01 1.843000e+02 3.805260e+00 3.805260e+00 +6.250000e-01 1.250000e-01 1.250000e-01 1.875000e+02 4.004997e+00 4.004997e+00 +8.750000e-01 1.250000e-01 1.250000e-01 1.914000e+02 4.304649e+00 4.304649e+00 +1.125000e+00 1.250000e-01 1.250000e-01 1.948000e+02 4.604346e+00 4.604346e+00 +1.375000e+00 1.250000e-01 1.250000e-01 1.965000e+02 5.008992e+00 5.008992e+00 +1.625000e+00 1.250000e-01 1.250000e-01 1.964000e+02 5.514526e+00 5.514526e+00 +1.875000e+00 1.250000e-01 1.250000e-01 1.935000e+02 4.904080e+00 4.904080e+00 +2.125000e+00 1.250000e-01 1.250000e-01 1.898000e+02 8.602325e+00 8.602325e+00 +2.375000e+00 1.250000e-01 1.250000e-01 1.882000e+02 8.505292e+00 8.505292e+00 +2.625000e+00 1.250000e-01 1.250000e-01 1.860000e+02 8.402381e+00 8.402381e+00 +2.875000e+00 1.250000e-01 1.250000e-01 1.817000e+02 8.202439e+00 8.202439e+00 +3.125000e+00 1.250000e-01 1.250000e-01 1.799000e+02 8.105554e+00 8.105554e+00 +3.375000e+00 1.250000e-01 1.250000e-01 1.780000e+02 8.062258e+00 8.062258e+00 +3.625000e+00 1.250000e-01 1.250000e-01 1.632000e+02 1.110720e+01 1.070747e+01 +3.875000e+00 1.250000e-01 1.250000e-01 1.534000e+02 1.040048e+01 1.010050e+01 +4.125000e+00 1.250000e-01 1.250000e-01 1.438000e+02 9.800510e+00 9.500526e+00 +4.375000e+00 1.250000e-01 1.250000e-01 1.403000e+02 9.502105e+00 9.202174e+00 +4.625000e+00 1.250000e-01 1.250000e-01 1.387000e+02 9.402127e+00 9.102198e+00 +4.875000e+00 1.250000e-01 1.250000e-01 1.360000e+02 9.202174e+00 8.902247e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y08 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y08 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 9.490000e+01 4.318565e+00 4.318565e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 9.610000e+01 4.304649e+00 4.304649e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 9.680000e+01 4.404543e+00 4.404543e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 9.830000e+01 4.404543e+00 4.404543e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 9.880000e+01 4.504442e+00 4.504442e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 9.910000e+01 4.504442e+00 4.504442e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 1.012000e+02 2.308679e+00 2.308679e+00 +-1.625000e+00 1.250000e-01 1.250000e-01 1.027000e+02 2.517936e+00 2.517936e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 1.031000e+02 2.308679e+00 2.308679e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 1.020000e+02 2.209072e+00 2.209072e+00 +-8.750000e-01 1.250000e-01 1.250000e-01 1.003000e+02 2.109502e+00 2.109502e+00 +-6.250000e-01 1.250000e-01 1.250000e-01 9.800000e+01 2.009975e+00 2.009975e+00 +-3.750000e-01 1.250000e-01 1.250000e-01 9.610000e+01 1.902630e+00 1.902630e+00 +-1.250000e-01 1.250000e-01 1.250000e-01 9.520000e+01 1.902630e+00 1.902630e+00 +1.250000e-01 1.250000e-01 1.250000e-01 9.520000e+01 1.902630e+00 1.902630e+00 +3.750000e-01 1.250000e-01 1.250000e-01 9.610000e+01 1.902630e+00 1.902630e+00 +6.250000e-01 1.250000e-01 1.250000e-01 9.800000e+01 2.009975e+00 2.009975e+00 +8.750000e-01 1.250000e-01 1.250000e-01 1.003000e+02 2.109502e+00 2.109502e+00 +1.125000e+00 1.250000e-01 1.250000e-01 1.020000e+02 2.209072e+00 2.209072e+00 +1.375000e+00 1.250000e-01 1.250000e-01 1.031000e+02 2.308679e+00 2.308679e+00 +1.625000e+00 1.250000e-01 1.250000e-01 1.027000e+02 2.517936e+00 2.517936e+00 +1.875000e+00 1.250000e-01 1.250000e-01 1.012000e+02 2.308679e+00 2.308679e+00 +2.125000e+00 1.250000e-01 1.250000e-01 9.910000e+01 4.504442e+00 4.504442e+00 +2.375000e+00 1.250000e-01 1.250000e-01 9.880000e+01 4.504442e+00 4.504442e+00 +2.625000e+00 1.250000e-01 1.250000e-01 9.830000e+01 4.404543e+00 4.404543e+00 +2.875000e+00 1.250000e-01 1.250000e-01 9.680000e+01 4.404543e+00 4.404543e+00 +3.125000e+00 1.250000e-01 1.250000e-01 9.610000e+01 4.304649e+00 4.304649e+00 +3.375000e+00 1.250000e-01 1.250000e-01 9.490000e+01 4.318565e+00 4.318565e+00 +3.625000e+00 1.250000e-01 1.250000e-01 8.680000e+01 5.903389e+00 5.703508e+00 +3.875000e+00 1.250000e-01 1.250000e-01 8.190000e+01 5.600893e+00 5.400926e+00 +4.125000e+00 1.250000e-01 1.250000e-01 7.730000e+01 5.300943e+00 5.100980e+00 +4.375000e+00 1.250000e-01 1.250000e-01 7.580000e+01 5.200961e+00 5.001000e+00 +4.625000e+00 1.250000e-01 1.250000e-01 7.510000e+01 5.100980e+00 4.901020e+00 +4.875000e+00 1.250000e-01 1.250000e-01 7.380000e+01 5.003998e+00 4.804165e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y09 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y09 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 4.540000e+01 2.009975e+00 2.009975e+00 +-3.125000e+00 1.250000e-01 1.250000e-01 4.600000e+01 2.102380e+00 2.102380e+00 +-2.875000e+00 1.250000e-01 1.250000e-01 4.600000e+01 2.102380e+00 2.102380e+00 +-2.625000e+00 1.250000e-01 1.250000e-01 4.650000e+01 2.102380e+00 2.102380e+00 +-2.375000e+00 1.250000e-01 1.250000e-01 4.680000e+01 2.102380e+00 2.102380e+00 +-2.125000e+00 1.250000e-01 1.250000e-01 4.670000e+01 2.102380e+00 2.102380e+00 +-1.875000e+00 1.250000e-01 1.250000e-01 4.730000e+01 9.055385e-01 9.055385e-01 +-1.625000e+00 1.250000e-01 1.250000e-01 4.790000e+01 1.019804e+00 1.019804e+00 +-1.375000e+00 1.250000e-01 1.250000e-01 4.820000e+01 1.004988e+00 1.004988e+00 +-1.125000e+00 1.250000e-01 1.250000e-01 4.760000e+01 9.055385e-01 9.055385e-01 +-8.750000e-01 1.250000e-01 1.250000e-01 4.670000e+01 9.055385e-01 9.055385e-01 +-6.250000e-01 1.250000e-01 1.250000e-01 4.550000e+01 9.055385e-01 9.055385e-01 +-3.750000e-01 1.250000e-01 1.250000e-01 4.460000e+01 8.062258e-01 8.062258e-01 +-1.250000e-01 1.250000e-01 1.250000e-01 4.410000e+01 8.062258e-01 8.062258e-01 +1.250000e-01 1.250000e-01 1.250000e-01 4.410000e+01 8.062258e-01 8.062258e-01 +3.750000e-01 1.250000e-01 1.250000e-01 4.460000e+01 8.062258e-01 8.062258e-01 +6.250000e-01 1.250000e-01 1.250000e-01 4.550000e+01 9.055385e-01 9.055385e-01 +8.750000e-01 1.250000e-01 1.250000e-01 4.670000e+01 9.055385e-01 9.055385e-01 +1.125000e+00 1.250000e-01 1.250000e-01 4.760000e+01 9.055385e-01 9.055385e-01 +1.375000e+00 1.250000e-01 1.250000e-01 4.820000e+01 1.004988e+00 1.004988e+00 +1.625000e+00 1.250000e-01 1.250000e-01 4.790000e+01 1.019804e+00 1.019804e+00 +1.875000e+00 1.250000e-01 1.250000e-01 4.730000e+01 9.055385e-01 9.055385e-01 +2.125000e+00 1.250000e-01 1.250000e-01 4.670000e+01 2.102380e+00 2.102380e+00 +2.375000e+00 1.250000e-01 1.250000e-01 4.680000e+01 2.102380e+00 2.102380e+00 +2.625000e+00 1.250000e-01 1.250000e-01 4.650000e+01 2.102380e+00 2.102380e+00 +2.875000e+00 1.250000e-01 1.250000e-01 4.600000e+01 2.102380e+00 2.102380e+00 +3.125000e+00 1.250000e-01 1.250000e-01 4.600000e+01 2.102380e+00 2.102380e+00 +3.375000e+00 1.250000e-01 1.250000e-01 4.540000e+01 2.009975e+00 2.009975e+00 +3.625000e+00 1.250000e-01 1.250000e-01 4.140000e+01 2.807134e+00 2.707397e+00 +3.875000e+00 1.250000e-01 1.250000e-01 3.930000e+01 2.701851e+00 2.601922e+00 +4.125000e+00 1.250000e-01 1.250000e-01 3.740000e+01 2.501999e+00 2.501999e+00 +4.375000e+00 1.250000e-01 1.250000e-01 3.680000e+01 2.501999e+00 2.402082e+00 +4.625000e+00 1.250000e-01 1.250000e-01 3.660000e+01 2.501999e+00 2.402082e+00 +4.875000e+00 1.250000e-01 1.250000e-01 3.570000e+01 2.402082e+00 2.302173e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d01-x01-y10 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d01-x01-y10 +Title: doi:10.17182/hepdata.78365.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.375000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.246211e-01 8.246211e-01 +-3.125000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.062258e-01 8.062258e-01 +-2.875000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +-2.625000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.062258e-01 8.062258e-01 +-2.375000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +-2.125000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +-1.875000e+00 1.250000e-01 1.250000e-01 1.920000e+01 3.162278e-01 3.162278e-01 +-1.625000e+00 1.250000e-01 1.250000e-01 1.910000e+01 5.000000e-01 5.000000e-01 +-1.375000e+00 1.250000e-01 1.250000e-01 1.920000e+01 4.472136e-01 4.472136e-01 +-1.125000e+00 1.250000e-01 1.250000e-01 1.890000e+01 4.472136e-01 4.472136e-01 +-8.750000e-01 1.250000e-01 1.250000e-01 1.850000e+01 4.472136e-01 4.472136e-01 +-6.250000e-01 1.250000e-01 1.250000e-01 1.800000e+01 3.162278e-01 3.162278e-01 +-3.750000e-01 1.250000e-01 1.250000e-01 1.760000e+01 3.162278e-01 3.162278e-01 +-1.250000e-01 1.250000e-01 1.250000e-01 1.740000e+01 3.162278e-01 3.162278e-01 +1.250000e-01 1.250000e-01 1.250000e-01 1.740000e+01 3.162278e-01 3.162278e-01 +3.750000e-01 1.250000e-01 1.250000e-01 1.760000e+01 3.162278e-01 3.162278e-01 +6.250000e-01 1.250000e-01 1.250000e-01 1.800000e+01 3.162278e-01 3.162278e-01 +8.750000e-01 1.250000e-01 1.250000e-01 1.850000e+01 4.472136e-01 4.472136e-01 +1.125000e+00 1.250000e-01 1.250000e-01 1.890000e+01 4.472136e-01 4.472136e-01 +1.375000e+00 1.250000e-01 1.250000e-01 1.920000e+01 4.472136e-01 4.472136e-01 +1.625000e+00 1.250000e-01 1.250000e-01 1.910000e+01 5.000000e-01 5.000000e-01 +1.875000e+00 1.250000e-01 1.250000e-01 1.920000e+01 3.162278e-01 3.162278e-01 +2.125000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +2.375000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +2.625000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.062258e-01 8.062258e-01 +2.875000e+00 1.250000e-01 1.250000e-01 1.860000e+01 8.062258e-01 8.062258e-01 +3.125000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.062258e-01 8.062258e-01 +3.375000e+00 1.250000e-01 1.250000e-01 1.870000e+01 8.246211e-01 8.246211e-01 +3.625000e+00 1.250000e-01 1.250000e-01 1.710000e+01 1.204159e+00 1.104536e+00 +3.875000e+00 1.250000e-01 1.250000e-01 1.627000e+01 1.111126e+00 1.071168e+00 +4.125000e+00 1.250000e-01 1.250000e-01 1.546000e+01 1.051190e+00 1.021225e+00 +4.375000e+00 1.250000e-01 1.250000e-01 1.547000e+01 1.051190e+00 1.021225e+00 +4.625000e+00 1.250000e-01 1.250000e-01 1.560000e+01 1.104536e+00 1.004988e+00 +4.875000e+00 1.250000e-01 1.250000e-01 1.540000e+01 1.004988e+00 1.004988e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d02-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d02-x01-y01 +Title: doi:10.17182/hepdata.78365.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.320000e+00 1.000000e-01 1.000000e-01 1.752000e+01 1.001249e+00 1.001249e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d03-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d03-x01-y01 +Title: doi:10.17182/hepdata.78365.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +7.320000e+00 1.000000e-01 1.000000e-01 2.300000e+02 2.828427e+01 2.828427e+01 +1.540200e+01 2.000000e-01 2.000000e-01 5.600000e+02 7.071068e+01 7.071068e+01 +2.958100e+01 4.000000e-01 4.000000e-01 1.180000e+03 1.140175e+02 1.140175e+02 +5.307000e+01 1.000000e+00 1.000000e+00 2.200000e+03 1.414214e+02 1.414214e+02 +8.543000e+01 1.000000e+00 1.000000e+00 3.800000e+03 2.236068e+02 2.236068e+02 +1.297020e+02 1.000000e+00 1.000000e+00 6.000000e+03 3.162278e+02 3.162278e+02 +1.874000e+02 1.000000e+00 1.000000e+00 9.100000e+03 5.573150e+02 5.573150e+02 +2.632050e+02 2.000000e+00 2.000000e+00 1.342000e+04 9.013878e+02 9.013878e+02 +3.328040e+02 1.000000e+00 1.000000e+00 1.777000e+04 1.280156e+03 1.280156e+03 +3.893007e+02 5.000000e-01 5.000000e-01 2.149000e+04 1.460137e+03 1.460137e+03 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d04-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d04-x01-y01 +Title: doi:10.17182/hepdata.78365.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-3.170000e+00 1.200000e-01 1.200000e-01 1.650000e+03 7.000000e+01 7.000000e+01 +-2.970000e+00 1.200000e-01 1.200000e-01 1.680000e+03 8.000000e+01 8.000000e+01 +-2.680000e+00 1.100000e-01 1.100000e-01 1.730000e+03 8.000000e+01 8.000000e+01 +-2.475000e+00 1.150000e-01 1.150000e-01 1.800000e+03 8.000000e+01 8.000000e+01 +-2.175000e+00 1.150000e-01 1.150000e-01 1.860000e+03 8.000000e+01 8.000000e+01 +-1.980000e+00 1.200000e-01 1.200000e-01 1.950000e+03 9.000000e+01 9.000000e+01 +-1.695000e+00 1.250000e-01 1.250000e-01 2.030000e+03 7.000000e+01 7.000000e+01 +-1.495000e+00 1.150000e-01 1.150000e-01 2.080000e+03 8.000000e+01 8.000000e+01 +-1.210000e+00 1.100000e-01 1.100000e-01 2.140000e+03 8.000000e+01 8.000000e+01 +-1.020000e+00 1.100000e-01 1.100000e-01 2.170000e+03 7.000000e+01 7.000000e+01 +-7.450000e-01 1.050000e-01 1.050000e-01 2.200000e+03 6.000000e+01 6.000000e+01 +-5.650000e-01 1.150000e-01 1.150000e-01 2.210000e+03 6.000000e+01 6.000000e+01 +-3.000000e-01 1.000000e-01 1.000000e-01 2.230000e+03 6.000000e+01 6.000000e+01 +-1.000000e-01 1.000000e-01 1.000000e-01 2.240000e+03 6.000000e+01 6.000000e+01 +1.000000e-01 1.000000e-01 1.000000e-01 2.240000e+03 6.000000e+01 6.000000e+01 +3.000000e-01 1.000000e-01 1.000000e-01 2.230000e+03 6.000000e+01 6.000000e+01 +5.650000e-01 1.150000e-01 1.150000e-01 2.210000e+03 6.000000e+01 6.000000e+01 +7.450000e-01 1.050000e-01 1.050000e-01 2.200000e+03 6.000000e+01 6.000000e+01 +1.020000e+00 1.100000e-01 1.100000e-01 2.170000e+03 7.000000e+01 7.000000e+01 +1.210000e+00 1.100000e-01 1.100000e-01 2.140000e+03 8.000000e+01 8.000000e+01 +1.495000e+00 1.150000e-01 1.150000e-01 2.080000e+03 8.000000e+01 8.000000e+01 +1.695000e+00 1.250000e-01 1.250000e-01 2.030000e+03 7.000000e+01 7.000000e+01 +1.980000e+00 1.200000e-01 1.200000e-01 1.950000e+03 9.000000e+01 9.000000e+01 +2.175000e+00 1.150000e-01 1.150000e-01 1.860000e+03 8.000000e+01 8.000000e+01 +2.475000e+00 1.150000e-01 1.150000e-01 1.800000e+03 8.000000e+01 8.000000e+01 +2.680000e+00 1.100000e-01 1.100000e-01 1.730000e+03 8.000000e+01 8.000000e+01 +2.970000e+00 1.200000e-01 1.200000e-01 1.680000e+03 8.000000e+01 8.000000e+01 +3.170000e+00 1.200000e-01 1.200000e-01 1.650000e+03 7.000000e+01 7.000000e+01 +3.470000e+00 1.200000e-01 1.200000e-01 1.600000e+03 1.000000e+02 1.000000e+02 +3.670000e+00 1.200000e-01 1.200000e-01 1.500000e+03 1.000000e+02 1.000000e+02 +3.970000e+00 1.200000e-01 1.200000e-01 1.370000e+03 9.000000e+01 9.000000e+01 +4.170000e+00 1.200000e-01 1.200000e-01 1.320000e+03 9.000000e+01 9.000000e+01 +4.470000e+00 1.200000e-01 1.200000e-01 1.280000e+03 9.000000e+01 8.000000e+01 +4.670000e+00 1.200000e-01 1.200000e-01 1.240000e+03 8.000000e+01 8.000000e+01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d05-x01-y01 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d05-x01-y01 +Title: doi:10.17182/hepdata.78365.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.023000e+03 0.000000e+00 0.000000e+00 4.100000e+00 1.000000e-01 1.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d05-x01-y02 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d05-x01-y02 +Title: doi:10.17182/hepdata.78365.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.023000e+03 0.000000e+00 0.000000e+00 2.800000e+00 0.000000e+00 0.000000e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507090/d05-x01-y03 +IsRef: 1 +Path: /REF/ALICE_2016_I1507090/d05-x01-y03 +Title: doi:10.17182/hepdata.78365.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.023000e+03 0.000000e+00 0.000000e+00 8.600000e+00 0.000000e+00 0.000000e+00 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginALICE/ALICE_2016_I1507157.cc b/analyses/pluginALICE/ALICE_2016_I1507157.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507157.cc @@ -0,0 +1,143 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Tools/AliceCommon.hh" +#include "Rivet/Projections/PrimaryParticles.hh" +#include "Rivet/Projections/ChargedFinalState.hh" +#include "Rivet/Projections/MixedFinalState.hh" +namespace Rivet { + + + /// @brief Add a short analysis description here + class ALICE_2016_I1507157 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ALICE_2016_I1507157); + + + /// @name Analysis methods + //@{ + + /// @brief Calculate angular distance between particles. + double phaseDif(double a1, double a2){ + double dif = a1 - a2; + while (dif < -M_PI/2) + dif += 2*M_PI; + while (dif > 3*M_PI/2) + dif -= 2*M_PI; + return dif; + } + + /// Book histograms and initialise projections before the run + void init() { + + double etamax = 0.8; + double pTmin = 0.1; // GeV + + // Charged tracks used to manage the mixing observable. + ChargedFinalState cfsMult(Cuts::abseta < etamax); + addProjection(cfsMult, "CFSMult"); + + // Primary particles. + + PrimaryParticles pp({Rivet::PID::PIPLUS, Rivet::PID::KPLUS, + Rivet::PID::K0S, Rivet::PID::K0L, Rivet::PID::PROTON, + Rivet::PID::NEUTRON, Rivet::PID::LAMBDA, Rivet::PID::SIGMAMINUS, + Rivet::PID::SIGMAPLUS, Rivet::PID::XIMINUS, Rivet::PID::XI0, + Rivet::PID::OMEGAMINUS},Cuts::abseta < etamax && Cuts::pT > pTmin*GeV); + addProjection(pp,"APRIM"); + + // The event mixing projection + declare(MixedFinalState(cfsMult, pp, 5, 0, 100, 10),"EVM"); + + // Book histograms + _h_protonRatio = bookScatter2D(2, 1, 2, true); + _h_protonSignal = bookHisto1D("protonSignal",*_h_protonRatio,"protonSignal"); + _h_protonBackground = bookHisto1D("protonBackground",*_h_protonRatio,"protonBackground"); + nmp = 0; + nsp = 0; + + } + + + /// Perform the per-event analysis + void analyze(const Event& event) { + const double weight = event.weight(); + + // The projections + const PrimaryParticles& pp = applyProjection(event,"APRIM"); + const MixedFinalState& evm = applyProjection(event, "EVM"); + + // Get all mixing events + vector mixEvents = evm.getMixingEvents(); + + // If there are not enough events to mix, don't fill any histograms + if(mixEvents.size() == 0) + return; + + // Make a vector of mixed event particles + vector mixParticles; + size_t pSize = 0; + for(size_t i = 0; i < mixEvents.size(); ++i) + pSize+=mixEvents[i].size(); + mixParticles.reserve(pSize); + for(size_t i = 0; i < mixEvents.size(); ++i) + mixParticles.insert(mixParticles.end(), mixEvents[i].begin(), + mixEvents[i].end()); + + // Shuffle the particles in the mixing events + random_shuffle(mixParticles.begin(), mixParticles.end()); + + for(const Particle& p1 : pp.particles()){ + // Start by doing the signal distribution + for(const Particle& p2 : pp.particles() ){ + if(p1 == p2) + continue; + nsp+=1.0; + double dEta = abs(p1.eta() - p2.eta()); + double dPhi = phaseDif(p1.phi(), p2.phi()); + if(dEta < 1.3 && p1.pid() == 2212 && p2.pid() == -2212){ + _h_protonSignal->fill(dPhi,weight); + } + } + // Then do the background distribution + for(const Particle& pMix : mixParticles){ + nmp+=1.0; + double dEta = abs(p1.eta() - pMix.eta()); + double dPhi = phaseDif(p1.phi(), pMix.phi()); + if(dEta < 1.3 && p1.pid() == 2212 && pMix.pid() == -2212){ + _h_protonBackground->fill(dPhi,weight); + } + } + } + } + + + /// Normalise histograms etc., after the run + void finalize() { + double sc = nmp / nsp; + scale(_h_protonSignal,sc); + divide(_h_protonSignal,_h_protonBackground,_h_protonRatio); + scale(_h_protonSignal,1.0/sc); + } + + //@} + + + /// @name Histograms + //@{ + Histo1DPtr _h_protonSignal; + Histo1DPtr _h_protonBackground; + Scatter2DPtr _h_protonRatio; + double nmp, nsp; + //@} + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ALICE_2016_I1507157); + + +} diff --git a/analyses/pluginALICE/ALICE_2016_I1507157.info b/analyses/pluginALICE/ALICE_2016_I1507157.info new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507157.info @@ -0,0 +1,48 @@ +Name: ALICE_2016_I1507157 +Year: 2016 +Summary: +Experiment: ALICE +Collider: LHC +InspireID: 1507157 +Status: UNVALIDATED +Authors: + - Your Name +#References: +#- '' +#- '' +#- '' +RunInfo: +NeedCrossSection: no +#Beams: +#Energies: +#Luminosity_fb: +Description: + ' 50\;\GeV$.>' +Keywords: [] +BibKey: Adam:2016iwf +BibTeX: '%%% contains utf-8, see: http://inspirehep.net/info/faq/general#utf8 +%%% add \usepackage[utf8]{inputenc} to your latex preamble + +@article{Adam:2016iwf, + author = "Adam, Jaroslav and others", + title = "{Insight into particle production mechanisms via angular + correlations of identified particles in pp collisions at + $\sqrt{\mathrm{s}}=7$  TeV}", + collaboration = "ALICE", + journal = "Eur. Phys. J.", + volume = "C77", + year = "2017", + number = "8", + pages = "569", + doi = "10.1140/epjc/s10052-017-5129-6", + eprint = "1612.08975", + archivePrefix = "arXiv", + primaryClass = "nucl-ex", + reportNumber = "CERN-EP-2016-322", + SLACcitation = "%%CITATION = ARXIV:1612.08975;%%" +}' +ToDo: + - Implement the analysis, test it, remove this ToDo, and mark as VALIDATED :-) + diff --git a/analyses/pluginALICE/ALICE_2016_I1507157.plot b/analyses/pluginALICE/ALICE_2016_I1507157.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507157.plot @@ -0,0 +1,8 @@ +BEGIN PLOT /ALICE_2016_I1507157/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_2016_I1507157.yoda b/analyses/pluginALICE/ALICE_2016_I1507157.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginALICE/ALICE_2016_I1507157.yoda @@ -0,0 +1,563 @@ +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d04-x01-y03 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d04-x01-y03 +Title: doi:10.17182/hepdata.78803.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.306000e-01 1.522367e-02 1.522367e-02 +-1.080000e+00 1.100000e-01 1.050000e-01 9.833000e-01 1.524106e-02 1.524106e-02 +-8.700000e-01 1.050000e-01 1.100000e-01 1.048400e+00 1.525910e-02 1.525910e-02 +-6.500000e-01 1.100000e-01 1.100000e-01 1.141200e+00 1.527776e-02 1.527776e-02 +-4.300000e-01 1.100000e-01 1.050000e-01 1.249600e+00 1.531698e-02 1.531698e-02 +-2.200000e-01 1.050000e-01 1.100000e-01 1.336900e+00 1.533754e-02 1.533754e-02 +0.000000e+00 1.100000e-01 1.100000e-01 1.378200e+00 1.535871e-02 1.535871e-02 +2.200000e-01 1.100000e-01 1.050000e-01 1.337000e+00 1.533754e-02 1.533754e-02 +4.300000e-01 1.050000e-01 1.100000e-01 1.241900e+00 1.531698e-02 1.531698e-02 +6.500000e-01 1.100000e-01 1.100000e-01 1.137500e+00 1.527776e-02 1.527776e-02 +8.700000e-01 1.100000e-01 1.050000e-01 1.042900e+00 1.525910e-02 1.525910e-02 +1.080000e+00 1.050000e-01 1.100000e-01 9.800000e-01 1.524106e-02 1.524106e-02 +1.300000e+00 1.100000e-01 1.100000e-01 9.350000e-01 1.524106e-02 1.524106e-02 +1.520000e+00 1.100000e-01 1.050000e-01 9.034000e-01 1.522367e-02 1.522367e-02 +1.730000e+00 1.050000e-01 1.100000e-01 8.869000e-01 1.522367e-02 1.522367e-02 +1.950000e+00 1.100000e-01 1.100000e-01 8.795000e-01 1.522367e-02 1.522367e-02 +2.170000e+00 1.100000e-01 1.050000e-01 8.805000e-01 1.522367e-02 1.522367e-02 +2.380000e+00 1.050000e-01 1.100000e-01 8.891000e-01 1.522367e-02 1.522367e-02 +2.600000e+00 1.100000e-01 1.100000e-01 8.909000e-01 1.522367e-02 1.522367e-02 +2.820000e+00 1.100000e-01 1.050000e-01 8.907000e-01 1.522367e-02 1.522367e-02 +3.030000e+00 1.050000e-01 1.100000e-01 8.931000e-01 1.522367e-02 1.522367e-02 +3.250000e+00 1.100000e-01 1.100000e-01 8.841000e-01 1.522367e-02 1.522367e-02 +3.470000e+00 1.100000e-01 1.050000e-01 8.941000e-01 1.522367e-02 1.522367e-02 +3.680000e+00 1.050000e-01 1.100000e-01 8.945000e-01 1.522367e-02 1.522367e-02 +3.900000e+00 1.100000e-01 1.100000e-01 8.767000e-01 1.522367e-02 1.522367e-02 +4.120000e+00 1.100000e-01 1.050000e-01 8.791000e-01 1.522367e-02 1.522367e-02 +4.330000e+00 1.050000e-01 1.100000e-01 8.753000e-01 1.522367e-02 1.522367e-02 +4.550000e+00 1.100000e-01 1.100000e-01 8.879000e-01 1.522367e-02 1.522367e-02 +4.770000e+00 1.100000e-01 3.732000e-01 9.105000e-01 1.522367e-02 1.522367e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d04-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d04-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.270000e-01 1.505623e-02 1.505623e-02 +-1.080000e+00 1.100000e-01 1.050000e-01 9.496000e-01 1.505623e-02 1.505623e-02 +-8.700000e-01 1.050000e-01 1.100000e-01 9.878000e-01 1.505623e-02 1.505623e-02 +-6.500000e-01 1.100000e-01 1.100000e-01 1.073500e+00 1.506519e-02 1.506519e-02 +-4.300000e-01 1.100000e-01 1.050000e-01 1.188100e+00 1.507481e-02 1.507481e-02 +-2.200000e-01 1.050000e-01 1.100000e-01 1.395800e+00 1.508509e-02 1.508509e-02 +0.000000e+00 1.100000e-01 1.100000e-01 1.535200e+00 1.509603e-02 1.509603e-02 +2.200000e-01 1.100000e-01 1.050000e-01 1.391700e+00 1.508509e-02 1.508509e-02 +4.300000e-01 1.050000e-01 1.100000e-01 1.183900e+00 1.507481e-02 1.507481e-02 +6.500000e-01 1.100000e-01 1.100000e-01 1.073300e+00 1.506519e-02 1.506519e-02 +8.700000e-01 1.100000e-01 1.050000e-01 9.892000e-01 1.505623e-02 1.505623e-02 +1.080000e+00 1.050000e-01 1.100000e-01 9.527000e-01 1.505623e-02 1.505623e-02 +1.300000e+00 1.100000e-01 1.100000e-01 9.251000e-01 1.505623e-02 1.505623e-02 +1.520000e+00 1.100000e-01 1.050000e-01 9.090000e-01 1.505623e-02 1.505623e-02 +1.730000e+00 1.050000e-01 1.100000e-01 8.960000e-01 1.505623e-02 1.505623e-02 +1.950000e+00 1.100000e-01 1.100000e-01 8.954000e-01 1.505623e-02 1.505623e-02 +2.170000e+00 1.100000e-01 1.050000e-01 8.950000e-01 1.505623e-02 1.505623e-02 +2.380000e+00 1.050000e-01 1.100000e-01 8.980000e-01 1.505623e-02 1.505623e-02 +2.600000e+00 1.100000e-01 1.100000e-01 9.024000e-01 1.505623e-02 1.505623e-02 +2.820000e+00 1.100000e-01 1.050000e-01 9.024000e-01 1.505623e-02 1.505623e-02 +3.030000e+00 1.050000e-01 1.100000e-01 9.032000e-01 1.505623e-02 1.505623e-02 +3.250000e+00 1.100000e-01 1.100000e-01 9.065000e-01 1.505623e-02 1.505623e-02 +3.470000e+00 1.100000e-01 1.050000e-01 9.045000e-01 1.505623e-02 1.505623e-02 +3.680000e+00 1.050000e-01 1.100000e-01 9.020000e-01 1.505623e-02 1.505623e-02 +3.900000e+00 1.100000e-01 1.100000e-01 8.950000e-01 1.505623e-02 1.505623e-02 +4.120000e+00 1.100000e-01 1.050000e-01 8.950000e-01 1.505623e-02 1.505623e-02 +4.330000e+00 1.050000e-01 1.100000e-01 8.953000e-01 1.505623e-02 1.505623e-02 +4.550000e+00 1.100000e-01 1.100000e-01 9.023000e-01 1.505623e-02 1.505623e-02 +4.770000e+00 1.100000e-01 3.732000e-01 9.046000e-01 1.505623e-02 1.505623e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d04-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d04-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.929350e-01 5.000865e-03 5.000865e-03 +-1.080000e+00 1.100000e-01 1.050000e-01 1.006180e+00 5.000884e-03 5.000884e-03 +-8.700000e-01 1.050000e-01 1.100000e-01 1.022440e+00 5.000902e-03 5.000902e-03 +-6.500000e-01 1.100000e-01 1.100000e-01 1.039540e+00 5.001000e-03 5.001000e-03 +-4.300000e-01 1.100000e-01 1.050000e-01 1.055350e+00 5.001000e-03 5.001000e-03 +-2.200000e-01 1.050000e-01 1.100000e-01 1.067480e+00 5.001000e-03 5.001000e-03 +0.000000e+00 1.100000e-01 1.100000e-01 1.072200e+00 5.001000e-03 5.001000e-03 +2.200000e-01 1.100000e-01 1.050000e-01 1.067990e+00 5.001000e-03 5.001000e-03 +4.300000e-01 1.050000e-01 1.100000e-01 1.054940e+00 5.001000e-03 5.001000e-03 +6.500000e-01 1.100000e-01 1.100000e-01 1.039360e+00 5.001000e-03 5.001000e-03 +8.700000e-01 1.100000e-01 1.050000e-01 1.022188e+00 5.000902e-03 5.000902e-03 +1.080000e+00 1.050000e-01 1.100000e-01 1.006296e+00 5.000884e-03 5.000884e-03 +1.300000e+00 1.100000e-01 1.100000e-01 9.928740e-01 5.000865e-03 5.000865e-03 +1.520000e+00 1.100000e-01 1.050000e-01 9.826540e-01 5.000865e-03 5.000865e-03 +1.730000e+00 1.050000e-01 1.100000e-01 9.753340e-01 5.000865e-03 5.000865e-03 +1.950000e+00 1.100000e-01 1.100000e-01 9.708730e-01 5.000846e-03 5.000846e-03 +2.170000e+00 1.100000e-01 1.050000e-01 9.693140e-01 5.000846e-03 5.000846e-03 +2.380000e+00 1.050000e-01 1.100000e-01 9.691550e-01 5.000846e-03 5.000846e-03 +2.600000e+00 1.100000e-01 1.100000e-01 9.696880e-01 5.000846e-03 5.000846e-03 +2.820000e+00 1.100000e-01 1.050000e-01 9.711920e-01 5.000846e-03 5.000846e-03 +3.030000e+00 1.050000e-01 1.100000e-01 9.716970e-01 5.000846e-03 5.000846e-03 +3.250000e+00 1.100000e-01 1.100000e-01 9.715290e-01 5.000846e-03 5.000846e-03 +3.470000e+00 1.100000e-01 1.050000e-01 9.708310e-01 5.000846e-03 5.000846e-03 +3.680000e+00 1.050000e-01 1.100000e-01 9.698640e-01 5.000846e-03 5.000846e-03 +3.900000e+00 1.100000e-01 1.100000e-01 9.692410e-01 5.000846e-03 5.000846e-03 +4.120000e+00 1.100000e-01 1.050000e-01 9.692000e-01 5.000846e-03 5.000846e-03 +4.330000e+00 1.050000e-01 1.100000e-01 9.711250e-01 5.000846e-03 5.000846e-03 +4.550000e+00 1.100000e-01 1.100000e-01 9.755100e-01 5.000865e-03 5.000865e-03 +4.770000e+00 1.100000e-01 3.732000e-01 9.825610e-01 5.000865e-03 5.000865e-03 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d02-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d02-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.796000e-01 1.538051e-02 1.538051e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 1.066900e+00 1.542595e-02 1.542595e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 1.190000e+00 1.547385e-02 1.547385e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 1.325600e+00 1.552417e-02 1.552417e-02 +0.000000e+00 1.350000e-01 1.350000e-01 1.383600e+00 1.555024e-02 1.555024e-02 +2.700000e-01 1.350000e-01 1.400000e-01 1.321800e+00 1.552417e-02 1.552417e-02 +5.500000e-01 1.400000e-01 1.350000e-01 1.185100e+00 1.547385e-02 1.547385e-02 +8.200000e-01 1.350000e-01 1.350000e-01 1.060600e+00 1.542595e-02 1.542595e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.764000e-01 1.538051e-02 1.538051e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.233000e-01 1.535871e-02 1.535871e-02 +1.640000e+00 1.350000e-01 1.350000e-01 8.918000e-01 1.535871e-02 1.535871e-02 +1.910000e+00 1.350000e-01 1.400000e-01 8.772000e-01 1.535871e-02 1.535871e-02 +2.190000e+00 1.400000e-01 1.350000e-01 8.809000e-01 1.535871e-02 1.535871e-02 +2.460000e+00 1.350000e-01 1.350000e-01 8.886000e-01 1.535871e-02 1.535871e-02 +2.730000e+00 1.350000e-01 1.400000e-01 8.917000e-01 1.535871e-02 1.535871e-02 +3.010000e+00 1.400000e-01 1.350000e-01 8.921000e-01 1.535871e-02 1.535871e-02 +3.280000e+00 1.350000e-01 1.350000e-01 8.880000e-01 1.535871e-02 1.535871e-02 +3.550000e+00 1.350000e-01 1.350000e-01 8.908000e-01 1.535871e-02 1.535871e-02 +3.820000e+00 1.350000e-01 1.400000e-01 8.820000e-01 1.533754e-02 1.533754e-02 +4.100000e+00 1.400000e-01 1.350000e-01 8.765000e-01 1.533754e-02 1.533754e-02 +4.370000e+00 1.350000e-01 1.350000e-01 8.765000e-01 1.533754e-02 1.533754e-02 +4.640000e+00 1.350000e-01 1.400000e-01 8.979000e-01 1.535871e-02 1.535871e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.197000e-01 1.535871e-02 1.535871e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d02-x01-y03 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d02-x01-y03 +Title: doi:10.17182/hepdata.78803.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.770000e-01 4.024922e-02 4.024922e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 1.064000e+00 4.070626e-02 4.070626e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 1.230000e+00 4.219005e-02 4.219005e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 1.296000e+00 4.219005e-02 4.219005e-02 +0.000000e+00 1.350000e-01 1.350000e-01 1.361000e+00 4.272002e-02 4.272002e-02 +2.700000e-01 1.350000e-01 1.400000e-01 1.290000e+00 4.219005e-02 4.219005e-02 +5.500000e-01 1.400000e-01 1.350000e-01 1.194000e+00 4.167733e-02 4.167733e-02 +8.200000e-01 1.350000e-01 1.350000e-01 1.076000e+00 4.070626e-02 4.070626e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.880000e-01 4.024922e-02 4.024922e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.360000e-01 4.024922e-02 4.024922e-02 +1.640000e+00 1.350000e-01 1.350000e-01 9.010000e-01 3.981206e-02 3.981206e-02 +1.910000e+00 1.350000e-01 1.400000e-01 8.850000e-01 3.981206e-02 3.981206e-02 +2.190000e+00 1.400000e-01 1.350000e-01 8.910000e-01 3.981206e-02 3.981206e-02 +2.460000e+00 1.350000e-01 1.350000e-01 8.890000e-01 3.981206e-02 3.981206e-02 +2.730000e+00 1.350000e-01 1.400000e-01 8.870000e-01 3.981206e-02 3.981206e-02 +3.010000e+00 1.400000e-01 1.350000e-01 9.030000e-01 3.981206e-02 3.981206e-02 +3.280000e+00 1.350000e-01 1.350000e-01 8.840000e-01 3.981206e-02 3.981206e-02 +3.550000e+00 1.350000e-01 1.350000e-01 8.820000e-01 3.981206e-02 3.981206e-02 +3.820000e+00 1.350000e-01 1.400000e-01 9.010000e-01 3.981206e-02 3.981206e-02 +4.100000e+00 1.400000e-01 1.350000e-01 8.720000e-01 3.981206e-02 3.981206e-02 +4.370000e+00 1.350000e-01 1.350000e-01 8.940000e-01 3.981206e-02 3.981206e-02 +4.640000e+00 1.350000e-01 1.400000e-01 8.840000e-01 3.981206e-02 3.981206e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.130000e-01 3.981206e-02 3.981206e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d02-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d02-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.720000e-01 1.980808e-02 1.980808e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 1.029500e+00 1.986555e-02 1.986555e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 1.127400e+00 1.995520e-02 1.995520e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 1.224300e+00 2.004894e-02 2.004894e-02 +0.000000e+00 1.350000e-01 1.350000e-01 1.249400e+00 2.008109e-02 2.008109e-02 +2.700000e-01 1.350000e-01 1.400000e-01 1.218700e+00 2.004894e-02 2.004894e-02 +5.500000e-01 1.400000e-01 1.350000e-01 1.134200e+00 1.995520e-02 1.995520e-02 +8.200000e-01 1.350000e-01 1.350000e-01 1.026600e+00 1.986555e-02 1.986555e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.693000e-01 1.980808e-02 1.980808e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.321000e-01 1.975247e-02 1.975247e-02 +1.640000e+00 1.350000e-01 1.350000e-01 9.253000e-01 1.975247e-02 1.975247e-02 +1.910000e+00 1.350000e-01 1.400000e-01 9.253000e-01 1.975247e-02 1.975247e-02 +2.190000e+00 1.400000e-01 1.350000e-01 9.178000e-01 1.975247e-02 1.975247e-02 +2.460000e+00 1.350000e-01 1.350000e-01 9.271000e-01 1.975247e-02 1.975247e-02 +2.730000e+00 1.350000e-01 1.400000e-01 9.390000e-01 1.975247e-02 1.975247e-02 +3.010000e+00 1.400000e-01 1.350000e-01 9.564000e-01 1.978004e-02 1.978004e-02 +3.280000e+00 1.350000e-01 1.350000e-01 9.565000e-01 1.978004e-02 1.978004e-02 +3.550000e+00 1.350000e-01 1.350000e-01 9.488000e-01 1.978004e-02 1.978004e-02 +3.820000e+00 1.350000e-01 1.400000e-01 9.303000e-01 1.975247e-02 1.975247e-02 +4.100000e+00 1.400000e-01 1.350000e-01 9.309000e-01 1.975247e-02 1.975247e-02 +4.370000e+00 1.350000e-01 1.350000e-01 9.186000e-01 1.975247e-02 1.975247e-02 +4.640000e+00 1.350000e-01 1.400000e-01 9.163000e-01 1.975247e-02 1.975247e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.255000e-01 1.975247e-02 1.975247e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d05-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d05-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.637000e-01 1.506519e-02 1.506519e-02 +-1.080000e+00 1.100000e-01 1.050000e-01 9.652000e-01 1.507481e-02 1.507481e-02 +-8.700000e-01 1.050000e-01 1.100000e-01 9.700000e-01 1.507481e-02 1.507481e-02 +-6.500000e-01 1.100000e-01 1.100000e-01 9.854000e-01 1.507481e-02 1.507481e-02 +-4.300000e-01 1.100000e-01 1.050000e-01 1.010200e+00 1.507481e-02 1.507481e-02 +-2.200000e-01 1.050000e-01 1.100000e-01 1.042700e+00 1.507481e-02 1.507481e-02 +0.000000e+00 1.100000e-01 1.100000e-01 1.061600e+00 1.507481e-02 1.507481e-02 +2.200000e-01 1.100000e-01 1.050000e-01 1.043400e+00 1.507481e-02 1.507481e-02 +4.300000e-01 1.050000e-01 1.100000e-01 1.008800e+00 1.507481e-02 1.507481e-02 +6.500000e-01 1.100000e-01 1.100000e-01 9.875000e-01 1.507481e-02 1.507481e-02 +8.700000e-01 1.100000e-01 1.050000e-01 9.743000e-01 1.507481e-02 1.507481e-02 +1.080000e+00 1.050000e-01 1.100000e-01 9.638000e-01 1.506519e-02 1.506519e-02 +1.300000e+00 1.100000e-01 1.100000e-01 9.640000e-01 1.506519e-02 1.506519e-02 +1.520000e+00 1.100000e-01 1.050000e-01 9.703000e-01 1.507481e-02 1.507481e-02 +1.730000e+00 1.050000e-01 1.100000e-01 9.812000e-01 1.507481e-02 1.507481e-02 +1.950000e+00 1.100000e-01 1.100000e-01 9.867000e-01 1.507481e-02 1.507481e-02 +2.170000e+00 1.100000e-01 1.050000e-01 9.991000e-01 1.507481e-02 1.507481e-02 +2.380000e+00 1.050000e-01 1.100000e-01 1.011900e+00 1.507481e-02 1.507481e-02 +2.600000e+00 1.100000e-01 1.100000e-01 1.017500e+00 1.507481e-02 1.507481e-02 +2.820000e+00 1.100000e-01 1.050000e-01 1.027800e+00 1.507481e-02 1.507481e-02 +3.030000e+00 1.050000e-01 1.100000e-01 1.031100e+00 1.507481e-02 1.507481e-02 +3.250000e+00 1.100000e-01 1.100000e-01 1.037900e+00 1.507481e-02 1.507481e-02 +3.470000e+00 1.100000e-01 1.050000e-01 1.028600e+00 1.507481e-02 1.507481e-02 +3.680000e+00 1.050000e-01 1.100000e-01 1.020800e+00 1.507481e-02 1.507481e-02 +3.900000e+00 1.100000e-01 1.100000e-01 1.009800e+00 1.507481e-02 1.507481e-02 +4.120000e+00 1.100000e-01 1.050000e-01 1.001000e+00 1.507481e-02 1.507481e-02 +4.330000e+00 1.050000e-01 1.100000e-01 9.860000e-01 1.507481e-02 1.507481e-02 +4.550000e+00 1.100000e-01 1.100000e-01 9.793000e-01 1.507481e-02 1.507481e-02 +4.770000e+00 1.100000e-01 3.732000e-01 9.683000e-01 1.507481e-02 1.507481e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d05-x01-y03 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d05-x01-y03 +Title: doi:10.17182/hepdata.78803.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.508000e-01 2.520397e-02 2.520397e-02 +-1.080000e+00 1.100000e-01 1.050000e-01 9.223000e-01 2.520397e-02 2.520397e-02 +-8.700000e-01 1.050000e-01 1.100000e-01 8.819000e-01 2.519147e-02 2.519147e-02 +-6.500000e-01 1.100000e-01 1.100000e-01 8.642000e-01 2.519147e-02 2.519147e-02 +-4.300000e-01 1.100000e-01 1.050000e-01 8.489000e-01 2.517936e-02 2.517936e-02 +-2.200000e-01 1.050000e-01 1.100000e-01 8.407000e-01 2.517936e-02 2.517936e-02 +0.000000e+00 1.100000e-01 1.100000e-01 8.665000e-01 2.517936e-02 2.517936e-02 +2.200000e-01 1.100000e-01 1.050000e-01 8.435000e-01 2.517936e-02 2.517936e-02 +4.300000e-01 1.050000e-01 1.100000e-01 8.545000e-01 2.517936e-02 2.517936e-02 +6.500000e-01 1.100000e-01 1.100000e-01 8.606000e-01 2.519147e-02 2.519147e-02 +8.700000e-01 1.100000e-01 1.050000e-01 8.799000e-01 2.519147e-02 2.519147e-02 +1.080000e+00 1.050000e-01 1.100000e-01 9.246000e-01 2.520397e-02 2.520397e-02 +1.300000e+00 1.100000e-01 1.100000e-01 9.504000e-01 2.520397e-02 2.520397e-02 +1.520000e+00 1.100000e-01 1.050000e-01 9.855000e-01 2.521686e-02 2.521686e-02 +1.730000e+00 1.050000e-01 1.100000e-01 1.022200e+00 2.521686e-02 2.521686e-02 +1.950000e+00 1.100000e-01 1.100000e-01 1.053400e+00 2.523014e-02 2.523014e-02 +2.170000e+00 1.100000e-01 1.050000e-01 1.090000e+00 2.524381e-02 2.524381e-02 +2.380000e+00 1.050000e-01 1.100000e-01 1.119500e+00 2.524381e-02 2.524381e-02 +2.600000e+00 1.100000e-01 1.100000e-01 1.146800e+00 2.525787e-02 2.525787e-02 +2.820000e+00 1.100000e-01 1.050000e-01 1.172100e+00 2.525787e-02 2.525787e-02 +3.030000e+00 1.050000e-01 1.100000e-01 1.169600e+00 2.525787e-02 2.525787e-02 +3.250000e+00 1.100000e-01 1.100000e-01 1.175600e+00 2.525787e-02 2.525787e-02 +3.470000e+00 1.100000e-01 1.050000e-01 1.166100e+00 2.525787e-02 2.525787e-02 +3.680000e+00 1.050000e-01 1.100000e-01 1.141700e+00 2.524381e-02 2.524381e-02 +3.900000e+00 1.100000e-01 1.100000e-01 1.124000e+00 2.524381e-02 2.524381e-02 +4.120000e+00 1.100000e-01 1.050000e-01 1.101100e+00 2.524381e-02 2.524381e-02 +4.330000e+00 1.050000e-01 1.100000e-01 1.068300e+00 2.523014e-02 2.523014e-02 +4.550000e+00 1.100000e-01 1.100000e-01 1.021400e+00 2.521686e-02 2.521686e-02 +4.770000e+00 1.100000e-01 3.732000e-01 9.840000e-01 2.521686e-02 2.521686e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d05-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d05-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.300000e+00 1.600000e-01 1.100000e-01 9.762330e-01 5.000902e-03 5.000902e-03 +-1.080000e+00 1.100000e-01 1.050000e-01 9.874500e-01 5.001000e-03 5.001000e-03 +-8.700000e-01 1.050000e-01 1.100000e-01 1.004530e+00 5.001000e-03 5.001000e-03 +-6.500000e-01 1.100000e-01 1.100000e-01 1.029530e+00 5.001000e-03 5.001000e-03 +-4.300000e-01 1.100000e-01 1.050000e-01 1.064780e+00 5.001000e-03 5.001000e-03 +-2.200000e-01 1.050000e-01 1.100000e-01 1.107170e+00 5.001000e-03 5.001000e-03 +0.000000e+00 1.100000e-01 1.100000e-01 1.123640e+00 5.001000e-03 5.001000e-03 +2.200000e-01 1.100000e-01 1.050000e-01 1.107200e+00 5.001000e-03 5.001000e-03 +4.300000e-01 1.050000e-01 1.100000e-01 1.064630e+00 5.001000e-03 5.001000e-03 +6.500000e-01 1.100000e-01 1.100000e-01 1.029320e+00 5.001000e-03 5.001000e-03 +8.700000e-01 1.100000e-01 1.050000e-01 1.004750e+00 5.001000e-03 5.001000e-03 +1.080000e+00 1.050000e-01 1.100000e-01 9.874200e-01 5.001000e-03 5.001000e-03 +1.300000e+00 1.100000e-01 1.100000e-01 9.759840e-01 5.000902e-03 5.000902e-03 +1.520000e+00 1.100000e-01 1.050000e-01 9.693090e-01 5.000902e-03 5.000902e-03 +1.730000e+00 1.050000e-01 1.100000e-01 9.664520e-01 5.000902e-03 5.000902e-03 +1.950000e+00 1.100000e-01 1.100000e-01 9.661140e-01 5.000902e-03 5.000902e-03 +2.170000e+00 1.100000e-01 1.050000e-01 9.677500e-01 5.000902e-03 5.000902e-03 +2.380000e+00 1.050000e-01 1.100000e-01 9.703130e-01 5.000902e-03 5.000902e-03 +2.600000e+00 1.100000e-01 1.100000e-01 9.736040e-01 5.000902e-03 5.000902e-03 +2.820000e+00 1.100000e-01 1.050000e-01 9.761100e-01 5.001000e-03 5.001000e-03 +3.030000e+00 1.050000e-01 1.100000e-01 9.774700e-01 5.001000e-03 5.001000e-03 +3.250000e+00 1.100000e-01 1.100000e-01 9.774100e-01 5.001000e-03 5.001000e-03 +3.470000e+00 1.100000e-01 1.050000e-01 9.758900e-01 5.001000e-03 5.001000e-03 +3.680000e+00 1.050000e-01 1.100000e-01 9.735420e-01 5.000902e-03 5.000902e-03 +3.900000e+00 1.100000e-01 1.100000e-01 9.703750e-01 5.000902e-03 5.000902e-03 +4.120000e+00 1.100000e-01 1.050000e-01 9.676720e-01 5.000902e-03 5.000902e-03 +4.330000e+00 1.050000e-01 1.100000e-01 9.662560e-01 5.000902e-03 5.000902e-03 +4.550000e+00 1.100000e-01 1.100000e-01 9.663750e-01 5.000884e-03 5.000884e-03 +4.770000e+00 1.100000e-01 3.732000e-01 9.695280e-01 5.000902e-03 5.000902e-03 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d03-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d03-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.411000e-01 2.561952e-02 2.561952e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.871000e-01 2.557655e-02 2.557655e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.901000e-01 2.557655e-02 2.557655e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.776000e-01 2.553507e-02 2.553507e-02 +0.000000e+00 1.350000e-01 1.350000e-01 9.206000e-01 2.555563e-02 2.555563e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.807000e-01 2.555563e-02 2.555563e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.943000e-01 2.557655e-02 2.557655e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.883000e-01 2.557655e-02 2.557655e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.327000e-01 2.559785e-02 2.559785e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.499000e-01 2.561952e-02 2.561952e-02 +1.640000e+00 1.350000e-01 1.350000e-01 9.978000e-01 2.564157e-02 2.564157e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.033300e+00 2.566398e-02 2.566398e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.086500e+00 2.570992e-02 2.570992e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.104200e+00 2.570992e-02 2.570992e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.139200e+00 2.573344e-02 2.573344e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.133800e+00 2.570992e-02 2.570992e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.140300e+00 2.570992e-02 2.570992e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.121300e+00 2.570992e-02 2.570992e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.112500e+00 2.570992e-02 2.570992e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.077600e+00 2.568677e-02 2.568677e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.038800e+00 2.566398e-02 2.566398e-02 +4.640000e+00 1.350000e-01 1.400000e-01 1.006500e+00 2.564157e-02 2.564157e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.590000e-01 2.561952e-02 2.561952e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d03-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d03-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.109000e-01 2.610077e-02 2.610077e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.716000e-01 2.604400e-02 2.604400e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.539000e-01 2.601615e-02 2.601615e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.228000e-01 2.596151e-02 2.596151e-02 +0.000000e+00 1.350000e-01 1.350000e-01 8.425000e-01 2.593473e-02 2.593473e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.035000e-01 2.593473e-02 2.593473e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.377000e-01 2.598865e-02 2.598865e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.653000e-01 2.604400e-02 2.604400e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.160000e-01 2.610077e-02 2.610077e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.500000e-01 2.612968e-02 2.612968e-02 +1.640000e+00 1.350000e-01 1.350000e-01 9.999000e-01 2.621850e-02 2.621850e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.051600e+00 2.627946e-02 2.627946e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.109200e+00 2.634179e-02 2.634179e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.158500e+00 2.640549e-02 2.640549e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.179400e+00 2.643785e-02 2.643785e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.198900e+00 2.647055e-02 2.647055e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.189700e+00 2.643785e-02 2.643785e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.174300e+00 2.643785e-02 2.643785e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.156800e+00 2.640549e-02 2.640549e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.110600e+00 2.634179e-02 2.634179e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.066200e+00 2.631045e-02 2.631045e-02 +4.640000e+00 1.350000e-01 1.400000e-01 9.854000e-01 2.618855e-02 2.618855e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.711000e-01 2.615894e-02 2.615894e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d01-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d01-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.289000e-01 2.198295e-02 2.198295e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.942000e-01 2.195359e-02 2.195359e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.769000e-01 2.192464e-02 2.192464e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.509000e-01 2.189612e-02 2.189612e-02 +0.000000e+00 1.350000e-01 1.350000e-01 8.637000e-01 2.192464e-02 2.192464e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.731000e-01 2.192464e-02 2.192464e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.576000e-01 2.189612e-02 2.189612e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.826000e-01 2.192464e-02 2.192464e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.209000e-01 2.198295e-02 2.198295e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.744000e-01 2.204291e-02 2.204291e-02 +1.640000e+00 1.350000e-01 1.350000e-01 1.009000e+00 2.210452e-02 2.210452e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.046400e+00 2.213594e-02 2.213594e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.093300e+00 2.220000e-02 2.220000e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.122900e+00 2.226567e-02 2.226567e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.139800e+00 2.226567e-02 2.226567e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.154000e+00 2.229910e-02 2.229910e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.145900e+00 2.226567e-02 2.226567e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.142700e+00 2.226567e-02 2.226567e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.122000e+00 2.223263e-02 2.223263e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.087200e+00 2.220000e-02 2.220000e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.036700e+00 2.210452e-02 2.210452e-02 +4.640000e+00 1.350000e-01 1.400000e-01 1.006500e+00 2.207351e-02 2.207351e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.684000e-01 2.204291e-02 2.204291e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d01-x01-y03 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d01-x01-y03 +Title: doi:10.17182/hepdata.78803.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.170000e-01 4.308132e-02 4.308132e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.600000e-01 4.308132e-02 4.308132e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.390000e-01 4.272002e-02 4.272002e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.490000e-01 4.272002e-02 4.272002e-02 +0.000000e+00 1.350000e-01 1.350000e-01 8.200000e-01 4.272002e-02 4.272002e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.310000e-01 4.272002e-02 4.272002e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.650000e-01 4.308132e-02 4.308132e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.750000e-01 4.308132e-02 4.308132e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.170000e-01 4.308132e-02 4.308132e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.630000e-01 4.308132e-02 4.308132e-02 +1.640000e+00 1.350000e-01 1.350000e-01 1.046000e+00 4.346263e-02 4.346263e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.041000e+00 4.346263e-02 4.346263e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.097000e+00 4.346263e-02 4.346263e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.119000e+00 4.386342e-02 4.386342e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.171000e+00 4.386342e-02 4.386342e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.192000e+00 4.386342e-02 4.386342e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.163000e+00 4.386342e-02 4.386342e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.173000e+00 4.386342e-02 4.386342e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.140000e+00 4.386342e-02 4.386342e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.087000e+00 4.346263e-02 4.346263e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.052000e+00 4.346263e-02 4.346263e-02 +4.640000e+00 1.350000e-01 1.400000e-01 1.015000e+00 4.346263e-02 4.346263e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.690000e-01 4.308132e-02 4.308132e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d01-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d01-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.247000e-01 2.531798e-02 2.531798e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.743000e-01 2.530237e-02 2.530237e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.578000e-01 2.528715e-02 2.528715e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.438000e-01 2.528715e-02 2.528715e-02 +0.000000e+00 1.350000e-01 1.350000e-01 8.592000e-01 2.527232e-02 2.527232e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.433000e-01 2.528715e-02 2.528715e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.571000e-01 2.528715e-02 2.528715e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.762000e-01 2.530237e-02 2.530237e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.252000e-01 2.531798e-02 2.531798e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.624000e-01 2.533397e-02 2.533397e-02 +1.640000e+00 1.350000e-01 1.350000e-01 1.004100e+00 2.535035e-02 2.535035e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.050100e+00 2.536710e-02 2.536710e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.096400e+00 2.538425e-02 2.538425e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.128600e+00 2.538425e-02 2.538425e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.164900e+00 2.540177e-02 2.540177e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.167000e+00 2.540177e-02 2.540177e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.175200e+00 2.540177e-02 2.540177e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.154200e+00 2.540177e-02 2.540177e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.132000e+00 2.540177e-02 2.540177e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.101600e+00 2.538425e-02 2.538425e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.059000e+00 2.536710e-02 2.536710e-02 +4.640000e+00 1.350000e-01 1.400000e-01 1.005200e+00 2.535035e-02 2.535035e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.618000e-01 2.533397e-02 2.533397e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d06-x01-y01 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d06-x01-y01 +Title: doi:10.17182/hepdata.78803.v1/t6 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 8.950000e-01 4.237924e-02 4.237924e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 8.360000e-01 4.237924e-02 4.237924e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 8.110000e-01 4.205948e-02 4.205948e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 8.320000e-01 4.205948e-02 4.205948e-02 +0.000000e+00 1.350000e-01 1.350000e-01 8.130000e-01 4.205948e-02 4.205948e-02 +2.700000e-01 1.350000e-01 1.400000e-01 8.060000e-01 4.205948e-02 4.205948e-02 +5.500000e-01 1.400000e-01 1.350000e-01 8.630000e-01 4.237924e-02 4.237924e-02 +8.200000e-01 1.350000e-01 1.350000e-01 8.930000e-01 4.237924e-02 4.237924e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.090000e-01 4.237924e-02 4.237924e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.400000e-01 4.237924e-02 4.237924e-02 +1.640000e+00 1.350000e-01 1.350000e-01 1.045000e+00 4.272002e-02 4.272002e-02 +1.910000e+00 1.350000e-01 1.400000e-01 1.054000e+00 4.272002e-02 4.272002e-02 +2.190000e+00 1.400000e-01 1.350000e-01 1.135000e+00 4.308132e-02 4.308132e-02 +2.460000e+00 1.350000e-01 1.350000e-01 1.114000e+00 4.308132e-02 4.308132e-02 +2.730000e+00 1.350000e-01 1.400000e-01 1.178000e+00 4.308132e-02 4.308132e-02 +3.010000e+00 1.400000e-01 1.350000e-01 1.212000e+00 4.308132e-02 4.308132e-02 +3.280000e+00 1.350000e-01 1.350000e-01 1.190000e+00 4.308132e-02 4.308132e-02 +3.550000e+00 1.350000e-01 1.350000e-01 1.168000e+00 4.308132e-02 4.308132e-02 +3.820000e+00 1.350000e-01 1.400000e-01 1.166000e+00 4.308132e-02 4.308132e-02 +4.100000e+00 1.400000e-01 1.350000e-01 1.097000e+00 4.272002e-02 4.272002e-02 +4.370000e+00 1.350000e-01 1.350000e-01 1.034000e+00 4.272002e-02 4.272002e-02 +4.640000e+00 1.350000e-01 1.400000e-01 1.017000e+00 4.272002e-02 4.272002e-02 +4.920000e+00 1.400000e-01 2.232000e-01 9.930000e-01 4.272002e-02 4.272002e-02 +END YODA_SCATTER2D_V2 + +BEGIN YODA_SCATTER2D_V2 /REF/ALICE_2016_I1507157/d06-x01-y02 +Variations: [""] +IsRef: 1 +Path: /REF/ALICE_2016_I1507157/d06-x01-y02 +Title: doi:10.17182/hepdata.78803.v1/t6 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr- +-1.090000e+00 5.000000e-02 1.350000e-01 9.570000e-01 3.764306e-02 3.764306e-02 +-8.200000e-01 1.350000e-01 1.350000e-01 1.052000e+00 3.794733e-02 3.794733e-02 +-5.500000e-01 1.350000e-01 1.400000e-01 1.224000e+00 3.862642e-02 3.862642e-02 +-2.700000e-01 1.400000e-01 1.350000e-01 1.346000e+00 3.900000e-02 3.900000e-02 +0.000000e+00 1.350000e-01 1.350000e-01 1.430000e+00 3.900000e-02 3.900000e-02 +2.700000e-01 1.350000e-01 1.400000e-01 1.339000e+00 3.900000e-02 3.900000e-02 +5.500000e-01 1.400000e-01 1.350000e-01 1.203000e+00 3.862642e-02 3.862642e-02 +8.200000e-01 1.350000e-01 1.350000e-01 1.068000e+00 3.794733e-02 3.794733e-02 +1.090000e+00 1.350000e-01 1.400000e-01 9.680000e-01 3.794733e-02 3.794733e-02 +1.370000e+00 1.400000e-01 1.350000e-01 9.080000e-01 3.764306e-02 3.764306e-02 +1.640000e+00 1.350000e-01 1.350000e-01 8.840000e-01 3.764306e-02 3.764306e-02 +1.910000e+00 1.350000e-01 1.400000e-01 8.770000e-01 3.764306e-02 3.764306e-02 +2.190000e+00 1.400000e-01 1.350000e-01 8.680000e-01 3.764306e-02 3.764306e-02 +2.460000e+00 1.350000e-01 1.350000e-01 8.780000e-01 3.764306e-02 3.764306e-02 +2.730000e+00 1.350000e-01 1.400000e-01 8.820000e-01 3.764306e-02 3.764306e-02 +3.010000e+00 1.400000e-01 1.350000e-01 9.050000e-01 3.764306e-02 3.764306e-02 +3.280000e+00 1.350000e-01 1.350000e-01 8.970000e-01 3.764306e-02 3.764306e-02 +3.550000e+00 1.350000e-01 1.350000e-01 8.870000e-01 3.764306e-02 3.764306e-02 +3.820000e+00 1.350000e-01 1.400000e-01 8.990000e-01 3.764306e-02 3.764306e-02 +4.100000e+00 1.400000e-01 1.350000e-01 8.770000e-01 3.764306e-02 3.764306e-02 +4.370000e+00 1.350000e-01 1.350000e-01 8.780000e-01 3.764306e-02 3.764306e-02 +4.640000e+00 1.350000e-01 1.400000e-01 8.700000e-01 3.764306e-02 3.764306e-02 +4.920000e+00 1.400000e-01 2.232000e-01 8.980000e-01 3.764306e-02 3.764306e-02 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginATLAS/ATLAS_2015_I1386475.cc b/analyses/pluginATLAS/ATLAS_2015_I1386475.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_2015_I1386475.cc @@ -0,0 +1,86 @@ +// -*- C++ -*- +#include "Rivet/Analysis.hh" +#include "Rivet/Tools/AtlasCommon.hh" + +namespace Rivet { + + + /// @brief Add a short analysis description here + class ATLAS_2015_I1386475 : public Analysis { + public: + + /// Constructor + DEFAULT_RIVET_ANALYSIS_CTOR(ATLAS_2015_I1386475); + /// Book histograms and initialise projections before the run + void init() { + + // The centrality projection. + declareCentrality(ATLAS::SumET_PB_Centrality(), + "ATLAS_pPb_Calib", "SumETPb", "CENT"); + + // The trigger projection. + declare(ATLAS::MinBiasTrigger(), "Trigger"); + + // The particles to be analysed. + declare(ChargedFinalState(Cuts::eta > -2.7 && Cuts::eta < 2.7 && + Cuts::pT > 0.1*GeV), "CFS"); + + // The centrality bins' upper edges. + centralityBins = {90., 60., 40., 30., 20., 10., 5., 1.}; + for (int i = 0; i < 8; ++i) { + histEta[centralityBins[i]] = bookHisto1D(2, 1, i + 1); + sow[centralityBins[i]] = 0.; + } + } + + /// Perform the per-event analysis + void analyze(const Event& event) { + const double weight = event.weight(); + + // Apply event triggers. + if ( !apply(event, "Trigger")() ) vetoEvent; + + // We must have direct acces to the centrality projection. + const CentralityProjection& cent = + apply(event,"CENT"); + double c = cent(); + // Find the correct centrality histogram + auto hItr = histEta.upper_bound(c); + if (hItr == histEta.end()) return; + // Find the correct sow. + auto sItr = sow.upper_bound(c); + if (sItr == sow.end()) return; + sItr->second += weight; + for ( const auto &p : apply(event,"CFS").particles() ) + hItr->second->fill(p.eta(), weight); + } + + /// Finalize + void finalize() { + + // Scale by the inverse sum of event weights in each centrality + // bin. + for (int i = 0; i < 8; ++i) + histEta[centralityBins[i]]->scaleW(1./sow[centralityBins[i]]); + + } + +private: + + /// The histograms binned in centrality. + vector centralityBins; + map histEta; + map sow; + + + + + + }; + + + // The hook for the plugin system + DECLARE_RIVET_PLUGIN(ATLAS_2015_I1386475); + + +} diff --git a/analyses/pluginATLAS/ATLAS_2015_I1386475.info b/analyses/pluginATLAS/ATLAS_2015_I1386475.info new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_2015_I1386475.info @@ -0,0 +1,49 @@ +Name: ATLAS_2015_I1386475 +Year: 2015 +Summary: Centrality dependent of pseudorapidity distributions in p-Pb collisions $\sqrt{s_{_\text{NN}}}=5.02$ TeV. +Experiment: ATLAS +Collider: LHC +InspireID: 1386475 +Status: UNVALIDATED +Authors: + - Leif Lönnblad + - Christian Bierlich +References: +- Eur.Phys.J. C76 (2016) no.4, 199 +- DOI:0.1140/epjc/s10052-016-4002-3 +- arXiv:1508.00848 [hep-ex] +RunInfo: p-Pb minimum bias events with $c\tau > 10 cm$ stable. +NeedCrossSection: no +Options: + - cent=REF,GEN,IMP,USR +Beams: [2212,1000822080] +Energies: [[4000,326560]] +Description: + 'The centrality dependence of the mean charged-particle multiplicity as a function + of pseudorapidity in proton-lead collisions. The collision energy is asymmetric, + 4000 GeV for the proton and 1570/N for the lead. The primary particle definition is + $c\tau > 10 cm$ stable, and should be enforced at generator level.' +BibKey: Aad:2015zza +BibTeX: '%%% contains utf-8, see: http://inspirehep.net/info/faq/general#utf8 +%%% add \usepackage[utf8]{inputenc} to your latex preamble + +@article{Aad:2015zza, + author = "Aad, Georges and others", + title = "{Measurement of the centrality dependence of the + charged-particle pseudorapidity distribution in + proton–lead collisions at $\sqrt{s_{_\text {NN}}} = + 5.02$  TeV with the ATLAS detector}", + collaboration = "ATLAS", + journal = "Eur. Phys. J.", + volume = "C76", + year = "2016", + number = "4", + pages = "199", + doi = "10.1140/epjc/s10052-016-4002-3", + eprint = "1508.00848", + archivePrefix = "arXiv", + primaryClass = "hep-ex", + reportNumber = "CERN-PH-EP-2015-160", + SLACcitation = "%%CITATION = ARXIV:1508.00848;%%" +}' + diff --git a/analyses/pluginATLAS/ATLAS_2015_I1386475.plot b/analyses/pluginATLAS/ATLAS_2015_I1386475.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_2015_I1386475.plot @@ -0,0 +1,8 @@ +BEGIN PLOT /ATLAS_2015_I1386475/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/pluginATLAS/ATLAS_2015_I1386475.yoda b/analyses/pluginATLAS/ATLAS_2015_I1386475.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_2015_I1386475.yoda @@ -0,0 +1,1589 @@ +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d01-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d01-x01-y01 +Title: doi:10.17182/hepdata.69240.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 1.820000e+01 1.000000e+00 2.700000e+00 +3.000000e+00 2.000000e+00 2.000000e+00 1.610000e+01 9.000000e-01 1.700000e+00 +7.500000e+00 2.500000e+00 2.500000e+00 1.460000e+01 8.000000e-01 1.200000e+00 +1.500000e+01 5.000000e+00 5.000000e+00 1.300000e+01 7.000000e-01 8.000000e-01 +2.500000e+01 5.000000e+00 5.000000e+00 1.140000e+01 6.000000e-01 6.000000e-01 +3.500000e+01 5.000000e+00 5.000000e+00 9.800000e+00 6.000000e-01 6.000000e-01 +4.500000e+01 4.500000e+01 4.500000e+01 8.400000e+00 4.000000e-01 5.000000e-01 +5.000000e+01 1.000000e+01 1.000000e+01 7.400000e+00 6.000000e-01 4.000000e-01 +7.500000e+01 1.500000e+01 1.500000e+01 4.000000e+00 3.000000e-01 2.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d01-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d01-x01-y02 +Title: doi:10.17182/hepdata.69240.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 2.410000e+01 2.000000e+00 1.600000e+00 +3.000000e+00 2.000000e+00 2.000000e+00 1.950000e+01 1.300000e+00 1.300000e+00 +7.500000e+00 2.500000e+00 2.500000e+00 1.650000e+01 1.000000e+00 1.000000e+00 +1.500000e+01 5.000000e+00 5.000000e+00 1.370000e+01 8.000000e-01 8.000000e-01 +2.500000e+01 5.000000e+00 5.000000e+00 1.120000e+01 7.000000e-01 6.000000e-01 +3.500000e+01 5.000000e+00 5.000000e+00 9.200000e+00 5.000000e-01 5.000000e-01 +4.500000e+01 4.500000e+01 4.500000e+01 8.500000e+00 5.000000e-01 5.000000e-01 +5.000000e+01 1.000000e+01 1.000000e+01 6.600000e+00 4.000000e-01 4.000000e-01 +7.500000e+01 1.500000e+01 1.500000e+01 3.600000e+00 2.000000e-01 2.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d01-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d01-x01-y03 +Title: doi:10.17182/hepdata.69240.v1/t1 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 2.740000e+01 4.000000e+00 1.600000e+00 +3.000000e+00 2.000000e+00 2.000000e+00 2.140000e+01 2.000000e+00 1.400000e+00 +7.500000e+00 2.500000e+00 2.500000e+00 1.740000e+01 1.100000e+00 1.100000e+00 +1.500000e+01 5.000000e+00 5.000000e+00 1.410000e+01 8.000000e-01 9.000000e-01 +2.500000e+01 5.000000e+00 5.000000e+00 1.110000e+01 6.000000e-01 7.000000e-01 +3.500000e+01 5.000000e+00 5.000000e+00 8.900000e+00 5.000000e-01 6.000000e-01 +4.500000e+01 4.500000e+01 4.500000e+01 8.600000e+00 4.000000e-01 5.000000e-01 +5.000000e+01 1.000000e+01 1.000000e+01 6.300000e+00 3.000000e-01 5.000000e-01 +7.500000e+01 1.500000e+01 1.500000e+01 3.400000e+00 2.000000e-01 3.000000e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y01 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 7.908000e+00 5.645467e-01 5.645467e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 7.815000e+00 5.531121e-01 5.531121e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 8.035000e+00 5.512840e-01 5.512840e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 8.135000e+00 5.490974e-01 5.490974e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 8.206000e+00 5.481104e-01 5.481104e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 8.239000e+00 5.476139e-01 5.476139e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 8.286000e+00 5.418671e-01 5.418671e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 8.393000e+00 5.418671e-01 5.418671e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 8.369000e+00 5.339850e-01 5.339850e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 8.427000e+00 5.321889e-01 5.321889e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 8.457000e+00 5.312043e-01 5.312043e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 8.419000e+00 5.233297e-01 5.233297e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 8.418000e+00 5.152795e-01 5.152795e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 8.405000e+00 5.113443e-01 5.113443e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 8.358000e+00 5.054434e-01 5.054434e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 8.338000e+00 5.024938e-01 5.024938e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 8.325000e+00 4.975791e-01 4.975791e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 8.227000e+00 4.875674e-01 4.875674e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 8.222000e+00 4.856027e-01 4.856027e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 8.149000e+00 4.795216e-01 4.795216e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 8.100000e+00 4.726479e-01 4.726479e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 8.047000e+00 4.687217e-01 4.687217e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 7.997000e+00 4.642252e-01 4.642252e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 7.940000e+00 4.622607e-01 4.622607e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 7.958000e+00 4.593147e-01 4.593147e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 7.923000e+00 4.565611e-01 4.565611e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 7.888000e+00 4.544062e-01 4.544062e-01 +5.000000e-02 5.000000e-02 5.000000e-02 7.863000e+00 4.514621e-01 4.514621e-01 +1.500000e-01 5.000000e-02 5.000000e-02 7.917000e+00 4.565611e-01 4.565611e-01 +2.500000e-01 5.000000e-02 5.000000e-02 7.985000e+00 4.614683e-01 4.614683e-01 +3.500000e-01 5.000000e-02 5.000000e-02 8.030000e+00 4.675489e-01 4.675489e-01 +4.500000e-01 5.000000e-02 5.000000e-02 8.083000e+00 4.724585e-01 4.724585e-01 +5.500000e-01 5.000000e-02 5.000000e-02 8.201000e+00 4.803176e-01 4.803176e-01 +6.500000e-01 5.000000e-02 5.000000e-02 8.254000e+00 4.842489e-01 4.842489e-01 +7.500000e-01 5.000000e-02 5.000000e-02 8.289000e+00 4.891646e-01 4.891646e-01 +8.500000e-01 5.000000e-02 5.000000e-02 8.380000e+00 4.981967e-01 4.981967e-01 +9.500000e-01 5.000000e-02 5.000000e-02 8.459000e+00 5.060672e-01 5.060672e-01 +1.050000e+00 5.000000e-02 5.000000e-02 8.492000e+00 5.109883e-01 5.109883e-01 +1.150000e+00 5.000000e-02 5.000000e-02 8.563000e+00 5.168955e-01 5.168955e-01 +1.250000e+00 5.000000e-02 5.000000e-02 8.656000e+00 5.288875e-01 5.288875e-01 +1.350000e+00 5.000000e-02 5.000000e-02 8.658000e+00 5.306873e-01 5.306873e-01 +1.450000e+00 5.000000e-02 5.000000e-02 8.668000e+00 5.366013e-01 5.366013e-01 +1.550000e+00 5.000000e-02 5.000000e-02 8.706000e+00 5.428527e-01 5.428527e-01 +1.650000e+00 5.000000e-02 5.000000e-02 8.747000e+00 5.518922e-01 5.518922e-01 +1.750000e+00 5.000000e-02 5.000000e-02 8.730000e+00 5.558354e-01 5.558354e-01 +1.850000e+00 5.000000e-02 5.000000e-02 8.717000e+00 5.635601e-01 5.635601e-01 +1.950000e+00 5.000000e-02 5.000000e-02 8.702000e+00 5.716161e-01 5.716161e-01 +2.050000e+00 5.000000e-02 5.000000e-02 8.702000e+00 5.854340e-01 5.854340e-01 +2.150000e+00 5.000000e-02 5.000000e-02 8.604000e+00 5.854340e-01 5.854340e-01 +2.250000e+00 5.000000e-02 5.000000e-02 8.700000e+00 6.205610e-01 6.205610e-01 +2.350000e+00 5.000000e-02 5.000000e-02 8.693000e+00 6.204168e-01 6.204168e-01 +2.450000e+00 5.000000e-02 5.000000e-02 8.544000e+00 6.210032e-01 6.210032e-01 +2.550000e+00 5.000000e-02 5.000000e-02 8.546000e+00 6.260966e-01 6.260966e-01 +2.650000e+00 5.000000e-02 5.000000e-02 8.420000e+00 6.543699e-01 6.543699e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y02 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 1.635700e+01 7.618300e-01 7.618300e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 1.627500e+01 7.586145e-01 7.586145e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 1.670900e+01 7.371838e-01 7.371838e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 1.688800e+01 7.302630e-01 7.302630e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 1.698500e+01 7.274737e-01 7.274737e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 1.706700e+01 7.340695e-01 7.340695e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 1.720500e+01 7.234141e-01 7.234141e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 1.720100e+01 7.106230e-01 7.106230e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 1.714500e+01 7.007888e-01 7.007888e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 1.724700e+01 6.970409e-01 6.970409e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 1.720600e+01 6.940929e-01 6.940929e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 1.713700e+01 6.832876e-01 6.832876e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 1.712400e+01 6.664083e-01 6.664083e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 1.700400e+01 6.605210e-01 6.605210e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 1.695500e+01 6.554220e-01 6.554220e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 1.680300e+01 6.495368e-01 6.495368e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 1.675500e+01 6.405154e-01 6.405154e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 1.662100e+01 6.277746e-01 6.277746e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 1.644200e+01 6.226757e-01 6.226757e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 1.622500e+01 6.114982e-01 6.114982e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 1.612600e+01 5.987696e-01 5.987696e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 1.600600e+01 5.966071e-01 5.966071e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 1.587100e+01 5.907351e-01 5.907351e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 1.570200e+01 5.885720e-01 5.885720e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 1.558800e+01 5.748782e-01 5.748782e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 1.557000e+01 5.717351e-01 5.717351e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 1.545300e+01 5.678248e-01 5.678248e-01 +5.000000e-02 5.000000e-02 5.000000e-02 1.543700e+01 5.629387e-01 5.629387e-01 +1.500000e-01 5.000000e-02 5.000000e-02 1.538800e+01 5.678248e-01 5.678248e-01 +2.500000e-01 5.000000e-02 5.000000e-02 1.547600e+01 5.727128e-01 5.727128e-01 +3.500000e-01 5.000000e-02 5.000000e-02 1.555900e+01 5.846580e-01 5.846580e-01 +4.500000e-01 5.000000e-02 5.000000e-02 1.561600e+01 5.895507e-01 5.895507e-01 +5.500000e-01 5.000000e-02 5.000000e-02 1.567700e+01 5.917136e-01 5.917136e-01 +6.500000e-01 5.000000e-02 5.000000e-02 1.582100e+01 5.987696e-01 5.987696e-01 +7.500000e-01 5.000000e-02 5.000000e-02 1.586400e+01 6.046429e-01 6.046429e-01 +8.500000e-01 5.000000e-02 5.000000e-02 1.598200e+01 6.165971e-01 6.165971e-01 +9.500000e-01 5.000000e-02 5.000000e-02 1.602000e+01 6.212970e-01 6.212970e-01 +1.050000e+00 5.000000e-02 5.000000e-02 1.607100e+01 6.291407e-01 6.291407e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.611700e+01 6.301214e-01 6.301214e-01 +1.250000e+00 5.000000e-02 5.000000e-02 1.614700e+01 6.428763e-01 6.428763e-01 +1.350000e+00 5.000000e-02 5.000000e-02 1.618400e+01 6.418949e-01 6.418949e-01 +1.450000e+00 5.000000e-02 5.000000e-02 1.615100e+01 6.497484e-01 6.497484e-01 +1.550000e+00 5.000000e-02 5.000000e-02 1.614100e+01 6.530743e-01 6.530743e-01 +1.650000e+00 5.000000e-02 5.000000e-02 1.613500e+01 6.599462e-01 6.599462e-01 +1.750000e+00 5.000000e-02 5.000000e-02 1.605700e+01 6.638742e-01 6.638742e-01 +1.850000e+00 5.000000e-02 5.000000e-02 1.593000e+01 6.744961e-01 6.744961e-01 +1.950000e+00 5.000000e-02 5.000000e-02 1.584700e+01 6.853116e-01 6.853116e-01 +2.050000e+00 5.000000e-02 5.000000e-02 1.574900e+01 7.099134e-01 7.099134e-01 +2.150000e+00 5.000000e-02 5.000000e-02 1.568400e+01 7.150112e-01 7.150112e-01 +2.250000e+00 5.000000e-02 5.000000e-02 1.563400e+01 7.783065e-01 7.783065e-01 +2.350000e+00 5.000000e-02 5.000000e-02 1.544800e+01 7.579294e-01 7.579294e-01 +2.450000e+00 5.000000e-02 5.000000e-02 1.535600e+01 7.718633e-01 7.718633e-01 +2.550000e+00 5.000000e-02 5.000000e-02 1.510000e+01 7.608449e-01 7.608449e-01 +2.650000e+00 5.000000e-02 5.000000e-02 1.473100e+01 8.106719e-01 8.106719e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y03 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.248300e+01 9.143850e-01 9.143850e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 2.222700e+01 9.090374e-01 9.090374e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 2.278000e+01 8.682079e-01 8.682079e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 2.297400e+01 8.571138e-01 8.571138e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 2.313100e+01 8.555817e-01 8.555817e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 2.326100e+01 8.688067e-01 8.688067e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 2.324900e+01 8.473470e-01 8.473470e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 2.340200e+01 8.356536e-01 8.356536e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 2.342100e+01 8.273488e-01 8.273488e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 2.348600e+01 8.207728e-01 8.207728e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 2.328200e+01 8.147055e-01 8.147055e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 2.324300e+01 8.020736e-01 8.020736e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 2.318100e+01 7.775706e-01 7.775706e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 2.313000e+01 7.756314e-01 7.756314e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 2.296700e+01 7.686000e-01 7.686000e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 2.277300e+01 7.637545e-01 7.637545e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 2.257700e+01 7.480107e-01 7.480107e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 2.237600e+01 7.313125e-01 7.313125e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 2.216300e+01 7.271898e-01 7.271898e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 2.202800e+01 7.201673e-01 7.201673e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 2.166200e+01 6.955070e-01 6.955070e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 2.148900e+01 6.942795e-01 6.942795e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 2.124900e+01 6.853335e-01 6.853335e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 2.113600e+01 6.889303e-01 6.889303e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 2.087300e+01 6.655239e-01 6.655239e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 2.073600e+01 6.594763e-01 6.594763e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 2.063900e+01 6.563178e-01 6.563178e-01 +5.000000e-02 5.000000e-02 5.000000e-02 2.044500e+01 6.435348e-01 6.435348e-01 +1.500000e-01 5.000000e-02 5.000000e-02 2.059000e+01 6.575508e-01 6.575508e-01 +2.500000e-01 5.000000e-02 5.000000e-02 2.053100e+01 6.592071e-01 6.592071e-01 +3.500000e-01 5.000000e-02 5.000000e-02 2.058900e+01 6.739317e-01 6.739317e-01 +4.500000e-01 5.000000e-02 5.000000e-02 2.069600e+01 6.809479e-01 6.809479e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.077500e+01 6.834047e-01 6.834047e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.070200e+01 6.821759e-01 6.821759e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.089500e+01 6.930527e-01 6.930527e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.083900e+01 7.017443e-01 7.017443e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.098000e+01 7.104435e-01 7.104435e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.103700e+01 7.191502e-01 7.191502e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.101900e+01 7.162472e-01 7.162472e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.096800e+01 7.302773e-01 7.302773e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.096900e+01 7.237410e-01 7.237410e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.093800e+01 7.363396e-01 7.363396e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.085900e+01 7.361100e-01 7.361100e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.080600e+01 7.428923e-01 7.428923e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.049900e+01 7.392489e-01 7.392489e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.043700e+01 7.579294e-01 7.579294e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.017600e+01 7.664366e-01 7.664366e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.001500e+01 8.002756e-01 8.002756e-01 +2.150000e+00 5.000000e-02 5.000000e-02 1.981700e+01 8.002756e-01 8.002756e-01 +2.250000e+00 5.000000e-02 5.000000e-02 1.965200e+01 8.837024e-01 8.837024e-01 +2.350000e+00 5.000000e-02 5.000000e-02 1.937600e+01 8.533024e-01 8.533024e-01 +2.450000e+00 5.000000e-02 5.000000e-02 1.926100e+01 8.705659e-01 8.705659e-01 +2.550000e+00 5.000000e-02 5.000000e-02 1.895400e+01 8.578322e-01 8.578322e-01 +2.650000e+00 5.000000e-02 5.000000e-02 1.871800e+01 9.458377e-01 9.458377e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y04 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y04 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.738200e+01 9.996504e-01 9.996504e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 2.719300e+01 1.003339e+00 1.003339e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 2.779700e+01 9.431066e-01 9.431066e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 2.797500e+01 9.256052e-01 9.256052e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 2.806200e+01 9.209696e-01 9.209696e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 2.825000e+01 9.425179e-01 9.425179e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 2.819800e+01 9.143593e-01 9.143593e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 2.827900e+01 8.959397e-01 8.959397e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 2.820200e+01 8.833510e-01 8.833510e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 2.841700e+01 8.821757e-01 8.821757e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 2.824900e+01 8.802420e-01 8.802420e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 2.817600e+01 8.647832e-01 8.647832e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 2.797100e+01 8.292677e-01 8.292677e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 2.774000e+01 8.251460e-01 8.251460e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 2.759300e+01 8.193668e-01 8.193668e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 2.749900e+01 8.203298e-01 8.203298e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 2.712200e+01 7.986144e-01 7.986144e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 2.689600e+01 7.794004e-01 7.794004e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 2.663000e+01 7.769202e-01 7.769202e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 2.633100e+01 7.670411e-01 7.670411e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 2.599900e+01 7.396350e-01 7.396350e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 2.581600e+01 7.409750e-01 7.409750e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 2.548200e+01 7.319809e-01 7.319809e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 2.515000e+01 7.320669e-01 7.320669e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 2.500900e+01 7.088223e-01 7.088223e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 2.484200e+01 7.011854e-01 7.011854e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 2.463600e+01 6.961157e-01 6.961157e-01 +5.000000e-02 5.000000e-02 5.000000e-02 2.441200e+01 6.802595e-01 6.802595e-01 +1.500000e-01 5.000000e-02 5.000000e-02 2.446400e+01 6.945632e-01 6.945632e-01 +2.500000e-01 5.000000e-02 5.000000e-02 2.430000e+01 6.933109e-01 6.933109e-01 +3.500000e-01 5.000000e-02 5.000000e-02 2.439500e+01 7.136792e-01 7.136792e-01 +4.500000e-01 5.000000e-02 5.000000e-02 2.448200e+01 7.203811e-01 7.203811e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.456200e+01 7.215407e-01 7.215407e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.453500e+01 7.224971e-01 7.224971e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.464300e+01 7.311094e-01 7.311094e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.473400e+01 7.457674e-01 7.457674e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.464900e+01 7.483615e-01 7.483615e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.471400e+01 7.582401e-01 7.582401e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.474400e+01 7.550801e-01 7.550801e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.451000e+01 7.670235e-01 7.670235e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.454200e+01 7.583680e-01 7.583680e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.441900e+01 7.696395e-01 7.696395e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.414500e+01 7.640026e-01 7.640026e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.408200e+01 7.714175e-01 7.714175e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.369400e+01 7.667516e-01 7.667516e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.360000e+01 7.879492e-01 7.879492e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.319900e+01 7.961137e-01 7.961137e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.297100e+01 8.365082e-01 8.365082e-01 +2.150000e+00 5.000000e-02 5.000000e-02 2.266000e+01 8.333547e-01 8.333547e-01 +2.250000e+00 5.000000e-02 5.000000e-02 2.233000e+01 9.304494e-01 9.304494e-01 +2.350000e+00 5.000000e-02 5.000000e-02 2.205600e+01 8.949687e-01 8.949687e-01 +2.450000e+00 5.000000e-02 5.000000e-02 2.184200e+01 9.127349e-01 9.127349e-01 +2.550000e+00 5.000000e-02 5.000000e-02 2.147300e+01 8.949514e-01 8.949514e-01 +2.650000e+00 5.000000e-02 5.000000e-02 2.124900e+01 1.006263e+00 1.006263e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y05 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y05 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 3.401700e+01 1.240195e+00 1.240195e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 3.366200e+01 1.239652e+00 1.239652e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 3.434500e+01 1.162886e+00 1.162886e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 3.446700e+01 1.138914e+00 1.138914e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 3.471900e+01 1.138389e+00 1.138389e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 3.482300e+01 1.160142e+00 1.160142e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 3.497500e+01 1.132414e+00 1.132414e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 3.496000e+01 1.106933e+00 1.106933e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 3.490700e+01 1.092631e+00 1.092631e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 3.490600e+01 1.081504e+00 1.081504e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 3.465500e+01 1.077632e+00 1.077632e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 3.477200e+01 1.066276e+00 1.066276e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 3.446000e+01 1.020106e+00 1.020106e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 3.422900e+01 1.016949e+00 1.016949e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 3.391300e+01 1.006342e+00 1.006342e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 3.361700e+01 1.001954e+00 1.001954e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 3.344000e+01 9.829573e-01 9.829573e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 3.289500e+01 9.523240e-01 9.523240e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 3.257700e+01 9.488878e-01 9.488878e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 3.217800e+01 9.358424e-01 9.358424e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 3.175800e+01 9.016984e-01 9.016984e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 3.151900e+01 9.040050e-01 9.040050e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 3.105500e+01 8.914539e-01 8.914539e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 3.073200e+01 8.937477e-01 8.937477e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 3.031100e+01 8.584381e-01 8.584381e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 3.010400e+01 8.488910e-01 8.488910e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 2.969600e+01 8.381527e-01 8.381527e-01 +5.000000e-02 5.000000e-02 5.000000e-02 2.978000e+01 8.289156e-01 8.289156e-01 +1.500000e-01 5.000000e-02 5.000000e-02 2.955700e+01 8.388099e-01 8.388099e-01 +2.500000e-01 5.000000e-02 5.000000e-02 2.950600e+01 8.416751e-01 8.416751e-01 +3.500000e-01 5.000000e-02 5.000000e-02 2.949000e+01 8.627149e-01 8.627149e-01 +4.500000e-01 5.000000e-02 5.000000e-02 2.942600e+01 8.653005e-01 8.653005e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.945700e+01 8.660831e-01 8.660831e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.954300e+01 8.699080e-01 8.699080e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.946600e+01 8.746914e-01 8.746914e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.945100e+01 8.890557e-01 8.890557e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.948300e+01 8.957662e-01 8.957662e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.948900e+01 9.050801e-01 9.050801e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.936700e+01 8.964424e-01 8.964424e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.928800e+01 9.163324e-01 9.163324e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.905900e+01 8.982038e-01 8.982038e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.881700e+01 9.085043e-01 9.085043e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.866800e+01 9.075605e-01 9.075605e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.833900e+01 9.086435e-01 9.086435e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.799600e+01 9.071295e-01 9.071295e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.757200e+01 9.217120e-01 9.217120e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.727100e+01 9.368735e-01 9.368735e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.686000e+01 9.798658e-01 9.798658e-01 +2.150000e+00 5.000000e-02 5.000000e-02 2.645100e+01 9.745255e-01 9.745255e-01 +2.250000e+00 5.000000e-02 5.000000e-02 2.604400e+01 1.085643e+00 1.085643e+00 +2.350000e+00 5.000000e-02 5.000000e-02 2.582300e+01 1.048978e+00 1.048978e+00 +2.450000e+00 5.000000e-02 5.000000e-02 2.518100e+01 1.052878e+00 1.052878e+00 +2.550000e+00 5.000000e-02 5.000000e-02 2.480300e+01 1.035553e+00 1.035553e+00 +2.650000e+00 5.000000e-02 5.000000e-02 2.439000e+01 1.156731e+00 1.156731e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y06 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y06 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 4.161300e+01 1.476570e+00 1.476570e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 4.138800e+01 1.485224e+00 1.485224e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 4.210400e+01 1.383285e+00 1.383285e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 4.208900e+01 1.348508e+00 1.348508e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 4.220600e+01 1.341972e+00 1.341972e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 4.251600e+01 1.376962e+00 1.376962e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 4.250900e+01 1.336376e+00 1.336376e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 4.270200e+01 1.311562e+00 1.311562e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 4.248300e+01 1.290645e+00 1.290645e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 4.237400e+01 1.274570e+00 1.274570e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 4.236700e+01 1.280889e+00 1.280889e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 4.201200e+01 1.252085e+00 1.252085e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 4.170400e+01 1.198548e+00 1.198548e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 4.135500e+01 1.194138e+00 1.194138e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 4.122200e+01 1.189651e+00 1.189651e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 4.064300e+01 1.179211e+00 1.179211e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 4.018300e+01 1.149318e+00 1.149318e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 3.982600e+01 1.120130e+00 1.120130e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 3.937700e+01 1.116662e+00 1.116662e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 3.885700e+01 1.100514e+00 1.100514e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 3.823100e+01 1.056835e+00 1.056835e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 3.766500e+01 1.052408e+00 1.052408e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 3.745100e+01 1.046733e+00 1.046733e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 3.683600e+01 1.045771e+00 1.045771e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 3.632100e+01 1.001906e+00 1.001906e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 3.582500e+01 9.835954e-01 9.835954e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 3.543200e+01 9.741099e-01 9.741099e-01 +5.000000e-02 5.000000e-02 5.000000e-02 3.549700e+01 9.612497e-01 9.612497e-01 +1.500000e-01 5.000000e-02 5.000000e-02 3.518900e+01 9.725045e-01 9.725045e-01 +2.500000e-01 5.000000e-02 5.000000e-02 3.519700e+01 9.794432e-01 9.794432e-01 +3.500000e-01 5.000000e-02 5.000000e-02 3.513200e+01 1.003087e+00 1.003087e+00 +4.500000e-01 5.000000e-02 5.000000e-02 3.487600e+01 1.001180e+00 1.001180e+00 +5.500000e-01 5.000000e-02 5.000000e-02 3.492900e+01 1.003466e+00 1.003466e+00 +6.500000e-01 5.000000e-02 5.000000e-02 3.493700e+01 1.005356e+00 1.005356e+00 +7.500000e-01 5.000000e-02 5.000000e-02 3.465500e+01 1.004703e+00 1.004703e+00 +8.500000e-01 5.000000e-02 5.000000e-02 3.481100e+01 1.026797e+00 1.026797e+00 +9.500000e-01 5.000000e-02 5.000000e-02 3.461900e+01 1.027109e+00 1.027109e+00 +1.050000e+00 5.000000e-02 5.000000e-02 3.465100e+01 1.039759e+00 1.039759e+00 +1.150000e+00 5.000000e-02 5.000000e-02 3.442000e+01 1.026476e+00 1.026476e+00 +1.250000e+00 5.000000e-02 5.000000e-02 3.425600e+01 1.047402e+00 1.047402e+00 +1.350000e+00 5.000000e-02 5.000000e-02 3.398500e+01 1.026170e+00 1.026170e+00 +1.450000e+00 5.000000e-02 5.000000e-02 3.367300e+01 1.037915e+00 1.037915e+00 +1.550000e+00 5.000000e-02 5.000000e-02 3.324200e+01 1.029005e+00 1.029005e+00 +1.650000e+00 5.000000e-02 5.000000e-02 3.302400e+01 1.035333e+00 1.035333e+00 +1.750000e+00 5.000000e-02 5.000000e-02 3.242600e+01 1.027120e+00 1.027120e+00 +1.850000e+00 5.000000e-02 5.000000e-02 3.198600e+01 1.045578e+00 1.045578e+00 +1.950000e+00 5.000000e-02 5.000000e-02 3.159800e+01 1.062460e+00 1.062460e+00 +2.050000e+00 5.000000e-02 5.000000e-02 3.115400e+01 1.114840e+00 1.114840e+00 +2.150000e+00 5.000000e-02 5.000000e-02 3.060900e+01 1.106601e+00 1.106601e+00 +2.250000e+00 5.000000e-02 5.000000e-02 2.996300e+01 1.229425e+00 1.229425e+00 +2.350000e+00 5.000000e-02 5.000000e-02 2.920800e+01 1.166355e+00 1.166355e+00 +2.450000e+00 5.000000e-02 5.000000e-02 2.901500e+01 1.193792e+00 1.193792e+00 +2.550000e+00 5.000000e-02 5.000000e-02 2.836600e+01 1.165223e+00 1.165223e+00 +2.650000e+00 5.000000e-02 5.000000e-02 2.760300e+01 1.307951e+00 1.307951e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y07 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y07 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 5.065900e+01 1.792847e+00 1.792847e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 5.052200e+01 1.807139e+00 1.807139e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 5.123700e+01 1.678344e+00 1.678344e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 5.124700e+01 1.639227e+00 1.639227e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 5.156700e+01 1.636352e+00 1.636352e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 5.148500e+01 1.666443e+00 1.666443e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 5.150900e+01 1.619585e+00 1.619585e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 5.179100e+01 1.591627e+00 1.591627e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 5.161500e+01 1.569128e+00 1.569128e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 5.120800e+01 1.542565e+00 1.542565e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 5.126600e+01 1.552371e+00 1.552371e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 5.095000e+01 1.522083e+00 1.522083e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 5.026800e+01 1.447727e+00 1.447727e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 5.014800e+01 1.452843e+00 1.452843e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 4.939800e+01 1.429512e+00 1.429512e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 4.914900e+01 1.430793e+00 1.430793e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 4.852600e+01 1.394085e+00 1.394085e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 4.785200e+01 1.353717e+00 1.353717e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 4.728000e+01 1.347267e+00 1.347267e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 4.666900e+01 1.328085e+00 1.328085e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 4.607900e+01 1.280383e+00 1.280383e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 4.486900e+01 1.261834e+00 1.261834e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 4.468500e+01 1.259966e+00 1.259966e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 4.406500e+01 1.260500e+00 1.260500e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 4.337600e+01 1.208077e+00 1.208077e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 4.286500e+01 1.188619e+00 1.188619e+00 +-5.000000e-02 5.000000e-02 5.000000e-02 4.245100e+01 1.178773e+00 1.178773e+00 +5.000000e-02 5.000000e-02 5.000000e-02 4.210500e+01 1.152214e+00 1.152214e+00 +1.500000e-01 5.000000e-02 5.000000e-02 4.169000e+01 1.164078e+00 1.164078e+00 +2.500000e-01 5.000000e-02 5.000000e-02 4.158000e+01 1.167769e+00 1.167769e+00 +3.500000e-01 5.000000e-02 5.000000e-02 4.158600e+01 1.197925e+00 1.197925e+00 +4.500000e-01 5.000000e-02 5.000000e-02 4.131900e+01 1.196251e+00 1.196251e+00 +5.500000e-01 5.000000e-02 5.000000e-02 4.113200e+01 1.193769e+00 1.193769e+00 +6.500000e-01 5.000000e-02 5.000000e-02 4.099900e+01 1.192846e+00 1.192846e+00 +7.500000e-01 5.000000e-02 5.000000e-02 4.088200e+01 1.197241e+00 1.197241e+00 +8.500000e-01 5.000000e-02 5.000000e-02 4.071900e+01 1.214279e+00 1.214279e+00 +9.500000e-01 5.000000e-02 5.000000e-02 4.067700e+01 1.219466e+00 1.219466e+00 +1.050000e+00 5.000000e-02 5.000000e-02 4.052400e+01 1.228005e+00 1.228005e+00 +1.150000e+00 5.000000e-02 5.000000e-02 4.037700e+01 1.216864e+00 1.216864e+00 +1.250000e+00 5.000000e-02 5.000000e-02 3.998500e+01 1.234182e+00 1.234182e+00 +1.350000e+00 5.000000e-02 5.000000e-02 3.977200e+01 1.212410e+00 1.212410e+00 +1.450000e+00 5.000000e-02 5.000000e-02 3.921300e+01 1.219891e+00 1.219891e+00 +1.550000e+00 5.000000e-02 5.000000e-02 3.863000e+01 1.208322e+00 1.208322e+00 +1.650000e+00 5.000000e-02 5.000000e-02 3.823100e+01 1.210921e+00 1.210921e+00 +1.750000e+00 5.000000e-02 5.000000e-02 3.768700e+01 1.205727e+00 1.205727e+00 +1.850000e+00 5.000000e-02 5.000000e-02 3.702900e+01 1.223114e+00 1.223114e+00 +1.950000e+00 5.000000e-02 5.000000e-02 3.632800e+01 1.232560e+00 1.232560e+00 +2.050000e+00 5.000000e-02 5.000000e-02 3.545200e+01 1.278032e+00 1.278032e+00 +2.150000e+00 5.000000e-02 5.000000e-02 3.481800e+01 1.267934e+00 1.267934e+00 +2.250000e+00 5.000000e-02 5.000000e-02 3.423300e+01 1.412132e+00 1.412132e+00 +2.350000e+00 5.000000e-02 5.000000e-02 3.352400e+01 1.344597e+00 1.344597e+00 +2.450000e+00 5.000000e-02 5.000000e-02 3.259800e+01 1.351128e+00 1.351128e+00 +2.550000e+00 5.000000e-02 5.000000e-02 3.190200e+01 1.320022e+00 1.320022e+00 +2.650000e+00 5.000000e-02 5.000000e-02 3.088400e+01 1.505008e+00 1.505008e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d02-x01-y08 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d02-x01-y08 +Title: doi:10.17182/hepdata.69240.v1/t2 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 6.741900e+01 2.798495e+00 2.798495e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 6.720000e+01 2.818803e+00 2.818803e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 6.749700e+01 2.572081e+00 2.572081e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 6.730000e+01 2.486345e+00 2.486345e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 6.792300e+01 2.477824e+00 2.477824e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 6.785900e+01 2.509781e+00 2.509781e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 6.755300e+01 2.412668e+00 2.412668e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 6.746800e+01 2.341360e+00 2.341360e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 6.818000e+01 2.329114e+00 2.329114e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 6.746000e+01 2.272559e+00 2.272559e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 6.668700e+01 2.248792e+00 2.248792e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 6.625000e+01 2.192336e+00 2.192336e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 6.598500e+01 2.095647e+00 2.095647e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 6.482900e+01 2.061788e+00 2.061788e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 6.382100e+01 2.020396e+00 2.020396e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 6.354300e+01 2.017339e+00 2.017339e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 6.189300e+01 1.930331e+00 1.930331e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 6.144100e+01 1.879400e+00 1.879400e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 6.033300e+01 1.855080e+00 1.855080e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 6.037500e+01 1.849771e+00 1.849771e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 5.927300e+01 1.767311e+00 1.767311e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 5.819600e+01 1.752544e+00 1.752544e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 5.682500e+01 1.711585e+00 1.711585e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 5.657600e+01 1.728746e+00 1.728746e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 5.531500e+01 1.639988e+00 1.639988e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 5.498300e+01 1.621624e+00 1.621624e+00 +-5.000000e-02 5.000000e-02 5.000000e-02 5.387400e+01 1.591259e+00 1.591259e+00 +5.000000e-02 5.000000e-02 5.000000e-02 5.316200e+01 1.547652e+00 1.547652e+00 +1.500000e-01 5.000000e-02 5.000000e-02 5.275900e+01 1.568808e+00 1.568808e+00 +2.500000e-01 5.000000e-02 5.000000e-02 5.259300e+01 1.572942e+00 1.572942e+00 +3.500000e-01 5.000000e-02 5.000000e-02 5.246400e+01 1.613521e+00 1.613521e+00 +4.500000e-01 5.000000e-02 5.000000e-02 5.226400e+01 1.618029e+00 1.618029e+00 +5.500000e-01 5.000000e-02 5.000000e-02 5.177200e+01 1.608025e+00 1.608025e+00 +6.500000e-01 5.000000e-02 5.000000e-02 5.155700e+01 1.605826e+00 1.605826e+00 +7.500000e-01 5.000000e-02 5.000000e-02 5.119000e+01 1.610909e+00 1.610909e+00 +8.500000e-01 5.000000e-02 5.000000e-02 5.107300e+01 1.639162e+00 1.639162e+00 +9.500000e-01 5.000000e-02 5.000000e-02 5.081200e+01 1.645885e+00 1.645885e+00 +1.050000e+00 5.000000e-02 5.000000e-02 5.039200e+01 1.655488e+00 1.655488e+00 +1.150000e+00 5.000000e-02 5.000000e-02 4.985900e+01 1.632042e+00 1.632042e+00 +1.250000e+00 5.000000e-02 5.000000e-02 4.960200e+01 1.672560e+00 1.672560e+00 +1.350000e+00 5.000000e-02 5.000000e-02 4.887200e+01 1.630048e+00 1.630048e+00 +1.450000e+00 5.000000e-02 5.000000e-02 4.828900e+01 1.650911e+00 1.650911e+00 +1.550000e+00 5.000000e-02 5.000000e-02 4.761200e+01 1.641527e+00 1.641527e+00 +1.650000e+00 5.000000e-02 5.000000e-02 4.693200e+01 1.645484e+00 1.645484e+00 +1.750000e+00 5.000000e-02 5.000000e-02 4.607400e+01 1.639532e+00 1.639532e+00 +1.850000e+00 5.000000e-02 5.000000e-02 4.519400e+01 1.669804e+00 1.669804e+00 +1.950000e+00 5.000000e-02 5.000000e-02 4.393700e+01 1.677860e+00 1.677860e+00 +2.050000e+00 5.000000e-02 5.000000e-02 4.290400e+01 1.753266e+00 1.753266e+00 +2.150000e+00 5.000000e-02 5.000000e-02 4.228400e+01 1.753266e+00 1.753266e+00 +2.250000e+00 5.000000e-02 5.000000e-02 4.117300e+01 1.956172e+00 1.956172e+00 +2.350000e+00 5.000000e-02 5.000000e-02 4.023700e+01 1.869557e+00 1.869557e+00 +2.450000e+00 5.000000e-02 5.000000e-02 3.934700e+01 1.894288e+00 1.894288e+00 +2.550000e+00 5.000000e-02 5.000000e-02 3.799200e+01 1.834801e+00 1.834801e+00 +2.650000e+00 5.000000e-02 5.000000e-02 3.699100e+01 2.082272e+00 2.082272e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y01 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 8.681000e+00 6.444944e-01 6.444944e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 8.556000e+00 6.280549e-01 6.280549e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 8.791000e+00 6.242339e-01 6.242339e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 8.889000e+00 6.219920e-01 6.219920e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 8.937000e+00 6.180372e-01 6.180372e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 8.969000e+00 6.145445e-01 6.145445e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 8.993000e+00 6.076315e-01 6.076315e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 9.109000e+00 6.038419e-01 6.038419e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 9.059000e+00 5.949605e-01 5.949605e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 9.093000e+00 5.900280e-01 5.900280e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 9.093000e+00 5.850966e-01 5.850966e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 9.030000e+00 5.742517e-01 5.742517e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 9.016000e+00 5.632415e-01 5.632415e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 8.975000e+00 5.563452e-01 5.563452e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 8.898000e+00 5.482928e-01 5.482928e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 8.868000e+00 5.433691e-01 5.433691e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 8.825000e+00 5.354942e-01 5.354942e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 8.698000e+00 5.235084e-01 5.235084e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 8.672000e+00 5.195739e-01 5.195739e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 8.585000e+00 5.115252e-01 5.115252e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 8.524000e+00 5.026778e-01 5.026778e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 8.456000e+00 4.987474e-01 4.987474e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 8.375000e+00 4.911313e-01 4.911313e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 8.308000e+00 4.871981e-01 4.871981e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 8.325000e+00 4.854163e-01 4.854163e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 8.285000e+00 4.814862e-01 4.814862e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 8.253000e+00 4.795216e-01 4.795216e-01 +5.000000e-02 5.000000e-02 5.000000e-02 8.214000e+00 4.754051e-01 4.754051e-01 +1.500000e-01 5.000000e-02 5.000000e-02 8.284000e+00 4.814862e-01 4.814862e-01 +2.500000e-01 5.000000e-02 5.000000e-02 8.358000e+00 4.875674e-01 4.875674e-01 +3.500000e-01 5.000000e-02 5.000000e-02 8.415000e+00 4.944462e-01 4.944462e-01 +4.500000e-01 5.000000e-02 5.000000e-02 8.473000e+00 5.005277e-01 5.005277e-01 +5.500000e-01 5.000000e-02 5.000000e-02 8.609000e+00 5.113443e-01 5.113443e-01 +6.500000e-01 5.000000e-02 5.000000e-02 8.686000e+00 5.172475e-01 5.172475e-01 +7.500000e-01 5.000000e-02 5.000000e-02 8.723000e+00 5.221686e-01 5.221686e-01 +8.500000e-01 5.000000e-02 5.000000e-02 8.839000e+00 5.341582e-01 5.341582e-01 +9.500000e-01 5.000000e-02 5.000000e-02 8.955000e+00 5.451651e-01 5.451651e-01 +1.050000e+00 5.000000e-02 5.000000e-02 8.993000e+00 5.509065e-01 5.509065e-01 +1.150000e+00 5.000000e-02 5.000000e-02 9.089000e+00 5.609323e-01 5.609323e-01 +1.250000e+00 5.000000e-02 5.000000e-02 9.212000e+00 5.767122e-01 5.767122e-01 +1.350000e+00 5.000000e-02 5.000000e-02 9.221000e+00 5.776989e-01 5.776989e-01 +1.450000e+00 5.000000e-02 5.000000e-02 9.265000e+00 5.905294e-01 5.905294e-01 +1.550000e+00 5.000000e-02 5.000000e-02 9.340000e+00 6.007204e-01 6.007204e-01 +1.650000e+00 5.000000e-02 5.000000e-02 9.410000e+00 6.127267e-01 6.127267e-01 +1.750000e+00 5.000000e-02 5.000000e-02 9.405000e+00 6.216148e-01 6.216148e-01 +1.850000e+00 5.000000e-02 5.000000e-02 9.405000e+00 6.324824e-01 6.324824e-01 +1.950000e+00 5.000000e-02 5.000000e-02 9.433000e+00 6.423659e-01 6.423659e-01 +2.050000e+00 5.000000e-02 5.000000e-02 9.444000e+00 6.603128e-01 6.603128e-01 +2.150000e+00 5.000000e-02 5.000000e-02 9.372000e+00 6.652578e-01 6.652578e-01 +2.250000e+00 5.000000e-02 5.000000e-02 9.489000e+00 7.054261e-01 7.054261e-01 +2.350000e+00 5.000000e-02 5.000000e-02 9.474000e+00 7.072743e-01 7.072743e-01 +2.450000e+00 5.000000e-02 5.000000e-02 9.340000e+00 7.127692e-01 7.127692e-01 +2.550000e+00 5.000000e-02 5.000000e-02 9.364000e+00 7.198403e-01 7.198403e-01 +2.650000e+00 5.000000e-02 5.000000e-02 9.230000e+00 7.470696e-01 7.470696e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y02 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 1.787500e+01 9.092288e-01 9.092288e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 1.776000e+01 8.971967e-01 8.971967e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 1.821300e+01 8.717213e-01 8.717213e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 1.837700e+01 8.617105e-01 8.617105e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 1.847200e+01 8.588952e-01 8.588952e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 1.849900e+01 8.545712e-01 8.545712e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 1.862800e+01 8.438685e-01 8.438685e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 1.859600e+01 8.200226e-01 8.200226e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 1.849400e+01 8.072001e-01 8.072001e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 1.858200e+01 7.994805e-01 7.994805e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 1.848000e+01 7.915965e-01 7.915965e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 1.835300e+01 7.717227e-01 7.717227e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 1.829200e+01 7.489045e-01 7.489045e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 1.812500e+01 7.380820e-01 7.380820e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 1.801300e+01 7.300329e-01 7.300329e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 1.782700e+01 7.190341e-01 7.190341e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 1.772500e+01 7.042904e-01 7.042904e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 1.756400e+01 6.893686e-01 6.893686e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 1.731700e+01 6.783782e-01 6.783782e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 1.706700e+01 6.632722e-01 6.632722e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 1.692500e+01 6.475755e-01 6.475755e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 1.678100e+01 6.434571e-01 6.434571e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 1.659900e+01 6.346338e-01 6.346338e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 1.640400e+01 6.283566e-01 6.283566e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 1.629000e+01 6.146381e-01 6.146381e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 1.624600e+01 6.087627e-01 6.087627e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 1.612700e+01 6.066012e-01 6.066012e-01 +5.000000e-02 5.000000e-02 5.000000e-02 1.612500e+01 6.009326e-01 6.009326e-01 +1.500000e-01 5.000000e-02 5.000000e-02 1.606200e+01 6.046429e-01 6.046429e-01 +2.500000e-01 5.000000e-02 5.000000e-02 1.615900e+01 6.126794e-01 6.126794e-01 +3.500000e-01 5.000000e-02 5.000000e-02 1.626600e+01 6.254159e-01 6.254159e-01 +4.500000e-01 5.000000e-02 5.000000e-02 1.633700e+01 6.334556e-01 6.334556e-01 +5.500000e-01 5.000000e-02 5.000000e-02 1.644500e+01 6.424765e-01 6.424765e-01 +6.500000e-01 5.000000e-02 5.000000e-02 1.663900e+01 6.505175e-01 6.505175e-01 +7.500000e-01 5.000000e-02 5.000000e-02 1.669700e+01 6.573842e-01 6.573842e-01 +8.500000e-01 5.000000e-02 5.000000e-02 1.684200e+01 6.732793e-01 6.732793e-01 +9.500000e-01 5.000000e-02 5.000000e-02 1.691300e+01 6.850642e-01 6.850642e-01 +1.050000e+00 5.000000e-02 5.000000e-02 1.701400e+01 6.948906e-01 6.948906e-01 +1.150000e+00 5.000000e-02 5.000000e-02 1.710300e+01 7.017720e-01 7.017720e-01 +1.250000e+00 5.000000e-02 5.000000e-02 1.715600e+01 7.214458e-01 7.214458e-01 +1.350000e+00 5.000000e-02 5.000000e-02 1.725100e+01 7.214458e-01 7.214458e-01 +1.450000e+00 5.000000e-02 5.000000e-02 1.727500e+01 7.411370e-01 7.411370e-01 +1.550000e+00 5.000000e-02 5.000000e-02 1.730600e+01 7.505212e-01 7.505212e-01 +1.650000e+00 5.000000e-02 5.000000e-02 1.733100e+01 7.652954e-01 7.652954e-01 +1.750000e+00 5.000000e-02 5.000000e-02 1.729300e+01 7.790924e-01 7.790924e-01 +1.850000e+00 5.000000e-02 5.000000e-02 1.719200e+01 7.947050e-01 7.947050e-01 +1.950000e+00 5.000000e-02 5.000000e-02 1.714300e+01 8.035851e-01 8.035851e-01 +2.050000e+00 5.000000e-02 5.000000e-02 1.710400e+01 8.371553e-01 8.371553e-01 +2.150000e+00 5.000000e-02 5.000000e-02 1.704900e+01 8.491655e-01 8.491655e-01 +2.250000e+00 5.000000e-02 5.000000e-02 1.703600e+01 9.206628e-01 9.206628e-01 +2.350000e+00 5.000000e-02 5.000000e-02 1.686900e+01 9.083661e-01 9.083661e-01 +2.450000e+00 5.000000e-02 5.000000e-02 1.680000e+01 9.321100e-01 9.321100e-01 +2.550000e+00 5.000000e-02 5.000000e-02 1.657600e+01 9.222088e-01 9.222088e-01 +2.650000e+00 5.000000e-02 5.000000e-02 1.613500e+01 9.621980e-01 9.621980e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y03 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.448500e+01 1.114641e+00 1.114641e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 2.418900e+01 1.094897e+00 1.094897e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 2.475900e+01 1.049895e+00 1.049895e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 2.492100e+01 1.034596e+00 1.034596e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 2.507800e+01 1.033000e+00 1.033000e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 2.515900e+01 1.032361e+00 1.032361e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 2.510100e+01 1.007645e+00 1.007645e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 2.524000e+01 9.813878e-01 9.813878e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 2.518400e+01 9.698459e-01 9.698459e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 2.521100e+01 9.563608e-01 9.563608e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 2.495700e+01 9.444199e-01 9.444199e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 2.486000e+01 9.209783e-01 9.209783e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 2.467400e+01 8.854225e-01 8.854225e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 2.455200e+01 8.766527e-01 8.766527e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 2.433900e+01 8.657124e-01 8.657124e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 2.406800e+01 8.528282e-01 8.528282e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 2.383400e+01 8.302253e-01 8.302253e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 2.353600e+01 8.093485e-01 8.093485e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 2.329000e+01 7.984291e-01 7.984291e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 2.308400e+01 7.846031e-01 7.846031e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 2.268100e+01 7.576939e-01 7.576939e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 2.249800e+01 7.547880e-01 7.547880e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 2.219900e+01 7.417007e-01 7.417007e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 2.206200e+01 7.404823e-01 7.404823e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 2.176500e+01 7.150783e-01 7.150783e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 2.162400e+01 7.061253e-01 7.061253e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 2.152800e+01 7.058668e-01 7.058668e-01 +5.000000e-02 5.000000e-02 5.000000e-02 2.130400e+01 6.891923e-01 6.891923e-01 +1.500000e-01 5.000000e-02 5.000000e-02 2.147500e+01 7.041939e-01 7.041939e-01 +2.500000e-01 5.000000e-02 5.000000e-02 2.143600e+01 7.097323e-01 7.097323e-01 +3.500000e-01 5.000000e-02 5.000000e-02 2.150800e+01 7.244929e-01 7.244929e-01 +4.500000e-01 5.000000e-02 5.000000e-02 2.164200e+01 7.373276e-01 7.373276e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.178500e+01 7.487283e-01 7.487283e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.173300e+01 7.472623e-01 7.472623e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.197700e+01 7.613232e-01 7.613232e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.194700e+01 7.749019e-01 7.749019e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.215500e+01 7.935899e-01 7.935899e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.225800e+01 8.042810e-01 8.042810e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.229600e+01 8.091434e-01 8.091434e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.229400e+01 8.322800e-01 8.322800e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.234300e+01 8.276352e-01 8.276352e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.239300e+01 8.539514e-01 8.539514e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.236900e+01 8.626384e-01 8.626384e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.236800e+01 8.801960e-01 8.801960e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.207700e+01 8.883383e-01 8.883383e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.206200e+01 9.159236e-01 9.159236e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.188000e+01 9.215883e-01 9.215883e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.174300e+01 9.637147e-01 9.637147e-01 +2.150000e+00 5.000000e-02 5.000000e-02 2.156500e+01 9.725415e-01 9.725415e-01 +2.250000e+00 5.000000e-02 5.000000e-02 2.140200e+01 1.062530e+00 1.062530e+00 +2.350000e+00 5.000000e-02 5.000000e-02 2.119600e+01 1.043943e+00 1.043943e+00 +2.450000e+00 5.000000e-02 5.000000e-02 2.107000e+01 1.073068e+00 1.073068e+00 +2.550000e+00 5.000000e-02 5.000000e-02 2.077300e+01 1.059280e+00 1.059280e+00 +2.650000e+00 5.000000e-02 5.000000e-02 2.064000e+01 1.144640e+00 1.144640e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y04 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y04 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.980500e+01 1.246924e+00 1.246924e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 2.956900e+01 1.232372e+00 1.232372e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 3.018300e+01 1.166793e+00 1.166793e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 3.032100e+01 1.144927e+00 1.144927e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 3.037200e+01 1.139239e+00 1.139239e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 3.056600e+01 1.143979e+00 1.143979e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 3.043500e+01 1.112669e+00 1.112669e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 3.047100e+01 1.073589e+00 1.073589e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 3.032300e+01 1.058732e+00 1.058732e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 3.051100e+01 1.048670e+00 1.048670e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 3.027000e+01 1.038927e+00 1.038927e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 3.014100e+01 1.009727e+00 1.009727e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 2.977300e+01 9.611712e-01 9.611712e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 2.945700e+01 9.463741e-01 9.463741e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 2.923100e+01 9.374017e-01 9.374017e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 2.904600e+01 9.286770e-01 9.286770e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 2.858400e+01 8.962243e-01 8.962243e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 2.832500e+01 8.747005e-01 8.747005e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 2.796700e+01 8.625920e-01 8.625920e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 2.760500e+01 8.430291e-01 8.430291e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 2.722900e+01 8.142825e-01 8.142825e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 2.699500e+01 8.118177e-01 8.118177e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 2.664000e+01 7.988892e-01 7.988892e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 2.623600e+01 7.910607e-01 7.910607e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 2.606400e+01 7.670411e-01 7.670411e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 2.587800e+01 7.552490e-01 7.552490e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 2.566100e+01 7.530471e-01 7.530471e-01 +5.000000e-02 5.000000e-02 5.000000e-02 2.543000e+01 7.345597e-01 7.345597e-01 +1.500000e-01 5.000000e-02 5.000000e-02 2.548600e+01 7.479693e-01 7.479693e-01 +2.500000e-01 5.000000e-02 5.000000e-02 2.533600e+01 7.522001e-01 7.522001e-01 +3.500000e-01 5.000000e-02 5.000000e-02 2.548000e+01 7.729282e-01 7.729282e-01 +4.500000e-01 5.000000e-02 5.000000e-02 2.557500e+01 7.854330e-01 7.854330e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.574700e+01 7.993028e-01 7.993028e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.576200e+01 7.993028e-01 7.993028e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.593000e+01 8.120868e-01 8.120868e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.605700e+01 8.332929e-01 8.332929e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.602800e+01 8.468087e-01 8.468087e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.615600e+01 8.584061e-01 8.584061e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.627400e+01 8.661438e-01 8.661438e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.605300e+01 8.879245e-01 8.879245e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.616100e+01 8.804164e-01 8.804164e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.609400e+01 9.092733e-01 9.092733e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.582500e+01 9.102362e-01 9.102362e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.581400e+01 9.303849e-01 9.303849e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.547600e+01 9.415838e-01 9.415838e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.543600e+01 9.727425e-01 9.727425e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.504400e+01 9.722963e-01 9.722963e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.487800e+01 1.023062e+00 1.023062e+00 +2.150000e+00 5.000000e-02 5.000000e-02 2.458500e+01 1.030674e+00 1.030674e+00 +2.250000e+00 5.000000e-02 5.000000e-02 2.427300e+01 1.133508e+00 1.133508e+00 +2.350000e+00 5.000000e-02 5.000000e-02 2.407300e+01 1.111952e+00 1.111952e+00 +2.450000e+00 5.000000e-02 5.000000e-02 2.385900e+01 1.143449e+00 1.143449e+00 +2.550000e+00 5.000000e-02 5.000000e-02 2.347200e+01 1.123609e+00 1.123609e+00 +2.650000e+00 5.000000e-02 5.000000e-02 2.341800e+01 1.231638e+00 1.231638e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y05 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y05 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 3.689900e+01 1.541759e+00 1.541759e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 3.644700e+01 1.518396e+00 1.518396e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 3.718200e+01 1.436003e+00 1.436003e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 3.724600e+01 1.404610e+00 1.404610e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 3.747700e+01 1.404992e+00 1.404992e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 3.753500e+01 1.403020e+00 1.403020e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 3.764000e+01 1.374040e+00 1.374040e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 3.751400e+01 1.321015e+00 1.321015e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 3.740200e+01 1.304621e+00 1.304621e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 3.734600e+01 1.282390e+00 1.282390e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 3.703600e+01 1.269712e+00 1.269712e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 3.707900e+01 1.241680e+00 1.241680e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 3.661300e+01 1.180445e+00 1.180445e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 3.627500e+01 1.164665e+00 1.164665e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 3.588400e+01 1.150104e+00 1.150104e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 3.548600e+01 1.132884e+00 1.132884e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 3.523300e+01 1.104055e+00 1.104055e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 3.459000e+01 1.067243e+00 1.067243e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 3.417400e+01 1.053197e+00 1.053197e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 3.372300e+01 1.029495e+00 1.029495e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 3.319300e+01 9.920489e-01 9.920489e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 3.289100e+01 9.886243e-01 9.886243e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 3.239400e+01 9.711395e-01 9.711395e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 3.200800e+01 9.657831e-01 9.657831e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 3.156400e+01 9.281600e-01 9.281600e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 3.132100e+01 9.137702e-01 9.137702e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 3.088400e+01 9.049641e-01 9.049641e-01 +5.000000e-02 5.000000e-02 5.000000e-02 3.098600e+01 8.937477e-01 8.937477e-01 +1.500000e-01 5.000000e-02 5.000000e-02 3.076100e+01 9.020870e-01 9.020870e-01 +2.500000e-01 5.000000e-02 5.000000e-02 3.072500e+01 9.116803e-01 9.116803e-01 +3.500000e-01 5.000000e-02 5.000000e-02 3.072700e+01 9.306181e-01 9.306181e-01 +4.500000e-01 5.000000e-02 5.000000e-02 3.070500e+01 9.431272e-01 9.431272e-01 +5.500000e-01 5.000000e-02 5.000000e-02 3.085800e+01 9.575411e-01 9.575411e-01 +6.500000e-01 5.000000e-02 5.000000e-02 3.098100e+01 9.613891e-01 9.613891e-01 +7.500000e-01 5.000000e-02 5.000000e-02 3.096100e+01 9.700515e-01 9.700515e-01 +8.500000e-01 5.000000e-02 5.000000e-02 3.100200e+01 9.912517e-01 9.912517e-01 +9.500000e-01 5.000000e-02 5.000000e-02 3.111000e+01 1.011780e+00 1.011780e+00 +1.050000e+00 5.000000e-02 5.000000e-02 3.116800e+01 1.023115e+00 1.023115e+00 +1.150000e+00 5.000000e-02 5.000000e-02 3.113600e+01 1.026982e+00 1.026982e+00 +1.250000e+00 5.000000e-02 5.000000e-02 3.113000e+01 1.060862e+00 1.060862e+00 +1.350000e+00 5.000000e-02 5.000000e-02 3.099400e+01 1.043648e+00 1.043648e+00 +1.450000e+00 5.000000e-02 5.000000e-02 3.078300e+01 1.072495e+00 1.072495e+00 +1.550000e+00 5.000000e-02 5.000000e-02 3.068800e+01 1.082200e+00 1.082200e+00 +1.650000e+00 5.000000e-02 5.000000e-02 3.042500e+01 1.096993e+00 1.096993e+00 +1.750000e+00 5.000000e-02 5.000000e-02 3.015500e+01 1.114978e+00 1.114978e+00 +1.850000e+00 5.000000e-02 5.000000e-02 2.979800e+01 1.139816e+00 1.139816e+00 +1.950000e+00 5.000000e-02 5.000000e-02 2.952000e+01 1.147383e+00 1.147383e+00 +2.050000e+00 5.000000e-02 5.000000e-02 2.911200e+01 1.197679e+00 1.197679e+00 +2.150000e+00 5.000000e-02 5.000000e-02 2.874900e+01 1.205284e+00 1.205284e+00 +2.250000e+00 5.000000e-02 5.000000e-02 2.839500e+01 1.326265e+00 1.326265e+00 +2.350000e+00 5.000000e-02 5.000000e-02 2.824300e+01 1.304525e+00 1.304525e+00 +2.450000e+00 5.000000e-02 5.000000e-02 2.754200e+01 1.319937e+00 1.319937e+00 +2.550000e+00 5.000000e-02 5.000000e-02 2.718000e+01 1.302632e+00 1.302632e+00 +2.650000e+00 5.000000e-02 5.000000e-02 2.683100e+01 1.412758e+00 1.412758e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y06 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y06 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 4.507600e+01 1.844692e+00 1.844692e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 4.475800e+01 1.826793e+00 1.826793e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 4.548600e+01 1.717193e+00 1.717193e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 4.540500e+01 1.672811e+00 1.672811e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 4.547600e+01 1.665198e+00 1.665198e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 4.573700e+01 1.671343e+00 1.671343e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 4.567000e+01 1.629632e+00 1.629632e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 4.573600e+01 1.572195e+00 1.572195e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 4.546800e+01 1.548130e+00 1.548130e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 4.524100e+01 1.516090e+00 1.516090e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 4.522900e+01 1.514880e+00 1.514880e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 4.473400e+01 1.462322e+00 1.462322e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 4.421800e+01 1.390489e+00 1.390489e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 4.375900e+01 1.370931e+00 1.370931e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 4.349600e+01 1.360061e+00 1.360061e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 4.280600e+01 1.334206e+00 1.334206e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 4.227000e+01 1.292566e+00 1.292566e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 4.179700e+01 1.258406e+00 1.258406e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 4.123500e+01 1.240294e+00 1.240294e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 4.065700e+01 1.210694e+00 1.210694e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 3.992800e+01 1.163334e+00 1.163334e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 3.927100e+01 1.152302e+00 1.152302e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 3.900100e+01 1.141043e+00 1.141043e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 3.833200e+01 1.129347e+00 1.129347e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 3.780600e+01 1.085303e+00 1.085303e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 3.726100e+01 1.059996e+00 1.059996e+00 +-5.000000e-02 5.000000e-02 5.000000e-02 3.683800e+01 1.054621e+00 1.054621e+00 +5.000000e-02 5.000000e-02 5.000000e-02 3.693200e+01 1.039766e+00 1.039766e+00 +1.500000e-01 5.000000e-02 5.000000e-02 3.657600e+01 1.047347e+00 1.047347e+00 +2.500000e-01 5.000000e-02 5.000000e-02 3.664000e+01 1.061905e+00 1.061905e+00 +3.500000e-01 5.000000e-02 5.000000e-02 3.658700e+01 1.083478e+00 1.083478e+00 +4.500000e-01 5.000000e-02 5.000000e-02 3.637500e+01 1.092405e+00 1.092405e+00 +5.500000e-01 5.000000e-02 5.000000e-02 3.654200e+01 1.110984e+00 1.110984e+00 +6.500000e-01 5.000000e-02 5.000000e-02 3.659600e+01 1.111936e+00 1.111936e+00 +7.500000e-01 5.000000e-02 5.000000e-02 3.640100e+01 1.116094e+00 1.116094e+00 +8.500000e-01 5.000000e-02 5.000000e-02 3.660600e+01 1.147230e+00 1.147230e+00 +9.500000e-01 5.000000e-02 5.000000e-02 3.646900e+01 1.163191e+00 1.163191e+00 +1.050000e+00 5.000000e-02 5.000000e-02 3.661200e+01 1.179085e+00 1.179085e+00 +1.150000e+00 5.000000e-02 5.000000e-02 3.645900e+01 1.178223e+00 1.178223e+00 +1.250000e+00 5.000000e-02 5.000000e-02 3.638400e+01 1.215778e+00 1.215778e+00 +1.350000e+00 5.000000e-02 5.000000e-02 3.616100e+01 1.193401e+00 1.193401e+00 +1.450000e+00 5.000000e-02 5.000000e-02 3.591500e+01 1.228704e+00 1.228704e+00 +1.550000e+00 5.000000e-02 5.000000e-02 3.559400e+01 1.233088e+00 1.233088e+00 +1.650000e+00 5.000000e-02 5.000000e-02 3.547600e+01 1.256861e+00 1.256861e+00 +1.750000e+00 5.000000e-02 5.000000e-02 3.492800e+01 1.269280e+00 1.269280e+00 +1.850000e+00 5.000000e-02 5.000000e-02 3.454000e+01 1.299850e+00 1.299850e+00 +1.950000e+00 5.000000e-02 5.000000e-02 3.421000e+01 1.307588e+00 1.307588e+00 +2.050000e+00 5.000000e-02 5.000000e-02 3.381800e+01 1.370328e+00 1.370328e+00 +2.150000e+00 5.000000e-02 5.000000e-02 3.330000e+01 1.375913e+00 1.375913e+00 +2.250000e+00 5.000000e-02 5.000000e-02 3.268500e+01 1.507224e+00 1.507224e+00 +2.350000e+00 5.000000e-02 5.000000e-02 3.191300e+01 1.454847e+00 1.454847e+00 +2.450000e+00 5.000000e-02 5.000000e-02 3.181500e+01 1.506724e+00 1.506724e+00 +2.550000e+00 5.000000e-02 5.000000e-02 3.114300e+01 1.473074e+00 1.473074e+00 +2.650000e+00 5.000000e-02 5.000000e-02 3.030200e+01 1.592779e+00 1.592779e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y07 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y07 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 5.473500e+01 2.256166e+00 2.256166e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 5.450500e+01 2.239800e+00 2.239800e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 5.518000e+01 2.096670e+00 2.096670e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 5.516700e+01 2.048468e+00 2.048468e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 5.536300e+01 2.043613e+00 2.043613e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 5.517500e+01 2.033226e+00 2.033226e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 5.518800e+01 1.986837e+00 1.986837e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 5.537000e+01 1.920240e+00 1.920240e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 5.509100e+01 1.893805e+00 1.893805e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 5.450700e+01 1.844486e+00 1.844486e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 5.454500e+01 1.844640e+00 1.844640e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 5.410300e+01 1.786826e+00 1.786826e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 5.320300e+01 1.690504e+00 1.690504e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 5.304200e+01 1.680268e+00 1.680268e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 5.211600e+01 1.648608e+00 1.648608e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 5.179200e+01 1.633687e+00 1.633687e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 5.097400e+01 1.577345e+00 1.577345e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 5.019900e+01 1.530919e+00 1.530919e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 4.951900e+01 1.508163e+00 1.508163e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 4.881500e+01 1.472513e+00 1.472513e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 4.809900e+01 1.420628e+00 1.420628e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 4.675700e+01 1.390557e+00 1.390557e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 4.650000e+01 1.382608e+00 1.382608e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 4.580700e+01 1.370787e+00 1.370787e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 4.505700e+01 1.315162e+00 1.315162e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 4.456600e+01 1.290420e+00 1.290420e+00 +-5.000000e-02 5.000000e-02 5.000000e-02 4.406500e+01 1.282078e+00 1.282078e+00 +5.000000e-02 5.000000e-02 5.000000e-02 4.373200e+01 1.252515e+00 1.252515e+00 +1.500000e-01 5.000000e-02 5.000000e-02 4.333400e+01 1.262199e+00 1.262199e+00 +2.500000e-01 5.000000e-02 5.000000e-02 4.322400e+01 1.273948e+00 1.273948e+00 +3.500000e-01 5.000000e-02 5.000000e-02 4.325800e+01 1.302552e+00 1.302552e+00 +4.500000e-01 5.000000e-02 5.000000e-02 4.300900e+01 1.313092e+00 1.313092e+00 +5.500000e-01 5.000000e-02 5.000000e-02 4.297500e+01 1.329599e+00 1.329599e+00 +6.500000e-01 5.000000e-02 5.000000e-02 4.288400e+01 1.325860e+00 1.325860e+00 +7.500000e-01 5.000000e-02 5.000000e-02 4.287100e+01 1.337312e+00 1.337312e+00 +8.500000e-01 5.000000e-02 5.000000e-02 4.277500e+01 1.363907e+00 1.363907e+00 +9.500000e-01 5.000000e-02 5.000000e-02 4.279900e+01 1.387395e+00 1.387395e+00 +1.050000e+00 5.000000e-02 5.000000e-02 4.274400e+01 1.399294e+00 1.399294e+00 +1.150000e+00 5.000000e-02 5.000000e-02 4.271300e+01 1.404005e+00 1.404005e+00 +1.250000e+00 5.000000e-02 5.000000e-02 4.237400e+01 1.438868e+00 1.438868e+00 +1.350000e+00 5.000000e-02 5.000000e-02 4.228500e+01 1.418388e+00 1.418388e+00 +1.450000e+00 5.000000e-02 5.000000e-02 4.180300e+01 1.451802e+00 1.451802e+00 +1.550000e+00 5.000000e-02 5.000000e-02 4.133700e+01 1.455001e+00 1.455001e+00 +1.650000e+00 5.000000e-02 5.000000e-02 4.100200e+01 1.474886e+00 1.474886e+00 +1.750000e+00 5.000000e-02 5.000000e-02 4.053100e+01 1.496738e+00 1.496738e+00 +1.850000e+00 5.000000e-02 5.000000e-02 3.989400e+01 1.524428e+00 1.524428e+00 +1.950000e+00 5.000000e-02 5.000000e-02 3.924100e+01 1.523231e+00 1.523231e+00 +2.050000e+00 5.000000e-02 5.000000e-02 3.843900e+01 1.579962e+00 1.579962e+00 +2.150000e+00 5.000000e-02 5.000000e-02 3.779200e+01 1.584200e+00 1.584200e+00 +2.250000e+00 5.000000e-02 5.000000e-02 3.727200e+01 1.740921e+00 1.740921e+00 +2.350000e+00 5.000000e-02 5.000000e-02 3.650400e+01 1.684896e+00 1.684896e+00 +2.450000e+00 5.000000e-02 5.000000e-02 3.562900e+01 1.710666e+00 1.710666e+00 +2.550000e+00 5.000000e-02 5.000000e-02 3.497600e+01 1.678231e+00 1.678231e+00 +2.650000e+00 5.000000e-02 5.000000e-02 3.383100e+01 1.832029e+00 1.832029e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d03-x01-y08 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d03-x01-y08 +Title: doi:10.17182/hepdata.69240.v1/t3 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 7.272200e+01 3.518000e+00 3.518000e+00 +-2.550000e+00 5.000000e-02 5.000000e-02 7.230500e+01 3.479819e+00 3.479819e+00 +-2.450000e+00 5.000000e-02 5.000000e-02 7.246300e+01 3.202796e+00 3.202796e+00 +-2.350000e+00 5.000000e-02 5.000000e-02 7.221100e+01 3.096800e+00 3.096800e+00 +-2.250000e+00 5.000000e-02 5.000000e-02 7.294000e+01 3.094039e+00 3.094039e+00 +-2.150000e+00 5.000000e-02 5.000000e-02 7.258900e+01 3.055279e+00 3.055279e+00 +-2.050000e+00 5.000000e-02 5.000000e-02 7.230000e+01 2.956296e+00 2.956296e+00 +-1.950000e+00 5.000000e-02 5.000000e-02 7.184900e+01 2.813311e+00 2.813311e+00 +-1.850000e+00 5.000000e-02 5.000000e-02 7.264600e+01 2.804657e+00 2.804657e+00 +-1.750000e+00 5.000000e-02 5.000000e-02 7.175100e+01 2.713126e+00 2.713126e+00 +-1.650000e+00 5.000000e-02 5.000000e-02 7.086700e+01 2.666704e+00 2.666704e+00 +-1.550000e+00 5.000000e-02 5.000000e-02 7.016400e+01 2.564578e+00 2.564578e+00 +-1.450000e+00 5.000000e-02 5.000000e-02 6.971700e+01 2.438455e+00 2.438455e+00 +-1.350000e+00 5.000000e-02 5.000000e-02 6.835600e+01 2.373251e+00 2.373251e+00 +-1.250000e+00 5.000000e-02 5.000000e-02 6.729900e+01 2.323719e+00 2.323719e+00 +-1.150000e+00 5.000000e-02 5.000000e-02 6.684800e+01 2.294251e+00 2.294251e+00 +-1.050000e+00 5.000000e-02 5.000000e-02 6.495700e+01 2.177494e+00 2.177494e+00 +-9.500000e-01 5.000000e-02 5.000000e-02 6.447300e+01 2.120016e+00 2.120016e+00 +-8.500000e-01 5.000000e-02 5.000000e-02 6.313500e+01 2.068619e+00 2.068619e+00 +-7.500000e-01 5.000000e-02 5.000000e-02 6.298200e+01 2.038645e+00 2.038645e+00 +-6.500000e-01 5.000000e-02 5.000000e-02 6.185000e+01 1.952774e+00 1.952774e+00 +-5.500000e-01 5.000000e-02 5.000000e-02 6.064800e+01 1.925587e+00 1.925587e+00 +-4.500000e-01 5.000000e-02 5.000000e-02 5.914500e+01 1.871128e+00 1.871128e+00 +-3.500000e-01 5.000000e-02 5.000000e-02 5.871000e+01 1.868931e+00 1.868931e+00 +-2.500000e-01 5.000000e-02 5.000000e-02 5.740300e+01 1.776124e+00 1.776124e+00 +-1.500000e-01 5.000000e-02 5.000000e-02 5.694700e+01 1.745832e+00 1.745832e+00 +-5.000000e-02 5.000000e-02 5.000000e-02 5.590900e+01 1.723322e+00 1.723322e+00 +5.000000e-02 5.000000e-02 5.000000e-02 5.510100e+01 1.670482e+00 1.670482e+00 +1.500000e-01 5.000000e-02 5.000000e-02 5.462800e+01 1.686253e+00 1.686253e+00 +2.500000e-01 5.000000e-02 5.000000e-02 5.462100e+01 1.706203e+00 1.706203e+00 +3.500000e-01 5.000000e-02 5.000000e-02 5.444000e+01 1.743248e+00 1.743248e+00 +4.500000e-01 5.000000e-02 5.000000e-02 5.445700e+01 1.770315e+00 1.770315e+00 +5.500000e-01 5.000000e-02 5.000000e-02 5.419400e+01 1.786802e+00 1.786802e+00 +6.500000e-01 5.000000e-02 5.000000e-02 5.391900e+01 1.780204e+00 1.780204e+00 +7.500000e-01 5.000000e-02 5.000000e-02 5.358100e+01 1.790221e+00 1.790221e+00 +8.500000e-01 5.000000e-02 5.000000e-02 5.358300e+01 1.834217e+00 1.834217e+00 +9.500000e-01 5.000000e-02 5.000000e-02 5.353900e+01 1.870590e+00 1.870590e+00 +1.050000e+00 5.000000e-02 5.000000e-02 5.308600e+01 1.878494e+00 1.878494e+00 +1.150000e+00 5.000000e-02 5.000000e-02 5.268800e+01 1.878168e+00 1.878168e+00 +1.250000e+00 5.000000e-02 5.000000e-02 5.262500e+01 1.948803e+00 1.948803e+00 +1.350000e+00 5.000000e-02 5.000000e-02 5.179500e+01 1.899104e+00 1.899104e+00 +1.450000e+00 5.000000e-02 5.000000e-02 5.146700e+01 1.964544e+00 1.964544e+00 +1.550000e+00 5.000000e-02 5.000000e-02 5.086800e+01 1.974510e+00 1.974510e+00 +1.650000e+00 5.000000e-02 5.000000e-02 5.030200e+01 2.006498e+00 2.006498e+00 +1.750000e+00 5.000000e-02 5.000000e-02 4.961700e+01 2.041710e+00 2.041710e+00 +1.850000e+00 5.000000e-02 5.000000e-02 4.878000e+01 2.088500e+00 2.088500e+00 +1.950000e+00 5.000000e-02 5.000000e-02 4.730700e+01 2.066759e+00 2.066759e+00 +2.050000e+00 5.000000e-02 5.000000e-02 4.631300e+01 2.158501e+00 2.158501e+00 +2.150000e+00 5.000000e-02 5.000000e-02 4.577700e+01 2.186088e+00 2.186088e+00 +2.250000e+00 5.000000e-02 5.000000e-02 4.470000e+01 2.402164e+00 2.402164e+00 +2.350000e+00 5.000000e-02 5.000000e-02 4.379500e+01 2.339739e+00 2.339739e+00 +2.450000e+00 5.000000e-02 5.000000e-02 4.300300e+01 2.398403e+00 2.398403e+00 +2.550000e+00 5.000000e-02 5.000000e-02 4.148600e+01 2.323620e+00 2.323620e+00 +2.650000e+00 5.000000e-02 5.000000e-02 4.029000e+01 2.520823e+00 2.520823e+00 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y01 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.072000e+00 8.982205e-02 8.982205e-02 +-2.550000e+00 5.000000e-02 5.000000e-02 2.083000e+00 8.649277e-02 8.649277e-02 +-2.450000e+00 5.000000e-02 5.000000e-02 2.081000e+00 7.864477e-02 7.864477e-02 +-2.350000e+00 5.000000e-02 5.000000e-02 2.082000e+00 7.083078e-02 7.083078e-02 +-2.250000e+00 5.000000e-02 5.000000e-02 2.073000e+00 6.791171e-02 6.791171e-02 +-2.150000e+00 5.000000e-02 5.000000e-02 2.068000e+00 6.500000e-02 6.500000e-02 +-2.050000e+00 5.000000e-02 5.000000e-02 2.078000e+00 6.525335e-02 6.525335e-02 +-1.950000e+00 5.000000e-02 5.000000e-02 2.049000e+00 6.428841e-02 6.428841e-02 +-1.850000e+00 5.000000e-02 5.000000e-02 2.045000e+00 6.621933e-02 6.621933e-02 +-1.750000e+00 5.000000e-02 5.000000e-02 2.046000e+00 7.009280e-02 7.009280e-02 +-1.650000e+00 5.000000e-02 5.000000e-02 2.034000e+00 7.106335e-02 7.106335e-02 +-1.550000e+00 5.000000e-02 5.000000e-02 2.031000e+00 7.300685e-02 7.300685e-02 +-1.450000e+00 5.000000e-02 5.000000e-02 2.037000e+00 6.815424e-02 6.815424e-02 +-1.350000e+00 5.000000e-02 5.000000e-02 2.023000e+00 7.009280e-02 7.009280e-02 +-1.250000e+00 5.000000e-02 5.000000e-02 2.028000e+00 7.009280e-02 7.009280e-02 +-1.150000e+00 5.000000e-02 5.000000e-02 2.016000e+00 7.009280e-02 7.009280e-02 +-1.050000e+00 5.000000e-02 5.000000e-02 2.011000e+00 6.621933e-02 6.621933e-02 +-9.500000e-01 5.000000e-02 5.000000e-02 2.023000e+00 6.428841e-02 6.428841e-02 +-8.500000e-01 5.000000e-02 5.000000e-02 2.001000e+00 6.332456e-02 6.332456e-02 +-7.500000e-01 5.000000e-02 5.000000e-02 1.993000e+00 6.236185e-02 6.236185e-02 +-6.500000e-01 5.000000e-02 5.000000e-02 1.992000e+00 6.044005e-02 6.044005e-02 +-5.500000e-01 5.000000e-02 5.000000e-02 1.989000e+00 6.044005e-02 6.044005e-02 +-4.500000e-01 5.000000e-02 5.000000e-02 1.984000e+00 5.852350e-02 5.852350e-02 +-3.500000e-01 5.000000e-02 5.000000e-02 1.977000e+00 5.852350e-02 5.852350e-02 +-2.500000e-01 5.000000e-02 5.000000e-02 1.959000e+00 5.565968e-02 5.565968e-02 +-1.500000e-01 5.000000e-02 5.000000e-02 1.963000e+00 5.565968e-02 5.565968e-02 +-5.000000e-02 5.000000e-02 5.000000e-02 1.954000e+00 5.470832e-02 5.470832e-02 +5.000000e-02 5.000000e-02 5.000000e-02 1.964000e+00 5.565968e-02 5.565968e-02 +1.500000e-01 5.000000e-02 5.000000e-02 1.940000e+00 5.565968e-02 5.565968e-02 +2.500000e-01 5.000000e-02 5.000000e-02 1.938000e+00 5.565968e-02 5.565968e-02 +3.500000e-01 5.000000e-02 5.000000e-02 1.935000e+00 5.756735e-02 5.756735e-02 +4.500000e-01 5.000000e-02 5.000000e-02 1.931000e+00 5.756735e-02 5.756735e-02 +5.500000e-01 5.000000e-02 5.000000e-02 1.910000e+00 5.920304e-02 5.920304e-02 +6.500000e-01 5.000000e-02 5.000000e-02 1.916000e+00 5.920304e-02 5.920304e-02 +7.500000e-01 5.000000e-02 5.000000e-02 1.915000e+00 6.016644e-02 6.016644e-02 +8.500000e-01 5.000000e-02 5.000000e-02 1.905000e+00 6.306346e-02 6.306346e-02 +9.500000e-01 5.000000e-02 5.000000e-02 1.888000e+00 6.403124e-02 6.403124e-02 +1.050000e+00 5.000000e-02 5.000000e-02 1.893000e+00 6.500000e-02 6.500000e-02 +1.150000e+00 5.000000e-02 5.000000e-02 1.883000e+00 6.694027e-02 6.694027e-02 +1.250000e+00 5.000000e-02 5.000000e-02 1.860000e+00 6.768309e-02 6.768309e-02 +1.350000e+00 5.000000e-02 5.000000e-02 1.871000e+00 6.596969e-02 6.596969e-02 +1.450000e+00 5.000000e-02 5.000000e-02 1.865000e+00 6.694027e-02 6.694027e-02 +1.550000e+00 5.000000e-02 5.000000e-02 1.853000e+00 6.573431e-02 6.573431e-02 +1.650000e+00 5.000000e-02 5.000000e-02 1.842000e+00 6.573431e-02 6.573431e-02 +1.750000e+00 5.000000e-02 5.000000e-02 1.841000e+00 6.378871e-02 6.378871e-02 +1.850000e+00 5.000000e-02 5.000000e-02 1.832000e+00 6.184658e-02 6.184658e-02 +1.950000e+00 5.000000e-02 5.000000e-02 1.823000e+00 5.990826e-02 5.990826e-02 +2.050000e+00 5.000000e-02 5.000000e-02 1.816000e+00 6.161169e-02 6.161169e-02 +2.150000e+00 5.000000e-02 5.000000e-02 1.826000e+00 6.087693e-02 6.087693e-02 +2.250000e+00 5.000000e-02 5.000000e-02 1.799000e+00 6.865858e-02 6.865858e-02 +2.350000e+00 5.000000e-02 5.000000e-02 1.793000e+00 6.963476e-02 6.963476e-02 +2.450000e+00 5.000000e-02 5.000000e-02 1.801000e+00 7.550497e-02 7.550497e-02 +2.550000e+00 5.000000e-02 5.000000e-02 1.763000e+00 8.297590e-02 8.297590e-02 +2.650000e+00 5.000000e-02 5.000000e-02 1.750000e+00 9.656604e-02 9.656604e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y02 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 2.874000e+00 1.142366e-01 1.142366e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 2.879000e+00 1.135650e-01 1.135650e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 2.865000e+00 1.038123e-01 1.038123e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 2.852000e+00 9.386160e-02 9.386160e-02 +-2.250000e+00 5.000000e-02 5.000000e-02 2.847000e+00 9.217917e-02 9.217917e-02 +-2.150000e+00 5.000000e-02 5.000000e-02 2.838000e+00 8.928606e-02 8.928606e-02 +-2.050000e+00 5.000000e-02 5.000000e-02 2.824000e+00 9.052072e-02 9.052072e-02 +-1.950000e+00 5.000000e-02 5.000000e-02 2.800000e+00 9.052072e-02 9.052072e-02 +-1.850000e+00 5.000000e-02 5.000000e-02 2.805000e+00 9.340771e-02 9.340771e-02 +-1.750000e+00 5.000000e-02 5.000000e-02 2.794000e+00 9.823441e-02 9.823441e-02 +-1.650000e+00 5.000000e-02 5.000000e-02 2.762000e+00 9.920181e-02 9.920181e-02 +-1.550000e+00 5.000000e-02 5.000000e-02 2.767000e+00 1.021078e-01 1.021078e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 2.767000e+00 9.533625e-02 9.533625e-02 +-1.350000e+00 5.000000e-02 5.000000e-02 2.760000e+00 9.823441e-02 9.823441e-02 +-1.250000e+00 5.000000e-02 5.000000e-02 2.757000e+00 9.726767e-02 9.726767e-02 +-1.150000e+00 5.000000e-02 5.000000e-02 2.737000e+00 9.726767e-02 9.726767e-02 +-1.050000e+00 5.000000e-02 5.000000e-02 2.719000e+00 9.244458e-02 9.244458e-02 +-9.500000e-01 5.000000e-02 5.000000e-02 2.723000e+00 8.860023e-02 8.860023e-02 +-8.500000e-01 5.000000e-02 5.000000e-02 2.704000e+00 8.764131e-02 8.764131e-02 +-7.500000e-01 5.000000e-02 5.000000e-02 2.706000e+00 8.764131e-02 8.764131e-02 +-6.500000e-01 5.000000e-02 5.000000e-02 2.678000e+00 8.381527e-02 8.381527e-02 +-5.500000e-01 5.000000e-02 5.000000e-02 2.675000e+00 8.286133e-02 8.286133e-02 +-4.500000e-01 5.000000e-02 5.000000e-02 2.663000e+00 8.095678e-02 8.095678e-02 +-3.500000e-01 5.000000e-02 5.000000e-02 2.663000e+00 8.095678e-02 8.095678e-02 +-2.500000e-01 5.000000e-02 5.000000e-02 2.624000e+00 7.621680e-02 7.621680e-02 +-1.500000e-01 5.000000e-02 5.000000e-02 2.619000e+00 7.621680e-02 7.621680e-02 +-5.000000e-02 5.000000e-02 5.000000e-02 2.617000e+00 7.527284e-02 7.527284e-02 +5.000000e-02 5.000000e-02 5.000000e-02 2.601000e+00 7.621680e-02 7.621680e-02 +1.500000e-01 5.000000e-02 5.000000e-02 2.601000e+00 7.621680e-02 7.621680e-02 +2.500000e-01 5.000000e-02 5.000000e-02 2.575000e+00 7.589466e-02 7.589466e-02 +3.500000e-01 5.000000e-02 5.000000e-02 2.566000e+00 7.779460e-02 7.779460e-02 +4.500000e-01 5.000000e-02 5.000000e-02 2.567000e+00 7.779460e-02 7.779460e-02 +5.500000e-01 5.000000e-02 5.000000e-02 2.536000e+00 8.065358e-02 8.065358e-02 +6.500000e-01 5.000000e-02 5.000000e-02 2.510000e+00 7.969944e-02 7.969944e-02 +7.500000e-01 5.000000e-02 5.000000e-02 2.527000e+00 8.160882e-02 8.160882e-02 +8.500000e-01 5.000000e-02 5.000000e-02 2.488000e+00 8.324062e-02 8.324062e-02 +9.500000e-01 5.000000e-02 5.000000e-02 2.479000e+00 8.612781e-02 8.612781e-02 +1.050000e+00 5.000000e-02 5.000000e-02 2.480000e+00 8.709191e-02 8.709191e-02 +1.150000e+00 5.000000e-02 5.000000e-02 2.460000e+00 8.902247e-02 8.902247e-02 +1.250000e+00 5.000000e-02 5.000000e-02 2.425000e+00 8.973851e-02 8.973851e-02 +1.350000e+00 5.000000e-02 5.000000e-02 2.431000e+00 8.780091e-02 8.780091e-02 +1.450000e+00 5.000000e-02 5.000000e-02 2.423000e+00 8.876936e-02 8.876936e-02 +1.550000e+00 5.000000e-02 5.000000e-02 2.405000e+00 8.876936e-02 8.876936e-02 +1.650000e+00 5.000000e-02 5.000000e-02 2.387000e+00 8.780091e-02 8.780091e-02 +1.750000e+00 5.000000e-02 5.000000e-02 2.361000e+00 8.489994e-02 8.489994e-02 +1.850000e+00 5.000000e-02 5.000000e-02 2.362000e+00 8.200610e-02 8.200610e-02 +1.950000e+00 5.000000e-02 5.000000e-02 2.339000e+00 7.912016e-02 7.912016e-02 +2.050000e+00 5.000000e-02 5.000000e-02 2.321000e+00 7.981228e-02 7.981228e-02 +2.150000e+00 5.000000e-02 5.000000e-02 2.327000e+00 7.788453e-02 7.788453e-02 +2.250000e+00 5.000000e-02 5.000000e-02 2.278000e+00 8.561542e-02 8.561542e-02 +2.350000e+00 5.000000e-02 5.000000e-02 2.259000e+00 8.658522e-02 8.658522e-02 +2.450000e+00 5.000000e-02 5.000000e-02 2.280000e+00 9.144397e-02 9.144397e-02 +2.550000e+00 5.000000e-02 5.000000e-02 2.242000e+00 1.004241e-01 1.004241e-01 +2.650000e+00 5.000000e-02 5.000000e-02 2.259000e+00 1.208056e-01 1.208056e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y03 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 3.511000e+00 1.570891e-01 1.570891e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 3.519000e+00 1.565248e-01 1.565248e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 3.502000e+00 1.425798e-01 1.425798e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 3.483000e+00 1.288604e-01 1.288604e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 3.460000e+00 1.261467e-01 1.261467e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 3.457000e+00 1.222497e-01 1.222497e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 3.432000e+00 1.234544e-01 1.234544e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 3.386000e+00 1.232234e-01 1.232234e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 3.391000e+00 1.263725e-01 1.263725e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 3.386000e+00 1.331953e-01 1.331953e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 3.355000e+00 1.349370e-01 1.349370e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 3.360000e+00 1.390575e-01 1.390575e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 3.337000e+00 1.292942e-01 1.292942e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 3.316000e+00 1.329812e-01 1.329812e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 3.308000e+00 1.312440e-01 1.312440e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 3.302000e+00 1.312440e-01 1.312440e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 3.262000e+00 1.241974e-01 1.241974e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 3.282000e+00 1.205404e-01 1.205404e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 3.249000e+00 1.186002e-01 1.186002e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 3.238000e+00 1.176308e-01 1.176308e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 3.216000e+00 1.127918e-01 1.127918e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 3.211000e+00 1.118258e-01 1.118258e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 3.197000e+00 1.079676e-01 1.079676e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 3.174000e+00 1.077033e-01 1.077033e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 3.143000e+00 1.019215e-01 1.019215e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 3.135000e+00 1.028834e-01 1.028834e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 3.125000e+00 1.000000e-01 1.000000e-01 +5.000000e-02 5.000000e-02 5.000000e-02 3.108000e+00 1.009604e-01 1.009604e-01 +1.500000e-01 5.000000e-02 5.000000e-02 3.090000e+00 1.019215e-01 1.019215e-01 +2.500000e-01 5.000000e-02 5.000000e-02 3.051000e+00 1.009604e-01 1.009604e-01 +3.500000e-01 5.000000e-02 5.000000e-02 3.047000e+00 1.028834e-01 1.028834e-01 +4.500000e-01 5.000000e-02 5.000000e-02 3.037000e+00 1.035809e-01 1.035809e-01 +5.500000e-01 5.000000e-02 5.000000e-02 2.999000e+00 1.064800e-01 1.064800e-01 +6.500000e-01 5.000000e-02 5.000000e-02 2.975000e+00 1.064800e-01 1.064800e-01 +7.500000e-01 5.000000e-02 5.000000e-02 2.981000e+00 1.074477e-01 1.074477e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.959000e+00 1.122943e-01 1.122943e-01 +9.500000e-01 5.000000e-02 5.000000e-02 2.913000e+00 1.130310e-01 1.130310e-01 +1.050000e+00 5.000000e-02 5.000000e-02 2.917000e+00 1.149783e-01 1.149783e-01 +1.150000e+00 5.000000e-02 5.000000e-02 2.902000e+00 1.179025e-01 1.179025e-01 +1.250000e+00 5.000000e-02 5.000000e-02 2.835000e+00 1.176860e-01 1.176860e-01 +1.350000e+00 5.000000e-02 5.000000e-02 2.848000e+00 1.157325e-01 1.157325e-01 +1.450000e+00 5.000000e-02 5.000000e-02 2.826000e+00 1.167090e-01 1.167090e-01 +1.550000e+00 5.000000e-02 5.000000e-02 2.791000e+00 1.157325e-01 1.157325e-01 +1.650000e+00 5.000000e-02 5.000000e-02 2.769000e+00 1.147563e-01 1.147563e-01 +1.750000e+00 5.000000e-02 5.000000e-02 2.741000e+00 1.106345e-01 1.106345e-01 +1.850000e+00 5.000000e-02 5.000000e-02 2.741000e+00 1.067333e-01 1.067333e-01 +1.950000e+00 5.000000e-02 5.000000e-02 2.696000e+00 1.018676e-01 1.018676e-01 +2.050000e+00 5.000000e-02 5.000000e-02 2.680000e+00 1.045610e-01 1.045610e-01 +2.150000e+00 5.000000e-02 5.000000e-02 2.675000e+00 1.006628e-01 1.006628e-01 +2.250000e+00 5.000000e-02 5.000000e-02 2.611000e+00 1.104219e-01 1.104219e-01 +2.350000e+00 5.000000e-02 5.000000e-02 2.598000e+00 1.114002e-01 1.114002e-01 +2.450000e+00 5.000000e-02 5.000000e-02 2.604000e+00 1.174777e-01 1.174777e-01 +2.550000e+00 5.000000e-02 5.000000e-02 2.572000e+00 1.302690e-01 1.302690e-01 +2.650000e+00 5.000000e-02 5.000000e-02 2.593000e+00 1.557691e-01 1.557691e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y04 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y04 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 4.375000e+00 2.104590e-01 2.104590e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 4.372000e+00 2.087870e-01 2.087870e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 4.344000e+00 1.908743e-01 1.908743e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 4.295000e+00 1.712104e-01 1.712104e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 4.291000e+00 1.684666e-01 1.684666e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 4.269000e+00 1.625946e-01 1.625946e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 4.263000e+00 1.649758e-01 1.649758e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 4.192000e+00 1.637834e-01 1.637834e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 4.189000e+00 1.686713e-01 1.686713e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 4.162000e+00 1.765050e-01 1.765050e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 4.120000e+00 1.784657e-01 1.784657e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 4.146000e+00 1.843529e-01 1.843529e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 4.113000e+00 1.716071e-01 1.716071e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 4.091000e+00 1.765050e-01 1.765050e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 4.074000e+00 1.735655e-01 1.735655e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 4.046000e+00 1.735655e-01 1.735655e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 4.026000e+00 1.657377e-01 1.657377e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 4.012000e+00 1.579272e-01 1.579272e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 3.971000e+00 1.559776e-01 1.559776e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 3.964000e+00 1.550032e-01 1.550032e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 3.929000e+00 1.481924e-01 1.481924e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 3.921000e+00 1.472209e-01 1.472209e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 3.897000e+00 1.423692e-01 1.423692e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 3.876000e+00 1.414001e-01 1.414001e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 3.813000e+00 1.334054e-01 1.334054e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 3.806000e+00 1.334054e-01 1.334054e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 3.771000e+00 1.305067e-01 1.305067e-01 +5.000000e-02 5.000000e-02 5.000000e-02 3.794000e+00 1.324387e-01 1.324387e-01 +1.500000e-01 5.000000e-02 5.000000e-02 3.736000e+00 1.324387e-01 1.324387e-01 +2.500000e-01 5.000000e-02 5.000000e-02 3.706000e+00 1.314724e-01 1.314724e-01 +3.500000e-01 5.000000e-02 5.000000e-02 3.674000e+00 1.341231e-01 1.341231e-01 +4.500000e-01 5.000000e-02 5.000000e-02 3.647000e+00 1.341231e-01 1.341231e-01 +5.500000e-01 5.000000e-02 5.000000e-02 3.596000e+00 1.377679e-01 1.377679e-01 +6.500000e-01 5.000000e-02 5.000000e-02 3.581000e+00 1.367955e-01 1.367955e-01 +7.500000e-01 5.000000e-02 5.000000e-02 3.563000e+00 1.387408e-01 1.387408e-01 +8.500000e-01 5.000000e-02 5.000000e-02 3.522000e+00 1.436106e-01 1.436106e-01 +9.500000e-01 5.000000e-02 5.000000e-02 3.488000e+00 1.463216e-01 1.463216e-01 +1.050000e+00 5.000000e-02 5.000000e-02 3.479000e+00 1.472990e-01 1.472990e-01 +1.150000e+00 5.000000e-02 5.000000e-02 3.443000e+00 1.502332e-01 1.502332e-01 +1.250000e+00 5.000000e-02 5.000000e-02 3.392000e+00 1.519901e-01 1.519901e-01 +1.350000e+00 5.000000e-02 5.000000e-02 3.381000e+00 1.480709e-01 1.480709e-01 +1.450000e+00 5.000000e-02 5.000000e-02 3.338000e+00 1.490503e-01 1.490503e-01 +1.550000e+00 5.000000e-02 5.000000e-02 3.315000e+00 1.480709e-01 1.480709e-01 +1.650000e+00 5.000000e-02 5.000000e-02 3.262000e+00 1.449310e-01 1.449310e-01 +1.750000e+00 5.000000e-02 5.000000e-02 3.241000e+00 1.410142e-01 1.410142e-01 +1.850000e+00 5.000000e-02 5.000000e-02 3.207000e+00 1.341715e-01 1.341715e-01 +1.950000e+00 5.000000e-02 5.000000e-02 3.178000e+00 1.292942e-01 1.292942e-01 +2.050000e+00 5.000000e-02 5.000000e-02 3.131000e+00 1.308167e-01 1.308167e-01 +2.150000e+00 5.000000e-02 5.000000e-02 3.122000e+00 1.259286e-01 1.259286e-01 +2.250000e+00 5.000000e-02 5.000000e-02 3.049000e+00 1.386542e-01 1.386542e-01 +2.350000e+00 5.000000e-02 5.000000e-02 3.042000e+00 1.408119e-01 1.408119e-01 +2.450000e+00 5.000000e-02 5.000000e-02 3.007000e+00 1.466970e-01 1.466970e-01 +2.550000e+00 5.000000e-02 5.000000e-02 2.969000e+00 1.616168e-01 1.616168e-01 +2.650000e+00 5.000000e-02 5.000000e-02 2.965000e+00 1.911256e-01 1.911256e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y05 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y05 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 5.351000e+00 2.859545e-01 2.859545e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 5.371000e+00 2.850702e-01 2.850702e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 5.324000e+00 2.602787e-01 2.602787e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 5.243000e+00 2.325941e-01 2.325941e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 5.210000e+00 2.271299e-01 2.271299e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 5.211000e+00 2.212691e-01 2.212691e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 5.181000e+00 2.226859e-01 2.226859e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 5.115000e+00 2.224635e-01 2.224635e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 5.104000e+00 2.285366e-01 2.285366e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 5.050000e+00 2.380966e-01 2.380966e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 5.033000e+00 2.429918e-01 2.429918e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 5.008000e+00 2.478911e-01 2.478911e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 4.979000e+00 2.312509e-01 2.312509e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 4.945000e+00 2.371181e-01 2.371181e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 4.948000e+00 2.341837e-01 2.341837e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 4.888000e+00 2.332059e-01 2.332059e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 4.840000e+00 2.214881e-01 2.214881e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 4.856000e+00 2.127205e-01 2.127205e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 4.800000e+00 2.098023e-01 2.098023e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 4.786000e+00 2.088301e-01 2.088301e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 4.732000e+00 1.981540e-01 1.981540e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 4.688000e+00 1.959694e-01 1.959694e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 4.688000e+00 1.901578e-01 1.901578e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 4.648000e+00 1.882233e-01 1.882233e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 4.576000e+00 1.785721e-01 1.785721e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 4.527000e+00 1.773415e-01 1.773415e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 4.496000e+00 1.734878e-01 1.734878e-01 +5.000000e-02 5.000000e-02 5.000000e-02 4.527000e+00 1.763774e-01 1.763774e-01 +1.500000e-01 5.000000e-02 5.000000e-02 4.447000e+00 1.754138e-01 1.754138e-01 +2.500000e-01 5.000000e-02 5.000000e-02 4.423000e+00 1.741838e-01 1.741838e-01 +3.500000e-01 5.000000e-02 5.000000e-02 4.382000e+00 1.780449e-01 1.780449e-01 +4.500000e-01 5.000000e-02 5.000000e-02 4.328000e+00 1.768219e-01 1.768219e-01 +5.500000e-01 5.000000e-02 5.000000e-02 4.265000e+00 1.816618e-01 1.816618e-01 +6.500000e-01 5.000000e-02 5.000000e-02 4.238000e+00 1.804467e-01 1.804467e-01 +7.500000e-01 5.000000e-02 5.000000e-02 4.194000e+00 1.814166e-01 1.814166e-01 +8.500000e-01 5.000000e-02 5.000000e-02 4.168000e+00 1.879840e-01 1.879840e-01 +9.500000e-01 5.000000e-02 5.000000e-02 4.090000e+00 1.909057e-01 1.909057e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.095000e+00 1.928549e-01 1.928549e-01 +1.150000e+00 5.000000e-02 5.000000e-02 4.037000e+00 1.955633e-01 1.955633e-01 +1.250000e+00 5.000000e-02 5.000000e-02 3.975000e+00 1.982851e-01 1.982851e-01 +1.350000e+00 5.000000e-02 5.000000e-02 3.954000e+00 1.924188e-01 1.924188e-01 +1.450000e+00 5.000000e-02 5.000000e-02 3.907000e+00 1.943734e-01 1.943734e-01 +1.550000e+00 5.000000e-02 5.000000e-02 3.839000e+00 1.902525e-01 1.902525e-01 +1.650000e+00 5.000000e-02 5.000000e-02 3.808000e+00 1.882976e-01 1.882976e-01 +1.750000e+00 5.000000e-02 5.000000e-02 3.755000e+00 1.822224e-01 1.822224e-01 +1.850000e+00 5.000000e-02 5.000000e-02 3.721000e+00 1.734416e-01 1.734416e-01 +1.950000e+00 5.000000e-02 5.000000e-02 3.685000e+00 1.666283e-01 1.666283e-01 +2.050000e+00 5.000000e-02 5.000000e-02 3.636000e+00 1.690976e-01 1.690976e-01 +2.150000e+00 5.000000e-02 5.000000e-02 3.616000e+00 1.622745e-01 1.622745e-01 +2.250000e+00 5.000000e-02 5.000000e-02 3.513000e+00 1.786645e-01 1.786645e-01 +2.350000e+00 5.000000e-02 5.000000e-02 3.429000e+00 1.767060e-01 1.767060e-01 +2.450000e+00 5.000000e-02 5.000000e-02 3.473000e+00 1.886637e-01 1.886637e-01 +2.550000e+00 5.000000e-02 5.000000e-02 3.407000e+00 2.069517e-01 2.069517e-01 +2.650000e+00 5.000000e-02 5.000000e-02 3.354000e+00 2.406657e-01 2.406657e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y06 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y06 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 6.510000e+00 3.497042e-01 3.497042e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 6.544000e+00 3.492921e-01 3.492921e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 6.473000e+00 3.179261e-01 3.179261e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 6.386000e+00 2.845242e-01 2.845242e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 6.360000e+00 2.801303e-01 2.801303e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 6.303000e+00 2.694624e-01 2.694624e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 6.273000e+00 2.709336e-01 2.709336e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 6.215000e+00 2.719007e-01 2.719007e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 6.194000e+00 2.786772e-01 2.786772e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 6.097000e+00 2.891107e-01 2.891107e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 6.094000e+00 2.959189e-01 2.959189e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 6.066000e+00 3.027359e-01 3.027359e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 5.992000e+00 2.803712e-01 2.803712e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 5.975000e+00 2.881389e-01 2.881389e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 5.928000e+00 2.832825e-01 2.832825e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 5.907000e+00 2.842534e-01 2.842534e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 5.826000e+00 2.684939e-01 2.684939e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 5.826000e+00 2.581182e-01 2.581182e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 5.763000e+00 2.539961e-01 2.539961e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 5.738000e+00 2.520675e-01 2.520675e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 5.702000e+00 2.414808e-01 2.414808e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 5.583000e+00 2.354400e-01 2.354400e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 5.601000e+00 2.299761e-01 2.299761e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 5.559000e+00 2.277718e-01 2.277718e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 5.460000e+00 2.153625e-01 2.153625e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 5.419000e+00 2.141051e-01 2.141051e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 5.380000e+00 2.093466e-01 2.093466e-01 +5.000000e-02 5.000000e-02 5.000000e-02 5.370000e+00 2.122004e-01 2.122004e-01 +1.500000e-01 5.000000e-02 5.000000e-02 5.269000e+00 2.099905e-01 2.099905e-01 +2.500000e-01 5.000000e-02 5.000000e-02 5.217000e+00 2.087343e-01 2.087343e-01 +3.500000e-01 5.000000e-02 5.000000e-02 5.192000e+00 2.125512e-01 2.125512e-01 +4.500000e-01 5.000000e-02 5.000000e-02 5.122000e+00 2.113007e-01 2.113007e-01 +5.500000e-01 5.000000e-02 5.000000e-02 5.020000e+00 2.164809e-01 2.164809e-01 +6.500000e-01 5.000000e-02 5.000000e-02 4.971000e+00 2.145600e-01 2.145600e-01 +7.500000e-01 5.000000e-02 5.000000e-02 4.951000e+00 2.164809e-01 2.164809e-01 +8.500000e-01 5.000000e-02 5.000000e-02 4.877000e+00 2.229484e-01 2.229484e-01 +9.500000e-01 5.000000e-02 5.000000e-02 4.809000e+00 2.255837e-01 2.255837e-01 +1.050000e+00 5.000000e-02 5.000000e-02 4.788000e+00 2.275170e-01 2.275170e-01 +1.150000e+00 5.000000e-02 5.000000e-02 4.738000e+00 2.321077e-01 2.321077e-01 +1.250000e+00 5.000000e-02 5.000000e-02 4.640000e+00 2.338055e-01 2.338055e-01 +1.350000e+00 5.000000e-02 5.000000e-02 4.631000e+00 2.279846e-01 2.279846e-01 +1.450000e+00 5.000000e-02 5.000000e-02 4.557000e+00 2.277411e-01 2.277411e-01 +1.550000e+00 5.000000e-02 5.000000e-02 4.481000e+00 2.236180e-01 2.236180e-01 +1.650000e+00 5.000000e-02 5.000000e-02 4.406000e+00 2.194949e-01 2.194949e-01 +1.750000e+00 5.000000e-02 5.000000e-02 4.375000e+00 2.136773e-01 2.136773e-01 +1.850000e+00 5.000000e-02 5.000000e-02 4.304000e+00 2.018143e-01 2.018143e-01 +1.950000e+00 5.000000e-02 5.000000e-02 4.245000e+00 1.938298e-01 1.938298e-01 +2.050000e+00 5.000000e-02 5.000000e-02 4.159000e+00 1.950000e-01 1.950000e-01 +2.150000e+00 5.000000e-02 5.000000e-02 4.130000e+00 1.872565e-01 1.872565e-01 +2.250000e+00 5.000000e-02 5.000000e-02 4.024000e+00 2.056794e-01 2.056794e-01 +2.350000e+00 5.000000e-02 5.000000e-02 3.952000e+00 2.059150e-01 2.059150e-01 +2.450000e+00 5.000000e-02 5.000000e-02 3.915000e+00 2.136937e-01 2.136937e-01 +2.550000e+00 5.000000e-02 5.000000e-02 3.819000e+00 2.335744e-01 2.335744e-01 +2.650000e+00 5.000000e-02 5.000000e-02 3.757000e+00 2.735416e-01 2.735416e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d04-x01-y07 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d04-x01-y07 +Title: doi:10.17182/hepdata.69240.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +-2.650000e+00 5.000000e-02 5.000000e-02 8.618000e+00 4.632688e-01 4.632688e-01 +-2.550000e+00 5.000000e-02 5.000000e-02 8.520000e+00 4.638157e-01 4.638157e-01 +-2.450000e+00 5.000000e-02 5.000000e-02 8.473000e+00 4.166173e-01 4.166173e-01 +-2.350000e+00 5.000000e-02 5.000000e-02 8.354000e+00 3.735144e-01 3.735144e-01 +-2.250000e+00 5.000000e-02 5.000000e-02 8.377000e+00 3.696322e-01 3.696322e-01 +-2.150000e+00 5.000000e-02 5.000000e-02 8.267000e+00 3.538997e-01 3.538997e-01 +-2.050000e+00 5.000000e-02 5.000000e-02 8.200000e+00 3.556473e-01 3.556473e-01 +-1.950000e+00 5.000000e-02 5.000000e-02 8.137000e+00 3.524897e-01 3.524897e-01 +-1.850000e+00 5.000000e-02 5.000000e-02 8.143000e+00 3.682010e-01 3.682010e-01 +-1.750000e+00 5.000000e-02 5.000000e-02 8.009000e+00 3.815088e-01 3.815088e-01 +-1.650000e+00 5.000000e-02 5.000000e-02 7.912000e+00 3.851493e-01 3.851493e-01 +-1.550000e+00 5.000000e-02 5.000000e-02 7.862000e+00 3.929224e-01 3.929224e-01 +-1.450000e+00 5.000000e-02 5.000000e-02 7.861000e+00 3.679470e-01 3.679470e-01 +-1.350000e+00 5.000000e-02 5.000000e-02 7.719000e+00 3.735077e-01 3.735077e-01 +-1.250000e+00 5.000000e-02 5.000000e-02 7.643000e+00 3.655092e-01 3.655092e-01 +-1.150000e+00 5.000000e-02 5.000000e-02 7.613000e+00 3.664778e-01 3.664778e-01 +-1.050000e+00 5.000000e-02 5.000000e-02 7.444000e+00 3.439826e-01 3.439826e-01 +-9.500000e-01 5.000000e-02 5.000000e-02 7.470000e+00 3.314529e-01 3.314529e-01 +-8.500000e-01 5.000000e-02 5.000000e-02 7.357000e+00 3.244457e-01 3.244457e-01 +-7.500000e-01 5.000000e-02 5.000000e-02 7.388000e+00 3.256824e-01 3.256824e-01 +-6.500000e-01 5.000000e-02 5.000000e-02 7.325000e+00 3.112941e-01 3.112941e-01 +-5.500000e-01 5.000000e-02 5.000000e-02 7.241000e+00 3.062189e-01 3.062189e-01 +-4.500000e-01 5.000000e-02 5.000000e-02 7.115000e+00 2.925491e-01 2.925491e-01 +-3.500000e-01 5.000000e-02 5.000000e-02 7.118000e+00 2.925491e-01 2.925491e-01 +-2.500000e-01 5.000000e-02 5.000000e-02 6.965000e+00 2.760670e-01 2.760670e-01 +-1.500000e-01 5.000000e-02 5.000000e-02 6.928000e+00 2.751182e-01 2.751182e-01 +-5.000000e-02 5.000000e-02 5.000000e-02 6.845000e+00 2.681641e-01 2.681641e-01 +5.000000e-02 5.000000e-02 5.000000e-02 6.766000e+00 2.678451e-01 2.678451e-01 +1.500000e-01 5.000000e-02 5.000000e-02 6.655000e+00 2.656313e-01 2.656313e-01 +2.500000e-01 5.000000e-02 5.000000e-02 6.601000e+00 2.643672e-01 2.643672e-01 +3.500000e-01 5.000000e-02 5.000000e-02 6.530000e+00 2.691189e-01 2.691189e-01 +4.500000e-01 5.000000e-02 5.000000e-02 6.494000e+00 2.688122e-01 2.688122e-01 +5.500000e-01 5.000000e-02 5.000000e-02 6.340000e+00 2.739416e-01 2.739416e-01 +6.500000e-01 5.000000e-02 5.000000e-02 6.241000e+00 2.695329e-01 2.695329e-01 +7.500000e-01 5.000000e-02 5.000000e-02 6.189000e+00 2.714480e-01 2.714480e-01 +8.500000e-01 5.000000e-02 5.000000e-02 6.103000e+00 2.798035e-01 2.798035e-01 +9.500000e-01 5.000000e-02 5.000000e-02 6.019000e+00 2.831148e-01 2.831148e-01 +1.050000e+00 5.000000e-02 5.000000e-02 5.937000e+00 2.828516e-01 2.828516e-01 +1.150000e+00 5.000000e-02 5.000000e-02 5.842000e+00 2.864577e-01 2.864577e-01 +1.250000e+00 5.000000e-02 5.000000e-02 5.764000e+00 2.910464e-01 2.910464e-01 +1.350000e+00 5.000000e-02 5.000000e-02 5.686000e+00 2.801464e-01 2.801464e-01 +1.450000e+00 5.000000e-02 5.000000e-02 5.620000e+00 2.818315e-01 2.818315e-01 +1.550000e+00 5.000000e-02 5.000000e-02 5.525000e+00 2.767400e-01 2.767400e-01 +1.650000e+00 5.000000e-02 5.000000e-02 5.438000e+00 2.716487e-01 2.716487e-01 +1.750000e+00 5.000000e-02 5.000000e-02 5.368000e+00 2.629449e-01 2.629449e-01 +1.850000e+00 5.000000e-02 5.000000e-02 5.278000e+00 2.491766e-01 2.491766e-01 +1.950000e+00 5.000000e-02 5.000000e-02 5.130000e+00 2.351616e-01 2.351616e-01 +2.050000e+00 5.000000e-02 5.000000e-02 5.020000e+00 2.360191e-01 2.360191e-01 +2.150000e+00 5.000000e-02 5.000000e-02 5.013000e+00 2.276071e-01 2.276071e-01 +2.250000e+00 5.000000e-02 5.000000e-02 4.847000e+00 2.483566e-01 2.483566e-01 +2.350000e+00 5.000000e-02 5.000000e-02 4.741000e+00 2.481310e-01 2.481310e-01 +2.450000e+00 5.000000e-02 5.000000e-02 4.726000e+00 2.587856e-01 2.587856e-01 +2.550000e+00 5.000000e-02 5.000000e-02 4.651000e+00 2.858479e-01 2.858479e-01 +2.650000e+00 5.000000e-02 5.000000e-02 4.517000e+00 3.341527e-01 3.341527e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y01 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 7.250000e+01 3.171041e+00 3.171041e+00 +3.000000e+00 2.000000e+00 2.000000e+00 5.503900e+01 2.053308e+00 2.053308e+00 +7.500000e+00 2.500000e+00 2.500000e+00 4.536200e+01 1.688221e+00 1.688221e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.718600e+01 1.419596e+00 1.419596e+00 +2.500000e+01 5.000000e+00 5.000000e+00 3.016800e+01 1.150966e+00 1.150966e+00 +3.500000e+01 5.000000e+00 5.000000e+00 2.479900e+01 1.037328e+00 1.037328e+00 +5.000000e+01 1.000000e+01 1.000000e+01 1.824800e+01 8.633209e-01 8.633209e-01 +7.500000e+01 1.500000e+01 1.500000e+01 8.824000e+00 6.162224e-01 6.162224e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y02 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y02 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 6.937700e+01 2.457927e+00 2.457927e+00 +3.000000e+00 2.000000e+00 2.000000e+00 5.344900e+01 1.681602e+00 1.681602e+00 +7.500000e+00 2.500000e+00 2.500000e+00 4.427400e+01 1.391679e+00 1.391679e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.657400e+01 1.184036e+00 1.184036e+00 +2.500000e+01 5.000000e+00 5.000000e+00 2.976700e+01 9.636114e-01 9.636114e-01 +3.500000e+01 5.000000e+00 5.000000e+00 2.468300e+01 8.867525e-01 8.867525e-01 +5.000000e+01 1.000000e+01 1.000000e+01 1.824300e+01 7.516814e-01 7.516814e-01 +7.500000e+01 1.500000e+01 1.500000e+01 8.995000e+00 5.611925e-01 5.611925e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y03 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y03 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 6.004100e+01 1.842903e+00 1.842903e+00 +3.000000e+00 2.000000e+00 2.000000e+00 4.687200e+01 1.316669e+00 1.316669e+00 +7.500000e+00 2.500000e+00 2.500000e+00 3.914700e+01 1.099393e+00 1.099393e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.263400e+01 9.467233e-01 9.467233e-01 +2.500000e+01 5.000000e+00 5.000000e+00 2.683100e+01 7.780559e-01 7.780559e-01 +3.500000e+01 5.000000e+00 5.000000e+00 2.240100e+01 7.282053e-01 7.282053e-01 +5.000000e+01 1.000000e+01 1.000000e+01 1.671500e+01 6.290223e-01 6.290223e-01 +7.500000e+01 1.500000e+01 1.500000e+01 8.442000e+00 4.890511e-01 4.890511e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y04 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y04 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 5.421300e+01 1.700943e+00 1.700943e+00 +3.000000e+00 2.000000e+00 2.000000e+00 4.309000e+01 1.237715e+00 1.237715e+00 +7.500000e+00 2.500000e+00 2.500000e+00 3.657300e+01 1.049346e+00 1.049346e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.087900e+01 9.144818e-01 9.144818e-01 +2.500000e+01 5.000000e+00 5.000000e+00 2.567700e+01 7.598276e-01 7.598276e-01 +3.500000e+01 5.000000e+00 5.000000e+00 2.169000e+01 7.173263e-01 7.173263e-01 +5.000000e+01 1.000000e+01 1.000000e+01 1.644000e+01 6.257955e-01 6.257955e-01 +7.500000e+01 1.500000e+01 1.500000e+01 8.550000e+00 4.986281e-01 4.986281e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y05 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y05 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 5.081900e+01 1.922882e+00 1.922882e+00 +3.000000e+00 2.000000e+00 2.000000e+00 4.137300e+01 1.391735e+00 1.391735e+00 +7.500000e+00 2.500000e+00 2.500000e+00 3.562100e+01 1.194654e+00 1.194654e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.057500e+01 1.052240e+00 1.052240e+00 +2.500000e+01 5.000000e+00 5.000000e+00 2.583200e+01 8.896527e-01 8.896527e-01 +3.500000e+01 5.000000e+00 5.000000e+00 2.223400e+01 8.398190e-01 8.398190e-01 +5.000000e+01 1.000000e+01 1.000000e+01 1.720500e+01 7.367537e-01 7.367537e-01 +7.500000e+01 1.500000e+01 1.500000e+01 9.273000e+00 5.883451e-01 5.883451e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y06 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y06 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 4.414900e+01 2.269160e+00 2.269160e+00 +3.000000e+00 2.000000e+00 2.000000e+00 3.673300e+01 1.619425e+00 1.619425e+00 +7.500000e+00 2.500000e+00 2.500000e+00 3.240600e+01 1.421820e+00 1.421820e+00 +1.500000e+01 5.000000e+00 5.000000e+00 2.818700e+01 1.259010e+00 1.259010e+00 +2.500000e+01 5.000000e+00 5.000000e+00 2.417900e+01 1.079234e+00 1.079234e+00 +3.500000e+01 5.000000e+00 5.000000e+00 2.128600e+01 1.016509e+00 1.016509e+00 +5.000000e+01 1.000000e+01 1.000000e+01 1.690600e+01 8.871313e-01 8.871313e-01 +7.500000e+01 1.500000e+01 1.500000e+01 9.416000e+00 6.899920e-01 6.899920e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2015_I1386475/d05-x01-y07 +IsRef: 1 +Path: /REF/ATLAS_2015_I1386475/d05-x01-y07 +Title: doi:10.17182/hepdata.69240.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 5.775800e+01 2.143961e+00 2.143961e+00 +3.000000e+00 2.000000e+00 2.000000e+00 4.573000e+01 1.501280e+00 1.501280e+00 +7.500000e+00 2.500000e+00 2.500000e+00 3.868000e+01 1.267739e+00 1.267739e+00 +1.500000e+01 5.000000e+00 5.000000e+00 3.255500e+01 1.097449e+00 1.097449e+00 +2.500000e+01 5.000000e+00 5.000000e+00 2.700000e+01 9.103801e-01 9.103801e-01 +3.500000e+01 5.000000e+00 5.000000e+00 2.279600e+01 8.469746e-01 8.469746e-01 +5.000000e+01 1.000000e+01 1.000000e+01 1.724200e+01 7.286247e-01 7.286247e-01 +7.500000e+01 1.500000e+01 1.500000e+01 8.869000e+00 5.594086e-01 5.594086e-01 +END YODA_SCATTER2D_V2 diff --git a/analyses/pluginATLAS/ATLAS_pPb_Calib.cc b/analyses/pluginATLAS/ATLAS_pPb_Calib.cc new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_pPb_Calib.cc @@ -0,0 +1,81 @@ +// -*- C++ -*- +#include "Rivet/Tools/AtlasCommon.hh" +#include "Rivet/Projections/ImpactParameterProjection.hh" + +namespace Rivet { + + +/// Generic analysis looking at various distributions of final state particles +class ATLAS_pPb_Calib : public Analysis { + +public: + + DEFAULT_RIVET_ANALYSIS_CTOR(ATLAS_pPb_Calib); + + /// Book histograms and initialise projections before the run + void init() { + + // One projection for the actual observable, and one for the + // generated impact parameter. + declare(ATLAS::SumET_PB_Centrality(), "Centrality"); + declare(ImpactParameterProjection(), "IMP"); + declare(ATLAS::MinBiasTrigger(), "Trigger"); + + // The calibrationhistogram: + _calib = bookHisto1D("SumETPb", 100, 0.0, 200.0); + + // If histogram was pre-loaded, the calibration is done. + _done = ( _calib->numEntries() > 0 ); + + // The alternative histogram based on impact parameter. Note that + // it MUST be named the same as the histogram for the experimental + // observable with an added _IMP suffix for the Pecentile<> + // binning to work properly. + _impcalib = bookHisto1D("SumETPb_IMP", 400, 0.0, 20.0); + + + } + + /// Perform the per-event analysis + void analyze(const Event& event) { + + if ( _done ) return; + + const double weight = event.weight(); + + // The alternative centrality based on generated impact + // parameter, assumes that the generator does not describe the + // full final state, and should therefore be filled even if the + // event is not triggered. + _impcalib->fill(apply(event, "IMP")(), weight); + + if ( !apply(event, "Trigger")() ) vetoEvent; + + _calib->fill(apply(event, "Centrality")(), weight); + + } + + /// Finalize + void finalize() { + + _calib->normalize(); + _impcalib->normalize(); + + } + +private: + + /// The calibration histograms. + Histo1DPtr _calib; + Histo1DPtr _impcalib; + + /// Safeguard from adding to a pre-loaded histogram. + bool _done; + +}; + + +// The hook for the plugin system +DECLARE_RIVET_PLUGIN(ATLAS_pPb_Calib); + +} diff --git a/analyses/pluginATLAS/ATLAS_pPb_Calib.info b/analyses/pluginATLAS/ATLAS_pPb_Calib.info new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_pPb_Calib.info @@ -0,0 +1,37 @@ +Name: ATLAS_pPb_Calib +Summary: ATLAS proton-lead centrality calibration analysis. +Status: UNVALIDATED +Authors: + - Leif Lönnblad + - Christian Bierlich +NumEvents: 50000 +References: + - arXiv:1508.00848 [hep-ex], Eur.Phys.J. C76 (2016) no.4, 199 +RunInfo: Any! +Description: + 'Calibration analysis for ATLAS pPb centrality. The centrality measure + is $\sum E_\perp$ in the lead direction. The reference YODA file + contains the experimental centrality calibration, but extracted + from the plot in the paper. Note that this has not been unfolded + for detector effects.' + +BibKey: Aad:2015zza +BibTeX: '@article{Aad:2015zza, + author = "Aad, Georges and others", + title = "{Measurement of the centrality dependence of the + charged-particle pseudorapidity distribution in + proton–lead collisions at $\sqrt{s_{_\text {NN}}} = + 5.02$ TeV with the ATLAS detector}", + collaboration = "ATLAS", + journal = "Eur. Phys. J.", + volume = "C76", + year = "2016", + number = "4", + pages = "199", + doi = "10.1140/epjc/s10052-016-4002-3", + eprint = "1508.00848", + archivePrefix = "arXiv", + primaryClass = "hep-ex", + reportNumber = "CERN-PH-EP-2015-160", + SLACcitation = "%%CITATION = ARXIV:1508.00848;%%" +}' diff --git a/analyses/pluginATLAS/ATLAS_pPb_Calib.plot b/analyses/pluginATLAS/ATLAS_pPb_Calib.plot new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_pPb_Calib.plot @@ -0,0 +1,6 @@ +# BEGIN PLOT /MC_Centrality/SumETPb +Title=Sum $E_T^{Pb}$ distribution, p+Pb $\sqrt{s_{NN}}=5.02$ TeV +XLabel=$\sum E_T^{Pb}$ +YLabel=$(1/N_{evt}) \; \mathrm{d}N/\mathrm{d}\sum E_T^{Pb}$ +# END PLOT + diff --git a/analyses/pluginATLAS/ATLAS_pPb_Calib.yoda b/analyses/pluginATLAS/ATLAS_pPb_Calib.yoda new file mode 100644 --- /dev/null +++ b/analyses/pluginATLAS/ATLAS_pPb_Calib.yoda @@ -0,0 +1,105 @@ +# BEGIN YODA_SCATTER2D /REF/ATLAS_pPb_Calib/SumETPb +Path=/REF/ATLAS_pPb_Calib/SumETPb +Type=Scatter2D +# xval xerr- xerr+ yval yerr- yerr+ +1 1.0 1.0 0.026433905291155 6.0e-7 6.0e-7 +3 1.0 1.0 0.0356724593141198 6.0e-7 6.0e-7 +5 1.0 1.0 0.0329659708829365 6.0e-7 6.0e-7 +7 1.0 1.0 0.0292277573876039 6.0e-7 6.0e-7 +9 1.0 1.0 0.0266992277205129 6.0e-7 6.0e-7 +11 1.0 1.0 0.0247287959369707 6.0e-7 6.0e-7 +13 1.0 1.0 0.0231605480909041 6.0e-7 6.0e-7 +15 1.0 1.0 0.0215676779843033 6.0e-7 6.0e-7 +17 1.0 1.0 0.0202422148507814 6.0e-7 6.0e-7 +19 1.0 1.0 0.0191019905081114 6.0e-7 6.0e-7 +21 1.0 1.0 0.0179312930096975 6.0e-7 6.0e-7 +23 1.0 1.0 0.0169304004601292 6.0e-7 6.0e-7 +25 1.0 1.0 0.0158904991267403 6.0e-7 6.0e-7 +27 1.0 1.0 0.014999190244734 6.0e-7 6.0e-7 +29 1.0 1.0 0.0141849733133324 6.0e-7 6.0e-7 +31 1.0 1.0 0.0133146626796707 6.0e-7 6.0e-7 +33 1.0 1.0 0.0123949194577669 6.0e-7 6.0e-7 +35 1.0 1.0 0.0116996800120865 6.0e-7 6.0e-7 +37 1.0 1.0 0.0109320444338458 6.0e-7 6.0e-7 +39 1.0 1.0 0.0100626105356297 6.0e-7 6.0e-7 +41 1.0 1.0 0.00935197743407604 6.0e-7 6.0e-7 +43 1.0 1.0 0.00864243794000489 6.0e-7 6.0e-7 +45 1.0 1.0 0.00799855436037713 6.0e-7 6.0e-7 +47 1.0 1.0 0.00730026559389592 6.0e-7 6.0e-7 +49 1.0 1.0 0.00672015474402399 6.0e-7 6.0e-7 +51 1.0 1.0 0.00614188724849189 6.0e-7 6.0e-7 +53 1.0 1.0 0.00563387143007573 6.0e-7 6.0e-7 +55 1.0 1.0 0.00520079450100681 6.0e-7 6.0e-7 +57 1.0 1.0 0.00470515268017545 6.0e-7 6.0e-7 +59 1.0 1.0 0.0042735188361277 6.0e-7 6.0e-7 +61 1.0 1.0 0.00395028220117227 6.0e-7 6.0e-7 +63 1.0 1.0 0.0035243909516945 6.0e-7 6.0e-7 +65 1.0 1.0 0.00315259491593193 6.0e-7 6.0e-7 +67 1.0 1.0 0.00286390373331309 6.0e-7 6.0e-7 +69 1.0 1.0 0.00257903279345153 6.0e-7 6.0e-7 +71 1.0 1.0 0.00228856121374107 6.0e-7 6.0e-7 +73 1.0 1.0 0.00206315111747963 6.0e-7 6.0e-7 +75 1.0 1.0 0.00185050505624057 6.0e-7 6.0e-7 +77 1.0 1.0 0.00165242698106285 6.0e-7 6.0e-7 +79 1.0 1.0 0.00142552591969422 6.0e-7 6.0e-7 +81 1.0 1.0 0.00129643602017987 6.0e-7 6.0e-7 +83 1.0 1.0 0.00114326285625885 6.0e-7 6.0e-7 +85 1.0 1.0 0.0010073507668534 6.0e-7 6.0e-7 +87 1.0 1.0 0.00086984314473827 6.0e-7 6.0e-7 +89 1.0 1.0 0.000800375037434358 6.0e-7 6.0e-7 +91 1.0 1.0 0.000701419565466503 6.0e-7 6.0e-7 +93 1.0 1.0 0.0006034263019753 6.0e-7 6.0e-7 +95 1.0 1.0 0.000558046549456325 6.0e-7 6.0e-7 +97 1.0 1.0 0.00048017011878087 6.0e-7 6.0e-7 +99 1.0 1.0 0.000407903552816494 6.0e-7 6.0e-7 +101 1.0 1.0 0.000365333907109052 6.0e-7 6.0e-7 +103 1.0 1.0 0.00031832250942536 6.0e-7 6.0e-7 +105 1.0 1.0 0.000273416231149758 6.0e-7 6.0e-7 +107 1.0 1.0 0.000231781021653951 6.0e-7 6.0e-7 +109 1.0 1.0 0.000201140886726608 6.0e-7 6.0e-7 +111 1.0 1.0 0.000187814907942984 6.0e-7 6.0e-7 +113 1.0 1.0 0.000157404340006397 6.0e-7 6.0e-7 +115 1.0 1.0 0.000138696978093341 6.0e-7 6.0e-7 +117 1.0 1.0 0.000121386839011078 6.0e-7 6.0e-7 +119 1.0 1.0 9.94028911278862e-05 6.0e-7 6.0e-7 +121 1.0 1.0 8.11599192653393e-05 6.0e-7 6.0e-7 +123 1.0 1.0 7.48454921075343e-05 6.0e-7 6.0e-7 +125 1.0 1.0 6.36178083202589e-05 6.0e-7 6.0e-7 +127 1.0 1.0 4.93500481892389e-05 6.0e-7 6.0e-7 +129 1.0 1.0 4.30353487437446e-05 6.0e-7 6.0e-7 +131 1.0 1.0 3.46150893566469e-05 6.0e-7 6.0e-7 +133 1.0 1.0 3.53177359385025e-05 6.0e-7 6.0e-7 +135 1.0 1.0 3.34463685169656e-05 6.0e-7 6.0e-7 +137 1.0 1.0 2.17513144352331e-05 6.0e-7 6.0e-7 +139 1.0 1.0 2.2921143608273e-05 6.0e-7 6.0e-7 +141 1.0 1.0 1.63723538208324e-05 6.0e-7 6.0e-7 +143 1.0 1.0 1.70739371347754e-05 6.0e-7 6.0e-7 +145 1.0 1.0 1.33314862326709e-05 6.0e-7 6.0e-7 +147 1.0 1.0 9.35568960183511e-06 6.0e-7 6.0e-7 +149 1.0 1.0 8.65398238805364e-06 6.0e-7 6.0e-7 +151 1.0 1.0 6.78275450054245e-06 6.0e-7 6.0e-7 +153 1.0 1.0 4.21001034057646e-06 6.0e-7 6.0e-7 +155 1.0 1.0 6.0810323235536e-06 6.0e-7 6.0e-7 +157 1.0 1.0 4.21001034057646e-06 6.0e-7 6.0e-7 +159 1.0 1.0 4.91173578953359e-06 6.0e-7 6.0e-7 +161 1.0 1.0 3.97616258743694e-06 6.0e-7 6.0e-7 +163 1.0 1.0 2.57278761203589e-06 6.0e-7 6.0e-7 +165 1.0 1.0 1.63722947523766e-06 6.0e-7 6.0e-7 +167 1.0 1.0 1.40334349974549e-06 6.0e-7 6.0e-7 +169 1.0 1.0 9.35562209472569e-07 6.0e-7 6.0e-7 +171 1.0 1.0 1.63722947523766e-06 6.0e-7 6.0e-7 +173 1.0 1.0 0 6.0e-7 6.0e-7 +175 1.0 1.0 7.01672670918585e-07 6.0e-7 6.0e-7 +177 1.0 1.0 0 6.0e-7 6.0e-7 +179 1.0 1.0 0 6.0e-7 6.0e-7 +181 1.0 1.0 0 6.0e-7 6.0e-7 +183 1.0 1.0 0 6.0e-7 6.0e-7 +185 1.0 1.0 0 6.0e-7 6.0e-7 +187 1.0 1.0 0 6.0e-7 6.0e-7 +189 1.0 1.0 0 6.0e-7 6.0e-7 +191 1.0 1.0 0 6.0e-7 6.0e-7 +193 1.0 1.0 7.01672670918585e-07 6.0e-7 6.0e-7 +195 1.0 1.0 0 6.0e-7 6.0e-7 +197 1.0 1.0 0 6.0e-7 6.0e-7 +199 1.0 1.0 0 6.0e-7 6.0e-7 +# END YODA_SCATTER2D diff --git a/include/Rivet/Makefile.am b/include/Rivet/Makefile.am --- a/include/Rivet/Makefile.am +++ b/include/Rivet/Makefile.am @@ -1,181 +1,183 @@ ## Internal headers - not to be installed nobase_dist_noinst_HEADERS = ## Public headers - to be installed nobase_pkginclude_HEADERS = ## Rivet interface nobase_pkginclude_HEADERS += \ Rivet.hh \ Run.hh \ Event.hh \ ParticleBase.hh \ Particle.fhh Particle.hh \ Jet.fhh Jet.hh \ Projection.fhh Projection.hh \ ProjectionApplier.hh \ ProjectionHandler.hh \ Analysis.hh \ AnalysisHandler.hh \ AnalysisInfo.hh \ AnalysisBuilder.hh \ AnalysisLoader.hh ## Build config stuff nobase_pkginclude_HEADERS += \ Config/RivetCommon.hh \ Config/RivetConfig.hh \ Config/BuildOptions.hh ## Projections nobase_pkginclude_HEADERS += \ Projections/AliceCommon.hh \ Projections/AxesDefinition.hh \ Projections/Beam.hh \ Projections/BeamThrust.hh \ Projections/CentralEtHCM.hh \ Projections/CentralityProjection.hh \ Projections/ChargedFinalState.hh \ Projections/ChargedLeptons.hh \ Projections/ConstLossyFinalState.hh \ Projections/DirectFinalState.hh \ Projections/DISFinalState.hh \ Projections/DISKinematics.hh \ Projections/DISLepton.hh \ Projections/DressedLeptons.hh \ Projections/FastJets.hh \ Projections/FinalPartons.hh \ Projections/FinalState.hh \ Projections/FoxWolframMoments.hh \ Projections/FParameter.hh \ Projections/GeneratedPercentileProjection.hh \ Projections/HadronicFinalState.hh \ Projections/HeavyHadrons.hh \ Projections/Hemispheres.hh \ Projections/IdentifiedFinalState.hh \ Projections/ImpactParameterProjection.hh \ Projections/IndirectFinalState.hh \ Projections/InitialQuarks.hh \ Projections/InvMassFinalState.hh \ Projections/JetAlg.hh \ Projections/JetShape.hh \ Projections/LeadingParticlesFinalState.hh \ Projections/LossyFinalState.hh \ Projections/MergedFinalState.hh \ Projections/MissingMomentum.hh \ + Projections/MixedFinalState.hh \ Projections/NeutralFinalState.hh \ Projections/NonHadronicFinalState.hh \ Projections/NonPromptFinalState.hh \ Projections/ParisiTensor.hh \ Projections/ParticleFinder.hh \ Projections/PartonicTops.hh \ Projections/PercentileProjection.hh \ Projections/PrimaryHadrons.hh \ Projections/PrimaryParticles.hh \ Projections/PromptFinalState.hh \ Projections/SingleValueProjection.hh \ Projections/SmearedParticles.hh \ Projections/SmearedJets.hh \ Projections/SmearedMET.hh \ Projections/Sphericity.hh \ Projections/Spherocity.hh \ Projections/TauFinder.hh \ Projections/Thrust.hh \ Projections/TriggerCDFRun0Run1.hh \ Projections/TriggerCDFRun2.hh \ Projections/TriggerProjection.hh \ Projections/TriggerUA5.hh \ Projections/UnstableFinalState.hh \ Projections/UserCentEstimate.hh \ Projections/VetoedFinalState.hh \ Projections/VisibleFinalState.hh \ Projections/WFinder.hh \ Projections/ZFinder.hh ## Meta-projection convenience headers nobase_pkginclude_HEADERS += \ Projections/FinalStates.hh \ Projections/Smearing.hh ## Analysis base class headers # TODO: Move to Rivet/AnalysisTools header dir? nobase_pkginclude_HEADERS += \ Analyses/MC_ParticleAnalysis.hh \ Analyses/MC_JetAnalysis.hh \ Analyses/MC_JetSplittings.hh ## Tools nobase_pkginclude_HEADERS += \ Tools/AliceCommon.hh \ + Tools/AtlasCommon.hh \ Tools/BeamConstraint.hh \ Tools/BinnedHistogram.hh \ Tools/CentralityBinner.hh \ Tools/Cmp.fhh \ Tools/Cmp.hh \ Tools/Cutflow.hh \ Tools/Cuts.fhh \ Tools/Cuts.hh \ Tools/Exceptions.hh \ Tools/JetUtils.hh \ Tools/Logging.hh \ Tools/Random.hh \ Tools/ParticleBaseUtils.hh \ Tools/ParticleIdUtils.hh \ Tools/ParticleUtils.hh \ Tools/ParticleName.hh \ Tools/PrettyPrint.hh \ Tools/RivetPaths.hh \ Tools/RivetSTL.hh \ Tools/RivetFastJet.hh \ Tools/RivetHepMC.hh \ Tools/RivetYODA.hh \ Tools/RivetMT2.hh \ Tools/SmearingFunctions.hh \ Tools/MomentumSmearingFunctions.hh \ Tools/ParticleSmearingFunctions.hh \ Tools/JetSmearingFunctions.hh \ Tools/TypeTraits.hh \ Tools/Utils.hh \ Tools/Nsubjettiness/AxesDefinition.hh \ Tools/Nsubjettiness/ExtraRecombiners.hh \ Tools/Nsubjettiness/MeasureDefinition.hh \ Tools/Nsubjettiness/Njettiness.hh \ Tools/Nsubjettiness/NjettinessPlugin.hh \ Tools/Nsubjettiness/Nsubjettiness.hh \ Tools/Nsubjettiness/TauComponents.hh \ Tools/Nsubjettiness/XConePlugin.hh nobase_dist_noinst_HEADERS += \ Tools/osdir.hh ## Maths nobase_pkginclude_HEADERS += \ Math/Matrices.hh \ Math/Vector3.hh \ Math/VectorN.hh \ Math/MatrixN.hh \ Math/MatrixDiag.hh \ Math/MathHeader.hh \ Math/Vectors.hh \ Math/LorentzTrans.hh \ Math/Matrix3.hh \ Math/MathUtils.hh \ Math/Vector4.hh \ Math/Math.hh \ Math/Units.hh \ Math/Constants.hh \ Math/eigen/util.h \ Math/eigen/regressioninternal.h \ Math/eigen/regression.h \ Math/eigen/vector.h \ Math/eigen/ludecompositionbase.h \ Math/eigen/ludecomposition.h \ Math/eigen/linearsolver.h \ Math/eigen/linearsolverbase.h \ Math/eigen/matrix.h \ Math/eigen/vectorbase.h \ Math/eigen/projective.h \ Math/eigen/matrixbase.h diff --git a/include/Rivet/Projections/MixedFinalState.hh b/include/Rivet/Projections/MixedFinalState.hh new file mode 100644 --- /dev/null +++ b/include/Rivet/Projections/MixedFinalState.hh @@ -0,0 +1,97 @@ +// -*- C++ -*- +#ifndef RIVET_MixedFinalState_HH +#define RIVET_MixedFinalState_HH + +#include "Rivet/Projection.hh" +#include "Rivet/Projections/ParticleFinder.hh" +#include +#include + + +namespace Rivet { + + // @brief Projects out an event mixed of several events, given + // a mixing observable (eg. number of final state particles), + // defining what should qualify as a mixable event. + // Binning in the mixing observable is defined in the constructor, + // as is the number of events one wants to mix with. + // The protected method calculateMixingObs() can be overloaded + // in derived classes, to define other mixing observables, eg. + // centrality or something even more elaborate. + // + // !!!DISCLAIMER!!! The projection makes no attempt at correct handling + // of event weights - ie. what one should use as event weight for several + // mixed events. Proceed with caution if you do not use an MC with + // unit weights. + // + // @author Christian Bierlich + + typedef map > MixMap; + class MixedFinalState : public Projection { + public: + // Constructor + MixedFinalState(const ParticleFinder& fsp, const ParticleFinder& mix, size_t nMixIn, + double oMin, double oMax, double deltao ) : nMix(nMixIn){ + setName("MixedFinalState"); + addProjection(fsp,"FS"); + addProjection(mix,"MIX"); + + // Set up the map for mixing events + for(double o = oMin; o < oMax; o+=deltao ) + mixEvents[o] = deque(); + + } + // Clone on the heap + DEFAULT_RIVET_PROJ_CLONE(MixedFinalState); + + + // Return a vector of mixing events. + vector getMixingEvents() const { + MixMap::const_iterator mixItr = mixEvents.lower_bound(mObs); + if(mixItr == mixEvents.end() || mixItr->second.size() < nMix + 1) + return vector(); + return vector(mixItr->second.begin(), mixItr->second.end() - 1); + } + + protected: + + // Calulate mixing observable. + // Can be overloaded to define more elaborate observables. + virtual void calculateMixingObs(const Particles& parts){ + mObs = parts.size(); + } + + /// Perform the projection on the Event + void project(const Event& e){ + const Particles parts = applyProjection(e, "FS").particles(); + + calculateMixingObs(parts); + + MixMap::iterator mixItr = mixEvents.lower_bound(mObs); + if(mixItr == mixEvents.end()){ + // We are out of bounds. + MSG_DEBUG("Mixing observable out of bounds."); + return; + } + const Particles mix = applyProjection(e, "MIX").particles(); + + mixItr->second.push_back(mix); + if(mixItr->second.size() > nMix + 1) + mixItr->second.pop_front(); + } + + /// Compare with other projections + int compare(const Projection& p) const { + return mkNamedPCmp(p,"FS"); + } + + private: + // The number of event to mix with + size_t nMix; + // The mixing observable of the current event + double mObs; + // The event map; + MixMap mixEvents; + }; +} +#endif diff --git a/include/Rivet/Tools/AtlasCommon.hh b/include/Rivet/Tools/AtlasCommon.hh new file mode 100644 --- /dev/null +++ b/include/Rivet/Tools/AtlasCommon.hh @@ -0,0 +1,85 @@ +// -*- C++ -*- +#ifndef RIVET_ATLAS_COMMON_HH +#define RIVET_ATLAS_COMMON_HH + +#include "Rivet/Projections/FinalState.hh" +#include "Rivet/Projections/ChargedFinalState.hh" +#include "Rivet/Projections/SingleValueProjection.hh" +#include "Rivet/Projections/TriggerProjection.hh" + +namespace Rivet { +/// Common projections for ATLAS trigger conditions and centrality. + + namespace ATLAS { +/// Centrality projection for pPb collisions (one sided) +class SumET_PB_Centrality: public SingleValueProjection { + +public: + + /// Constructor. + SumET_PB_Centrality() { + declare(FinalState(Cuts::eta < -3.2 && Cuts::eta > -4.9 && Cuts::pT > 0.1*GeV), + "SumET_PB_Centrality"); + } + + /// Clone on the heap. + DEFAULT_RIVET_PROJ_CLONE(SumET_PB_Centrality); + +protected: + + /// Perform the projection on the Event + void project(const Event& e) { + clear(); + const FinalState & fsfwd = + apply(e, "SumET_PB_Centrality"); + double estimate = 0.0; + for ( const Particle & p : fsfwd.particles() ) { + estimate += p.Et(); + } + set(estimate); + } + + /// Compare projections + int compare(const Projection& p) const { + return mkNamedPCmp(p, "SumET_PB_Centrality"); + } + +}; + +/// ATLAS min bias trigger conditions. +class MinBiasTrigger: public TriggerProjection { + +public: + + /// Constructor. + MinBiasTrigger() { + declare(ChargedFinalState(Cuts::eta > 2.09 && Cuts::eta < 3.84 && + Cuts::pT > 0.1*GeV), "MBB"); + declare(ChargedFinalState(Cuts::eta < -2.09 && Cuts::eta > -3.84 && + Cuts::pT > 0.1*GeV), "MBF"); + } + + /// Clone on the heap. + DEFAULT_RIVET_PROJ_CLONE(MinBiasTrigger); + +protected: + + /// Perform the projection on the Event + void project(const Event& event) { + pass(); + if ( applyProjection(event,"MBF").particles().empty() || + applyProjection(event,"MBB").particles().empty() ) + fail(); + } + + /// Compare projections + int compare(const Projection& p) const { + return mkNamedPCmp(p, "MBF") || mkNamedPCmp(p, "MBB"); + } + +}; + +} +} + +#endif diff --git a/src/Core/Analysis.cc b/src/Core/Analysis.cc --- a/src/Core/Analysis.cc +++ b/src/Core/Analysis.cc @@ -1,1008 +1,1004 @@ // -*- C++ -*- #include "Rivet/Config/RivetCommon.hh" #include "Rivet/Analysis.hh" #include "Rivet/AnalysisHandler.hh" #include "Rivet/AnalysisInfo.hh" #include "Rivet/Tools/BeamConstraint.hh" #include "Rivet/Projections/ImpactParameterProjection.hh" #include "Rivet/Projections/GeneratedPercentileProjection.hh" #include "Rivet/Projections/UserCentEstimate.hh" #include "Rivet/Projections/CentralityProjection.hh" namespace Rivet { Analysis::Analysis(const string& name) : _crossSection(-1.0), _gotCrossSection(false), _analysishandler(NULL) { ProjectionApplier::_allowProjReg = false; _defaultname = name; unique_ptr ai = AnalysisInfo::make(name); assert(ai); _info = move(ai); assert(_info); } double Analysis::sqrtS() const { return handler().sqrtS(); } const ParticlePair& Analysis::beams() const { return handler().beams(); } const PdgIdPair Analysis::beamIds() const { return handler().beamIds(); } const string Analysis::histoDir() const { /// @todo Cache in a member variable string _histoDir; if (_histoDir.empty()) { _histoDir = "/" + name(); if (handler().runName().length() > 0) { _histoDir = "/" + handler().runName() + _histoDir; } replace_all(_histoDir, "//", "/"); //< iterates until none } return _histoDir; } const string Analysis::histoPath(const string& hname) const { const string path = histoDir() + "/" + hname; return path; } const string Analysis::histoPath(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId) const { return histoDir() + "/" + mkAxisCode(datasetId, xAxisId, yAxisId); } const string Analysis::mkAxisCode(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId) const { stringstream axisCode; axisCode << "d"; if (datasetId < 10) axisCode << 0; axisCode << datasetId; axisCode << "-x"; if (xAxisId < 10) axisCode << 0; axisCode << xAxisId; axisCode << "-y"; if (yAxisId < 10) axisCode << 0; axisCode << yAxisId; return axisCode.str(); } Log& Analysis::getLog() const { string logname = "Rivet.Analysis." + name(); return Log::getLog(logname); } /////////////////////////////////////////// size_t Analysis::numEvents() const { return handler().numEvents(); } double Analysis::sumW() const { return handler().sumW(); } double Analysis::sumW2() const { return handler().sumW2(); } /////////////////////////////////////////// bool Analysis::isCompatible(const ParticlePair& beams) const { return isCompatible(beams.first.pid(), beams.second.pid(), beams.first.energy(), beams.second.energy()); } bool Analysis::isCompatible(PdgId beam1, PdgId beam2, double e1, double e2) const { PdgIdPair beams(beam1, beam2); pair energies(e1, e2); return isCompatible(beams, energies); } bool Analysis::isCompatible(const PdgIdPair& beams, const pair& energies) const { // First check the beam IDs bool beamIdsOk = false; for (const PdgIdPair& bp : requiredBeams()) { if (compatible(beams, bp)) { beamIdsOk = true; break; } } if (!beamIdsOk) return false; - // Next check that the energies are compatible (within 1% or 1 GeV, whichever is larger, for a bit of UI forgiveness) - + /// @todo Use some sort of standard ordering to improve comparisons, esp. when the two beams are different particles bool beamEnergiesOk = requiredEnergies().size() > 0 ? false : true; typedef pair DoublePair; for (const DoublePair& ep : requiredEnergies()) { if ((fuzzyEquals(ep.first, energies.first, 0.01) && fuzzyEquals(ep.second, energies.second, 0.01)) || (fuzzyEquals(ep.first, energies.second, 0.01) && fuzzyEquals(ep.second, energies.first, 0.01)) || (abs(ep.first - energies.first) < 1*GeV && abs(ep.second - energies.second) < 1*GeV) || (abs(ep.first - energies.second) < 1*GeV && abs(ep.second - energies.first) < 1*GeV)) { beamEnergiesOk = true; break; } } return beamEnergiesOk; /// @todo Need to also check internal consistency of the analysis' /// beam requirements with those of the projections it uses. } /////////////////////////////////////////// Analysis& Analysis::setCrossSection(double xs) { _crossSection = xs; _gotCrossSection = true; return *this; } double Analysis::crossSection() const { if (!_gotCrossSection || std::isnan(_crossSection)) { string errMsg = "You did not set the cross section for the analysis " + name(); throw Error(errMsg); } return _crossSection; } double Analysis::crossSectionPerEvent() const { const double sumW = sumOfWeights(); assert(sumW != 0.0); return _crossSection / sumW; } //////////////////////////////////////////////////////////// // Histogramming void Analysis::_cacheRefData() const { if (_refdata.empty()) { MSG_TRACE("Getting refdata cache for paper " << name()); _refdata = getRefData(getRefDataName()); } } vector Analysis::getAllData(bool includeorphans) const{ return handler().getData(includeorphans); } CounterPtr Analysis::bookCounter(const string& cname, const string& title) { // const string& xtitle, // const string& ytitle) { const string path = histoPath(cname); CounterPtr ctr = make_shared(path, title); addAnalysisObject(ctr); MSG_TRACE("Made counter " << cname << " for " << name()); // hist->setAnnotation("XLabel", xtitle); // hist->setAnnotation("YLabel", ytitle); return ctr; } CounterPtr Analysis::bookCounter(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, const string& title) { // const string& xtitle, // const string& ytitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookCounter(axisCode, title); } Histo1DPtr Analysis::bookHisto1D(const string& hname, size_t nbins, double lower, double upper, const string& title, const string& xtitle, const string& ytitle) { Histo1DPtr hist; try { // try to bind to pre-existing // AnalysisObjectPtr ao = getAnalysisObject(path); // hist = dynamic_pointer_cast(ao); hist = getHisto1D(hname); /// @todo Test that cast worked /// @todo Also test that binning is as expected? MSG_TRACE("Bound pre-existing histogram " << hname << " for " << name()); } catch (...) { // binding failed; make it from scratch hist = make_shared(nbins, lower, upper, histoPath(hname), title); addAnalysisObject(hist); MSG_TRACE("Made histogram " << hname << " for " << name()); } hist->setTitle(title); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); return hist; } Histo1DPtr Analysis::bookHisto1D(const string& hname, const vector& binedges, const string& title, const string& xtitle, const string& ytitle) { Histo1DPtr hist; try { // try to bind to pre-existing // AnalysisObjectPtr ao = getAnalysisObject(path); // hist = dynamic_pointer_cast(ao); hist = getHisto1D(hname); /// @todo Test that cast worked /// @todo Also test that binning is as expected? MSG_TRACE("Bound pre-existing histogram " << hname << " for " << name()); } catch (...) { // binding failed; make it from scratch hist = make_shared(binedges, histoPath(hname), title); addAnalysisObject(hist); MSG_TRACE("Made histogram " << hname << " for " << name()); } hist->setTitle(title); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); return hist; } Histo1DPtr Analysis::bookHisto1D(const string& hname, const initializer_list& binedges, const string& title, const string& xtitle, const string& ytitle) { return bookHisto1D(hname, vector{binedges}, title, xtitle, ytitle); } Histo1DPtr Analysis::bookHisto1D(const string& hname, const Scatter2D& refscatter, const string& title, const string& xtitle, const string& ytitle) { Histo1DPtr hist; try { // try to bind to pre-existing // AnalysisObjectPtr ao = getAnalysisObject(path); // hist = dynamic_pointer_cast(ao); hist = getHisto1D(hname); /// @todo Test that cast worked /// @todo Also test that binning is as expected? MSG_TRACE("Bound pre-existing histogram " << hname << " for " << name()); } catch (...) { // binding failed; make it from scratch hist = make_shared(refscatter, histoPath(hname)); if (hist->hasAnnotation("IsRef")) hist->rmAnnotation("IsRef"); addAnalysisObject(hist); MSG_TRACE("Made histogram " << hname << " for " << name()); } hist->setTitle(title); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); return hist; } Histo1DPtr Analysis::bookHisto1D(const string& hname, const string& title, const string& xtitle, const string& ytitle) { const Scatter2D& refdata = refData(hname); return bookHisto1D(hname, refdata, title, xtitle, ytitle); } Histo1DPtr Analysis::bookHisto1D(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, const string& title, const string& xtitle, const string& ytitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookHisto1D(axisCode, title, xtitle, ytitle); } /// @todo Add booking methods which take a path, titles and *a reference Scatter from which to book* ///////////////// Histo2DPtr Analysis::bookHisto2D(const string& hname, size_t nxbins, double xlower, double xupper, size_t nybins, double ylower, double yupper, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Histo2DPtr hist = make_shared(nxbins, xlower, xupper, nybins, ylower, yupper, path, title); addAnalysisObject(hist); MSG_TRACE("Made 2D histogram " << hname << " for " << name()); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); hist->setAnnotation("ZLabel", ztitle); return hist; } Histo2DPtr Analysis::bookHisto2D(const string& hname, const vector& xbinedges, const vector& ybinedges, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Histo2DPtr hist = make_shared(xbinedges, ybinedges, path, title); addAnalysisObject(hist); MSG_TRACE("Made 2D histogram " << hname << " for " << name()); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); hist->setAnnotation("ZLabel", ztitle); return hist; } Histo2DPtr Analysis::bookHisto2D(const string& hname, const initializer_list& xbinedges, const initializer_list& ybinedges, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { return bookHisto2D(hname, vector{xbinedges}, vector{ybinedges}, title, xtitle, ytitle, ztitle); } Histo2DPtr Analysis::bookHisto2D(const string& hname, const Scatter3D& refscatter, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Histo2DPtr hist( new Histo2D(refscatter, path) ); addAnalysisObject(hist); MSG_TRACE("Made 2D histogram " << hname << " for " << name()); if (hist->hasAnnotation("IsRef")) hist->rmAnnotation("IsRef"); hist->setTitle(title); hist->setAnnotation("XLabel", xtitle); hist->setAnnotation("YLabel", ytitle); hist->setAnnotation("ZLabel", ztitle); return hist; } Histo2DPtr Analysis::bookHisto2D(const string& hname, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const Scatter3D& refdata = refData(hname); return bookHisto2D(hname, refdata, title, xtitle, ytitle, ztitle); } Histo2DPtr Analysis::bookHisto2D(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookHisto2D(axisCode, title, xtitle, ytitle, ztitle); } ///////////////// Profile1DPtr Analysis::bookProfile1D(const string& hname, size_t nbins, double lower, double upper, const string& title, const string& xtitle, const string& ytitle) { const string path = histoPath(hname); Profile1DPtr prof = make_shared(nbins, lower, upper, path, title); addAnalysisObject(prof); MSG_TRACE("Made profile histogram " << hname << " for " << name()); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); return prof; } Profile1DPtr Analysis::bookProfile1D(const string& hname, const vector& binedges, const string& title, const string& xtitle, const string& ytitle) { const string path = histoPath(hname); Profile1DPtr prof = make_shared(binedges, path, title); addAnalysisObject(prof); MSG_TRACE("Made profile histogram " << hname << " for " << name()); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); return prof; } Profile1DPtr Analysis::bookProfile1D(const string& hname, const initializer_list& binedges, const string& title, const string& xtitle, const string& ytitle) { return bookProfile1D(hname, vector{binedges}, title, xtitle, ytitle); } Profile1DPtr Analysis::bookProfile1D(const string& hname, const Scatter2D& refscatter, const string& title, const string& xtitle, const string& ytitle) { const string path = histoPath(hname); Profile1DPtr prof = make_shared(refscatter, path); addAnalysisObject(prof); MSG_TRACE("Made profile histogram " << hname << " for " << name()); if (prof->hasAnnotation("IsRef")) prof->rmAnnotation("IsRef"); prof->setTitle(title); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); return prof; } Profile1DPtr Analysis::bookProfile1D(const string& hname, const string& title, const string& xtitle, const string& ytitle) { const Scatter2D& refdata = refData(hname); return bookProfile1D(hname, refdata, title, xtitle, ytitle); } Profile1DPtr Analysis::bookProfile1D(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, const string& title, const string& xtitle, const string& ytitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookProfile1D(axisCode, title, xtitle, ytitle); } /////////////////// Profile2DPtr Analysis::bookProfile2D(const string& hname, size_t nxbins, double xlower, double xupper, size_t nybins, double ylower, double yupper, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Profile2DPtr prof = make_shared(nxbins, xlower, xupper, nybins, ylower, yupper, path, title); addAnalysisObject(prof); MSG_TRACE("Made 2D profile histogram " << hname << " for " << name()); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); prof->setAnnotation("ZLabel", ztitle); return prof; } Profile2DPtr Analysis::bookProfile2D(const string& hname, const vector& xbinedges, const vector& ybinedges, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Profile2DPtr prof = make_shared(xbinedges, ybinedges, path, title); addAnalysisObject(prof); MSG_TRACE("Made 2D profile histogram " << hname << " for " << name()); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); prof->setAnnotation("ZLabel", ztitle); return prof; } Profile2DPtr Analysis::bookProfile2D(const string& hname, const initializer_list& xbinedges, const initializer_list& ybinedges, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { return bookProfile2D(hname, vector{xbinedges}, vector{ybinedges}, title, xtitle, ytitle, ztitle); } Profile2DPtr Analysis::bookProfile2D(const string& hname, const Scatter3D& refscatter, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string path = histoPath(hname); Profile2DPtr prof( new Profile2D(refscatter, path) ); addAnalysisObject(prof); MSG_TRACE("Made 2D profile histogram " << hname << " for " << name()); if (prof->hasAnnotation("IsRef")) prof->rmAnnotation("IsRef"); prof->setTitle(title); prof->setAnnotation("XLabel", xtitle); prof->setAnnotation("YLabel", ytitle); prof->setAnnotation("ZLabel", ztitle); return prof; } Profile2DPtr Analysis::bookProfile2D(const string& hname, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const Scatter3D& refdata = refData(hname); return bookProfile2D(hname, refdata, title, xtitle, ytitle, ztitle); } Profile2DPtr Analysis::bookProfile2D(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, const string& title, const string& xtitle, const string& ytitle, const string& ztitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookProfile2D(axisCode, title, xtitle, ytitle, ztitle); } ///////////////// Scatter2DPtr Analysis::bookScatter2D(unsigned int datasetId, unsigned int xAxisId, unsigned int yAxisId, bool copy_pts, const string& title, const string& xtitle, const string& ytitle) { const string axisCode = mkAxisCode(datasetId, xAxisId, yAxisId); return bookScatter2D(axisCode, copy_pts, title, xtitle, ytitle); } Scatter2DPtr Analysis::bookScatter2D(const string& hname, bool copy_pts, const string& title, const string& xtitle, const string& ytitle) { Scatter2DPtr s; const string path = histoPath(hname); if (copy_pts) { const Scatter2D& refdata = refData(hname); s = make_shared(refdata, path); for (Point2D& p : s->points()) p.setY(0, 0); } else { s = make_shared(path); } addAnalysisObject(s); MSG_TRACE("Made scatter " << hname << " for " << name()); if (s->hasAnnotation("IsRef")) s->rmAnnotation("IsRef"); s->setTitle(title); s->setAnnotation("XLabel", xtitle); s->setAnnotation("YLabel", ytitle); return s; } Scatter2DPtr Analysis::bookScatter2D(const string& hname, size_t npts, double lower, double upper, const string& title, const string& xtitle, const string& ytitle) { Scatter2DPtr s; const string path = histoPath(hname); try { // try to bind to pre-existing s = getAnalysisObject(hname); /// @todo Also test that binning is as expected? MSG_TRACE("Bound pre-existing scatter " << path << " for " << name()); } catch (...) { // binding failed; make it from scratch s = make_shared(path); const double binwidth = (upper-lower)/npts; for (size_t pt = 0; pt < npts; ++pt) { const double bincentre = lower + (pt + 0.5) * binwidth; s->addPoint(bincentre, 0, binwidth/2.0, 0); } addAnalysisObject(s); MSG_TRACE("Made scatter " << hname << " for " << name()); } s->setTitle(title); s->setAnnotation("XLabel", xtitle); s->setAnnotation("YLabel", ytitle); return s; } Scatter2DPtr Analysis::bookScatter2D(const string& hname, const vector& binedges, const string& title, const string& xtitle, const string& ytitle) { const string path = histoPath(hname); Scatter2DPtr s = make_shared(path); for (size_t pt = 0; pt < binedges.size()-1; ++pt) { const double bincentre = (binedges[pt] + binedges[pt+1]) / 2.0; const double binwidth = binedges[pt+1] - binedges[pt]; s->addPoint(bincentre, 0, binwidth/2.0, 0); } addAnalysisObject(s); MSG_TRACE("Made scatter " << hname << " for " << name()); s->setTitle(title); s->setAnnotation("XLabel", xtitle); s->setAnnotation("YLabel", ytitle); return s; } ///////////////////// void Analysis::divide(CounterPtr c1, CounterPtr c2, Scatter1DPtr s) const { const string path = s->path(); *s = *c1 / *c2; s->setPath(path); } void Analysis::divide(const Counter& c1, const Counter& c2, Scatter1DPtr s) const { const string path = s->path(); *s = c1 / c2; s->setPath(path); } void Analysis::divide(Histo1DPtr h1, Histo1DPtr h2, Scatter2DPtr s) const { const string path = s->path(); *s = *h1 / *h2; s->setPath(path); } void Analysis::divide(const Histo1D& h1, const Histo1D& h2, Scatter2DPtr s) const { const string path = s->path(); *s = h1 / h2; s->setPath(path); } void Analysis::divide(Profile1DPtr p1, Profile1DPtr p2, Scatter2DPtr s) const { const string path = s->path(); *s = *p1 / *p2; s->setPath(path); } void Analysis::divide(const Profile1D& p1, const Profile1D& p2, Scatter2DPtr s) const { const string path = s->path(); *s = p1 / p2; s->setPath(path); } void Analysis::divide(Histo2DPtr h1, Histo2DPtr h2, Scatter3DPtr s) const { const string path = s->path(); *s = *h1 / *h2; s->setPath(path); } void Analysis::divide(const Histo2D& h1, const Histo2D& h2, Scatter3DPtr s) const { const string path = s->path(); *s = h1 / h2; s->setPath(path); } void Analysis::divide(Profile2DPtr p1, Profile2DPtr p2, Scatter3DPtr s) const { const string path = s->path(); *s = *p1 / *p2; s->setPath(path); } void Analysis::divide(const Profile2D& p1, const Profile2D& p2, Scatter3DPtr s) const { const string path = s->path(); *s = p1 / p2; s->setPath(path); } /// @todo Counter and Histo2D efficiencies and asymms void Analysis::efficiency(Histo1DPtr h1, Histo1DPtr h2, Scatter2DPtr s) const { const string path = s->path(); *s = YODA::efficiency(*h1, *h2); s->setPath(path); } void Analysis::efficiency(const Histo1D& h1, const Histo1D& h2, Scatter2DPtr s) const { const string path = s->path(); *s = YODA::efficiency(h1, h2); s->setPath(path); } void Analysis::asymm(Histo1DPtr h1, Histo1DPtr h2, Scatter2DPtr s) const { const string path = s->path(); *s = YODA::asymm(*h1, *h2); s->setPath(path); } void Analysis::asymm(const Histo1D& h1, const Histo1D& h2, Scatter2DPtr s) const { const string path = s->path(); *s = YODA::asymm(h1, h2); s->setPath(path); } void Analysis::scale(CounterPtr cnt, double factor) { if (!cnt) { MSG_WARNING("Failed to scale counter=NULL in analysis " << name() << " (scale=" << factor << ")"); return; } if (std::isnan(factor) || std::isinf(factor)) { MSG_WARNING("Failed to scale counter=" << cnt->path() << " in analysis: " << name() << " (invalid scale factor = " << factor << ")"); factor = 0; } MSG_TRACE("Scaling counter " << cnt->path() << " by factor " << factor); try { cnt->scaleW(factor); } catch (YODA::Exception& we) { MSG_WARNING("Could not scale counter " << cnt->path()); return; } } void Analysis::normalize(Histo1DPtr histo, double norm, bool includeoverflows) { if (!histo) { MSG_WARNING("Failed to normalize histo=NULL in analysis " << name() << " (norm=" << norm << ")"); return; } MSG_TRACE("Normalizing histo " << histo->path() << " to " << norm); try { const double hint = histo->integral(includeoverflows); if (hint == 0) MSG_WARNING("Skipping histo with null area " << histo->path()); else histo->normalize(norm, includeoverflows); } catch (YODA::Exception& we) { MSG_WARNING("Could not normalize histo " << histo->path()); return; } } void Analysis::scale(Histo1DPtr histo, double factor) { if (!histo) { MSG_WARNING("Failed to scale histo=NULL in analysis " << name() << " (scale=" << factor << ")"); return; } if (std::isnan(factor) || std::isinf(factor)) { MSG_WARNING("Failed to scale histo=" << histo->path() << " in analysis: " << name() << " (invalid scale factor = " << factor << ")"); factor = 0; } MSG_TRACE("Scaling histo " << histo->path() << " by factor " << factor); try { histo->scaleW(factor); } catch (YODA::Exception& we) { MSG_WARNING("Could not scale histo " << histo->path()); return; } } void Analysis::normalize(Histo2DPtr histo, double norm, bool includeoverflows) { if (!histo) { MSG_ERROR("Failed to normalize histo=NULL in analysis " << name() << " (norm=" << norm << ")"); return; } MSG_TRACE("Normalizing histo " << histo->path() << " to " << norm); try { const double hint = histo->integral(includeoverflows); if (hint == 0) MSG_WARNING("Skipping histo with null area " << histo->path()); else histo->normalize(norm, includeoverflows); } catch (YODA::Exception& we) { MSG_WARNING("Could not normalize histo " << histo->path()); return; } } void Analysis::scale(Histo2DPtr histo, double factor) { if (!histo) { MSG_ERROR("Failed to scale histo=NULL in analysis " << name() << " (scale=" << factor << ")"); return; } if (std::isnan(factor) || std::isinf(factor)) { MSG_ERROR("Failed to scale histo=" << histo->path() << " in analysis: " << name() << " (invalid scale factor = " << factor << ")"); factor = 0; } MSG_TRACE("Scaling histo " << histo->path() << " by factor " << factor); try { histo->scaleW(factor); } catch (YODA::Exception& we) { MSG_WARNING("Could not scale histo " << histo->path()); return; } } void Analysis::integrate(Histo1DPtr h, Scatter2DPtr s) const { // preserve the path info const string path = s->path(); *s = toIntegralHisto(*h); s->setPath(path); } void Analysis::integrate(const Histo1D& h, Scatter2DPtr s) const { // preserve the path info const string path = s->path(); *s = toIntegralHisto(h); s->setPath(path); } /// @todo 2D versions of integrate... defined how, exactly?!? ////////////////////////////////// void Analysis::addAnalysisObject(AnalysisObjectPtr ao) { _analysisobjects.push_back(ao); } void Analysis::removeAnalysisObject(const string& path) { for (vector::iterator it = _analysisobjects.begin(); it != _analysisobjects.end(); ++it) { if ((*it)->path() == path) { _analysisobjects.erase(it); break; } } } void Analysis::removeAnalysisObject(AnalysisObjectPtr ao) { for (vector::iterator it = _analysisobjects.begin(); it != _analysisobjects.end(); ++it) { if (*it == ao) { _analysisobjects.erase(it); break; } } } const CentralityProjection & Analysis::declareCentrality(const SingleValueProjection &proj, string calAnaName, string calHistName, const string projName, bool increasing) { CentralityProjection cproj; // Select the centrality variable from option. Use REF as default. // Other selections are "GEN", "IMP" and "USR" (USR only in HEPMC 3). string sel = getOption("cent","REF"); - cout << "OPTION: " << sel << endl; set done; if ( sel == "REF" ) { Scatter2DPtr refscat; auto refmap = getRefData(calAnaName); if ( refmap.find(calHistName) != refmap.end() ) refscat = dynamic_pointer_cast(refmap.find(calHistName)->second); if ( !refscat ) { MSG_WARNING("No reference calibration histogram for " << "CentralityProjection " << projName << " found " << "(requested histogram " << calHistName << " in " << calAnaName << ")"); } else { MSG_INFO("Found calibration histogram " << sel << " " << refscat->path()); cproj.add(PercentileProjection(proj, refscat, increasing), sel); } } else if ( sel == "GEN" ) { Histo1DPtr genhist; string histpath = "/" + calAnaName + "/" + calHistName; for ( AnalysisObjectPtr ao : handler().getData(true) ) { - cout << "PATH " << ao->path() << " " << histpath << endl; if ( ao->path() == histpath ) genhist = dynamic_pointer_cast(ao); } - cout << "GG " << genhist << endl; if ( !genhist || genhist->numEntries() <= 1 ) { MSG_WARNING("No generated calibration histogram for " << "CentralityProjection " << projName << " found " << "(requested histogram " << calHistName << " in " << calAnaName << ")"); } else { MSG_INFO("Found calibration histogram " << sel << " " << genhist->path()); cproj.add(PercentileProjection(proj, genhist, increasing), sel); } } else if ( sel == "IMP" ) { Histo1DPtr imphist = getAnalysisObject(calAnaName, calHistName + "_IMP"); if ( !imphist || imphist->numEntries() <= 1 ) { MSG_WARNING("No impact parameter calibration histogram for " << "CentralityProjection " << projName << " found " << "(requested histogram " << calHistName << "_IMP in " << calAnaName << ")"); } else { MSG_INFO("Found calibration histogram " << sel << " " << imphist->path()); cproj.add(PercentileProjection(ImpactParameterProjection(), imphist, true), sel); } } else if ( sel == "USR" ) { #if HEPMC_VERSION_CODE >= 3000000 Histo1DPtr usrhist = getAnalysisObject(calAnaName, calHistName + "_USR"); if ( !usrhist || usrhist->numEntries() <= 1 ) { MSG_WARNING("No user-defined calibration histogram for " << "CentralityProjection " << projName << " found " << "(requested histogram " << calHistName << "_USR in " << calAnaName << ")"); continue; } else { MSG_INFO("Found calibration histogram " << sel << " " << usrhist->path()); cproj.add((UserCentEstimate(), usrhist, true), sel); } #else MSG_WARNING("UserCentEstimate is only available with HepMC3."); #endif } else if ( sel == "RAW" ) { #if HEPMC_VERSION_CODE >= 3000000 cproj.add(GeneratedCentrality(), sel); #else MSG_WARNING("GeneratedCentrality is only available with HepMC3."); #endif } else MSG_WARNING("'" << sel << "' is not a valid PercentileProjection tag."); if ( cproj.empty() ) MSG_WARNING("CentralityProjection " << projName << " did not contain any valid PercentileProjections."); return declare(cproj, projName); } } diff --git a/src/Core/AnalysisHandler.cc b/src/Core/AnalysisHandler.cc --- a/src/Core/AnalysisHandler.cc +++ b/src/Core/AnalysisHandler.cc @@ -1,409 +1,408 @@ // -*- 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) { } 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()); } } 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; MSG_INFO("Finalising analyses"); for (AnaHandle a : _analyses) { a->setCrossSection(_xs); try { a->finalize(); } catch (const Error& err) { cerr << "Error in " << a->name() << "::finalize method: " << err.what() << endl; exit(1); } } // 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) { - cout << a->name() << " " << analysis->name() << endl; 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; } ///////////////////////////// /* Old addData which did not add orphaned preloads. void AnalysisHandler::addData(const std::vector& aos) { for (const AnalysisObjectPtr ao : aos) { const string path = ao->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_WARNING(e.what()); } } } } */ void AnalysisHandler::addData(const std::vector& aos) { for (const AnalysisObjectPtr ao : aos) { const string path = ao->path(); if (path.size() > 1) { // path > "/" try { const string ananame = split(path, "/")[0]; MSG_TRACE("Preloading analysis object " << path); 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::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) 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 (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 { const vector aos = getData(); try { YODA::write(filename, aos.begin(), aos.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) { _xs = xs; 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; } }