Rivet analyses
Cross section for e+e−→ 3π+3π−, 2π+2π−2π0, 2π+2π−K+K−
Experiment: BABAR (PEP-II)
Inspire ID: 709730
Status: VALIDATED
Authors: - Peter Richardson
References: - Phys.Rev. D73.052003
Beams: e+ e-
Beam energies: (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.7, 0.7); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.8, 0.8); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (0.9, 0.9); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.0, 1.0); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.1, 1.1); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.2, 1.2); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.3, 1.3); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.4, 1.4); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.5, 1.5); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.6, 1.6); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.7, 1.7); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.8, 1.8); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (1.9, 1.9); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.0, 2.0); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.1, 2.1); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2)GeV
Run details: - e+ e- to hadrons
Cross sections for 3π+3π−, 2π+2π−2π0 and 2π+2π−K+K− measured by BaBar using radiative return. Useful to compare hadronization and other non-perturbative models at low energies between 1.3 and 4.5 GeV.
Source
code:BABAR_2006_I709730.cc
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
namespace Rivet {
/// @brief e+e- -> 3pi+3pi-, 2pi+pi-2pi0, 2pi+pi-K+K-
class BABAR_2006_I709730 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BABAR_2006_I709730);
/// @name Analysis methods
/// @{
/// Book histograms and initialise projections before the run
void init() {
// Initialise and register projections
declare(FinalState(), "FS");
_sqs = {"", "", ""};
for (size_t ix=0; ix<_sqs.size(); ++ix) {
book(_sigma[ix], 1+ix, 1,1);
for (const string& en : _sigma[ix].binning().edges<0>()) {
const double eval = std::stod(en)*GeV;
if (isCompatibleWithSqrtS(eval)) {
_sqs[ix] = en;
break;
}
}
}
raiseBeamErrorIf(_sqs[0].empty() && _sqs[1].empty() && _sqs[2].empty());
}
/// Perform the per-event analysis
void analyze(const Event& event) {
const FinalState& fs = apply<FinalState>(event, "FS");
map<long,int> nCount;
int ntotal(0);
for (const Particle& p : fs.particles()) {
nCount[p.pid()] += 1;
++ntotal;
}
if (ntotal!=6) vetoEvent;
if (nCount[-211]==3 && nCount[211]==3) {
if (!_sqs[0].empty()) _sigma[0]->fill(_sqs[0]);
}
else if(nCount[-211]==2 && nCount[211]==2 && nCount[111]==2) {
if (!_sqs[1].empty()) _sigma[1]->fill(_sqs[1]);
}
else if (nCount[-211]==2 &&
nCount[211]==2 &&
nCount[321]==1 &&
nCount[-321]==1) {
if(!_sqs[2].empty()) _sigma[2]->fill(_sqs[2]);
}
}
/// Normalise histograms etc., after the run
void finalize() {
scale(_sigma, crossSection()/ sumOfWeights() /nanobarn);
}
/// @}
// just count the number of events of the types we're looking for
BinnedHistoPtr<string> _sigma[3];
vector<string> _sqs;
};
RIVET_DECLARE_PLUGIN(BABAR_2006_I709730);
}