Rivet Analyses Reference

CMS_2016_I1487277

Measurement and QCD analysis of double-differential inclusive jet cross sections in $pp$ collisions at $\sqrt{s} = 8 \text{TeV}$ and cross-section ratios to 2.76 and 7 TeV
Experiment: CMS (LHC)
Inspire ID: 1487277
Status: VALIDATED
Authors:
  • Hannes Jung
References:
  • DOI:10.1007/JHEP03(2017)156
  • arXiv: 1609.05331
  • CMS-SMP-14-001
Beams: p+ p+
Beam energies: (4000.0, 4000.0) GeV
Run details:
  • QCD at $\sqrt{s} = 8 \text{TeV}$

A measurement of the double-differential inclusive jet cross section as a function of the jet transverse momentum $\pt$ and the absolute jet rapidity $\abs{y}$ is presented. Data from LHC proton-proton collisions at $\sqrt{s}=8\text{TeV}$, corresponding to an integrated luminosity of 19.7 fb^{-1}, have been collected with the CMS detector. Jets are reconstructed using the anti-$\kt$ clustering algorithm with a size parameter of 0.7 in a phase space region covering jet $\pt$ from $74\text{GeV}$ up to $2.5\text{TeV}$ and jet absolute rapidity up to $\abs{y}=3.0$. The low-$\pt$ jet range between 21 and $74\text{GeV}$ is also studied up to $\abs{y}=4.7$, using a dedicated data sample corresponding to an integrated luminosity of 5.6\pbinv. The measured jet cross section is corrected for detector effects and compared with the predictions from perturbative QCD at next-to-leading order (NLO) using various sets of parton distribution functions (PDF). Cross section ratios to the corresponding measurements performed at 2.76 and $7\text{TeV}$ are presented. From the measured double-differential jet cross section, the value of the strong coupling constant evaluated at the $Z$ mass is $\alpha_\mathrm{S}(M_{Z}) = 0.1164^{+0.0060}_{-0.0043}$, where the errors include the PDF, scale, nonperturbative effects and experimental uncertainties, using the CT10 NLO PDFs. Improved constraints on PDFs based on the inclusive jet cross section measurement are presented.

Source code: CMS_2016_I1487277.cc
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/FastJets.hh"
#include "Rivet/Tools/BinnedHistogram.hh"

namespace Rivet {

  // Inclusive jet pT
  class CMS_2016_I1487277 : public Analysis {
  public:

    // Constructor
    CMS_2016_I1487277() : Analysis("CMS_2016_I1487277") {}


    // Book histograms and initialize projections:
    void init() {
      const FinalState fs;

      // Initialize the projectors:
      declare(FastJets(fs, FastJets::ANTIKT, 0.7),"Jets");

      // Book histograms:

      
      {Histo1DPtr tmp; _hist_sigma.add(0.0, 0.5, book(tmp, 1, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(0.5, 1.0, book(tmp, 2, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(1.0, 1.5, book(tmp, 3, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(1.5, 2.0, book(tmp, 4, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(2.0, 2.5, book(tmp, 5, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(2.5, 3.0, book(tmp, 6, 1, 1));}
      {Histo1DPtr tmp; _hist_sigma.add(3.2, 4.7, book(tmp, 7, 1, 1));}

    }

    // Analysis
    void analyze(const Event &event) {
      const FastJets &fj = applyProjection<FastJets>(event,"Jets");
      const Jets& jets = fj.jets(Cuts::ptIn(18*GeV, 5000.0*GeV) && Cuts::absrap < 5.2);

      // Fill the relevant histograms:
      for(const Jet &j : jets) {
        _hist_sigma.fill(j.absrap(), j.pT());
      }
    }

    // Finalize
    void finalize() {
    _hist_sigma.scale(crossSection()/sumOfWeights()/2.0, this);
    }

  private:
    BinnedHistogram _hist_sigma;
    Histo1DPtr _hist_ptbins_y1;
    Histo1DPtr _hist_ptbins_y2;
    Histo1DPtr _hist_ptbins_y3;
    Histo1DPtr _hist_ptbins_y4;
    Histo1DPtr _hist_ptbins_y5;
    Histo1DPtr _hist_ptbins_y6;
    Histo1DPtr _hist_ptbins_y7;

  };

  // This global object acts as a hook for the plugin system.
  RIVET_DECLARE_PLUGIN(CMS_2016_I1487277);

}