Rivet analyses


title: SND_2018_I1637194

Cross section for $e^+e^-\to$ $K^0_SK^0_L\pi^0$ for energies between 1.3 and 2.0

Experiment: SND (VEPP-2M)

Inspire ID: 1637194

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Rev. D97 (2018) no.3, 032011

Beams: e+ e-

Beam energies: ANY

Run details: - e+e- to hadrons

Measurement of the cross section for $e^+e^-\to$ $K^0_SK^0_L\pi^0$ for energies from 1.3 to 2.0 GeV.

Source code:SND_2018_I1637194.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief e+e- > KS0 KL0 pi0 class SND_2018_I1637194 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(SND_2018_I1637194);


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

/// Book histograms and initialise projections before the run
void init() {
  // Initialise and register projections
  declare(FinalState(), "FS");
  book(_nKKpi, 1, 1, 1);
  for (const string& en : _nKKpi.binning().edges<0>()) {
    const size_t idx = en.find(" to ");
    if (idx != string::npos) {
      const double emin = stod(en.substr(0, idx));
      const double emax = stod(en.substr(idx + 4, string::npos));
      if (inRange(sqrtS() / GeV, emin, emax)) {
        _sqs = en;
        break;
      }
    }
    else {
      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");

  map<long, int> nCount;
  int ntotal(0);
  for (const Particle& p : fs.particles()) {
    nCount[p.pid()] += 1;
    ++ntotal;
  }

  if (ntotal == 3 && nCount[130] == 1 && nCount[310] == 1 && nCount[111] == 1) {
    _nKKpi->fill(_sqs);
  }
}


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

/// @}


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

};

RIVET_DECLARE_PLUGIN(SND_2018_I1637194); } ```