Rivet analyses
Measurement of differential Z/γ* pT
Experiment: D0 (Tevatron Run 2)
Inspire ID: 856972
Status: VALIDATED
Authors: - Flavia Dias - Gavin Hesketh - Frank Siegert
References: - arXiv: 1006.0618
Beams: p- p+
Beam energies: (980.0, 980.0)GeV
Run details: - pp̄ → μ+μ− + jets at 1960~GeV. Needs mass cut on lepton pair to avoid photon singularity, looser than 65 < mμμ < 115 GeV. Restrict Z/γ* mass range to roughly 50 GeV/c2 < mμμ < 120 GeV/c2 for efficiency. Weighted events and kinematic sampling enhancement can help to fill the pT tail.
Cross section as a function of pT of the Z boson decaying into muons in pp̄ collisions at $\sqrt{s}$ = 1.96 TeV, based on an integrated luminosity of 0.97 fb−1.
Source
code:D0_2010_I856972.cc
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/DileptonFinder.hh"
namespace Rivet {
/// @brief Measurement of Z(->muon muon) pT differential cross-section
///
/// @author Flavia Dias
class D0_2010_I856972 : public Analysis {
public:
RIVET_DEFAULT_ANALYSIS_CTOR(D0_2010_I856972);
///@name Analysis methods
/// @{
/// Add projections and book histograms
void init() {
Cut cut = Cuts::abseta < 1.7 && Cuts::pT > 15*GeV;
DileptonFinder zfinder(91.2*GeV, 0.2, cut && Cuts::abspid == PID::MUON, Cuts::massIn(65*GeV, 115*GeV));
declare(zfinder, "DileptonFinder");
book(_h_Z_pT_normalised ,1, 1, 1);
book(_h_Z_pT_xs ,2, 1, 1);
}
// Do the analysis
void analyze(const Event& e) {
const DileptonFinder& zfinder = apply<DileptonFinder>(e, "DileptonFinder");
if (zfinder.bosons().size()==1) {
double ZpT = zfinder.bosons()[0].pT()/GeV;
_h_Z_pT_normalised->fill(ZpT);
_h_Z_pT_xs->fill(ZpT);
}
}
/// Finalize
void finalize() {
normalize(_h_Z_pT_normalised);
scale(_h_Z_pT_xs, crossSection()/picobarn/sumOfWeights());
}
/// @}
private:
/// @name Histogram
Histo1DPtr _h_Z_pT_normalised;
Histo1DPtr _h_Z_pT_xs;
};
RIVET_DECLARE_ALIASED_PLUGIN(D0_2010_I856972, D0_2010_S8671338);
}Aliases: - D0_2010_S8671338