diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294.cc b/analyses/pluginATLAS/ATLAS_2014_I1306294.cc --- a/analyses/pluginATLAS/ATLAS_2014_I1306294.cc +++ b/analyses/pluginATLAS/ATLAS_2014_I1306294.cc @@ -1,233 +1,212 @@ // -*- C++ -*- #include "Rivet/Analysis.hh" #include "Rivet/Projections/FinalState.hh" #include "Rivet/Projections/ZFinder.hh" #include "Rivet/Projections/FastJets.hh" #include "Rivet/Projections/HeavyHadrons.hh" #include "Rivet/Projections/VetoedFinalState.hh" namespace Rivet { class ATLAS_2014_I1306294 : public Analysis { public: /// @name Constructors etc. //@{ /// Constructors - ATLAS_2014_I1306294(std::string name="ATLAS_2014_I1306294") - : Analysis(name) - { - _mode = 1; - setNeedsCrossSection(true); - } - + ///@brief: Electroweak Wjj production at 8 TeV + DEFAULT_RIVET_ANALYSIS_CTOR(ATLAS_2014_I1306294); //@} public: /// @name Analysis methods //@{ /// Book histograms and initialise projections before the run void init() { + // Get options from the new option system + _mode = 0; + if ( getOption("LMODE") == "EL" ) _mode = 1; + if ( getOption("LMODE") == "MU" ) _mode = 2; + FinalState fs; Cut cuts = Cuts::etaIn(-2.5,2.5) & (Cuts::pT > 20.0*GeV); ZFinder zfinder(fs, cuts, _mode==1? PID::ELECTRON : PID::MUON, 76.0*GeV, 106.0*GeV, 0.1, ZFinder::CLUSTERNODECAY, ZFinder::NOTRACK); declare(zfinder, "ZFinder"); //FastJets jetpro1( getProjection("ZFinder").remainingFinalState(), FastJets::ANTIKT, 0.4); VetoedFinalState jet_fs(fs); jet_fs.addVetoOnThisFinalState(getProjection("ZFinder")); FastJets jetpro1(jet_fs, FastJets::ANTIKT, 0.4); jetpro1.useInvisibles(); declare(jetpro1, "AntiKtJets04"); declare(HeavyHadrons(), "BHadrons"); //Histograms with data binning _h_bjet_Pt = bookHisto1D( 3, 1, 1); _h_bjet_Y = bookHisto1D( 5, 1, 1); _h_bjet_Yboost = bookHisto1D( 7, 1, 1); _h_bjet_DY20 = bookHisto1D( 9, 1, 1); _h_bjet_ZdPhi20 = bookHisto1D(11, 1, 1); _h_bjet_ZdR20 = bookHisto1D(13, 1, 1); _h_bjet_ZPt = bookHisto1D(15, 1, 1); _h_bjet_ZY = bookHisto1D(17, 1, 1); _h_2bjet_dR = bookHisto1D(21, 1, 1); _h_2bjet_Mbb = bookHisto1D(23, 1, 1); _h_2bjet_ZPt = bookHisto1D(25, 1, 1); _h_2bjet_ZY = bookHisto1D(27, 1, 1); } //========================================================================================== /// Perform the per-event analysis void analyze(const Event& e) { //--------------------------- const double weight = e.weight(); // -- check we have a Z: const ZFinder& zfinder = apply(e, "ZFinder"); if(zfinder.bosons().size() != 1) vetoEvent; const ParticleVector boson_s = zfinder.bosons(); const Particle boson_f = boson_s[0] ; const ParticleVector zleps = zfinder.constituents(); //--------------------------- //--------------------------- //------------- stop processing the event if no true b-partons or hadrons are found const Particles& allBs = apply(e, "BHadrons").bHadrons(5.0*GeV); Particles stableBs; foreach(Particle p, allBs) { if(p.abseta() < 2.5) stableBs += p; } if( stableBs.empty() ) vetoEvent; //--------------------------- // -- get the b-jets: const Jets& jets = apply(e, "AntiKtJets04").jetsByPt(Cuts::pT >20.0*GeV && Cuts::abseta <2.4); Jets b_jets; foreach(const Jet& jet, jets) { //veto overlaps with Z leptons: bool veto = false; foreach(const Particle& zlep, zleps) { if(deltaR(jet, zlep) < 0.5) veto = true; } if(veto) continue; foreach(const Particle& bhadron, stableBs) { if( deltaR(jet, bhadron) <= 0.3 ) { b_jets.push_back(jet); break; // match } } // end loop on b-hadrons } //and make sure we have at least 1: if(b_jets.empty()) vetoEvent; //--------------------------- // fill the plots: const double ZpT = boson_f.pT()/GeV; const double ZY = boson_f.absrap(); _h_bjet_ZPt->fill(ZpT, weight); _h_bjet_ZY ->fill(ZY, weight); foreach(const Jet& jet, b_jets) { _h_bjet_Pt->fill(jet.pT()/GeV, weight ); _h_bjet_Y ->fill(jet.absrap(), weight ); const double Yboost = 0.5 * fabs(boson_f.rapidity() + jet.rapidity()); _h_bjet_Yboost->fill(Yboost, weight ); if(ZpT > 20.) { const double ZBDY = fabs( boson_f.rapidity() - jet.rapidity() ); const double ZBDPHI = fabs( deltaPhi(jet.phi(), boson_f.phi()) ); const double ZBDR = deltaR(jet, boson_f, RAPIDITY); _h_bjet_DY20->fill( ZBDY, weight); _h_bjet_ZdPhi20->fill(ZBDPHI, weight); _h_bjet_ZdR20->fill( ZBDR, weight); } } //loop over b-jets if (b_jets.size() < 2) return; _h_2bjet_ZPt->fill(ZpT, weight); _h_2bjet_ZY ->fill(ZY, weight); const double BBDR = deltaR(b_jets[0], b_jets[1], RAPIDITY); const double Mbb = (b_jets[0].momentum() + b_jets[1].momentum()).mass(); _h_2bjet_dR ->fill(BBDR, weight); _h_2bjet_Mbb->fill(Mbb, weight); } // end of analysis loop /// Normalise histograms etc., after the run void finalize() { const double normfac = crossSection() / sumOfWeights(); scale( _h_bjet_Pt, normfac); scale( _h_bjet_Y, normfac); scale( _h_bjet_Yboost, normfac); scale( _h_bjet_DY20, normfac); scale( _h_bjet_ZdPhi20, normfac); scale( _h_bjet_ZdR20, normfac); scale( _h_bjet_ZPt, normfac); scale( _h_bjet_ZY, normfac); scale( _h_2bjet_dR, normfac); scale( _h_2bjet_Mbb, normfac); scale( _h_2bjet_ZPt, normfac); scale( _h_2bjet_ZY, normfac); } //@} protected: // Data members like post-cuts event weight counters go here size_t _mode; private: Histo1DPtr _h_bjet_Pt; Histo1DPtr _h_bjet_Y; Histo1DPtr _h_bjet_Yboost; Histo1DPtr _h_bjet_DY20; Histo1DPtr _h_bjet_ZdPhi20; Histo1DPtr _h_bjet_ZdR20; Histo1DPtr _h_bjet_ZPt; Histo1DPtr _h_bjet_ZY; Histo1DPtr _h_2bjet_dR; Histo1DPtr _h_2bjet_Mbb; Histo1DPtr _h_2bjet_ZPt; Histo1DPtr _h_2bjet_ZY; }; - class ATLAS_2014_I1306294_EL : public ATLAS_2014_I1306294 { - public: - ATLAS_2014_I1306294_EL() - : ATLAS_2014_I1306294("ATLAS_2014_I1306294_EL") - { - _mode = 1; - } - }; - - class ATLAS_2014_I1306294_MU : public ATLAS_2014_I1306294 { - public: - ATLAS_2014_I1306294_MU() - : ATLAS_2014_I1306294("ATLAS_2014_I1306294_MU") - { - _mode = 2; - } - }; - - // The hook for the plugin system DECLARE_RIVET_PLUGIN(ATLAS_2014_I1306294); - DECLARE_RIVET_PLUGIN(ATLAS_2014_I1306294_MU); - DECLARE_RIVET_PLUGIN(ATLAS_2014_I1306294_EL); } diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294.info b/analyses/pluginATLAS/ATLAS_2014_I1306294.info --- a/analyses/pluginATLAS/ATLAS_2014_I1306294.info +++ b/analyses/pluginATLAS/ATLAS_2014_I1306294.info @@ -1,52 +1,54 @@ Name: ATLAS_2014_I1306294 Year: 2014 Summary: Measurement of Z boson in association with b-jets at 7 TeV in ATLAS (electron channel) Experiment: ATLAS Collider: LHC InspireID: 1306294 Status: VALIDATED Authors: - Gavin Hesketh References: - arXiv:1407.3643 [hep-ex] - JHEP 1410 (2014) 141 RunInfo: Z+b(b) production in $pp$ collisions at $\sqrt{s} = 7$ TeV, electronic Z-decays NumEvents: 1000000 Beams: [p+, p+] Energies: [7000] PtCuts: pT(jets) > 20 GeV, pT(leptons) > 20 GeV NeedsCrossSection: True +Options: + - LMODE=EL,MU Description: 'Measurements of differential production cross-sections of a $Z$ boson in association with $b$-jets in $pp$ collisions at $\sqrt{s}=7$ TeV are reported. The data analysed correspond to an integrated luminosity of 4.6~fb$^{-1}$ recorded with the ATLAS detector at the Large Hadron Collider. Particle-level cross-sections are determined for events with a $Z$ boson decaying into an electron or muon pair, and containing $b$-jets. For events with at least one $b$-jet, the cross-section is presented as a function of the $Z$ boson transverse momentum and rapidity, together with the inclusive $b$-jet cross-section as a function of $b$-jet transverse momentum, rapidity and angular separations between the $b$-jet and the $Z$ boson. For events with at least two $b$-jets, the cross-section is determined as a function of the invariant mass and angular separation of the two highest transverse momentum $b$-jets, and as a function of the $Z$ boson transverse momentum and rapidity. Results are compared to leading-order and next-to-leading-order perturbative QCD calculations. This Rivet module implements the event selection for Z decaying into electrons. If you want to use muonic events, please refer to ATLAS\_2014\_I1306294\_MU' BibKey: Aad:2014dvb BibTeX: '@article{Aad:2014dvb, author = "Aad, Georges and others", title = "{Measurement of differential production cross-sections for a $Z$ boson in association with $b$-jets in 7 TeV proton-proton collisions with the ATLAS detector}", collaboration = "ATLAS Collaboration", year = "2014", eprint = "1407.3643", archivePrefix = "arXiv", primaryClass = "hep-ex", reportNumber = "CERN-PH-EP-2014-118", SLACcitation = "%%CITATION = ARXIV:1407.3643;%%", }' diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294.plot b/analyses/pluginATLAS/ATLAS_2014_I1306294.plot --- a/analyses/pluginATLAS/ATLAS_2014_I1306294.plot +++ b/analyses/pluginATLAS/ATLAS_2014_I1306294.plot @@ -1,85 +1,80 @@ # BEGIN PLOT /ATLAS_2014_I1306294/d03-x01-y01 Title=$Z + \ge 1$ b-jet -XLabel=$b$-jet $p_{T}$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} p_T / N_{b\text{-jets}}$ [pb/GeV] +XLabel=$b$-jet $p_\text{T}$ +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} p_\text{T}} / N_{b\text{-jets}}$ [pb/GeV] LogX=1 LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d05-x01-y01 Title=$Z + \ge 1$ b-jet XLabel=$b$-jet $|y|$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} |y| / N_{b\text{-jets}}$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} |y|} / N_{b\text{-jets}}$ [pb] # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d07-x01-y01 Title=$Z + \ge 1$ b-jet XLabel=$y_{\text{boost}}(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} y_{\text{boost}}(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} y_{\text{boost}}(Z,b)} / N_{b\text{-jets}}$ [pb] # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d09-x01-y01 Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV XLabel=$\Delta y(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta y(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta y(Z,b)} / N_{b\text{-jets}}$ [pb] # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d11-x01-y01 Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV XLabel=$\Delta\phi(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta\phi(Z,b) / N_{b\text{-jets}}$ [pb] +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta\phi(Z,b)} / N_{b\text{-jets}}$ [pb] LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d13-x01-y01 Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV XLabel=$\Delta R(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta R(Z,b) / N_{b\text{-jets}}$ [pb] +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta R(Z,b)} / N_{b\text{-jets}}$ [pb] LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d15-x01-y01 Title=$Z + \ge 1$ b-jet -XLabel=$p_{T}(Z)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} p_{T}(Z)$ [pb/GeV] +XLabel=$p_\text{T}(Z)$ [GeV] +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} p_\text{T}(Z)}$ [pb/GeV] LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d17-x01-y01 Title=$Z + \ge 1$ b-jet XLabel=$|y(Z)|$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} |y(Z)|$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} |y(Z)|}$ [pb] # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d21-x01-y01 Title=$Z + \ge 2$ b-jets XLabel=$\Delta R(b,b)$ -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} \Delta R(b,b)$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} \Delta R(b,b)}$ [pb] # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d23-x01-y01 Title=$Z + \ge 2$ b-jets XLabel=$m(b,b)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} m(b,b)$ [pb/GeV] +YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} m(b,b)}$ [pb/GeV] LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d25-x01-y01 Title=$Z + \ge 2$ b-jets -XLabel=$p_{T}(Z)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} p_{T}(Z)$ [pb/GeV] +XLabel=$p_\text{T}(Z)$ [GeV] +YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} p_{T}(Z)}$ [pb/GeV] LogY=1 # END PLOT # BEGIN PLOT /ATLAS_2014_I1306294/d27-x01-y01 Title=$Z + \ge 2$ b-jets XLabel=$|y(Z)|$ -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} |y(Z)|$ [pb] -LogY=0 +YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} |y(Z)|}$ [pb] # END PLOT + diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.info b/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.info deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.info +++ /dev/null @@ -1,52 +0,0 @@ -Name: ATLAS_2014_I1306294_EL -Year: 2014 -Summary: Measurement of Z boson in association with b-jets at 7 TeV in ATLAS, (electron channel) -Experiment: ATLAS -Collider: LHC -InspireID: 1306294 -Status: VALIDATED -Authors: - - Gavin Hesketh -References: - - arXiv:1407.3643 [hep-ex] - - JHEP 1410 (2014) 141 -RunInfo: Z+b(b) production in $pp$ collisions at $\sqrt{s} = 7$ TeV, electronic Z-decays -NumEvents: 1000000 -Beams: [p+, p+] -Energies: [7000] -PtCuts: pT(jets) > 20 GeV, pT(leptons) > 20 GeV -NeedsCrossSection: True -Description: - 'Measurements of differential production cross-sections of a $Z$ - boson in association with $b$-jets in $pp$ collisions at $\sqrt{s}=7$ - TeV are reported. The data analysed correspond to an integrated - luminosity of 4.6~fb$^{-1}$ recorded with the ATLAS detector at the - Large Hadron Collider. Particle-level cross-sections are determined - for events with a $Z$ boson decaying into an electron or muon pair, - and containing $b$-jets. For events with at least one $b$-jet, the - cross-section is presented as a function of the $Z$ boson transverse - momentum and rapidity, together with the inclusive $b$-jet - cross-section as a function of $b$-jet transverse momentum, rapidity - and angular separations between the $b$-jet and the $Z$ boson. For - events with at least two $b$-jets, the cross-section is determined as - a function of the invariant mass and angular separation of the two - highest transverse momentum $b$-jets, and as a function of the $Z$ - boson transverse momentum and rapidity. Results are compared to - leading-order and next-to-leading-order perturbative QCD - calculations. - This Rivet module implements the event selection for Z decaying into electrons. - If you want to use muonic events, please refer to ATLAS\_2014\_I1306294\_MU' -BibKey: Aad:2014dvb -BibTeX: '@article{Aad:2014dvb, - author = "Aad, Georges and others", - title = "{Measurement of differential production cross-sections - for a $Z$ boson in association with $b$-jets in 7 TeV - proton-proton collisions with the ATLAS detector}", - collaboration = "ATLAS Collaboration", - year = "2014", - eprint = "1407.3643", - archivePrefix = "arXiv", - primaryClass = "hep-ex", - reportNumber = "CERN-PH-EP-2014-118", - SLACcitation = "%%CITATION = ARXIV:1407.3643;%%", -}' diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.plot b/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.plot deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.plot +++ /dev/null @@ -1,85 +0,0 @@ -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d03-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$b$-jet $p_{T}$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} p_T / N_{b\text{-jets}}$ [pb/GeV] -LogX=1 -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d05-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$b$-jet $|y|$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} |y| / N_{b\text{-jets}}$ [pb] -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d07-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$y_{\text{boost}}(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} y_{\text{boost}}(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d09-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta y(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta y(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d11-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta\phi(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta\phi(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d13-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta R(Z,b)$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} \Delta R(Z,b) / N_{b\text{-jets}}$ [pb] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d15-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$p_{T}(Z)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} p_{T}(Z)$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d17-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$|y(Z)|$ -YLabel=$\mathrm{d} \sigma(Zb) / \mathrm{d} |y(Z)|$ [pb] -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d21-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$\Delta R(b,b)$ -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} \Delta R(b,b)$ [pb] -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d23-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$m(b,b)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} m(b,b)$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d25-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$p_{T}(Z)$ [GeV] -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} p_{T}(Z)$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_EL/d27-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$|y(Z)|$ -YLabel=$\mathrm{d} \sigma(Zbb) / \mathrm{d} |y(Z)|$ [pb] -LogY=0 -# END PLOT - diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.yoda b/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.yoda deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_EL.yoda +++ /dev/null @@ -1,195 +0,0 @@ -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d03-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d03-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e+01 5.000000e+00 5.000000e+00 1.963360e-01 2.276700e-02 2.244275e-02 -4.000000e+01 1.000000e+01 1.000000e+01 9.376400e-02 7.448250e-03 8.162343e-03 -6.250000e+01 1.250000e+01 1.250000e+01 3.512600e-02 3.307914e-03 3.085385e-03 -9.250000e+01 1.750000e+01 1.750000e+01 1.184000e-02 1.431501e-03 1.381697e-03 -1.550000e+02 4.500000e+01 4.500000e+01 2.142000e-03 2.771016e-04 2.902536e-04 -3.500000e+02 1.500000e+02 1.500000e+02 1.010000e-04 2.603186e-05 2.864288e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d05-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d05-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 2.995969e+00 2.502050e-01 2.540329e-01 -3.000000e-01 1.000000e-01 1.000000e-01 2.935592e+00 2.423500e-01 2.455084e-01 -5.000000e-01 1.000000e-01 1.000000e-01 3.036675e+00 2.384834e-01 2.518186e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.706656e+00 2.298820e-01 2.250835e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.540045e+00 2.000630e-01 2.046099e-01 -1.400000e+00 2.000000e-01 2.000000e-01 2.136394e+00 1.970717e-01 1.930612e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.637068e+00 1.729879e-01 1.748040e-01 -2.200000e+00 2.000000e-01 2.000000e-01 1.212090e+00 1.527242e-01 1.494511e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d07-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d07-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 4.328249e+00 3.673885e-01 3.584052e-01 -3.000000e-01 1.000000e-01 1.000000e-01 4.075786e+00 3.404440e-01 3.298406e-01 -5.000000e-01 1.000000e-01 1.000000e-01 4.008528e+00 3.269278e-01 3.180307e-01 -7.000000e-01 1.000000e-01 1.000000e-01 3.789802e+00 3.287297e-01 3.308358e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.781049e+00 2.305907e-01 2.266350e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.769883e+00 1.623392e-01 1.639750e-01 -1.800000e+00 2.000000e-01 2.000000e-01 6.896830e-01 9.141849e-02 9.262597e-02 -2.250000e+00 2.500000e-01 2.500000e-01 8.796800e-02 2.147261e-02 2.042289e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d09-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d09-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 2.589466e+00 2.162130e-01 2.166746e-01 -3.000000e-01 1.000000e-01 1.000000e-01 2.561052e+00 2.186084e-01 2.217778e-01 -5.000000e-01 1.000000e-01 1.000000e-01 2.611447e+00 2.147226e-01 2.156454e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.276628e+00 2.022451e-01 2.138480e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.151346e+00 1.772141e-01 1.790277e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.465778e+00 1.142017e-01 1.190447e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.132133e+00 9.573334e-02 9.652587e-02 -2.500000e+00 5.000000e-01 5.000000e-01 5.162350e-01 4.483444e-02 4.576047e-02 -4.000000e+00 1.000000e+00 1.000000e+00 5.700800e-02 8.426920e-03 8.709304e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d11-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d11-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 2.587160e-01 3.447302e-02 3.659046e-02 -7.500000e-01 2.500000e-01 2.500000e-01 3.212990e-01 4.080958e-02 4.336257e-02 -1.250000e+00 2.500000e-01 2.500000e-01 4.289970e-01 5.334013e-02 5.373434e-02 -1.750000e+00 2.500000e-01 2.500000e-01 6.804510e-01 6.925938e-02 7.565027e-02 -2.200000e+00 2.000000e-01 2.000000e-01 1.318914e+00 1.200317e-01 1.257260e-01 -2.600000e+00 2.000000e-01 2.000000e-01 2.662429e+00 2.099414e-01 2.241724e-01 -2.900000e+00 1.000000e-01 1.000000e-01 5.325996e+00 3.725963e-01 3.901615e-01 -3.070795e+00 7.079500e-02 7.079500e-02 7.152546e+00 5.176003e-01 5.388911e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d13-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d13-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -5.000000e-01 5.000000e-01 5.000000e-01 1.181740e-01 1.480873e-02 1.419724e-02 -1.250000e+00 2.500000e-01 2.500000e-01 2.911160e-01 3.823580e-02 3.832683e-02 -1.750000e+00 2.500000e-01 2.500000e-01 4.790910e-01 5.372285e-02 5.427983e-02 -2.250000e+00 2.500000e-01 2.500000e-01 1.030053e+00 9.660651e-02 9.438799e-02 -2.750000e+00 2.500000e-01 2.500000e-01 2.775920e+00 2.106793e-01 2.101520e-01 -3.250000e+00 2.500000e-01 2.500000e-01 3.315635e+00 2.279009e-01 2.329769e-01 -3.750000e+00 2.500000e-01 2.500000e-01 6.891590e-01 5.657697e-02 5.652066e-02 -4.250000e+00 2.500000e-01 2.500000e-01 1.945390e-01 2.980817e-02 3.157319e-02 -5.250000e+00 7.500000e-01 7.500000e-01 1.418100e-02 4.237419e-03 4.300102e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d15-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d15-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e+01 1.000000e+01 1.000000e+01 3.810300e-02 4.938622e-03 4.374931e-03 -2.500000e+01 5.000000e+00 5.000000e+00 7.765700e-02 6.873627e-03 7.200044e-03 -3.500000e+01 5.000000e+00 5.000000e+00 8.823600e-02 7.052618e-03 7.271428e-03 -5.000000e+01 1.000000e+01 1.000000e+01 5.610200e-02 4.085659e-03 4.170081e-03 -7.000000e+01 1.000000e+01 1.000000e+01 3.169400e-02 2.216888e-03 2.239501e-03 -9.500000e+01 1.500000e+01 1.500000e+01 1.305400e-02 1.126754e-03 1.129080e-03 -1.550000e+02 4.500000e+01 4.500000e+01 2.612000e-03 2.114341e-04 2.163168e-04 -3.500000e+02 1.500000e+02 1.500000e+02 1.430000e-04 1.989508e-05 2.053952e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d17-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d17-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 3.077631e+00 2.572668e-01 2.476485e-01 -3.000000e-01 1.000000e-01 1.000000e-01 3.135388e+00 2.621344e-01 2.638591e-01 -5.000000e-01 1.000000e-01 1.000000e-01 3.087059e+00 2.657965e-01 2.618163e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.803850e+00 2.339577e-01 2.339577e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.543685e+00 2.042446e-01 2.093012e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.940420e+00 1.609942e-01 1.649637e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.107935e+00 1.227430e-01 1.210094e-01 -2.250000e+00 2.500000e-01 2.500000e-01 3.325340e-01 4.542255e-02 4.484398e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d21-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d21-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -7.750000e-01 3.750000e-01 3.750000e-01 1.370410e-01 1.880922e-02 2.362253e-02 -1.525000e+00 3.750000e-01 3.750000e-01 1.157130e-01 2.117024e-02 2.234155e-02 -2.150000e+00 2.500000e-01 2.500000e-01 1.515250e-01 3.111729e-02 3.396422e-02 -2.600000e+00 2.000000e-01 2.000000e-01 1.779190e-01 3.396883e-02 3.885872e-02 -3.000000e+00 2.000000e-01 2.000000e-01 2.313090e-01 4.204911e-02 4.606473e-02 -4.100000e+00 9.000000e-01 9.000000e-01 5.972600e-02 9.801044e-03 1.013776e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d23-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d23-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.750000e+01 1.750000e+01 1.750000e+01 2.460000e-03 3.850419e-04 4.387362e-04 -6.500000e+01 2.000000e+01 2.000000e+01 3.910000e-03 6.693157e-04 7.285736e-04 -1.000000e+02 1.500000e+01 1.500000e+01 3.441000e-03 5.900897e-04 6.312959e-04 -1.400000e+02 2.500000e+01 2.500000e+01 2.020000e-03 3.310656e-04 4.244458e-04 -2.575000e+02 9.250000e+01 9.250000e+01 4.760000e-04 9.232468e-05 1.014823e-04 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d25-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d25-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e+01 1.000000e+01 1.000000e+01 3.396000e-03 7.842258e-04 8.062115e-04 -3.000000e+01 1.000000e+01 1.000000e+01 6.110000e-03 1.029420e-03 1.120645e-03 -5.000000e+01 1.000000e+01 1.000000e+01 5.461000e-03 1.041116e-03 1.139103e-03 -7.000000e+01 1.000000e+01 1.000000e+01 5.774000e-03 8.597889e-04 1.006868e-03 -9.500000e+01 1.500000e+01 1.500000e+01 2.199000e-03 4.141261e-04 4.620269e-04 -1.800000e+02 7.000000e+01 7.000000e+01 3.940000e-04 6.630524e-05 7.461745e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_EL/d27-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_EL/d27-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 3.430070e-01 6.493028e-02 7.702276e-02 -3.000000e-01 1.000000e-01 1.000000e-01 3.879940e-01 6.551214e-02 7.650250e-02 -5.000000e-01 1.000000e-01 1.000000e-01 4.423160e-01 7.247426e-02 8.206392e-02 -7.000000e-01 1.000000e-01 1.000000e-01 3.227710e-01 5.806269e-02 6.220352e-02 -1.000000e+00 2.000000e-01 2.000000e-01 2.668410e-01 4.834102e-02 4.753502e-02 -1.400000e+00 2.000000e-01 2.000000e-01 1.865570e-01 3.307243e-02 3.622816e-02 -2.050000e+00 4.500000e-01 4.500000e-01 5.196200e-02 1.387059e-02 1.705816e-02 -END YODA_SCATTER2D_V2 diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.info b/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.info deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.info +++ /dev/null @@ -1,52 +0,0 @@ -Name: ATLAS_2014_I1306294_MU -Year: 2014 -Summary: Measurement of Z boson in association with b-jets at 7 TeV in ATLAS (muon channel) -Experiment: ATLAS -Collider: LHC -InspireID: 1306294 -Status: VALIDATED -Authors: - - Gavin Hesketh -References: - - arXiv:1407.3643 [hep-ex] - - JHEP 1410 (2014) 141 -RunInfo: Z+b(b) production in $pp$ collisions at $\sqrt{s} = 7$ TeV, muonic Z-decays -NumEvents: 1000000 -Beams: [p+, p+] -Energies: [7000] -PtCuts: pT(jets) > 20 GeV, pT(leptons) > 20 GeV -NeedsCrossSection: True -Description: - 'Measurements of differential production cross-sections of a $Z$ - boson in association with $b$-jets in $pp$ collisions at $\sqrt{s}=7$ - TeV are reported. The data analysed correspond to an integrated - luminosity of 4.6~fb$^{-1}$ recorded with the ATLAS detector at the - Large Hadron Collider. Particle-level cross-sections are determined - for events with a $Z$ boson decaying into an electron or muon pair, - and containing $b$-jets. For events with at least one $b$-jet, the - cross-section is presented as a function of the $Z$ boson transverse - momentum and rapidity, together with the inclusive $b$-jet - cross-section as a function of $b$-jet transverse momentum, rapidity - and angular separations between the $b$-jet and the $Z$ boson. For - events with at least two $b$-jets, the cross-section is determined as - a function of the invariant mass and angular separation of the two - highest transverse momentum $b$-jets, and as a function of the $Z$ - boson transverse momentum and rapidity. Results are compared to - leading-order and next-to-leading-order perturbative QCD - calculations. - This Rivet module implements the event selection for Z decaying into muons. - If you want to use electronic events, please refer to ATLAS\_2014\_I1306294\_EL' -BibKey: Aad:2014dvb -BibTeX: '@article{Aad:2014dvb, - author = "Aad, Georges and others", - title = "{Measurement of differential production cross-sections - for a $Z$ boson in association with $b$-jets in 7 TeV - proton-proton collisions with the ATLAS detector}", - collaboration = "ATLAS Collaboration", - year = "2014", - eprint = "1407.3643", - archivePrefix = "arXiv", - primaryClass = "hep-ex", - reportNumber = "CERN-PH-EP-2014-118", - SLACcitation = "%%CITATION = ARXIV:1407.3643;%%", -}' diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.plot b/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.plot deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.plot +++ /dev/null @@ -1,85 +0,0 @@ -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d.. -LeftMargin=1.8 -YLabelSep=7.5 -LogY=0 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d03-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$b$-jet $p_\text{T}$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} p_\text{T}} / N_{b\text{-jets}}$ [pb/GeV] -LogX=1 -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d05-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$b$-jet $|y|$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} |y|} / N_{b\text{-jets}}$ [pb] -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d07-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$y_{\text{boost}}(Z,b)$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} y_{\text{boost}}(Z,b)} / N_{b\text{-jets}}$ [pb] -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d09-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta y(Z,b)$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta y(Z,b)} / N_{b\text{-jets}}$ [pb] -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d11-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta\phi(Z,b)$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta\phi(Z,b)} / N_{b\text{-jets}}$ [pb] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d13-x01-y01 -Title=$Z + \ge 1$ b-jet, $p_{T}(Z) > 20$ GeV -XLabel=$\Delta R(Z,b)$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} \Delta R(Z,b)} / N_{b\text{-jets}}$ [pb] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d15-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$p_\text{T}(Z)$ [GeV] -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} p_\text{T}(Z)}$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d17-x01-y01 -Title=$Z + \ge 1$ b-jet -XLabel=$|y(Z)|$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zb)}{\mathrm{d} |y(Z)|}$ [pb] -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d21-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$\Delta R(b,b)$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} \Delta R(b,b)}$ [pb] -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d23-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$m(b,b)$ [GeV] -YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} m(b,b)}$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d25-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$p_\text{T}(Z)$ [GeV] -YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} p_{T}(Z)}$ [pb/GeV] -LogY=1 -# END PLOT - -# BEGIN PLOT /ATLAS_2014_I1306294_MU/d27-x01-y01 -Title=$Z + \ge 2$ b-jets -XLabel=$|y(Z)|$ -YLabel=$\dfrac{\mathrm{d} \sigma(Zbb)}{\mathrm{d} |y(Z)|}$ [pb] -# END PLOT - diff --git a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.yoda b/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.yoda deleted file mode 100644 --- a/analyses/pluginATLAS/ATLAS_2014_I1306294_MU.yoda +++ /dev/null @@ -1,195 +0,0 @@ -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d03-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d03-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e+01 5.000000e+00 5.000000e+00 1.963360e-01 2.276700e-02 2.244275e-02 -4.000000e+01 1.000000e+01 1.000000e+01 9.376400e-02 7.448250e-03 8.162343e-03 -6.250000e+01 1.250000e+01 1.250000e+01 3.512600e-02 3.307914e-03 3.085385e-03 -9.250000e+01 1.750000e+01 1.750000e+01 1.184000e-02 1.431501e-03 1.381697e-03 -1.550000e+02 4.500000e+01 4.500000e+01 2.142000e-03 2.771016e-04 2.902536e-04 -3.500000e+02 1.500000e+02 1.500000e+02 1.010000e-04 2.603186e-05 2.864288e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d05-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d05-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 2.995969e+00 2.502050e-01 2.540329e-01 -3.000000e-01 1.000000e-01 1.000000e-01 2.935592e+00 2.423500e-01 2.455084e-01 -5.000000e-01 1.000000e-01 1.000000e-01 3.036675e+00 2.384834e-01 2.518186e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.706656e+00 2.298820e-01 2.250835e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.540045e+00 2.000630e-01 2.046099e-01 -1.400000e+00 2.000000e-01 2.000000e-01 2.136394e+00 1.970717e-01 1.930612e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.637068e+00 1.729879e-01 1.748040e-01 -2.200000e+00 2.000000e-01 2.000000e-01 1.212090e+00 1.527242e-01 1.494511e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d07-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d07-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 4.328249e+00 3.673885e-01 3.584052e-01 -3.000000e-01 1.000000e-01 1.000000e-01 4.075786e+00 3.404440e-01 3.298406e-01 -5.000000e-01 1.000000e-01 1.000000e-01 4.008528e+00 3.269278e-01 3.180307e-01 -7.000000e-01 1.000000e-01 1.000000e-01 3.789802e+00 3.287297e-01 3.308358e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.781049e+00 2.305907e-01 2.266350e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.769883e+00 1.623392e-01 1.639750e-01 -1.800000e+00 2.000000e-01 2.000000e-01 6.896830e-01 9.141849e-02 9.262597e-02 -2.250000e+00 2.500000e-01 2.500000e-01 8.796800e-02 2.147261e-02 2.042289e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d09-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d09-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 2.589466e+00 2.162130e-01 2.166746e-01 -3.000000e-01 1.000000e-01 1.000000e-01 2.561052e+00 2.186084e-01 2.217778e-01 -5.000000e-01 1.000000e-01 1.000000e-01 2.611447e+00 2.147226e-01 2.156454e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.276628e+00 2.022451e-01 2.138480e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.151346e+00 1.772141e-01 1.790277e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.465778e+00 1.142017e-01 1.190447e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.132133e+00 9.573334e-02 9.652587e-02 -2.500000e+00 5.000000e-01 5.000000e-01 5.162350e-01 4.483444e-02 4.576047e-02 -4.000000e+00 1.000000e+00 1.000000e+00 5.700800e-02 8.426920e-03 8.709304e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d11-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d11-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.500000e-01 2.500000e-01 2.500000e-01 2.587160e-01 3.447302e-02 3.659046e-02 -7.500000e-01 2.500000e-01 2.500000e-01 3.212990e-01 4.080958e-02 4.336257e-02 -1.250000e+00 2.500000e-01 2.500000e-01 4.289970e-01 5.334013e-02 5.373434e-02 -1.750000e+00 2.500000e-01 2.500000e-01 6.804510e-01 6.925938e-02 7.565027e-02 -2.200000e+00 2.000000e-01 2.000000e-01 1.318914e+00 1.200317e-01 1.257260e-01 -2.600000e+00 2.000000e-01 2.000000e-01 2.662429e+00 2.099414e-01 2.241724e-01 -2.900000e+00 1.000000e-01 1.000000e-01 5.325996e+00 3.725963e-01 3.901615e-01 -3.070795e+00 7.079500e-02 7.079500e-02 7.152546e+00 5.176003e-01 5.388911e-01 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d13-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d13-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -5.000000e-01 5.000000e-01 5.000000e-01 1.181740e-01 1.480873e-02 1.419724e-02 -1.250000e+00 2.500000e-01 2.500000e-01 2.911160e-01 3.823580e-02 3.832683e-02 -1.750000e+00 2.500000e-01 2.500000e-01 4.790910e-01 5.372285e-02 5.427983e-02 -2.250000e+00 2.500000e-01 2.500000e-01 1.030053e+00 9.660651e-02 9.438799e-02 -2.750000e+00 2.500000e-01 2.500000e-01 2.775920e+00 2.106793e-01 2.101520e-01 -3.250000e+00 2.500000e-01 2.500000e-01 3.315635e+00 2.279009e-01 2.329769e-01 -3.750000e+00 2.500000e-01 2.500000e-01 6.891590e-01 5.657697e-02 5.652066e-02 -4.250000e+00 2.500000e-01 2.500000e-01 1.945390e-01 2.980817e-02 3.157319e-02 -5.250000e+00 7.500000e-01 7.500000e-01 1.418100e-02 4.237419e-03 4.300102e-03 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d15-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d15-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e+01 1.000000e+01 1.000000e+01 3.810300e-02 4.938622e-03 4.374931e-03 -2.500000e+01 5.000000e+00 5.000000e+00 7.765700e-02 6.873627e-03 7.200044e-03 -3.500000e+01 5.000000e+00 5.000000e+00 8.823600e-02 7.052618e-03 7.271428e-03 -5.000000e+01 1.000000e+01 1.000000e+01 5.610200e-02 4.085659e-03 4.170081e-03 -7.000000e+01 1.000000e+01 1.000000e+01 3.169400e-02 2.216888e-03 2.239501e-03 -9.500000e+01 1.500000e+01 1.500000e+01 1.305400e-02 1.126754e-03 1.129080e-03 -1.550000e+02 4.500000e+01 4.500000e+01 2.612000e-03 2.114341e-04 2.163168e-04 -3.500000e+02 1.500000e+02 1.500000e+02 1.430000e-04 1.989508e-05 2.053952e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d17-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d17-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 3.077631e+00 2.572668e-01 2.476485e-01 -3.000000e-01 1.000000e-01 1.000000e-01 3.135388e+00 2.621344e-01 2.638591e-01 -5.000000e-01 1.000000e-01 1.000000e-01 3.087059e+00 2.657965e-01 2.618163e-01 -7.000000e-01 1.000000e-01 1.000000e-01 2.803850e+00 2.339577e-01 2.339577e-01 -1.000000e+00 2.000000e-01 2.000000e-01 2.543685e+00 2.042446e-01 2.093012e-01 -1.400000e+00 2.000000e-01 2.000000e-01 1.940420e+00 1.609942e-01 1.649637e-01 -1.800000e+00 2.000000e-01 2.000000e-01 1.107935e+00 1.227430e-01 1.210094e-01 -2.250000e+00 2.500000e-01 2.500000e-01 3.325340e-01 4.542255e-02 4.484398e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d21-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d21-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -7.750000e-01 3.750000e-01 3.750000e-01 1.370410e-01 1.880922e-02 2.362253e-02 -1.525000e+00 3.750000e-01 3.750000e-01 1.157130e-01 2.117024e-02 2.234155e-02 -2.150000e+00 2.500000e-01 2.500000e-01 1.515250e-01 3.111729e-02 3.396422e-02 -2.600000e+00 2.000000e-01 2.000000e-01 1.779190e-01 3.396883e-02 3.885872e-02 -3.000000e+00 2.000000e-01 2.000000e-01 2.313090e-01 4.204911e-02 4.606473e-02 -4.100000e+00 9.000000e-01 9.000000e-01 5.972600e-02 9.801044e-03 1.013776e-02 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d23-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d23-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -2.750000e+01 1.750000e+01 1.750000e+01 2.460000e-03 3.850419e-04 4.387362e-04 -6.500000e+01 2.000000e+01 2.000000e+01 3.910000e-03 6.693157e-04 7.285736e-04 -1.000000e+02 1.500000e+01 1.500000e+01 3.441000e-03 5.900897e-04 6.312959e-04 -1.400000e+02 2.500000e+01 2.500000e+01 2.020000e-03 3.310656e-04 4.244458e-04 -2.575000e+02 9.250000e+01 9.250000e+01 4.760000e-04 9.232468e-05 1.014823e-04 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d25-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d25-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e+01 1.000000e+01 1.000000e+01 3.396000e-03 7.842258e-04 8.062115e-04 -3.000000e+01 1.000000e+01 1.000000e+01 6.110000e-03 1.029420e-03 1.120645e-03 -5.000000e+01 1.000000e+01 1.000000e+01 5.461000e-03 1.041116e-03 1.139103e-03 -7.000000e+01 1.000000e+01 1.000000e+01 5.774000e-03 8.597889e-04 1.006868e-03 -9.500000e+01 1.500000e+01 1.500000e+01 2.199000e-03 4.141261e-04 4.620269e-04 -1.800000e+02 7.000000e+01 7.000000e+01 3.940000e-04 6.630524e-05 7.461745e-05 -END YODA_SCATTER2D_V2 - -BEGIN YODA_SCATTER2D_V2 /REF/ATLAS_2014_I1306294_MU/d27-x01-y01 -IsRef: 1 -Path: /REF/ATLAS_2014_I1306294_MU/d27-x01-y01 -Title: ~ -Type: Scatter2D ---- -# xval xerr- xerr+ yval yerr- yerr+ -1.000000e-01 1.000000e-01 1.000000e-01 3.430070e-01 6.493028e-02 7.702276e-02 -3.000000e-01 1.000000e-01 1.000000e-01 3.879940e-01 6.551214e-02 7.650250e-02 -5.000000e-01 1.000000e-01 1.000000e-01 4.423160e-01 7.247426e-02 8.206392e-02 -7.000000e-01 1.000000e-01 1.000000e-01 3.227710e-01 5.806269e-02 6.220352e-02 -1.000000e+00 2.000000e-01 2.000000e-01 2.668410e-01 4.834102e-02 4.753502e-02 -1.400000e+00 2.000000e-01 2.000000e-01 1.865570e-01 3.307243e-02 3.622816e-02 -2.050000e+00 4.500000e-01 4.500000e-01 5.196200e-02 1.387059e-02 1.705816e-02 -END YODA_SCATTER2D_V2