Rivet Analyses Reference

D0_2009_S8202443

$Z/\gamma^*$ + jet + $X$ cross sections differential in pT(jet 1,2,3)
Experiment: D0 (Tevatron Run 2)
Inspire ID: 815094
Status: VALIDATED
Authors:
  • Frank Siegert
References:Beams: p- p+
Beam energies: (980.0, 980.0) GeV
Run details:
  • $p \bar{p} \to e^+ e^-$ + jets at 1960 GeV. Needs mass cut on lepton pair to avoid photon singularity, looser than $65 < m_{ee} < 115$ GeV.

Cross sections as a function of pT of the three leading jets in $Z/\gamma^{*} (\to e^{+} e^{-})$ + jet + X production in $p \bar{p}$ collisions at $\sqrt{s} = 1.96$ TeV, based on an integrated luminosity of 1.0 fb$^{-1}$.

Source code: D0_2009_S8202443.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
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/ZFinder.hh"
#include "Rivet/Projections/FastJets.hh"

namespace Rivet {


  /// D0 Z + jet + \f$ X \f$ cross-section / \f$ p_\perp \f$ distributions
  class D0_2009_S8202443 : public Analysis {
  public:

    RIVET_DEFAULT_ANALYSIS_CTOR(D0_2009_S8202443);


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

    /// Book histograms
    void init() {
      FinalState fs;
      // Leptons in constrained tracking acceptance
      Cut cuts = (Cuts::abseta < 1.1 || Cuts::absetaIn(1.5, 2.5)) && Cuts::pT > 25*GeV;
      ZFinder zfinder_constrained(fs, cuts, PID::ELECTRON, 65*GeV, 115*GeV, 0.2, ZFinder::ClusterPhotons::NODECAY, ZFinder::AddPhotons::YES);
      declare(zfinder_constrained, "ZFinderConstrained");
      FastJets conefinder_constrained(zfinder_constrained.remainingFinalState(), FastJets::D0ILCONE, 0.5);
      declare(conefinder_constrained, "ConeFinderConstrained");

      // Unconstrained leptons
      ZFinder zfinder(fs, Cuts::open(), PID::ELECTRON, 65*GeV, 115*GeV, 0.2, ZFinder::ClusterPhotons::NODECAY, ZFinder::AddPhotons::YES);
      declare(zfinder, "ZFinder");
      FastJets conefinder(zfinder.remainingFinalState(), FastJets::D0ILCONE, 0.5);
      declare(conefinder, "ConeFinder");

      book(_h_jet1_pT_constrained ,1, 1, 1);
      book(_h_jet2_pT_constrained ,3, 1, 1);
      book(_h_jet3_pT_constrained ,5, 1, 1);
      book(_h_jet1_pT ,2, 1, 1);
      book(_h_jet2_pT ,4, 1, 1);
      book(_h_jet3_pT ,6, 1, 1);

      book(_sum_of_weights,"sum_of_weights");
      book(_sum_of_weights_constrained, "sum_of_weights_constrained");
    }


    // Do the analysis
    void analyze(const Event& e) {
      // Unconstrained electrons
      const ZFinder& zfinder = apply<ZFinder>(e, "ZFinder");
      if (zfinder.bosons().size() == 0) {
        MSG_DEBUG("No unique lepton pair found.");
        vetoEvent;
      }
      _sum_of_weights->fill();
      const Jets jets_cut = apply<JetAlg>(e, "ConeFinder").jetsByPt(Cuts::pT > 20*GeV && Cuts::abseta < 2.5);
      if (jets_cut.size() > 0)
        _h_jet1_pT->fill(jets_cut[0].pT()/GeV);
      if (jets_cut.size() > 1)
        _h_jet2_pT->fill(jets_cut[1].pT()/GeV);
      if (jets_cut.size() > 2)
        _h_jet3_pT->fill(jets_cut[2].pT()/GeV);


      // Constrained electrons
      const ZFinder& zfinder_constrained = apply<ZFinder>(e, "ZFinderConstrained");
      if (zfinder_constrained.bosons().size() == 0) {
        MSG_DEBUG("No unique constrained lepton pair found.");
        return; // Not really a "veto", since if we got this far there is an unconstrained Z
      }
      _sum_of_weights_constrained->fill();
      const Jets& jets_constrained = apply<JetAlg>(e, "ConeFinderConstrained").jetsByPt(20*GeV);
      /// @todo Replace this explicit selection with a Cut
      Jets jets_cut_constrained;
      for (const Jet& j : jets_constrained) {
        if (j.abseta() < 2.5) jets_cut_constrained.push_back(j);
      }
      if (jets_cut_constrained.size() > 0)
        _h_jet1_pT_constrained->fill(jets_cut_constrained[0].pT()/GeV);
      if (jets_cut_constrained.size() > 1)
        _h_jet2_pT_constrained->fill(jets_cut_constrained[1].pT()/GeV);
      if (jets_cut_constrained.size() > 2)
        _h_jet3_pT_constrained->fill(jets_cut_constrained[2].pT()/GeV);
    }


    // Finalize
    void finalize() {
      scale(_h_jet1_pT, 1/ *_sum_of_weights);
      scale(_h_jet2_pT, 1/ *_sum_of_weights);
      scale(_h_jet3_pT, 1/ *_sum_of_weights);
      scale(_h_jet1_pT_constrained, 1/ *_sum_of_weights_constrained);
      scale(_h_jet2_pT_constrained, 1/ *_sum_of_weights_constrained);
      scale(_h_jet3_pT_constrained, 1/ *_sum_of_weights_constrained);
    }

    /// @}


  private:

    /// @name Histograms
    /// @{
    Histo1DPtr _h_jet1_pT;
    Histo1DPtr _h_jet2_pT;
    Histo1DPtr _h_jet3_pT;
    Histo1DPtr _h_jet1_pT_constrained;
    Histo1DPtr _h_jet2_pT_constrained;
    Histo1DPtr _h_jet3_pT_constrained;
    /// @}

    CounterPtr _sum_of_weights, _sum_of_weights_constrained;

  };



  RIVET_DECLARE_ALIASED_PLUGIN(D0_2009_S8202443, D0_2009_I815094);

}