Rivet analyses


title: BESIII_2021_I1908066

Cross section for $J/\psi$ production for energies between 3.645 and 3.8 GeV

Experiment: BESIII (BEPC)

Inspire ID: 1908066

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett.B 820 (2021) 136576

Beams: e- e+

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

Run details: - e+ e- to hadrons

Cross section for the production of $J/\psi$ for energies between 3.645 and 3.8, i.e near the $\psi(2S)$ resonace measured by BESIII.

Source code:BESIII_2021_I1908066.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {

/// @brief J/psi production at low energies class BESIII_2021_I1908066 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2021_I1908066);


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

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

  // Initialise and register projections
  declare(UnstableParticles(), "UFS");
  book(_c_psi, 1, 1, 1);

  for (const string& en : _c_psi.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 UnstableParticles& ufs = apply<UnstableParticles>(event, "UFS");
  size_t count = ufs.particles(Cuts::pid == 443).size();
  _c_psi->fill(_sqs, count);
}


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

///@}


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

};

RIVET_DECLARE_PLUGIN(BESIII_2021_I1908066);

} ```