Rivet analyses

Collinear W emissions at 8 TeV

Experiment: ATLAS (LHC)

Inspire ID: 1487726

Status: VALIDATED

Authors: - Marek Schoenherr - Miles Wu - Chris Gutschow

References: - Expt page: ATLAS-STDM-2015-16 - DOI:10.1016/j.physletb.2016.12.005 - arXiv: 1609.07045 - Phys.Lett. B765 (2017) 132-153

Beams: p+ p+

Beam energies: (4000.0, 4000.0)GeV

Run details: - 8 TeV pp → W + jets → μν + jets.

The W boson angular distribution in events with high transverse momentum jets is measured using data collected by the ATLAS experiment from proton-proton collisions at a centre-of-mass energy $\sqrt{s}=8$ TeV at the Large Hadron Collider, corresponding to an integrated luminosity of 20.3 fb−1. The focus is on the contributions to W+jets processes from real W emission, which is achieved by studying events where a muon is observed close to a high transverse momentum jet. At small angular separations, these contributions are expected to be large. Various theoretical models of this process are compared to the data in terms of the absolute cross-section and the angular distributions of the muon from the leptonic W decay.

Source code:ATLAS_2016_I1487726.cc

// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/LeptonFinder.hh"
#include "Rivet/Projections/FastJets.hh"

namespace Rivet {


    /// Collinear W emissions at 8 TeV
    class ATLAS_2016_I1487726 : public Analysis {
    public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(ATLAS_2016_I1487726);


        /// @name Analysis methods
        /// @{

        /// Book histograms and initialise projections before the run
        void init() {

            _mode = 0;
            if ( getOption("LMODE") == "EL" )  _mode = 1;

            // These really should include non-prompt leptons/photons
            FinalState mufs(Cuts::abspid == PID::MUON);
            FinalState elfs(Cuts::abspid == PID::ELECTRON);
            FinalState phs(Cuts::abspid == PID::PHOTON);

            Cut lep_fid = (Cuts::abseta < 2.4 && Cuts::pT >= 25*GeV);
            LeptonFinder dlep(_mode? elfs : mufs, phs, 0.1, lep_fid);
            declare(dlep, "LeptonFinder");

            FastJets fj(FinalState(), JetAlg::ANTIKT, 0.4, JetMuons::NONE, JetInvisibles::NONE);
            declare(fj, "AntiKt4Jets");

            book(h_mu_jet_dr,          2, 1, 1);
            book(h_mu_jet_dr_pt500600, 4, 1, 1);
            book(h_mu_jet_dr_pt650,    5, 1, 1);
        }


        /// Perform the per-event analysis
        void analyze(const Event& event) {

          const DressedLeptons leptons = apply<LeptonFinder>(event, "LeptonFinder").dressedLeptons();
          const Jets jets = apply<FastJets>(event, "AntiKt4Jets").jetsByPt(Cuts::pT >= 100*GeV && Cuts::abseta <= 2.1);

          if (leptons.size() != 1)       vetoEvent;
          if (jets.size() < 1)           vetoEvent;
          if (jets[0].pt() < 500.0*GeV)  vetoEvent;

          // find closest jet to the lepton.
          Jet jet;
          double drmin = 999;
          for (const Jet &j : jets) {
            double dr = deltaR(leptons[0], j);
            if (dr < drmin) {
                drmin = dr;
                jet = j;
            }
          }

          h_mu_jet_dr->fill(drmin);
          if (jets[0].pT() > 650*GeV)  h_mu_jet_dr_pt650->fill(drmin);
          else if (jets[0].pT() > 500*GeV && jets[0].pT() < 600*GeV) {
            h_mu_jet_dr_pt500600->fill(drmin);
          }
        }

        /// Normalise histograms etc., after the run
        void finalize() {
          const double sf = crossSection() / femtobarn / sumOfWeights();
          scale(h_mu_jet_dr, sf);
          scale(h_mu_jet_dr_pt500600, sf);
          scale(h_mu_jet_dr_pt650, sf);
        }

        /// @}

    protected:

        size_t _mode;

    private:

        /// @name Histograms
        /// @{
        Histo1DPtr h_mu_jet_dr;
        Histo1DPtr h_mu_jet_dr_pt500600;
        Histo1DPtr h_mu_jet_dr_pt650;
        /// @}
  };


  RIVET_DECLARE_PLUGIN(ATLAS_2016_I1487726);
}