Rivet analyses


title: CMD3_2016_I1385598

Cross section for $e^+e^-\to p\bar{p}$ between the threshold and 2 GeV

Experiment: CMD3 (VEPP-2M)

Inspire ID: 1385598

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett. B759 (2016) 634-640, 2016

Beams: e+ e-

Beam energies: (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)GeV

Run details: - e+e- to hadrons

Measurement of the cross section for $e^+e^-\to p\bar{p}$ between the threshold and 2 GeV.

Source code:CMD3_2016_I1385598.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief e+ e- > p pbar class CMD3_2016_I1385598 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(CMD3_2016_I1385598);


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

/// Book histograms and initialise projections before the run
void init() {

  // Initialise and register projections
  declare(FinalState(), "FS");

  // Book histograms
  book(_nproton, 1, 1, 6);
  for (const string& en : _nproton.binning().edges<0>()) {
    double eval = en == "1900 (2012)"s ? 1.9 : 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::PROTON) vetoEvent;
  }
  _nproton->fill(_sqs);
}


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

/// @}


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

};

RIVET_DECLARE_PLUGIN(CMD3_2016_I1385598); } ```