Rivet analyses


title: OLYA_1984_I208231

Cross section for $e^+e^-\to \pi^+\pi^-$ for energies between 640 and 1400 MeV

Experiment: OLYA (VEPP-2M)

Inspire ID: 208231

Status: VALIDATED

Authors: - Peter Richardson

References: - Sov.J.Nucl.Phys. 40 (1984) 286-295, 1984

Beams: e+ e-

Beam energies: (0.3, 0.3); (0.3, 0.3); (0.3, 0.3); (0.3, 0.3); (0.3, 0.3); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (3788.0, 3788.0); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (3988.0, 3988.0); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.5, 0.5); (4588.0, 4588.0); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (5435.0, 5435.0); (0.5, 0.5); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (6035.0, 6035.0); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.6, 0.6); (0.7, 0.7); (6585.0, 6585.0); (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)GeV

Run details: - e+e- to hadrons

Measurement of the cross section for $e^+e^-\to \pi^+\pi^-$ at energies between 640 and 1400 MeV.

Source code:OLYA_1984_I208231.cc

```c++ // -- C++ --

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief e+e- > pi+pi- class OLYA_1984_I208231 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(OLYA_1984_I208231);


/// @name Analysis methods
/// @{

/// Book histograms and initialise projections before the run
void init() {
  // Initialise and register projections
  declare(FinalState(), "FS");

  // Book histograms
  book(_npion, 1, 1, 1);
  for (const string& en : _npion.binning().edges<0>()) {
    double eval = stod(en) * MeV;
    if (isCompatibleWithSqrtS(eval)) {
      _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::PIPLUS) vetoEvent;
  }
  _npion->fill(_sqs);
}


/// Normalise histograms etc., after the run
void finalize() {
  scale(_npion, crossSection() / sumOfWeights() / nanobarn);
}

/// @}


/// @name Histograms
/// @{
/// @{
BinnedHistoPtr<string> _npion;
string _sqs = "";
/// @}

};

RIVET_DECLARE_PLUGIN(OLYA_1984_I208231); } ```