Rivet analyses


title: VENUS_1990_I296392

Measurement of $R$ for energies between 50 and 64 GeV

Experiment: VENUS (Tristan)

Inspire ID: 296392

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett. B246 (1990) 297-305, 1990

Beams: e- e+

Beam energies: (31.8, 31.8); (32.0, 32.0)GeV

Run details: - e+ e- to hadrons and e+ e- to mu+ mu- (for normalization)

Measurement of $R$ in $e^+e^-$ collisions by VENUS for energies between 50 and 64 GeV. The individual hadronic and muonic cross sections are also outputted to the yoda file so that ratio $R$ can be recalculated if runs are combined.

Source code:VENUS_1990_I296392.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief R measurement class VENUS_1990_I296392 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(VENUS_1990_I296392);


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

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

  // Book histograms
  book(_c_hadrons, "/TMP/sigma_hadrons", refData<YODA::BinnedEstimate<string>>(3, 1, 1));
  book(_c_muons, "/TMP/sigma_muons", refData<YODA::BinnedEstimate<string>>(3, 1, 1));
  for (const string& en : _c_hadrons.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");

  map<long, int> nCount;
  int ntotal(0);
  for (const Particle& p : fs.particles()) {
    nCount[p.pid()] += 1;
    ++ntotal;
  }
  if (nCount[-13] == 1 and nCount[13] == 1 && ntotal == 2 + nCount[22]) {
    // mu+mu- + photons
    _c_muons->fill(_sqs);
  }
  else
    _c_hadrons->fill(_sqs); // everything else
}


/// Normalise histograms etc., after the run
void finalize() {
  BinnedEstimatePtr<string> mult;
  book(mult, 3, 1, 1);
  divide(_c_hadrons, _c_muons, mult);
}

/// @}


/// @name Histograms
/// @{
BinnedHistoPtr<string> _c_hadrons, _c_muons;
string _sqs = "";
/// @}

};

RIVET_DECLARE_PLUGIN(VENUS_1990_I296392); } ```