Rivet analyses


title: JADE_1984_I202784

Energy-Energy correlation at 14, 22 and 34 GeV

Experiment: JADE (Petra)

Inspire ID: 202784

Status: VALIDATED

Authors: - Peter Richardson

References: - Z.Phys. C25 (1984) 231, 1984

Beams: e+ e-

Beam energies: (7.0, 7.0); (11.0, 11.0); (17.0, 17.0)GeV

Run details: - e+e- to hadrons at 14, 22 and 34 GeV CMS.

Measurement of the energy-energy correlation, and its assymetry, at centre-of-mass energies 14, 22 and 34 GeV.

Source code:JADE_1984_I202784.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/Beam.hh"

include "Rivet/Projections/FinalState.hh"

namespace Rivet {

/// @brief EEC at 14, 22 and 34 GeV class JADE_1984_I202784 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(JADE_1984_I202784);


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

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

  // Book histograms
  size_t ih = 1;
  for (double eVal : allowedEnergies()) {
    const string en = toString(round(eVal));
    if (isCompatibleWithSqrtS(eVal)) _sqs = en;
    book(_h[en + "EEC"], 1, 1, ih);
    book(_h[en + "AEEC"], 2, 1, ih);
    book(_c[en], "TMP/weightSum" + en);
    ++ih;
  }
  raiseBeamErrorIf(_sqs.empty());
}


/// Perform the per-event analysis
void analyze(const Event& event) {
  // First, veto on leptonic events by requiring at least 4 charged FS particles
  const FinalState& fs = apply<FinalState>(event, "FS");
  // Even if we only generate hadronic events, we still need a cut on numCharged >= 2.
  if (fs.particles().size() < 2) vetoEvent;
  _c[_sqs]->fill();

  const double Evis2 = sqr(sum(fs.particles(), Kin::E, 0.0));
  // (A)EEC
  // Need iterators since second loop starts at current outer loop iterator, i.e. no "foreach" here!
  for (Particles::const_iterator p_i = fs.particles().begin(); p_i != fs.particles().end(); ++p_i) {
    for (Particles::const_iterator p_j = p_i; p_j != fs.particles().end(); ++p_j) {
      const Vector3 mom3_i = p_i->p3();
      const Vector3 mom3_j = p_j->p3();
      const double energy_i = p_i->E();
      const double energy_j = p_j->E();
      const double thetaij = mom3_i.unit().angle(mom3_j.unit()) / M_PI * 180.;
      double eec = (energy_i * energy_j) / Evis2;
      if (p_i != p_j) eec *= 2.;
      _h[_sqs + "EEC"]->fill(thetaij, eec);
      if (thetaij < 90.)
        _h[_sqs + "AEEC"]->fill(thetaij, -eec);
      else
        _h[_sqs + "AEEC"]->fill(180. - thetaij, eec);
    }
  }
}


/// Normalise histograms etc., after the run
void finalize() {
  for (const auto& item : _c) {
    scale(_h[item.first + "EEC"], 180.0 / M_PI * 1000. / item.second->sumW());
    scale(_h[item.first + "AEEC"], 180.0 / M_PI * 1000. / item.second->sumW());
  }
}

/// @}


/// @name Histograms
/// @{
map<string, Histo1DPtr> _h;
map<string, CounterPtr> _c;
string _sqs = "";
/// @}

};

RIVET_DECLARE_PLUGIN(JADE_1984_I202784); } ```