diff --git a/analyses/pluginATLAS/ATLAS_2016_I1424838.cc b/analyses/pluginATLAS/ATLAS_2016_I1424838.cc --- a/analyses/pluginATLAS/ATLAS_2016_I1424838.cc +++ b/analyses/pluginATLAS/ATLAS_2016_I1424838.cc @@ -1,219 +1,219 @@ #include "Rivet/Analysis.hh" #include "Rivet/Projections/Thrust.hh" #include "Rivet/Projections/ZFinder.hh" #include "Rivet/Projections/FParameter.hh" #include "Rivet/Projections/Spherocity.hh" #include "Rivet/Projections/ChargedFinalState.hh" #include "Rivet/Projections/VetoedFinalState.hh" namespace Rivet { /// @brief Event shapes in leptonic $Z$-events class ATLAS_2016_I1424838 : public Analysis { public: /// Constructor DEFAULT_RIVET_ANALYSIS_CTOR(ATLAS_2016_I1424838); /// Book histograms and initialise projections before the run void init() { // Charged particles inside acceptance region const ChargedFinalState cfs(Cuts::abseta < 2.5 && Cuts::pT > 500*MeV); declare(cfs, "CFS"); // ZFinders ZFinder zfinder(cfs, Cuts::abseta<2.4 && Cuts::pT>20.0*GeV, PID::ELECTRON, 66*GeV, 116*GeV, 0.1, ZFinder::CLUSTERNODECAY); declare(zfinder, "ZFinder"); ZFinder zfinder_mu(cfs, Cuts::abseta<2.4 && Cuts::pT>20.0*GeV, PID::MUON, 66*GeV, 116*GeV, 0.1, ZFinder::CLUSTERNODECAY); declare(zfinder_mu, "ZFinderMu"); // This CFS only contains charged particles inside the acceptance excluding the leptons VetoedFinalState remfs(cfs); remfs.addVetoOnThisFinalState(zfinder); remfs.addVetoOnThisFinalState(zfinder_mu); declare(remfs, "REMFS"); const FParameter fparam(remfs); declare(fparam, "FParameter_"); const Spherocity sphero(remfs); declare(sphero, "Spherocity_"); // Booking of ES histos for (size_t alg = 0; alg < 5; ++alg) { // Book the inclusive histograms size_t offset = alg * 6; _h_Elec_Ntrk[alg] = bookHisto1D(offset + 1, 1, 1); _h_Elec_SumPt[alg] = bookHisto1D(offset + 2, 1, 1); _h_Elec_Beamthrust[alg] = bookHisto1D(offset + 3, 1, 1); _h_Elec_Thrust[alg] = bookHisto1D(offset + 4, 1, 1); _h_Elec_Spherocity[alg] = bookHisto1D(offset + 5, 1, 1); _h_Elec_FParam[alg] = bookHisto1D(offset + 6, 1, 1); _h_Muon_Ntrk[alg] = bookHisto1D(30 + offset + 1, 1, 1); _h_Muon_SumPt[alg] = bookHisto1D(30 + offset + 2, 1, 1); _h_Muon_Beamthrust[alg] = bookHisto1D(30 + offset + 3, 1, 1); _h_Muon_Thrust[alg] = bookHisto1D(30 + offset + 4, 1, 1); _h_Muon_Spherocity[alg] = bookHisto1D(30 + offset + 5, 1, 1); _h_Muon_FParam[alg] = bookHisto1D(30 + offset + 6, 1, 1); } } /// Perform the per-event analysis void analyze(const Event& event) { // Get generator weight const double weight = event.weight(); // Check for Z boson in event const ZFinder& zfinder = apply(event, "ZFinder"); MSG_DEBUG("Num e+ e- pairs found = " << zfinder.bosons().size()); const bool isElec = zfinder.bosons().size() == 1; const ZFinder& zfinder_mu = apply(event, "ZFinderMu"); MSG_DEBUG("Num mu+ mu- pairs found = " << zfinder_mu.bosons().size()); const bool isMuon = zfinder_mu.bosons().size() == 1; // Only accept events with exactly two electrons or exactly two muons if (isElec && isMuon) vetoEvent; if (!(isElec || isMuon)) vetoEvent; // This determines the Zpt phase-space double zpT = -1000; if (isElec) zpT = zfinder.bosons()[0].pT(); if (isMuon) zpT = zfinder_mu.bosons()[0].pT(); unsigned int alg = 4; //< for > 25 GeV if (zpT < 6*GeV) alg = 1; else if (inRange(zpT/GeV, 6, 12)) alg = 2; else if (inRange(zpT/GeV, 12, 25)) alg = 3; assert(alg < 5); assert(alg > 0); // All charged particles within |eta|<2.5 except the leptons from Z-decay const VetoedFinalState& remfs = apply(event, "REMFS"); // sumPt and Beamthrust (the latter will only be filled if the min Nch criterion is met) // and Thrust preparation double sumPt = 0.0, beamThrust = 0.0; vector momenta; for (const Particle& p : remfs.particles()) { const double pT = p.pT(); sumPt += pT; beamThrust += pT*exp(-p.abseta()); const Vector3 mom = p.mom().pTvec(); momenta.push_back(mom); } // Fill inclusive histos if (isElec) { _h_Elec_Ntrk[alg] ->fill(remfs.size(), weight); _h_Elec_Ntrk[0] ->fill(remfs.size(), weight); _h_Elec_SumPt[alg] ->fill(sumPt, weight); _h_Elec_SumPt[0] ->fill(sumPt, weight); } if (isMuon) { _h_Muon_Ntrk[alg] ->fill(remfs.size(), weight); _h_Muon_Ntrk[0] ->fill(remfs.size(), weight); _h_Muon_SumPt[alg] ->fill(sumPt, weight); _h_Muon_SumPt[0] ->fill(sumPt, weight); } // Skip event shape calculation if we don't match the minimum Nch criterion if (remfs.size() >=2) { // Eventshape calculations // Calculate transverse Thrust using all charged FS particles except the lepton // This is copied/inspired from the CMS_6000011_S8957746 analysis if (momenta.size() == 2) { // We need to use a ghost so that Thrust.calc() doesn't return 1. momenta.push_back(Vector3(1e-10*MeV, 0., 0.)); } Thrust thrustC; thrustC.calc(momenta); double thrust = thrustC.thrust(); // F-Parameter const FParameter& fparam = apply(event, "FParameter_"); // Spherocity const Spherocity& sphero = apply(event, "Spherocity_"); // Histos differential in NMPI // Fill inclusive histos if (isElec) { _h_Elec_Thrust[alg] ->fill(thrust, weight); _h_Elec_Thrust[0] ->fill(thrust, weight); _h_Elec_FParam[alg] ->fill(fparam.F(), weight); _h_Elec_FParam[0] ->fill(fparam.F(), weight); _h_Elec_Spherocity[alg] ->fill(sphero.spherocity(), weight); _h_Elec_Spherocity[0] ->fill(sphero.spherocity(), weight); _h_Elec_Beamthrust[alg] ->fill(beamThrust/GeV, weight); _h_Elec_Beamthrust[0] ->fill(beamThrust/GeV, weight); } if (isMuon) { _h_Muon_Thrust[alg] ->fill(thrust, weight); _h_Muon_Thrust[0] ->fill(thrust, weight); _h_Muon_FParam[alg] ->fill(fparam.F(), weight); _h_Muon_FParam[0] ->fill(fparam.F(), weight); _h_Muon_Spherocity[alg] ->fill(sphero.spherocity(), weight); _h_Muon_Spherocity[0] ->fill(sphero.spherocity(), weight); _h_Muon_Beamthrust[alg] ->fill(beamThrust/GeV, weight); _h_Muon_Beamthrust[0] ->fill(beamThrust/GeV, weight); } } } /// Normalise histograms etc., after the run void finalize() { for (size_t alg = 0; alg < 5; ++alg) { - normalize(_h_Elec_Ntrk[alg]); - normalize(_h_Elec_SumPt[alg]); - normalize(_h_Elec_Beamthrust[alg]); + normalize(_h_Elec_Ntrk[alg],100.); + normalize(_h_Elec_SumPt[alg],100.); + normalize(_h_Elec_Beamthrust[alg],100.); normalize(_h_Elec_Thrust[alg]); normalize(_h_Elec_FParam[alg]); normalize(_h_Elec_Spherocity[alg]); - normalize(_h_Muon_Ntrk[alg]); - normalize(_h_Muon_SumPt[alg]); - normalize(_h_Muon_Beamthrust[alg]); + normalize(_h_Muon_Ntrk[alg],100.); + normalize(_h_Muon_SumPt[alg],100.); + normalize(_h_Muon_Beamthrust[alg],100.); normalize(_h_Muon_Thrust[alg]); normalize(_h_Muon_FParam[alg]); normalize(_h_Muon_Spherocity[alg]); } } private: // Convenience method for histogram booking string _mkHistoName(int idDS, int channel, int i) { return "d0" + toString(idDS) + "-x0" + toString(channel) + "-y0" + toString(i+1); } Histo1DPtr _h_Elec_Ntrk[5]; Histo1DPtr _h_Elec_SumPt[5]; Histo1DPtr _h_Elec_Beamthrust[5]; Histo1DPtr _h_Elec_Thrust[5]; Histo1DPtr _h_Elec_FParam[5]; Histo1DPtr _h_Elec_Spherocity[5]; Histo1DPtr _h_Muon_Ntrk[5]; Histo1DPtr _h_Muon_SumPt[5]; Histo1DPtr _h_Muon_Beamthrust[5]; Histo1DPtr _h_Muon_Thrust[5]; Histo1DPtr _h_Muon_FParam[5]; Histo1DPtr _h_Muon_Spherocity[5]; }; DECLARE_RIVET_PLUGIN(ATLAS_2016_I1424838); } diff --git a/analyses/pluginATLAS/ATLAS_2016_I1424838.plot b/analyses/pluginATLAS/ATLAS_2016_I1424838.plot --- a/analyses/pluginATLAS/ATLAS_2016_I1424838.plot +++ b/analyses/pluginATLAS/ATLAS_2016_I1424838.plot @@ -1,434 +1,434 @@ # BEGIN PLOT /ATLAS_2016_I1424838/d01 Title=$N_\text{ch}$, $Z\to e^+e^-$ XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch} \times 100$ LogY=0 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d07 Title=$N_\text{ch}$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d13 Title=$N_\text{ch}$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d19 Title=$N_\text{ch}$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d25 Title=$N_\text{ch}$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d31 Title=$N_\text{ch}$, $Z\to \mu^+\mu^-$ XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d37 Title=$N_\text{ch}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d43 Title=$N_\text{ch}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d49 Title=$N_\text{ch}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d55 Title=$N_\text{ch}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$N_\text{ch}$ -YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}$ +YLabel=$1/N~ \text{d}N /\text{d}N_\text{ch}\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d02 Title=$\sum p_\perp$, $Z\to e^+e^-$ XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d08 Title=$\sum p_\perp$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\sum p_\perp$ -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d14 Title=$\sum p_\perp$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d20 Title=$\sum p_\perp$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d26 Title=$\sum p_\perp$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d32 Title=$\sum p_\perp$, $Z\to \mu^+\mu^-$ XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d38 Title=$\sum p_\perp$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d44 Title=$\sum p_\perp$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d50 Title=$\sum p_\perp$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d56 Title=$\sum p_\perp$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$\sum p_\perp$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp$ +YLabel=$1/N~ \text{d}N /\text{d}\sum p_\perp\times 100$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d03 Title=$\mathcal{B}$, $Z\to e^+e^-$ XLabel=$\mathcal{B}$~[GeV] YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d09 Title=$\mathcal{B}$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{B}$~[GeV] YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d15 Title=$\mathcal{B}$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d21 Title=$\mathcal{B}$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d27 Title=$\mathcal{B}$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d33 Title=$\mathcal{B}$, $Z\to \mu^+\mu^-$ XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d39 Title=$\mathcal{B}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d45 Title=$\mathcal{B}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d51 Title=$\mathcal{B}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d57 Title=$\mathcal{B}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{B}$~[GeV] -YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] +YLabel=$1/N~ \text{d}N /\text{d}\mathcal{B}$~[GeV] $\times 100$ XMax=60 LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d04 Title=$\mathcal{T}$, $Z\to e^+e^-$ XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d10 Title=$\mathcal{T}$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d16 Title=$\mathcal{T}$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d22 Title=$\mathcal{T}$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d28 Title=$\mathcal{T}$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d34 Title=$\mathcal{T}$, $Z\to \mu^+\mu^-$ XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d40 Title=$\mathcal{T}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d46 Title=$\mathcal{T}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d52 Title=$\mathcal{T}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d58 Title=$\mathcal{T}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{T}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{T}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d06 Title=$\mathcal{F}$, $Z\to e^+e^-$ XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d12 Title=$\mathcal{F}$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d18 Title=$\mathcal{F}$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d24 Title=$\mathcal{F}$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d30 Title=$\mathcal{F}$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d36 Title=$\mathcal{F}$, $Z\to \mu^+\mu^-$ XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d42 Title=$\mathcal{F}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d48 Title=$\mathcal{F}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d54 Title=$\mathcal{F}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d60 Title=$\mathcal{F}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{F}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{F}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d05 Title=$\mathcal{S}$, $Z\to e^+e^-$ XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d11 Title=$\mathcal{S}$, $Z\to e^+e^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d17 Title=$\mathcal{S}$, $Z\to e^+e^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d23 Title=$\mathcal{S}$, $Z\to e^+e^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d29 Title=$\mathcal{S}$, $Z\to e^+e^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d35 Title=$\mathcal{S}$, $Z\to \mu^+\mu^-$ XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d41 Title=$\mathcal{S}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [0,6)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d47 Title=$\mathcal{S}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [6,12)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d53 Title=$\mathcal{S}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) \in [12,25)$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT # BEGIN PLOT /ATLAS_2016_I1424838/d59 Title=$\mathcal{S}$, $Z\to \mu^+\mu^-$, $p_\perp(Z) > 25$~GeV XLabel=$\mathcal{S}$ YLabel=$1/N~ \text{d}N /\text{d}\mathcal{S}$ LogY=0 # END PLOT