Rivet analyses
Cross section for e+e− → K+K− at energies between 1. and 1.4 GeV
Experiment: OLYA (VEPP-2M)
Inspire ID: 173076
Status: VALIDATED
Authors: - Peter Richardson
References: - Phys.Lett.B 107 (1981) 297-300
Beams: e+ e-
Beam energies: ANY
Run details: - e+ e- to hadrons
Measurement of the cross section for e+e− → K+K− at energies between 1. and 1.4 GeV
Source
code:OLYA_1981_I173076.cc
// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/FastJets.hh"
namespace Rivet {
/// @brief e+e- -> K+K-
class OLYA_1981_I173076 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(OLYA_1981_I173076);
/// @name Analysis methods
/// @{
/// Book histograms and initialise projections before the run
void init() {
// Initialise and register projections
declare(FinalState(), "FS");
// Book histograms
book(_nkaon, 1, 1, 1);
for (const string& en : _nkaon.binning().edges<0>()) {
const size_t idx = en.find("-");
if (idx != string::npos) {
const double emin = stod(en.substr(0,idx));
const double emax = stod(en.substr(idx+1,string::npos));
if (inRange(sqrtS()/GeV, emin, emax)) {
_sqs = en; break;
}
}
else {
const double end = stod(en)*GeV;
if (isCompatibleWithSqrtS(end)) {
_sqs = en; break;
}
}
}
raiseBeamErrorIf(_sqs.empty());
}
/// Perform the per-event analysis
void analyze(const Event& event) {
const FinalState& fs = apply<FinalState>(event, "FS");
if (fs.particles().size() != 2) vetoEvent;
for (const Particle& p : fs.particles()) {
if (p.abspid() != PID::KPLUS) vetoEvent;
}
_nkaon->fill(_sqs);
}
/// Normalise histograms etc., after the run
void finalize() {
scale(_nkaon, crossSection()/sumOfWeights()/nanobarn);
}
/// @}
/// @name Histograms
/// @{
BinnedHistoPtr<string> _nkaon;
string _sqs = "";
/// @}
};
RIVET_DECLARE_PLUGIN(OLYA_1981_I173076);
}