Rivet analyses


title: BESIII_2014_I1286898

Cross section for $e^+e^-\to$ proton and antiproton between 3.65 and 3.9 GeV

Experiment: BESIII (BEPC)

Inspire ID: 1286898

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett. B735 (2014) 101-107, 2014

Beams: e+ e-

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

Run details: - e+ e- to hadrons

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

Source code:BESIII_2014_I1286898.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief Cross section for $e^+e^-\to$ proton and antiproton between 3.65 and 3.9 GeV class BESIII_2014_I1286898 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2014_I1286898);


/// @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>()) {
    const double eval = stod(en) * GeV;
    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() / picobarn);
}

/// @}


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

};

RIVET_DECLARE_PLUGIN(BESIII_2014_I1286898);

} ```