Rivet analyses
Hadronization properties of b quarks compared to light quarks in e+e− → qq̄ from 183 GeV to 200 GeV
Experiment: OPAL (LEP 2)
Inspire ID: 524693
Status: VALIDATED
Authors: - Peter Richardson
References: - Phys.Lett.B479:118-128,2000 - hep-ex/0103022 - DELPHI 2002-052 CONF 586
Beams: e+ e-
Beam energies: (91.5, 91.5); (94.5, 94.5); (96.0, 96.0); (98.0, 98.0); (100.0, 100.0); (103.0, 103.0)GeV
Run details: - Hadronic Z decay events generated on the Z pole ($\sqrt{s} = 91.2$~GeV)
Measurements of the mean charged multiplicities separately for bb̄, cc̄ and light quark (uds) initiated events in e+e− interactions at energies above the Z0 mass. In addition to the energy points in the original paper one additional point at 206;GeV is included from a later preliminary result.
Source
code:DELPHI_2000_I524693.cc
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/Beam.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/ChargedFinalState.hh"
#include "Rivet/Projections/Sphericity.hh"
#include "Rivet/Projections/Thrust.hh"
#include "Rivet/Projections/FastJets.hh"
#include "Rivet/Projections/ParisiTensor.hh"
#include "Rivet/Projections/Hemispheres.hh"
#include <cmath>
#define I_KNOW_THE_INITIAL_QUARKS_PROJECTION_IS_DODGY_BUT_NEED_TO_USE_IT
#include "Rivet/Projections/InitialQuarks.hh"
namespace Rivet {
/// @brief DELPHI multiplicities at various energies
///
/// @author Peter Richardson
class DELPHI_2000_I524693 : public Analysis {
public:
RIVET_DEFAULT_ANALYSIS_CTOR(DELPHI_2000_I524693);
/// @name Analysis methods
/// @{
void init() {
// Projections
declare(Beam(), "Beams");
declare(ChargedFinalState(), "CFS");
declare(InitialQuarks(), "IQF");
// Histograms
book(_hLight, 1, 1, 3);
book(_hCharm, 1, 1, 2);
book(_hBottom, 1, 1, 1);
}
void analyze(const Event& event) {
// Even if we only generate hadronic events, we still need a cut on numCharged >= 2.
const FinalState& cfs = apply<FinalState>(event, "CFS");
if (cfs.size() < 2) vetoEvent;
int flavour = 0;
const InitialQuarks& iqf = apply<InitialQuarks>(event, "IQF");
// If we only have two quarks (qqbar), just take the flavour.
// If we have more than two quarks, look for the highest energetic q-qbar pair.
if (iqf.particles().size() == 2) {
flavour = iqf.particles().front().abspid();
}
else {
map<int, double> quarkmap;
for (const Particle& p : iqf.particles()) {
if (quarkmap[p.pid()] < p.E()) {
quarkmap[p.pid()] = p.E();
}
}
double maxenergy = 0.;
for (int i = 1; i <= 5; ++i) {
if (quarkmap[i]+quarkmap[-i] > maxenergy) {
flavour = i;
}
}
}
const size_t numParticles = cfs.particles().size();
switch (flavour) {
case 1: case 2: case 3:
_hLight ->fill(round(sqrtS()/GeV), numParticles);
break;
case 4:
_hCharm ->fill(round(sqrtS()/GeV), numParticles);
break;
case 5:
_hBottom->fill(round(sqrtS()/GeV), numParticles);
break;
}
}
void finalize() {
BinnedEstimatePtr<int> hDiff;
book(hDiff,1,1,4);
for (unsigned int ix=0; ix<hDiff->numBins(); ++ix) {
if (_hBottom->bin(ix+1).numEntries()>0 &&
_hLight ->bin(ix+1).numEntries()>0) {
double val = _hBottom->bin(ix+1).mean(2) - _hLight->bin(ix+1).mean(2);
double err = sqrt(sqr(_hBottom->bin(ix+1).stdErr(2)) +
sqr(_hLight ->bin(ix+1).stdErr(2)));
hDiff->bin(ix+1).set(val,err);
}
}
}
/// @}
private:
vector<Estimate1DPtr> _mult;
/// @name Multiplicities
/// @{
BinnedProfilePtr<int> _hLight, _hCharm, _hBottom;
/// @}
};
RIVET_DECLARE_ALIASED_PLUGIN(DELPHI_2000_I524693, DELPHI_2000_S4328825);
}Aliases: - DELPHI_2000_S4328825