diff --git a/analyses/pluginATLAS/ATLAS_2014_I1279489.cc b/analyses/pluginATLAS/ATLAS_2014_I1279489.cc --- a/analyses/pluginATLAS/ATLAS_2014_I1279489.cc +++ b/analyses/pluginATLAS/ATLAS_2014_I1279489.cc @@ -1,396 +1,375 @@ // -*- C++ -*- #include "Rivet/Analysis.hh" #include "Rivet/Projections/FinalState.hh" #include "Rivet/Projections/IdentifiedFinalState.hh" #include "Rivet/Projections/VetoedFinalState.hh" #include "Rivet/Projections/FastJets.hh" #include "Rivet/Projections/DressedLeptons.hh" namespace Rivet { struct Plots { string label; Histo1DPtr h_dy; Histo1DPtr h_mjj; Histo1DPtr h_njets; Histo1DPtr h_dphijj; Histo1DPtr h_ptbal; Histo1DPtr h_jetveto_mjj_veto; Histo1DPtr h_jetveto_mjj_inc; Histo1DPtr h_jetveto_dy_veto; Histo1DPtr h_jetveto_dy_inc; Histo1DPtr h_ptbaleff_mjj_veto; Histo1DPtr h_ptbaleff_mjj_inc; Histo1DPtr h_ptbaleff_dy_veto; Histo1DPtr h_ptbaleff_dy_inc; Profile1DPtr p_avgnjets_dy; Profile1DPtr p_avgnjets_mjj; }; struct Variables { Variables(const vector& jets, const Particle* lep1, const Particle* lep2) { FourMomentum j1 = jets.at(0)->momentum(); FourMomentum j2 = jets.at(1)->momentum(); jet1pt = j1.pT(); jet2pt = j2.pT(); assert(jet1pt > jet2pt); zpt = (lep1->mom() + lep2->mom()).pT(); deltay = fabs(j1.rapidity() - j2.rapidity()); mjj = (j1 + j2).mass(); deltaphijj = deltaPhi(j1, j2) / PI; FourMomentum gapjet(0., 0., 0., 0.); ngapjets = _getNumGapJets(jets, gapjet); double ptbal_vec = (j1 + j2 + lep1->mom() + lep2->mom()).pT(); double ptbal_sc = j1.pT() + j2.pT() + lep1->pT() + lep2->pT(); ptbalance2 = ptbal_vec / ptbal_sc; double ptbal3_vec = (j1 + j2 + gapjet + lep1->mom() + lep2->mom()).pT(); double ptbal3_sc = j1.pT() + j2.pT() + gapjet.pT() + lep1->pT() + lep2->pT(); ptbalance3 = ptbal3_vec / ptbal3_sc; pass_jetveto = gapjet.pT() < 25.0*GeV; pass_ptbaleff = ptbalance2 < 0.15; } double jet1pt; double jet2pt; double zpt; double deltay; double mjj; double deltaphijj; double ptbalance2; double ptbalance3; int ngapjets; double dilepton_dr; bool pass_jetveto; bool pass_ptbaleff; private: bool _isBetween(const Jet* probe, const Jet* boundary1, const Jet* boundary2) { double y_p = probe->rapidity(); double y_b1 = boundary1->rapidity(); double y_b2 = boundary2->rapidity(); double y_min = std::min(y_b1, y_b2); double y_max = std::max(y_b1, y_b2); if (y_p > y_min && y_p < y_max) return true; else return false; } int _getNumGapJets(const vector& jets, FourMomentum& thirdJet) { if (jets.size() < 2) return 0; // The vector of jets is already sorted by pT. So the boundary jets will be the first two. const Jet* bj1 = jets.at(0); const Jet* bj2 = jets.at(1); int n_between = 0; // Start loop at the 3rd hardest pT jet for (size_t i = 2; i < jets.size(); ++i) { const Jet* j = jets.at(i); // If this jet is between the boundary jets and is hard enough, increment counter if (_isBetween(j, bj1, bj2)) { if (n_between == 0) thirdJet = j->momentum(); ++n_between; } } return n_between; } }; class ATLAS_2014_I1279489 : public Analysis { public: /// Constructor ATLAS_2014_I1279489() : Analysis("ATLAS_2014_I1279489") { } /// Book histograms and initialise projections before the run void init() { FinalState fs(-5.0, 5.0); IdentifiedFinalState photon_fs(fs); photon_fs.acceptIdPair(PID::PHOTON); IdentifiedFinalState electron_fs(fs); electron_fs.acceptIdPair(PID::ELECTRON); IdentifiedFinalState muon_fs(fs); muon_fs.acceptIdPair(PID::MUON); DressedLeptons dressed_electrons(photon_fs, electron_fs, 0.1, Cuts::abseta < 2.47 && Cuts::pT > 25*GeV); declare(dressed_electrons, "DressedElectrons"); DressedLeptons dressed_muons(photon_fs, muon_fs, 0.1, Cuts::abseta < 2.47 && Cuts::pT > 25*GeV); declare(dressed_muons, "DressedMuons"); FastJets jets(fs, FastJets::ANTIKT, 0.4); declare(jets, "Jets"); initialisePlots(baseline_plots, "baseline"); initialisePlots(highpt_plots, "highpt"); initialisePlots(search_plots, "search"); initialisePlots(control_plots, "control"); initialisePlots(highmass_plots, "highmass"); } void initialisePlots(Plots& plots, const string& phase_space){ - /**************************************** - * Plot labeling: * - * format = d0_-x0_-y0_ * - * d01 = baseline fiducial region * - * d02 = high-pt fiducial region * - * d03 = search fiducial region * - * d04 = control fiducial region * - * d05 = high-mass fiducial region * - * * - * x01 = mjj on x-axis * - * x02 = delta-y on x-axis * - * x03 = njets on x-axis * - * x04 = dphijj on x-axis * - * x05 = ptbalance on x-axis * - * * - * y01 = differential cross-section * - * y02 = jet veto efficiency * - * y03 = ptbalance efficiency * - * y04 = average njets * - ****************************************/ plots.label = phase_space; if (phase_space=="baseline") { plots.h_mjj = bookHisto1D(1, 1, 1); - plots.h_dy = bookHisto1D(1, 2, 1); + plots.h_dy = bookHisto1D(3, 1, 1); - plots.h_jetveto_mjj_veto = bookHisto1D("jetveto_mjj_baseline_veto", refData(1,1,2)); - plots.h_jetveto_mjj_inc = bookHisto1D("jetveto_mjj_baseline_inc", refData(1,1,2)); - plots.h_jetveto_dy_veto = bookHisto1D("jetveto_dy_baseline_veto", refData(1,2,2)); - plots.h_jetveto_dy_inc = bookHisto1D("jetveto_dy_baseline_inc", refData(1,2,2)); + plots.h_jetveto_mjj_veto = bookHisto1D("jetveto_mjj_baseline_veto", refData(8,1,1)); + plots.h_jetveto_mjj_inc = bookHisto1D("jetveto_mjj_baseline_inc", refData(8,1,1)); + plots.h_jetveto_dy_veto = bookHisto1D("jetveto_dy_baseline_veto", refData(9,1,1)); + plots.h_jetveto_dy_inc = bookHisto1D("jetveto_dy_baseline_inc", refData(9,1,1)); - plots.h_ptbaleff_mjj_veto = bookHisto1D("ptbaleff_mjj_baseline_veto", refData(1,1,3)); - plots.h_ptbaleff_mjj_inc = bookHisto1D("ptbaleff_mjj_baseline_inc", refData(1,1,3)); - plots.h_ptbaleff_dy_veto = bookHisto1D("ptbaleff_dy_baseline_veto", refData(1,2,3)); - plots.h_ptbaleff_dy_inc = bookHisto1D("ptbaleff_dy_baseline_inc", refData(1,2,3)); + plots.h_ptbaleff_mjj_veto = bookHisto1D("ptbaleff_mjj_baseline_veto", refData(12,1,1)); + plots.h_ptbaleff_mjj_inc = bookHisto1D("ptbaleff_mjj_baseline_inc", refData(12,1,1)); + plots.h_ptbaleff_dy_veto = bookHisto1D("ptbaleff_dy_baseline_veto", refData(13,1,1)); + plots.h_ptbaleff_dy_inc = bookHisto1D("ptbaleff_dy_baseline_inc", refData(13,1,1)); - plots.p_avgnjets_mjj = bookProfile1D(1,1,4); - plots.p_avgnjets_dy = bookProfile1D(1,2,4); + plots.p_avgnjets_mjj = bookProfile1D(10,1,1); + plots.p_avgnjets_dy = bookProfile1D(11,1,1); } if (phase_space=="highpt") { - plots.h_mjj = bookHisto1D(2, 1, 1); - plots.h_dy = bookHisto1D(2, 2, 1); + plots.h_mjj = bookHisto1D(14, 1, 1); + plots.h_dy = bookHisto1D(16, 1, 1); - plots.h_jetveto_mjj_veto = bookHisto1D("jetveto_mjj_highpt_veto", refData(2,1,2)); - plots.h_jetveto_mjj_inc = bookHisto1D("jetveto_mjj_highpt_inc", refData(2,1,2)); - plots.h_jetveto_dy_veto = bookHisto1D("jetveto_dy_highpt_veto", refData(2,2,2)); - plots.h_jetveto_dy_inc = bookHisto1D("jetveto_dy_highpt_inc", refData(2,2,2)); + plots.h_jetveto_mjj_veto = bookHisto1D("jetveto_mjj_highpt_veto", refData(18,1,1)); + plots.h_jetveto_mjj_inc = bookHisto1D("jetveto_mjj_highpt_inc", refData(18,1,1)); + plots.h_jetveto_dy_veto = bookHisto1D("jetveto_dy_highpt_veto", refData(19,1,1)); + plots.h_jetveto_dy_inc = bookHisto1D("jetveto_dy_highpt_inc", refData(19,1,1)); - plots.h_ptbaleff_mjj_veto = bookHisto1D("ptbaleff_mjj_highpt_veto", refData(2,1,3)); - plots.h_ptbaleff_mjj_inc = bookHisto1D("ptbaleff_mjj_highpt_inc", refData(2,1,3)); - plots.h_ptbaleff_dy_veto = bookHisto1D("ptbaleff_dy_highpt_veto", refData(2,2,3)); - plots.h_ptbaleff_dy_inc = bookHisto1D("ptbaleff_dy_highpt_inc", refData(2,2,3)); + plots.h_ptbaleff_mjj_veto = bookHisto1D("ptbaleff_mjj_highpt_veto", refData(22,1,1)); + plots.h_ptbaleff_mjj_inc = bookHisto1D("ptbaleff_mjj_highpt_inc", refData(22,1,1)); + plots.h_ptbaleff_dy_veto = bookHisto1D("ptbaleff_dy_highpt_veto", refData(23,1,1)); + plots.h_ptbaleff_dy_inc = bookHisto1D("ptbaleff_dy_highpt_inc", refData(23,1,1)); - plots.p_avgnjets_mjj = bookProfile1D(2,1,4); - plots.p_avgnjets_dy = bookProfile1D(2,2,4); + plots.p_avgnjets_mjj = bookProfile1D(20,1,1); + plots.p_avgnjets_dy = bookProfile1D(21,1,1); } if (phase_space=="search") { - plots.h_mjj = bookHisto1D(3,1,1); - plots.h_dy = bookHisto1D(3,2,1); + plots.h_mjj = bookHisto1D(2,1,1); + plots.h_dy = bookHisto1D(4,1,1); } if (phase_space=="control") { - plots.h_mjj = bookHisto1D(4,1,1); - plots.h_dy = bookHisto1D(4,2,1); + plots.h_mjj = bookHisto1D(15,1,1); + plots.h_dy = bookHisto1D(17,1,1); } if (phase_space=="highmass") { - plots.h_njets = bookHisto1D(5, 3, 1); - plots.h_dphijj = bookHisto1D(5, 4, 1); - plots.h_ptbal = bookHisto1D(5, 5, 1); + plots.h_njets = bookHisto1D(5, 1, 1); + plots.h_dphijj = bookHisto1D(7, 1, 1); + plots.h_ptbal = bookHisto1D(6, 1, 1); } } /// Perform the per-event analysis void analyze(const Event& event) { // Make sure that we have a Z-candidate: const Particle *lep1 = NULL, *lep2 = NULL; // const vector& muons = apply(event, "DressedMuons").dressedLeptons(); if (muons.size() == 2) { const FourMomentum dimuon = muons[0].mom() + muons[1].mom(); if ( inRange(dimuon.mass()/GeV, 81.0, 101.0) && muons[0].threeCharge() != muons[1].threeCharge() ) { lep1 = &muons[0]; lep2 = &muons[1]; } } // const vector& electrons = apply(event, "DressedElectrons").dressedLeptons(); if (electrons.size() == 2) { const FourMomentum dielectron = electrons[0].mom() + electrons[1].mom(); if ( inRange(dielectron.mass()/GeV, 81.0, 101.0) && electrons[0].threeCharge() != electrons[1].threeCharge() ) { if (lep1 && lep2) { MSG_INFO("Found Z candidates using both electrons and muons! Continuing with the muon-channel candidate"); } else { lep1 = &electrons[0]; lep2 = &electrons[1]; } } } // If there's no Z-candidate, we won't use this event: if (!lep1 || !lep2) vetoEvent; // Do lepton-jet overlap removal: vector good_jets; const Jets& jets = apply(event, "Jets").jetsByPt(Cuts::pT > 25*GeV && Cuts::absrap < 4.4); foreach(const Jet& j, jets) { bool nearby_lepton = false; foreach (const Particle& m, muons) if (deltaR(j, m) < 0.3) nearby_lepton = true; foreach (const Particle& e, electrons) if (deltaR(j, e) < 0.3) nearby_lepton = true; if (!nearby_lepton) good_jets.push_back(&j); } // If we don't have at least 2 good jets, we won't use this event. if (good_jets.size() < 2) vetoEvent; // Plotting, using variables and histo classes calculated by the Variables object constructor Variables vars(good_jets, lep1, lep2); bool pass_baseline = (vars.jet1pt > 55.0*GeV && vars.jet2pt > 45.0*GeV); bool pass_highpt = (vars.jet1pt > 85.0*GeV && vars.jet2pt > 75.0*GeV); bool pass_highmass = (pass_baseline && vars.mjj > 1000.0*GeV); bool pass_search = (pass_baseline && vars.zpt > 20.0*GeV && vars.ngapjets == 0 && vars.ptbalance2 < 0.15 && vars.mjj > 250.0*GeV); bool pass_control = (pass_baseline && vars.zpt > 20.0*GeV && vars.ngapjets > 0 && vars.ptbalance3 < 0.15 && vars.mjj > 250.0*GeV); // const double weight = event.weight(); if (pass_baseline) fillPlots(vars, baseline_plots, "baseline", weight); if (pass_highpt) fillPlots(vars, highpt_plots, "highpt", weight); if (pass_highmass) fillPlots(vars, highmass_plots, "highmass", weight); if (pass_search) fillPlots(vars, search_plots, "search", weight); if (pass_control) fillPlots(vars, control_plots, "control", weight); } void fillPlots(const Variables& vars, Plots& plots, string phase_space, double weight) { if (phase_space == "baseline" || phase_space == "highpt" || phase_space == "search" || phase_space == "control") { plots.h_dy->fill(vars.deltay, weight); plots.h_mjj->fill(vars.mjj, weight); } if (phase_space == "baseline" || phase_space == "highpt") { if (vars.pass_jetveto) { plots.h_jetveto_dy_veto->fill(vars.deltay, weight); plots.h_jetveto_mjj_veto->fill(vars.mjj, weight); } plots.h_jetveto_dy_inc->fill(vars.deltay, weight); plots.h_jetveto_mjj_inc->fill(vars.mjj, weight); if (vars.pass_ptbaleff) { plots.h_ptbaleff_mjj_veto->fill(vars.mjj, weight); plots.h_ptbaleff_dy_veto->fill(vars.deltay, weight); } plots.h_ptbaleff_mjj_inc->fill(vars.mjj, weight); plots.h_ptbaleff_dy_inc->fill(vars.deltay, weight); plots.p_avgnjets_dy->fill(vars.deltay, vars.ngapjets, weight); plots.p_avgnjets_mjj->fill(vars.mjj, vars.ngapjets, weight); } if (phase_space == "highmass") { plots.h_njets->fill(vars.ngapjets, weight); plots.h_dphijj->fill(vars.deltaphijj, weight); plots.h_ptbal->fill(vars.ptbalance2, weight); } } /// Normalise histograms etc., after the run void finalize() { finalizePlots(baseline_plots); finalizePlots(highpt_plots); finalizePlots(search_plots); finalizePlots(control_plots); finalizePlots(highmass_plots); finalizeEfficiencies(baseline_plots); finalizeEfficiencies(highpt_plots); } void finalizePlots(Plots& plots) { if (plots.h_dy) normalize(plots.h_dy); if (plots.h_mjj) normalize(plots.h_mjj); if (plots.h_dphijj) normalize(plots.h_dphijj); if (plots.h_njets) normalize(plots.h_njets); if (plots.h_ptbal) normalize(plots.h_ptbal); } void finalizeEfficiencies(Plots& plots) { - int region_index = 0; - if (plots.label=="baseline") region_index = 1; - else if (plots.label=="highpt") region_index = 2; - else return; - if (plots.h_jetveto_mjj_veto && plots.h_jetveto_mjj_inc) divide(plots.h_jetveto_mjj_veto, plots.h_jetveto_mjj_inc, bookScatter2D(region_index, 1, 2)); - getScatter2D(region_index, 1, 2)->addAnnotation("InclusiveSumWeights", plots.h_jetveto_mjj_inc->integral()); + if (plots.label != "baseline" && plots.label != "highpt") return; + size_t offset = plots.label == "baseline"? 0 : 10; + + if (plots.h_jetveto_mjj_veto && plots.h_jetveto_mjj_inc) divide(plots.h_jetveto_mjj_veto, plots.h_jetveto_mjj_inc, bookScatter2D(8 + offset, 1, 2)); + getScatter2D(8 + offset, 1, 2)->addAnnotation("InclusiveSumWeights", plots.h_jetveto_mjj_inc->integral()); removeAnalysisObject(plots.h_jetveto_mjj_veto); removeAnalysisObject(plots.h_jetveto_mjj_inc); - if (plots.h_jetveto_dy_veto && plots.h_jetveto_dy_inc) divide(plots.h_jetveto_dy_veto, plots.h_jetveto_dy_inc, bookScatter2D(region_index, 2, 2)); - getScatter2D(region_index, 2, 2)->addAnnotation("InclusiveSumWeights", plots.h_jetveto_dy_inc->integral()); + if (plots.h_jetveto_dy_veto && plots.h_jetveto_dy_inc) divide(plots.h_jetveto_dy_veto, plots.h_jetveto_dy_inc, bookScatter2D(9 + offset, 2, 2)); + getScatter2D(9 + offset, 2, 2)->addAnnotation("InclusiveSumWeights", plots.h_jetveto_dy_inc->integral()); removeAnalysisObject(plots.h_jetveto_dy_veto); removeAnalysisObject(plots.h_jetveto_dy_inc); - if (plots.h_ptbaleff_mjj_veto && plots.h_ptbaleff_mjj_inc) divide(plots.h_ptbaleff_mjj_veto, plots.h_ptbaleff_mjj_inc, bookScatter2D(region_index, 1, 3)); - getScatter2D(region_index, 1, 3)->addAnnotation("InclusiveSumWeights", plots.h_ptbaleff_mjj_inc->integral()); + if (plots.h_ptbaleff_mjj_veto && plots.h_ptbaleff_mjj_inc) divide(plots.h_ptbaleff_mjj_veto, plots.h_ptbaleff_mjj_inc, bookScatter2D(12 + offset, 1, 3)); + getScatter2D(12 + offset, 1, 3)->addAnnotation("InclusiveSumWeights", plots.h_ptbaleff_mjj_inc->integral()); removeAnalysisObject(plots.h_ptbaleff_mjj_veto); removeAnalysisObject(plots.h_ptbaleff_mjj_inc); - if (plots.h_ptbaleff_dy_veto && plots.h_ptbaleff_dy_inc) divide(plots.h_ptbaleff_dy_veto, plots.h_ptbaleff_dy_inc, bookScatter2D(region_index, 2, 3)); - getScatter2D(region_index, 2, 3)->addAnnotation("InclusiveSumWeights", plots.h_ptbaleff_dy_inc->integral()); + if (plots.h_ptbaleff_dy_veto && plots.h_ptbaleff_dy_inc) divide(plots.h_ptbaleff_dy_veto, plots.h_ptbaleff_dy_inc, bookScatter2D(13 + offset, 2, 3)); + getScatter2D(13 + offset, 2, 3)->addAnnotation("InclusiveSumWeights", plots.h_ptbaleff_dy_inc->integral()); removeAnalysisObject(plots.h_ptbaleff_dy_veto); removeAnalysisObject(plots.h_ptbaleff_dy_inc); } //@} private: //Variables* vars; Plots baseline_plots; Plots highpt_plots; Plots search_plots; Plots control_plots; Plots highmass_plots; }; DECLARE_RIVET_PLUGIN(ATLAS_2014_I1279489); } diff --git a/analyses/pluginATLAS/ATLAS_2014_I1279489.plot b/analyses/pluginATLAS/ATLAS_2014_I1279489.plot --- a/analyses/pluginATLAS/ATLAS_2014_I1279489.plot +++ b/analyses/pluginATLAS/ATLAS_2014_I1279489.plot @@ -1,166 +1,162 @@ -# # BEGIN PLOT /ATLAS_2014_I1279489/d0.*-x0.*-y0.* -# RatioPlotMode=default -# # END PLOT - ## MJJ BASELINE # BEGIN PLOT /ATLAS_2014_I1279489/d01-x01-y01 Title=m$_{\text{jj}}$ in the baseline region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dm_{\text{jj}}}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x01-y02 +# BEGIN PLOT /ATLAS_2014_I1279489/d08-x01-y01 Title=Jet veto efficiency vs. m$_{\text{jj}}$ in the baseline region XLabel=m$_{\text{jj}}$ [GeV] YLabel=Jet veto efficiency LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x01-y03 +# BEGIN PLOT /ATLAS_2014_I1279489/d12-x01-y01 Title=$p_{\text{T}}^{\text{balance}}$ cut efficiency vs. m$_{\text{jj}}$ in the baseline region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$p_{\text{T}}^{\text{balance}}$ LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x01-y04 +# BEGIN PLOT /ATLAS_2014_I1279489/d10-x01-y01 Title=$$ vs. m$_{\text{jj}}$ in the baseline region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$$ LogY=0 # END PLOT ## DY BASELINE -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x02-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d03-x01-y01 Title=$|\Delta y|$ in the baseline region XLabel=$|\Delta y|$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{d|\Delta y|}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x02-y02 +# BEGIN PLOT /ATLAS_2014_I1279489/d09-x01-y01 Title=Jet veto efficiency vs. $|\Delta y|$ in the baseline region XLabel=$|\Delta y|$ YLabel=Jet veto efficiency LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x02-y03 +# BEGIN PLOT /ATLAS_2014_I1279489/d13-x01-y01 Title=$p_{\text{T}}^{\text{balance}}$ cut efficiency vs. $|\Delta y|$ in the baseline region XLabel=$|\Delta y|$ YLabel=$p_{\text{T}}^{\text{balance}}$ LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d01-x02-y04 +# BEGIN PLOT /ATLAS_2014_I1279489/d11-x01-y01 Title=$$ vs. $|\Delta y|$ in the baseline region XLabel=$|\Delta y|$ YLabel=$$ LogY=0 # END PLOT ## MJJ HIGH-PT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x01-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d14-x01-y01 Title=m$_{\text{jj}}$ in the high-$p_{\text{T}}$ region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dm_{\text{jj}}}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x01-y02 +# BEGIN PLOT /ATLAS_2014_I1279489/d18-x01-y01 Title=Jet veto efficiency vs. m$_{\text{jj}}$ in the high-$p_{\text{T}}$ region XLabel=m$_{\text{jj}}$ [GeV] YLabel=Jet veto efficiency LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x01-y03 +# BEGIN PLOT /ATLAS_2014_I1279489/d22-x01-y01 Title=$p_{\text{T}}^{\text{balance}}$ cut efficiency vs. m$_{\text{jj}}$ in the high-$p_{\text{T}}$ region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$p_{\text{T}}^{\text{balance}}$ LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x01-y04 +# BEGIN PLOT /ATLAS_2014_I1279489/d20-x01-y01 Title=$$ vs. m$_{\text{jj}}$ in the high-$p_{\text{T}}$ region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$$ LogY=0 # END PLOT ## DY HIGH-PT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x02-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d16-x01-y01 Title=$|\Delta y|$ in the high-$p_{\text{T}}$ region XLabel=$|\Delta y|$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{d|\Delta y|}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x02-y02 +# BEGIN PLOT /ATLAS_2014_I1279489/d19-x01-y01 Title=Jet veto efficiency vs. $|\Delta y|$ in the high-$p_{\text{T}}$ region XLabel=$|\Delta y|$ YLabel=Jet veto efficiency LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x02-y03 +# BEGIN PLOT /ATLAS_2014_I1279489/d23-x01-y01 Title=$p_{\text{T}}^{\text{balance}}$ cut efficiency vs. $|\Delta y|$ in the high-$p_{\text{T}}$ region XLabel=$|\Delta y|$ YLabel=$p_{\text{T}}^{\text{balance}}$ LogY=0 # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d02-x02-y04 +# BEGIN PLOT /ATLAS_2014_I1279489/d21-x01-y01 Title=$$ vs. $|\Delta y|$ in the high-$p_{\text{T}}$ region XLabel=$|\Delta y|$ YLabel=$$ LogY=0 # END PLOT ## MJJ SEARCH -# BEGIN PLOT /ATLAS_2014_I1279489/d03-x01-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d02-x01-y01 Title=m$_{\text{jj}}$ in the search region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dm_{\text{jj}}}$ # END PLOT ## DY SEARCH -# BEGIN PLOT /ATLAS_2014_I1279489/d03-x02-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d04-x01-y01 Title=$|\Delta y|$ in the search region XLabel=$|\Delta y|$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{d|\Delta y|}$ # END PLOT ## MJJ CONTROL -# BEGIN PLOT /ATLAS_2014_I1279489/d04-x01-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d15-x01-y01 Title=m$_{\text{jj}}$ in the control region XLabel=m$_{\text{jj}}$ [GeV] YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dm_{\text{jj}}}$ # END PLOT ## DY CONTROL -# BEGIN PLOT /ATLAS_2014_I1279489/d04-x02-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d17-x01-y01 Title=$|\Delta y|$ in the control region XLabel=$|\Delta y|$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{d|\Delta y|}$ # END PLOT ## HIGH MASS PLOTS -# BEGIN PLOT /ATLAS_2014_I1279489/d05-x03-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d05-x01-y01 Title=$N_{\text{jet}}^{\text{gap}}$ in the high-mass region XLabel=$N_{\text{jet}}^{\text{gap}}$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dN_{\text{jet}}^{\text{gap}}}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d05-x04-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d07-x01-y01 Title=$|\Delta\phi(\text{j,j})|/\pi$ in the high-mass region XLabel=$|\Delta\phi(\text{j,j})|/\pi$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{d|\Delta\phi(\text{j,j})|}$ # END PLOT -# BEGIN PLOT /ATLAS_2014_I1279489/d05-x05-y01 +# BEGIN PLOT /ATLAS_2014_I1279489/d06-x01-y01 Title=$p_{\text{T}}^{\text{balance}}$ in the high-mass region XLabel=$p_{\text{T}}^{\text{balance}}$ YLabel=$\frac{1}{\sigma} \frac{d\sigma}{dp_{\text{T}}^{\text{balance}}}$ # END PLOT diff --git a/analyses/pluginATLAS/ATLAS_2014_I1279489.yoda b/analyses/pluginATLAS/ATLAS_2014_I1279489.yoda --- a/analyses/pluginATLAS/ATLAS_2014_I1279489.yoda +++ b/analyses/pluginATLAS/ATLAS_2014_I1279489.yoda @@ -1,397 +1,375 @@ BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x01-y01 IsRef: 1 Path: /REF/ATLAS_2014_I1279489/d01-x01-y01 -Title: ~ +Title: doi:10.17182/hepdata.62729.v1/t1 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 1.250000e+02 1.250000e+02 1.250000e+02 2.560000e-03 2.498152e-05 2.830886e-05 3.750000e+02 1.250000e+02 1.250000e+02 1.096000e-03 1.324750e-05 1.171041e-05 6.250000e+02 1.250000e+02 1.250000e+02 2.327000e-04 9.635276e-06 7.688999e-06 8.750000e+02 1.250000e+02 1.250000e+02 6.861000e-05 4.711607e-06 4.273224e-06 1.125000e+03 1.250000e+02 1.250000e+02 2.460000e-05 2.343445e-06 2.351042e-06 1.375000e+03 1.250000e+02 1.250000e+02 9.870000e-06 1.266964e-06 1.317609e-06 1.875000e+03 3.750000e+02 3.750000e+02 2.555000e-06 4.559688e-07 4.935066e-07 2.625000e+03 3.750000e+02 3.750000e+02 2.634000e-07 1.029361e-07 8.574880e-08 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x01-y02 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x01-y02 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d02-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t2 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 8.887000e-01 8.538907e-03 8.350020e-03 -3.750000e+02 1.250000e+02 1.250000e+02 7.442000e-01 1.267124e-02 1.590813e-02 -6.250000e+02 1.250000e+02 1.250000e+02 6.187000e-01 1.852448e-02 2.516504e-02 -8.750000e+02 1.250000e+02 1.250000e+02 5.595000e-01 2.282946e-02 2.348240e-02 -1.125000e+03 1.250000e+02 1.250000e+02 5.382000e-01 2.857885e-02 2.551807e-02 -1.375000e+03 1.250000e+02 1.250000e+02 5.142000e-01 3.531618e-02 3.091876e-02 -1.875000e+03 3.750000e+02 3.750000e+02 5.815000e-01 4.919239e-02 3.713651e-02 -2.625000e+03 3.750000e+02 3.750000e+02 4.454000e-01 1.276315e-01 9.245391e-02 +3.750000e+02 1.250000e+02 1.250000e+02 3.114000e-03 2.205710e-05 2.295290e-05 +6.250000e+02 1.250000e+02 1.250000e+02 6.040000e-04 1.308926e-05 1.485253e-05 +8.750000e+02 1.250000e+02 1.250000e+02 1.721000e-04 7.265831e-06 7.062367e-06 +1.125000e+03 1.250000e+02 1.250000e+02 6.046000e-05 4.314217e-06 3.953660e-06 +1.375000e+03 1.250000e+02 1.250000e+02 2.464000e-05 2.534558e-06 2.302717e-06 +1.875000e+03 3.750000e+02 3.750000e+02 7.150000e-06 8.826894e-07 7.178346e-07 +2.625000e+03 3.750000e+02 3.750000e+02 1.072000e-06 3.347014e-07 3.014277e-07 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x01-y03 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d03-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x01-y03 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 6.798000e-01 5.539272e-03 4.736569e-03 -3.750000e+02 1.250000e+02 1.250000e+02 6.822000e-01 7.800988e-03 8.562113e-03 -6.250000e+02 1.250000e+02 1.250000e+02 6.789000e-01 1.172059e-02 1.565558e-02 -8.750000e+02 1.250000e+02 1.250000e+02 6.832000e-01 1.738104e-02 1.597235e-02 -1.125000e+03 1.250000e+02 1.250000e+02 6.845000e-01 2.306125e-02 2.016270e-02 -1.375000e+03 1.250000e+02 1.250000e+02 7.140000e-01 2.871221e-02 2.690575e-02 -1.875000e+03 3.750000e+02 3.750000e+02 7.108000e-01 3.092013e-02 3.680562e-02 -2.625000e+03 3.750000e+02 3.750000e+02 8.026000e-01 6.762045e-02 8.119752e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x01-y04 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x01-y04 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 1.235000e-01 1.003666e-02 9.357801e-03 -3.750000e+02 1.250000e+02 1.250000e+02 3.112000e-01 2.367740e-02 1.878412e-02 -6.250000e+02 1.250000e+02 1.250000e+02 5.039000e-01 4.076016e-02 3.430479e-02 -8.750000e+02 1.250000e+02 1.250000e+02 6.213000e-01 4.611241e-02 4.213285e-02 -1.125000e+03 1.250000e+02 1.250000e+02 6.873000e-01 5.290827e-02 5.009652e-02 -1.375000e+03 1.250000e+02 1.250000e+02 7.328000e-01 6.472860e-02 6.279638e-02 -1.875000e+03 3.750000e+02 3.750000e+02 6.602000e-01 7.459531e-02 8.383477e-02 -2.625000e+03 3.750000e+02 3.750000e+02 8.392000e-01 2.154658e-01 2.975928e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x02-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x02-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d03-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t3 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 2.500000e-01 2.500000e-01 2.500000e-01 4.214000e-01 5.947978e-03 6.075078e-03 7.500000e-01 2.500000e-01 2.500000e-01 3.984000e-01 5.890584e-03 5.833084e-03 1.250000e+00 2.500000e-01 2.500000e-01 3.404000e-01 4.695915e-03 4.740970e-03 1.750000e+00 2.500000e-01 2.500000e-01 2.769000e-01 2.648272e-03 2.793802e-03 2.250000e+00 2.500000e-01 2.500000e-01 2.112000e-01 1.852101e-03 1.840198e-03 2.750000e+00 2.500000e-01 2.500000e-01 1.467000e-01 2.909705e-03 2.950412e-03 3.500000e+00 5.000000e-01 5.000000e-01 7.513000e-02 3.433315e-03 3.579889e-03 4.500000e+00 5.000000e-01 5.000000e-01 2.194000e-02 2.090522e-03 2.246587e-03 5.500000e+00 5.000000e-01 5.000000e-01 4.854000e-03 8.011151e-04 8.946763e-04 6.500000e+00 5.000000e-01 5.000000e-01 5.647000e-04 1.800778e-04 1.898551e-04 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x02-y02 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d04-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x02-y02 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d04-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t4 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e-01 2.500000e-01 2.500000e-01 1.869000e-01 7.429399e-03 5.911746e-03 +7.500000e-01 2.500000e-01 2.500000e-01 1.976000e-01 6.860293e-03 7.268746e-03 +1.250000e+00 2.500000e-01 2.500000e-01 2.243000e-01 7.814854e-03 5.668071e-03 +1.750000e+00 2.500000e-01 2.500000e-01 2.642000e-01 6.057568e-03 6.817987e-03 +2.250000e+00 2.500000e-01 2.500000e-01 3.176000e-01 5.479185e-03 6.210338e-03 +2.750000e+00 2.500000e-01 2.500000e-01 3.133000e-01 7.529901e-03 7.023590e-03 +3.500000e+00 5.000000e-01 5.000000e-01 1.849000e-01 4.803709e-03 5.801467e-03 +4.500000e+00 5.000000e-01 5.000000e-01 5.007000e-02 3.522894e-03 3.463404e-03 +5.500000e+00 5.000000e-01 5.000000e-01 1.150000e-02 1.652245e-03 1.404060e-03 +6.500000e+00 5.000000e-01 5.000000e-01 1.595000e-03 4.263185e-04 3.596836e-04 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d05-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d05-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t5 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-01 5.000000e-01 5.000000e-01 5.380000e-01 3.598096e-02 3.342625e-02 +1.500000e+00 5.000000e-01 5.000000e-01 2.928000e-01 1.913900e-02 1.456378e-02 +2.500000e+00 5.000000e-01 5.000000e-01 1.247000e-01 1.436847e-02 1.248994e-02 +4.000000e+00 1.000000e+00 1.000000e+00 2.071000e-02 4.227172e-03 3.855113e-03 +6.500000e+00 1.500000e+00 1.500000e+00 1.017000e-03 4.656540e-04 4.557920e-04 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d06-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d06-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t6 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +5.000000e-02 5.000000e-02 5.000000e-02 4.592000e+00 1.838269e-01 1.362589e-01 +2.000000e-01 1.000000e-01 1.000000e-01 1.626000e+00 9.802592e-02 1.416956e-01 +4.000000e-01 1.000000e-01 1.000000e-01 2.789000e-01 4.250024e-02 4.965097e-02 +7.500000e-01 2.500000e-01 2.500000e-01 2.315000e-02 1.647323e-02 1.661436e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d07-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d07-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t7 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.000000e-01 1.000000e-01 1.000000e-01 1.983000e-01 2.967306e-02 4.067216e-02 +3.000000e-01 1.000000e-01 1.000000e-01 2.410000e-01 2.806468e-02 3.772399e-02 +4.500000e-01 5.000000e-02 5.000000e-02 3.259000e-01 4.435377e-02 5.381814e-02 +5.500000e-01 5.000000e-02 5.000000e-02 5.121000e-01 5.735954e-02 6.896803e-02 +6.500000e-01 5.000000e-02 5.000000e-02 8.061000e-01 7.577473e-02 9.612296e-02 +7.500000e-01 5.000000e-02 5.000000e-02 1.143000e+00 8.447402e-02 1.022736e-01 +8.500000e-01 5.000000e-02 5.000000e-02 2.039000e+00 1.025232e-01 9.978726e-02 +9.500000e-01 5.000000e-02 5.000000e-02 4.295000e+00 3.582871e-01 2.131070e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d08-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d08-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t8 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.250000e+02 1.250000e+02 1.250000e+02 8.887000e-01 8.538907e-03 8.350020e-03 +3.750000e+02 1.250000e+02 1.250000e+02 7.442000e-01 1.267124e-02 1.590813e-02 +6.250000e+02 1.250000e+02 1.250000e+02 6.187000e-01 1.852448e-02 2.516504e-02 +8.750000e+02 1.250000e+02 1.250000e+02 5.595000e-01 2.282946e-02 2.348240e-02 +1.125000e+03 1.250000e+02 1.250000e+02 5.382000e-01 2.857885e-02 2.551807e-02 +1.375000e+03 1.250000e+02 1.250000e+02 5.142000e-01 3.531618e-02 3.091876e-02 +1.875000e+03 3.750000e+02 3.750000e+02 5.815000e-01 4.919239e-02 3.713651e-02 +2.625000e+03 3.750000e+02 3.750000e+02 4.454000e-01 1.276315e-01 9.245391e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d09-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d09-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t9 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 2.500000e-01 2.500000e-01 2.500000e-01 9.658000e-01 2.258761e-03 3.186660e-03 7.500000e-01 2.500000e-01 2.500000e-01 8.922000e-01 7.945083e-03 7.629711e-03 1.250000e+00 2.500000e-01 2.500000e-01 8.335000e-01 1.108579e-02 1.097805e-02 1.750000e+00 2.500000e-01 2.500000e-01 7.798000e-01 1.238178e-02 1.352570e-02 2.250000e+00 2.500000e-01 2.500000e-01 7.391000e-01 1.283521e-02 1.606552e-02 2.750000e+00 2.500000e-01 2.500000e-01 6.909000e-01 1.284508e-02 1.815860e-02 3.500000e+00 5.000000e-01 5.000000e-01 6.440000e-01 1.345347e-02 2.093129e-02 4.500000e+00 5.000000e-01 5.000000e-01 5.667000e-01 1.704948e-02 2.536435e-02 5.500000e+00 5.000000e-01 5.000000e-01 5.500000e-01 2.764992e-02 3.244397e-02 6.500000e+00 5.000000e-01 5.000000e-01 6.753000e-01 6.828859e-02 6.486486e-02 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x02-y03 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d10-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x02-y03 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d10-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t10 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.250000e+02 1.250000e+02 1.250000e+02 1.235000e-01 1.003666e-02 9.357801e-03 +3.750000e+02 1.250000e+02 1.250000e+02 3.112000e-01 2.367740e-02 1.878412e-02 +6.250000e+02 1.250000e+02 1.250000e+02 5.039000e-01 4.076016e-02 3.430479e-02 +8.750000e+02 1.250000e+02 1.250000e+02 6.213000e-01 4.611241e-02 4.213285e-02 +1.125000e+03 1.250000e+02 1.250000e+02 6.873000e-01 5.290827e-02 5.009652e-02 +1.375000e+03 1.250000e+02 1.250000e+02 7.328000e-01 6.472860e-02 6.279638e-02 +1.875000e+03 3.750000e+02 3.750000e+02 6.602000e-01 7.459531e-02 8.383477e-02 +2.625000e+03 3.750000e+02 3.750000e+02 8.392000e-01 2.154658e-01 2.975928e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d11-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d11-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t11 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e-01 2.500000e-01 2.500000e-01 3.615000e-02 3.352611e-03 2.548399e-03 +7.500000e-01 2.500000e-01 2.500000e-01 1.155000e-01 8.961072e-03 9.193894e-03 +1.250000e+00 2.500000e-01 2.500000e-01 1.897000e-01 1.401437e-02 1.547991e-02 +1.750000e+00 2.500000e-01 2.500000e-01 2.608000e-01 1.877429e-02 1.896084e-02 +2.250000e+00 2.500000e-01 2.500000e-01 3.202000e-01 2.366545e-02 1.980449e-02 +2.750000e+00 2.500000e-01 2.500000e-01 3.888000e-01 2.987956e-02 2.160586e-02 +3.500000e+00 5.000000e-01 5.000000e-01 4.601000e-01 3.647780e-02 2.461920e-02 +4.500000e+00 5.000000e-01 5.000000e-01 5.933000e-01 4.852127e-02 3.886572e-02 +5.500000e+00 5.000000e-01 5.000000e-01 6.199000e-01 6.502130e-02 5.721027e-02 +6.500000e+00 5.000000e-01 5.000000e-01 5.449000e-01 1.198905e-01 1.252649e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d12-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d12-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t12 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.250000e+02 1.250000e+02 1.250000e+02 6.798000e-01 5.539272e-03 4.736569e-03 +3.750000e+02 1.250000e+02 1.250000e+02 6.822000e-01 7.800988e-03 8.562113e-03 +6.250000e+02 1.250000e+02 1.250000e+02 6.789000e-01 1.172059e-02 1.565558e-02 +8.750000e+02 1.250000e+02 1.250000e+02 6.832000e-01 1.738104e-02 1.597235e-02 +1.125000e+03 1.250000e+02 1.250000e+02 6.845000e-01 2.306125e-02 2.016270e-02 +1.375000e+03 1.250000e+02 1.250000e+02 7.140000e-01 2.871221e-02 2.690575e-02 +1.875000e+03 3.750000e+02 3.750000e+02 7.108000e-01 3.092013e-02 3.680562e-02 +2.625000e+03 3.750000e+02 3.750000e+02 8.026000e-01 6.762045e-02 8.119752e-02 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d13-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d13-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t13 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 2.500000e-01 2.500000e-01 2.500000e-01 6.905000e-01 5.021447e-03 4.826039e-03 7.500000e-01 2.500000e-01 2.500000e-01 6.846000e-01 4.498744e-03 5.008048e-03 1.250000e+00 2.500000e-01 2.500000e-01 6.879000e-01 5.386589e-03 5.457864e-03 1.750000e+00 2.500000e-01 2.500000e-01 6.915000e-01 6.705394e-03 6.222773e-03 2.250000e+00 2.500000e-01 2.500000e-01 6.780000e-01 8.579212e-03 7.761404e-03 2.750000e+00 2.500000e-01 2.500000e-01 6.621000e-01 1.024243e-02 9.305551e-03 3.500000e+00 5.000000e-01 5.000000e-01 6.471000e-01 1.132520e-02 1.121392e-02 4.500000e+00 5.000000e-01 5.000000e-01 6.090000e-01 1.499571e-02 1.614052e-02 5.500000e+00 5.000000e-01 5.000000e-01 6.101000e-01 3.303124e-02 2.975323e-02 6.500000e+00 5.000000e-01 5.000000e-01 5.904000e-01 6.435959e-02 6.685285e-02 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d01-x02-y04 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d14-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d01-x02-y04 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 3.615000e-02 3.352611e-03 2.548399e-03 -7.500000e-01 2.500000e-01 2.500000e-01 1.155000e-01 8.961072e-03 9.193894e-03 -1.250000e+00 2.500000e-01 2.500000e-01 1.897000e-01 1.401437e-02 1.547991e-02 -1.750000e+00 2.500000e-01 2.500000e-01 2.608000e-01 1.877429e-02 1.896084e-02 -2.250000e+00 2.500000e-01 2.500000e-01 3.202000e-01 2.366545e-02 1.980449e-02 -2.750000e+00 2.500000e-01 2.500000e-01 3.888000e-01 2.987956e-02 2.160586e-02 -3.500000e+00 5.000000e-01 5.000000e-01 4.601000e-01 3.647780e-02 2.461920e-02 -4.500000e+00 5.000000e-01 5.000000e-01 5.933000e-01 4.852127e-02 3.886572e-02 -5.500000e+00 5.000000e-01 5.000000e-01 6.199000e-01 6.502130e-02 5.721027e-02 -6.500000e+00 5.000000e-01 5.000000e-01 5.449000e-01 1.198905e-01 1.252649e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x01-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d14-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t14 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 1.250000e+02 1.250000e+02 1.250000e+02 1.391000e-03 2.314173e-05 3.022268e-05 3.750000e+02 1.250000e+02 1.250000e+02 1.883000e-03 1.470480e-05 2.035220e-05 6.250000e+02 1.250000e+02 1.250000e+02 4.780000e-04 1.281046e-05 8.740889e-06 8.750000e+02 1.250000e+02 1.250000e+02 1.505000e-04 8.069769e-06 5.420112e-06 1.125000e+03 1.250000e+02 1.250000e+02 5.499000e-05 4.824348e-06 3.389001e-06 1.375000e+03 1.250000e+02 1.250000e+02 2.296000e-05 3.344464e-06 2.178016e-06 1.875000e+03 3.750000e+02 3.750000e+02 6.147000e-06 9.180073e-07 8.797146e-07 2.625000e+03 3.750000e+02 3.750000e+02 5.663000e-07 1.656878e-07 1.665280e-07 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x01-y02 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d15-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x01-y02 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d15-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t15 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 8.888000e-01 7.370063e-03 7.690566e-03 -3.750000e+02 1.250000e+02 1.250000e+02 7.651000e-01 1.320066e-02 1.440416e-02 -6.250000e+02 1.250000e+02 1.250000e+02 6.345000e-01 1.977932e-02 1.964623e-02 -8.750000e+02 1.250000e+02 1.250000e+02 5.644000e-01 2.160711e-02 2.366118e-02 -1.125000e+03 1.250000e+02 1.250000e+02 5.361000e-01 2.988515e-02 3.037218e-02 -1.375000e+03 1.250000e+02 1.250000e+02 5.210000e-01 4.161593e-02 4.267933e-02 -1.875000e+03 3.750000e+02 3.750000e+02 5.475000e-01 5.814126e-02 4.919773e-02 -2.625000e+03 3.750000e+02 3.750000e+02 3.375000e-01 1.062449e-01 1.046698e-01 +3.750000e+02 1.250000e+02 1.250000e+02 2.628000e-03 3.743178e-05 4.702788e-05 +6.250000e+02 1.250000e+02 1.250000e+02 8.523000e-04 2.636905e-05 1.728765e-05 +8.750000e+02 1.250000e+02 1.250000e+02 3.094000e-04 1.543101e-05 1.319555e-05 +1.125000e+03 1.250000e+02 1.250000e+02 1.179000e-04 8.610318e-06 9.452623e-06 +1.375000e+03 1.250000e+02 1.250000e+02 5.413000e-05 5.623770e-06 7.405563e-06 +1.875000e+03 3.750000e+02 3.750000e+02 1.157000e-05 1.792969e-06 2.102441e-06 +2.625000e+03 3.750000e+02 3.750000e+02 1.134000e-06 4.268335e-07 4.253285e-07 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x01-y03 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d16-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x01-y03 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 6.781000e-01 6.084042e-03 8.112963e-03 -3.750000e+02 1.250000e+02 1.250000e+02 6.998000e-01 7.360891e-03 7.552619e-03 -6.250000e+02 1.250000e+02 1.250000e+02 7.054000e-01 8.678350e-03 9.270770e-03 -8.750000e+02 1.250000e+02 1.250000e+02 7.011000e-01 1.334144e-02 1.457368e-02 -1.125000e+03 1.250000e+02 1.250000e+02 6.997000e-01 1.883759e-02 2.065878e-02 -1.375000e+03 1.250000e+02 1.250000e+02 7.371000e-01 2.791855e-02 2.924149e-02 -1.875000e+03 3.750000e+02 3.750000e+02 7.361000e-01 4.164218e-02 3.974701e-02 -2.625000e+03 3.750000e+02 3.750000e+02 7.082000e-01 1.105269e-01 1.097044e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x01-y04 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x01-y04 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.250000e+02 1.250000e+02 1.250000e+02 1.260000e-01 9.951274e-03 1.106812e-02 -3.750000e+02 1.250000e+02 1.250000e+02 2.863000e-01 2.148920e-02 2.035780e-02 -6.250000e+02 1.250000e+02 1.250000e+02 4.908000e-01 3.577600e-02 3.664099e-02 -8.750000e+02 1.250000e+02 1.250000e+02 6.247000e-01 4.442955e-02 4.377382e-02 -1.125000e+03 1.250000e+02 1.250000e+02 7.112000e-01 5.728380e-02 5.976408e-02 -1.375000e+03 1.250000e+02 1.250000e+02 7.465000e-01 7.691484e-02 8.808622e-02 -1.875000e+03 3.750000e+02 3.750000e+02 7.195000e-01 1.000438e-01 1.289894e-01 -2.625000e+03 3.750000e+02 3.750000e+02 1.047000e+00 2.738760e-01 2.584592e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x02-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x02-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d16-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t16 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 2.500000e-01 2.500000e-01 2.500000e-01 4.419000e-01 5.799262e-03 5.687815e-03 7.500000e-01 2.500000e-01 2.500000e-01 4.122000e-01 5.330716e-03 6.099974e-03 1.250000e+00 2.500000e-01 2.500000e-01 3.610000e-01 4.421201e-03 5.338816e-03 1.750000e+00 2.500000e-01 2.500000e-01 2.847000e-01 3.307069e-03 3.655056e-03 2.250000e+00 2.500000e-01 2.500000e-01 2.087000e-01 3.003496e-03 3.033268e-03 2.750000e+00 2.500000e-01 2.500000e-01 1.348000e-01 3.567930e-03 3.162317e-03 3.500000e+00 5.000000e-01 5.000000e-01 6.000000e-02 3.304939e-03 2.571125e-03 4.500000e+00 5.000000e-01 5.000000e-01 1.531000e-02 1.767093e-03 1.339681e-03 5.500000e+00 5.000000e-01 5.000000e-01 3.005000e-03 6.057672e-04 4.759772e-04 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x02-y02 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d17-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x02-y02 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 9.526000e-01 4.581424e-03 4.564225e-03 -7.500000e-01 2.500000e-01 2.500000e-01 8.553000e-01 1.102175e-02 1.011425e-02 -1.250000e+00 2.500000e-01 2.500000e-01 7.648000e-01 1.469842e-02 1.332464e-02 -1.750000e+00 2.500000e-01 2.500000e-01 7.147000e-01 1.690683e-02 1.642657e-02 -2.250000e+00 2.500000e-01 2.500000e-01 6.587000e-01 1.751501e-02 1.869318e-02 -2.750000e+00 2.500000e-01 2.500000e-01 5.989000e-01 1.756607e-02 2.094095e-02 -3.500000e+00 5.000000e-01 5.000000e-01 5.527000e-01 1.741419e-02 2.245520e-02 -4.500000e+00 5.000000e-01 5.000000e-01 5.339000e-01 2.500345e-02 2.908750e-02 -5.500000e+00 5.000000e-01 5.000000e-01 6.093000e-01 5.422277e-02 6.282112e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x02-y03 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x02-y03 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 7.056000e-01 9.322245e-03 1.024302e-02 -7.500000e-01 2.500000e-01 2.500000e-01 7.008000e-01 6.437850e-03 8.250223e-03 -1.250000e+00 2.500000e-01 2.500000e-01 6.966000e-01 6.124805e-03 7.325207e-03 -1.750000e+00 2.500000e-01 2.500000e-01 6.980000e-01 7.120200e-03 7.244653e-03 -2.250000e+00 2.500000e-01 2.500000e-01 6.768000e-01 8.967306e-03 8.781166e-03 -2.750000e+00 2.500000e-01 2.500000e-01 6.752000e-01 1.098731e-02 1.102155e-02 -3.500000e+00 5.000000e-01 5.000000e-01 6.685000e-01 1.219738e-02 1.196511e-02 -4.500000e+00 5.000000e-01 5.000000e-01 6.169000e-01 2.004493e-02 2.325936e-02 -5.500000e+00 5.000000e-01 5.000000e-01 6.655000e-01 4.809022e-02 6.382077e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d02-x02-y04 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d02-x02-y04 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 5.090000e-02 5.605502e-03 4.780375e-03 -7.500000e-01 2.500000e-01 2.500000e-01 1.608000e-01 1.281325e-02 1.260483e-02 -1.250000e+00 2.500000e-01 2.500000e-01 2.806000e-01 1.944999e-02 2.116823e-02 -1.750000e+00 2.500000e-01 2.500000e-01 3.537000e-01 2.468384e-02 2.605113e-02 -2.250000e+00 2.500000e-01 2.500000e-01 4.437000e-01 3.157887e-02 3.125703e-02 -2.750000e+00 2.500000e-01 2.500000e-01 5.382000e-01 3.901098e-02 3.622619e-02 -3.500000e+00 5.000000e-01 5.000000e-01 6.420000e-01 4.376016e-02 4.045669e-02 -4.500000e+00 5.000000e-01 5.000000e-01 7.148000e-01 5.724313e-02 6.193961e-02 -5.500000e+00 5.000000e-01 5.000000e-01 5.932000e-01 1.107918e-01 1.154051e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d03-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d03-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -3.750000e+02 1.250000e+02 1.250000e+02 3.114000e-03 2.205710e-05 2.295290e-05 -6.250000e+02 1.250000e+02 1.250000e+02 6.040000e-04 1.308926e-05 1.485253e-05 -8.750000e+02 1.250000e+02 1.250000e+02 1.721000e-04 7.265831e-06 7.062367e-06 -1.125000e+03 1.250000e+02 1.250000e+02 6.046000e-05 4.314217e-06 3.953660e-06 -1.375000e+03 1.250000e+02 1.250000e+02 2.464000e-05 2.534558e-06 2.302717e-06 -1.875000e+03 3.750000e+02 3.750000e+02 7.150000e-06 8.826894e-07 7.178346e-07 -2.625000e+03 3.750000e+02 3.750000e+02 1.072000e-06 3.347014e-07 3.014277e-07 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d03-x02-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d03-x02-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 1.869000e-01 7.429399e-03 5.911746e-03 -7.500000e-01 2.500000e-01 2.500000e-01 1.976000e-01 6.860293e-03 7.268746e-03 -1.250000e+00 2.500000e-01 2.500000e-01 2.243000e-01 7.814854e-03 5.668071e-03 -1.750000e+00 2.500000e-01 2.500000e-01 2.642000e-01 6.057568e-03 6.817987e-03 -2.250000e+00 2.500000e-01 2.500000e-01 3.176000e-01 5.479185e-03 6.210338e-03 -2.750000e+00 2.500000e-01 2.500000e-01 3.133000e-01 7.529901e-03 7.023590e-03 -3.500000e+00 5.000000e-01 5.000000e-01 1.849000e-01 4.803709e-03 5.801467e-03 -4.500000e+00 5.000000e-01 5.000000e-01 5.007000e-02 3.522894e-03 3.463404e-03 -5.500000e+00 5.000000e-01 5.000000e-01 1.150000e-02 1.652245e-03 1.404060e-03 -6.500000e+00 5.000000e-01 5.000000e-01 1.595000e-03 4.263185e-04 3.596836e-04 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d04-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d04-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -3.750000e+02 1.250000e+02 1.250000e+02 2.628000e-03 3.743178e-05 4.702788e-05 -6.250000e+02 1.250000e+02 1.250000e+02 8.523000e-04 2.636905e-05 1.728765e-05 -8.750000e+02 1.250000e+02 1.250000e+02 3.094000e-04 1.543101e-05 1.319555e-05 -1.125000e+03 1.250000e+02 1.250000e+02 1.179000e-04 8.610318e-06 9.452623e-06 -1.375000e+03 1.250000e+02 1.250000e+02 5.413000e-05 5.623770e-06 7.405563e-06 -1.875000e+03 3.750000e+02 3.750000e+02 1.157000e-05 1.792969e-06 2.102441e-06 -2.625000e+03 3.750000e+02 3.750000e+02 1.134000e-06 4.268335e-07 4.253285e-07 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d04-x02-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d04-x02-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d17-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t17 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ 2.500000e-01 2.500000e-01 2.500000e-01 3.155000e-02 2.684549e-03 2.536409e-03 7.500000e-01 2.500000e-01 2.500000e-01 1.025000e-01 5.521914e-03 7.202364e-03 1.250000e+00 2.500000e-01 2.500000e-01 1.909000e-01 8.214556e-03 9.813037e-03 1.750000e+00 2.500000e-01 2.500000e-01 2.780000e-01 1.110459e-02 1.249825e-02 2.250000e+00 2.500000e-01 2.500000e-01 3.266000e-01 9.325931e-03 9.145135e-03 2.750000e+00 2.500000e-01 2.500000e-01 3.626000e-01 9.949208e-03 9.253909e-03 3.500000e+00 5.000000e-01 5.000000e-01 2.437000e-01 6.859092e-03 6.218492e-03 4.500000e+00 5.000000e-01 5.000000e-01 8.786000e-02 5.955376e-03 5.470576e-03 5.500000e+00 5.000000e-01 5.000000e-01 2.097000e-02 2.792881e-03 2.640553e-03 6.500000e+00 5.000000e-01 5.000000e-01 1.349000e-03 4.625916e-04 4.383164e-04 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d05-x03-y01 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d18-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d05-x03-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d18-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t18 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -5.000000e-01 5.000000e-01 5.000000e-01 5.380000e-01 3.598096e-02 3.342625e-02 -1.500000e+00 5.000000e-01 5.000000e-01 2.928000e-01 1.913900e-02 1.456378e-02 -2.500000e+00 5.000000e-01 5.000000e-01 1.247000e-01 1.436847e-02 1.248994e-02 -4.000000e+00 1.000000e+00 1.000000e+00 2.071000e-02 4.227172e-03 3.855113e-03 -6.500000e+00 1.500000e+00 1.500000e+00 1.017000e-03 4.656540e-04 4.557920e-04 +1.250000e+02 1.250000e+02 1.250000e+02 8.888000e-01 7.370063e-03 7.690566e-03 +3.750000e+02 1.250000e+02 1.250000e+02 7.651000e-01 1.320066e-02 1.440416e-02 +6.250000e+02 1.250000e+02 1.250000e+02 6.345000e-01 1.977932e-02 1.964623e-02 +8.750000e+02 1.250000e+02 1.250000e+02 5.644000e-01 2.160711e-02 2.366118e-02 +1.125000e+03 1.250000e+02 1.250000e+02 5.361000e-01 2.988515e-02 3.037218e-02 +1.375000e+03 1.250000e+02 1.250000e+02 5.210000e-01 4.161593e-02 4.267933e-02 +1.875000e+03 3.750000e+02 3.750000e+02 5.475000e-01 5.814126e-02 4.919773e-02 +2.625000e+03 3.750000e+02 3.750000e+02 3.375000e-01 1.062449e-01 1.046698e-01 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d05-x04-y01 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d19-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d05-x04-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d19-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t19 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 1.983000e-01 2.967306e-02 4.067216e-02 -3.000000e-01 1.000000e-01 1.000000e-01 2.410000e-01 2.806468e-02 3.772399e-02 -4.500000e-01 5.000000e-02 5.000000e-02 3.259000e-01 4.435377e-02 5.381814e-02 -5.500000e-01 5.000000e-02 5.000000e-02 5.121000e-01 5.735954e-02 6.896803e-02 -6.500000e-01 5.000000e-02 5.000000e-02 8.061000e-01 7.577473e-02 9.612296e-02 -7.500000e-01 5.000000e-02 5.000000e-02 1.143000e+00 8.447402e-02 1.022736e-01 -8.500000e-01 5.000000e-02 5.000000e-02 2.039000e+00 1.025232e-01 9.978726e-02 -9.500000e-01 5.000000e-02 5.000000e-02 4.295000e+00 3.582871e-01 2.131070e-01 +2.500000e-01 2.500000e-01 2.500000e-01 9.526000e-01 4.581424e-03 4.564225e-03 +7.500000e-01 2.500000e-01 2.500000e-01 8.553000e-01 1.102175e-02 1.011425e-02 +1.250000e+00 2.500000e-01 2.500000e-01 7.648000e-01 1.469842e-02 1.332464e-02 +1.750000e+00 2.500000e-01 2.500000e-01 7.147000e-01 1.690683e-02 1.642657e-02 +2.250000e+00 2.500000e-01 2.500000e-01 6.587000e-01 1.751501e-02 1.869318e-02 +2.750000e+00 2.500000e-01 2.500000e-01 5.989000e-01 1.756607e-02 2.094095e-02 +3.500000e+00 5.000000e-01 5.000000e-01 5.527000e-01 1.741419e-02 2.245520e-02 +4.500000e+00 5.000000e-01 5.000000e-01 5.339000e-01 2.500345e-02 2.908750e-02 +5.500000e+00 5.000000e-01 5.000000e-01 6.093000e-01 5.422277e-02 6.282112e-02 END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d05-x05-y01 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d20-x01-y01 IsRef: 1 -Path: /REF/ATLAS_2014_I1279489/d05-x05-y01 -Title: ~ +Path: /REF/ATLAS_2014_I1279489/d20-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t20 Type: Scatter2D --- # xval xerr- xerr+ yval yerr- yerr+ -5.000000e-02 5.000000e-02 5.000000e-02 4.592000e+00 1.838269e-01 1.362589e-01 -2.000000e-01 1.000000e-01 1.000000e-01 1.626000e+00 9.802592e-02 1.416956e-01 -4.000000e-01 1.000000e-01 1.000000e-01 2.789000e-01 4.250024e-02 4.965097e-02 -7.500000e-01 2.500000e-01 2.500000e-01 2.315000e-02 1.647323e-02 1.661436e-02 +1.250000e+02 1.250000e+02 1.250000e+02 1.260000e-01 9.951274e-03 1.106812e-02 +3.750000e+02 1.250000e+02 1.250000e+02 2.863000e-01 2.148920e-02 2.035780e-02 +6.250000e+02 1.250000e+02 1.250000e+02 4.908000e-01 3.577600e-02 3.664099e-02 +8.750000e+02 1.250000e+02 1.250000e+02 6.247000e-01 4.442955e-02 4.377382e-02 +1.125000e+03 1.250000e+02 1.250000e+02 7.112000e-01 5.728380e-02 5.976408e-02 +1.375000e+03 1.250000e+02 1.250000e+02 7.465000e-01 7.691484e-02 8.808622e-02 +1.875000e+03 3.750000e+02 3.750000e+02 7.195000e-01 1.000438e-01 1.289894e-01 +2.625000e+03 3.750000e+02 3.750000e+02 1.047000e+00 2.738760e-01 2.584592e-01 END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d21-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d21-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t21 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e-01 2.500000e-01 2.500000e-01 5.090000e-02 5.605502e-03 4.780375e-03 +7.500000e-01 2.500000e-01 2.500000e-01 1.608000e-01 1.281325e-02 1.260483e-02 +1.250000e+00 2.500000e-01 2.500000e-01 2.806000e-01 1.944999e-02 2.116823e-02 +1.750000e+00 2.500000e-01 2.500000e-01 3.537000e-01 2.468384e-02 2.605113e-02 +2.250000e+00 2.500000e-01 2.500000e-01 4.437000e-01 3.157887e-02 3.125703e-02 +2.750000e+00 2.500000e-01 2.500000e-01 5.382000e-01 3.901098e-02 3.622619e-02 +3.500000e+00 5.000000e-01 5.000000e-01 6.420000e-01 4.376016e-02 4.045669e-02 +4.500000e+00 5.000000e-01 5.000000e-01 7.148000e-01 5.724313e-02 6.193961e-02 +5.500000e+00 5.000000e-01 5.000000e-01 5.932000e-01 1.107918e-01 1.154051e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d22-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d22-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t22 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +1.250000e+02 1.250000e+02 1.250000e+02 6.781000e-01 6.084042e-03 8.112963e-03 +3.750000e+02 1.250000e+02 1.250000e+02 6.998000e-01 7.360891e-03 7.552619e-03 +6.250000e+02 1.250000e+02 1.250000e+02 7.054000e-01 8.678350e-03 9.270770e-03 +8.750000e+02 1.250000e+02 1.250000e+02 7.011000e-01 1.334144e-02 1.457368e-02 +1.125000e+03 1.250000e+02 1.250000e+02 6.997000e-01 1.883759e-02 2.065878e-02 +1.375000e+03 1.250000e+02 1.250000e+02 7.371000e-01 2.791855e-02 2.924149e-02 +1.875000e+03 3.750000e+02 3.750000e+02 7.361000e-01 4.164218e-02 3.974701e-02 +2.625000e+03 3.750000e+02 3.750000e+02 7.082000e-01 1.105269e-01 1.097044e-01 +END YODA_SCATTER2D_V2 +BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1279489/d23-x01-y01 +IsRef: 1 +Path: /REF/ATLAS_2014_I1279489/d23-x01-y01 +Title: doi:10.17182/hepdata.62729.v1/t23 +Type: Scatter2D +--- +# xval xerr- xerr+ yval yerr- yerr+ +2.500000e-01 2.500000e-01 2.500000e-01 7.056000e-01 9.322245e-03 1.024302e-02 +7.500000e-01 2.500000e-01 2.500000e-01 7.008000e-01 6.437850e-03 8.250223e-03 +1.250000e+00 2.500000e-01 2.500000e-01 6.966000e-01 6.124805e-03 7.325207e-03 +1.750000e+00 2.500000e-01 2.500000e-01 6.980000e-01 7.120200e-03 7.244653e-03 +2.250000e+00 2.500000e-01 2.500000e-01 6.768000e-01 8.967306e-03 8.781166e-03 +2.750000e+00 2.500000e-01 2.500000e-01 6.752000e-01 1.098731e-02 1.102155e-02 +3.500000e+00 5.000000e-01 5.000000e-01 6.685000e-01 1.219738e-02 1.196511e-02 +4.500000e+00 5.000000e-01 5.000000e-01 6.169000e-01 2.004493e-02 2.325936e-02 +5.500000e+00 5.000000e-01 5.000000e-01 6.655000e-01 4.809022e-02 6.382077e-02 +END YODA_SCATTER2D_V2