Rivet analyses

Cross section for e+e → n for $\sqrt{s}$ between 1.891 and 2.007 GeV

Experiment: SND (VEPP-2000)

Inspire ID: 2696331

Status: VALIDATED NOHEPDATA

Authors: - Peter Richardson

References: - Phys.Atom.Nucl. 86 (2023) 6, 1165-1172 - arXiv: 2309.05241

Beams: * *

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)GeV

Run details: - e+e- to hadrons

Measurement of the cross section for e+e → n for $\sqrt{s}$ between 1.891 and 2.007 GeV.

Source code:SND_2024_I2696331.cc

// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/FastJets.hh"
#include "Rivet/Projections/LeptonFinder.hh"
#include "Rivet/Projections/MissingMomentum.hh"
#include "Rivet/Projections/DirectFinalState.hh"

namespace Rivet {


  /// @brief e+ e- > n nbar
  class SND_2024_I2696331 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(SND_2024_I2696331);


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

    /// Book histograms and initialise projections before the run
    void init() {
      // Initialise and register projections
      declare(FinalState(), "FS");

      // Book histograms
      book(_nneutron, 1, 1, 1);
      for (const string& en : _nneutron.binning().edges<0>()) {
        double eval = 2.0*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::NEUTRON) vetoEvent;
      }
      _nneutron->fill(_sqs);
    }


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

    /// @}


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


  };


  RIVET_DECLARE_PLUGIN(SND_2024_I2696331);
}