Rivet analyses


title: ARGUS_1996_I403304

$\gamma\gamma\to\omega\omega$ between 1.6 and 3 GeV

Experiment: ARGUS (DORIS)

Inspire ID: 403304

Status: VALIDATED

Authors: - Peter Richardson

References: - Phys.Lett.B 374 (1996) 265-270

Beams: 22 22

Beam energies: ANY

Run details: - gamma gamma to hadrons, K0S and pi0 mesons must be set stable

Measurement of the differential cross section for $\gamma\gamma\to \omega\omega$ for $1.6 \text{GeV} < W < 3.0 \text{GeV}$. The cross section is measured as a function of the centre-of-mass energy of the photonic collision using the $2\pi^02\pi^+2\pi^-$ final state.

Source code:ARGUS_1996_I403304.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/FinalState.hh"

include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {

/// @brief gamma gamma -> omega omega class ARGUS_1996_I403304 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(ARGUS_1996_I403304);


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

/// Book histograms and initialise projections before the run
void init() {
  // Initialise and register projections
  declare(FinalState(), "FS");
  declare(UnstableParticles(), "UFS");
  // book histos
  if (inRange(sqrtS() / GeV, 1.6, 3.0)) {
    for (unsigned int ix = 0; ix < 3; ++ix) book(_nMeson[ix], "TMP/nMeson_" + toString(ix + 1));
  }
  else {
    throw Error("Invalid CMS energy for ARGUS_1996_I403304");
  }
}

void findChildren(const Particle& p, map<long, int>& nRes, int& ncount) {
  for (const Particle& child : p.children()) {
    if (child.children().empty()) {
      nRes[child.pid()] -= 1;
      --ncount;
    }
    else {
      findChildren(child, nRes, ncount);
    }
  }
}

/// Perform the per-event analysis
void analyze(const Event& event) {
  const FinalState& fs = apply<FinalState>(event, "FS");
  // find the final-state particles
  map<long, int> nCount;
  int ntotal(0);
  for (const Particle& p : fs.particles()) {
    nCount[p.pid()] += 1;
    ++ntotal;
  }
  // find omega mesons
  Particles omega = apply<UnstableParticles>(event, "UFS").particles(Cuts::abspid == 223);
  bool nonRes = true;
  for (unsigned int ix = 0; ix < omega.size(); ++ix) {
    if (omega[ix].children().empty()) continue;
    map<long, int> nRes = nCount;
    int ncount = ntotal;
    findChildren(omega[ix], nRes, ncount);
    bool matched = false;
    // omega omega
    for (unsigned int iy = ix + 1; iy < omega.size(); ++iy) {
      if (omega[iy].children().empty()) continue;
      map<long, int> nRes2 = nRes;
      int ncount2 = ncount;
      findChildren(omega[iy], nRes2, ncount2);
      if (ncount2 != 0) continue;
      matched = true;
      for (const auto& val : nRes2) {
        if (val.second != 0) {
          matched = false;
          break;
        }
      }
      if (matched) break;
    }
    if (matched) {
      _nMeson[0]->fill();
      nonRes = false;
      break;
    }
    matched = true;
    for (const auto& val : nRes) {
      if (abs(val.first) == 211 || val.first == 111) {
        if (val.second != 1) {
          matched = false;
          break;
        }
      }
      else {
        if (val.second != 0) {
          matched = false;
          break;
        }
      }
    }
    if (matched) {
      nonRes = false;
      _nMeson[1]->fill();
      break;
    }
  }
  if (nonRes && ntotal == 6 && nCount[PID::PI0] == 2 && nCount[PID::PIPLUS] == 2
      && nCount[PID::PIMINUS] == 2) {
    _nMeson[2]->fill();
  }
}


/// Normalise histograms etc., after the run
void finalize() {
  scale(_nMeson, crossSection() / nanobarn / sumOfWeights());
  // loop over tables in paper
  for (unsigned int ix = 0; ix < 3; ++ix) {
    Estimate1DPtr mult;
    book(mult, 1, 1, 1 + ix);
    for (auto& b : mult->bins()) {
      if (inRange(sqrtS(), b.xMin(), b.xMax())) {
        b.setVal(_nMeson[ix]->val());
        b.setErr(_nMeson[ix]->err());
      }
    }
  }
}

/// @}


/// @name Histograms
/// @{
CounterPtr _nMeson[3];
/// @}

};

RIVET_DECLARE_PLUGIN(ARGUS_1996_I403304);

} ```