Rivet analyses
Charm hadron differential cross-sections in pT and rapidity at $\sqrt{s} = 13$ TeV
Experiment: LHCB (LHC 13TeV)
Inspire ID: 1396331
Status: VALIDATED
Authors: - Dominik Muller - Patrick Spradlin
References: - JHEP 1603 (2016) 159 JHEP 1609 (2016) 013 JHEP 1705 (2017) 074 - doi 10.1007/JHEP09(2016)013 10.1007/JHEP05(2017)074 10.1007/JHEP03(2016)159 - arXiv 1510.01707 [hep-ex] - LHCB-PAPER-2015-041, CERN-PH-EP-2015-272
Beams: p+ p+
Beam energies: (6500.0, 6500.0)GeV
Run details: - Minimum bias QCD events, proton–proton interactions at $\sqrt{s} = 13$ TeV.
Measurements of differential production cross-sections with respect to transverse momentum, dσ(Hc + c.c.)/dpT, for charm hadron species Hc ∈ {D0, D+, D*(2010)+, Ds+} in proton–proton collisions at center-of-mass energy $\sqrt{s}= 13$ TeV. The differential cross-sections are measured in bins of hadron transverse momentum (pT) and rapidity (y) with respect to the beam axis in the region 0 < pT < 15 GeV/c and 2.0 < y < 4.5, where pT and y are measured in the proton–proton CM frame. In this analysis code, it is assumed that the event coordinate system is in the proton–proton CM frame with the z-axis corresponding to the proton–proton collision axis (as usual). Contributions of charm hadrons from the decays of b-hadrons and other particles with comparably large mean lifetimes have been removed in the measurement. In this analysis code, this is implemented by counting only charm hadrons that do not have an ancestor that contains a b quark.
Source
code:LHCB_2015_I1396331.cc
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/UnstableParticles.hh"
namespace Rivet {
/// LHCb prompt charm hadron pT and rapidity spectra
class LHCB_2015_I1396331 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(LHCB_2015_I1396331);
/// @name Analysis methods
/// @{
/// Book histograms and initialise projections before the run
void init() {
/// Initialise and register projections
Cut selection = (Cuts::abspid == 411 || Cuts::abspid == 421 || Cuts::abspid == 431 || Cuts::abspid == 413) \
&& Cuts::pT < 15.0 && Cuts::absrapIn(2.0, 4.5);
declare(UnstableParticles(selection), "UPDs");
/// Book histograms
book(_h_pdg421_Dzero_pT_y, {2., 2.5, 3., 3.5, 4., 4.5});
for (auto& b : _h_pdg421_Dzero_pT_y->bins()) {
book(b, 1, 1, b.index());
}
book(_h_pdg411_Dplus_pT_y, {2., 2.5, 3., 3.5, 4., 4.5});
for (auto& b : _h_pdg411_Dplus_pT_y->bins()) {
book(b, 2, 1, b.index());
}
book(_h_pdg431_Dsplus_pT_y, {2., 2.5, 3., 3.5, 4., 4.5});
for (auto& b : _h_pdg431_Dsplus_pT_y->bins()) {
book(b, 3, 1, b.index());
}
book(_h_pdg413_Dstarplus_pT_y, {2., 2.5, 3., 3.5, 4., 4.5});
for (auto& b : _h_pdg413_Dstarplus_pT_y->bins()) {
book(b, 4, 1, b.index());
}
// Temporary histos for ratios
book(_hbr_Dzero, {2., 2.5, 3., 3.5, 4., 4.5});
book(_hbr_Dplus, {2., 2.5, 3., 3.5, 4., 4.5});
book(_hbr_Ds, {2., 2.5, 3., 3.5, 4., 4.5});
book(_hbr_Dstar, {2., 2.5, 3., 3.5, 4., 4.5});
for (size_t i=1; i<_hbr_Ds->numBins()+1; ++i) {
book(_hbr_Dzero->bin(i), "/TMP/Dzero"+to_str(i), refData(9, 1, 2));
book(_hbr_Dplus->bin(i), "/TMP/Dplus"+to_str(i), refData(9, 1, 2));
book(_hbr_Ds->bin(i), "/TMP/Ds"+to_str(i), refData(9, 1, 2));
book(_hbr_Dstar->bin(i), "/TMP/Dstar"+to_str(i), refData(9, 1, 2));
}
}
/// Perform the per-event analysis
void analyze(const Event& event) {
/// @todo Use PrimaryHadrons to avoid double counting and automatically remove the contributions from unstable?
const UnstableParticles &ufs = apply<UnstableParticles> (event, "UPDs");
for (const Particle& p : ufs.particles()) {
if (p.fromBottom()) continue;
const PdgId apid = p.abspid();
const double y = p.absrap(); ///< Double analysis efficiency with a "two-sided LHCb"
const double pT = p.pT()/GeV;
// select inclusive decay modes
Particles daus;
switch (apid) {
case 411:
_h_pdg411_Dplus_pT_y->fill(y, pT);
// veto on decay channel [D+ -> K- pi+ pi+]cc
if (p.children().size() != 3) break;
if ( ((p.children(Cuts::pid == -321).size() == 1) && (p.children(Cuts::pid == 211).size() == 2)) ||
((p.children(Cuts::pid == 321).size() == 1) && (p.children(Cuts::pid == -211).size() == 2)) )
_hbr_Dplus->fill(y, pT); // MSG_INFO("Found [ D+ -> K- pi+ pi+ ]cc..."); };
break;
case 421:
_h_pdg421_Dzero_pT_y->fill(y, pT);
// veto on decay channel [D0 -> K- pi+]cc
if (p.children().size() != 2) break;
if ( ((p.children(Cuts::pid == -321).size() == 1) && (p.children(Cuts::pid == 211).size() == 1)) ||
((p.children(Cuts::pid == 321).size() == 1) && (p.children(Cuts::pid == -211).size() == 1)) )
_hbr_Dzero->fill(y, pT); // MSG_INFO("Found [ D0 -> K- pi+ ]cc..."); };
break;
case 431:
_h_pdg431_Dsplus_pT_y->fill(y, pT);
//veto on decay channel [Ds+ -> [K+ K-]phi0 pi+]cc
if (p.children().size() != 2) break;
daus = p.children(Cuts::pid == 333);
if ( (daus.size() == 1) && (p.children(Cuts::abspid == 211).size() == 1) &&
(daus.front().children(Cuts::abspid ==321).size() == 2) )
_hbr_Ds->fill(y, pT); // MSG_INFO("Found [ Ds+ -> phi0(-> K+ K-) pi+ ]cc..."); };
break;
case 413:
_h_pdg413_Dstarplus_pT_y->fill(y, pT);
// veto on decay channel [D*+ -> [K- pi+]D0 pi+]cc
if (p.children().size() != 2) break;
daus = p.children(Cuts::pid == 421);
if ( (daus.size() == 1) && (p.children(Cuts::abspid == 211).size() == 1) &&
( daus.front().children().size() == 2 ) &&
( ( (daus.front().children(Cuts::pid == -321).size() == 1 ) && (daus.front().children(Cuts::pid == 211).size() == 1 ) ) ||
( (daus.front().children(Cuts::pid == 321).size() == 1 ) && (daus.front().children(Cuts::pid == -211).size() == 1 ) ) ) )
_hbr_Dstar->fill(y, pT); // MSG_INFO("Found [ D*+ -> D0 (-> K- pi+)cc pi+ ]cc..."); };
break;
default:
break;
}
}
}
/// Normalise histograms etc., after the run
void finalize() {
Histo1DPtr h;
Histo1DPtr hden;
/// Factor of 0.5 to correct for the abs(rapidity) used above
const double scale_factor = 0.5 * crossSection()/microbarn / sumOfWeights();
scale(_h_pdg411_Dplus_pT_y, scale_factor);
scale(_h_pdg431_Dsplus_pT_y, scale_factor);
scale(_h_pdg413_Dstarplus_pT_y, scale_factor);
scale(_h_pdg421_Dzero_pT_y, scale_factor);
// Do ratios
for (size_t i = 0; i < 5; ++i) {
// book final ratio plots
book(hr_DplusDzero[i], 9, 1, i+1);
book(hr_DsDzero[i], 10, 1, i+1);
book(hr_DstarDzero[i], 11, 1, i+1);
book(hr_DsDplus[i], 12, 1, i+1);
book(hr_DstarDplus[i], 13, 1, i+1);
book(hr_DsDstar[i], 14, 1, i+1);
// fill ratio plots
divide(_hbr_Dplus->bin(i+1), _hbr_Dzero->bin(i+1), hr_DplusDzero[i]);
divide(_hbr_Ds->bin(i+1), _hbr_Dzero->bin(i+1), hr_DsDzero[i]);
divide(_hbr_Dstar->bin(i+1), _hbr_Dzero->bin(i+1), hr_DstarDzero[i]);
divide(_hbr_Ds->bin(i+1), _hbr_Dplus->bin(i+1), hr_DsDplus[i]);
divide(_hbr_Dstar->bin(i+1), _hbr_Dplus->bin(i+1), hr_DstarDplus[i]);
divide(_hbr_Ds->bin(i+1), _hbr_Dstar->bin(i+1), hr_DsDstar[i]);
// scale 100x as measurement is in %
hr_DplusDzero[i]->scale(100.);
hr_DsDzero[i]->scale(100.);
hr_DstarDzero[i]->scale(100.);
hr_DsDplus[i]->scale(100.);
hr_DstarDplus[i]->scale(100.);
hr_DsDstar[i]->scale(100.);
}
}
/// @}
private:
/// @name Histograms
/// @{
Histo1DGroupPtr _h_pdg411_Dplus_pT_y, _hbr_Dplus;
Histo1DGroupPtr _h_pdg421_Dzero_pT_y, _hbr_Dzero;
Histo1DGroupPtr _h_pdg431_Dsplus_pT_y, _hbr_Ds;
Histo1DGroupPtr _h_pdg413_Dstarplus_pT_y, _hbr_Dstar;
Estimate1DPtr hr_DplusDzero[5];
Estimate1DPtr hr_DsDzero[5];
Estimate1DPtr hr_DstarDzero[5];
Estimate1DPtr hr_DsDplus[5];
Estimate1DPtr hr_DstarDplus[5];
Estimate1DPtr hr_DsDstar[5];
/// @}
};
RIVET_DECLARE_PLUGIN(LHCB_2015_I1396331);
}