Rivet analyses


title: BESIII_2017_I1509241

Cross section for $e^+e^-\to p \bar{p} \pi^0$ at energies between 4.008 and 4.600 GeV

Experiment: BESIII (BEPC)

Inspire ID: 1509241

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett. B771 (2017) 45-51

Beams: e+ e-

Beam energies: (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.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.2, 2.2); (2.3, 2.3)GeV

Run details: - e+e- to hadrons, pi0 stable

Cross section for $e^+e^-\to p \bar{p} \pi^0$ at energies between 4.008 and 4.600 GeV measured by the BESIII collaboration.

Source code:BESIII_2017_I1509241.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief Cross section for $e^+e^-\to p \bar{p} \pi^0$ at energies between 4.008 and 4.600 GeV class BESIII_2017_I1509241 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2017_I1509241);


/// @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, 1);

  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() != 3) vetoEvent;
  for (const Particle& p : fs.particles()) {
    if (p.abspid() != PID::PROTON && p.pid() != PID::PI0) 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_2017_I1509241);

} ```