Rivet analyses


title: BESIII_2023_I2693763

Mads distributions in $\psi(2S)\to\phi K^0_SK^0_S$

Experiment: BESIII (BEPC)

Inspire ID: 2693763

Status: VALIDATED NOHEPDATA

Authors: - Peter Richardson

References: - Phys.Rev.D 108 (2023) 5, 052001 - arXiv: 2303.08317

Beams: * *

Beam energies: ANY

Run details: - Any process producing psi(2S), originally e+e-

Measurement of mass distributions in $\psi(2S)\to\phi K^0_SK^0_S$ by BES. N.B. data read from plots and may not be corrected, no difference between $K_{S1}^0$ and $K^0_{S2}$ so these are symeterised.

Source code:BESIII_2023_I2693763.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/DecayedParticles.hh"

include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {

/// @brief psi(2S) -> phi KS0 KS0 class BESIII_2023_I2693763 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BESIII_2023_I2693763);


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

/// Book histograms and initialise projections before the run
void init() {
  // Initialise and register projections
  UnstableParticles ufs = UnstableParticles(Cuts::pid == 100443);
  declare(ufs, "UFS");
  DecayedParticles psi2S(ufs);
  psi2S.addStable(PID::PI0);
  psi2S.addStable(PID::K0S);
  psi2S.addStable(PID::ETA);
  psi2S.addStable(PID::ETAPRIME);
  psi2S.addStable(PID::PHI);
  declare(psi2S, "psi2S");
  // histograms
  for (unsigned int ix = 0; ix < 3; ++ix) {
    book(_h[ix], 1, 1, 1 + ix);
  }
  book(_dalitz, "dalitz", 50, 2., 11., 50, 2., 11.);
}


/// Perform the per-event analysis
void analyze(const Event& event) {
  // define the decay mode
  DecayedParticles psi2S = apply<DecayedParticles>(event, "psi2S");
  // loop over particles
  for (unsigned int ix = 0; ix < psi2S.decaying().size(); ++ix) {
    if (!psi2S.modeMatches(ix, 3, mode)) continue;
    const Particles& K0 = psi2S.decayProducts()[ix].at(310);
    const Particle& phi = psi2S.decayProducts()[ix].at(333)[0];
    double m2Kphi[2] = {(K0[0].mom() + phi.mom()).mass2(), (K0[1].mom() + phi.mom()).mass2()};
    for (unsigned int ix = 0; ix < 2; ++ix) {
      const double mKo = sqrt(m2Kphi[ix]);
      _h[0]->fill(mKo);
      _h[1]->fill(mKo);
    }
    _h[2]->fill((K0[0].mom() + K0[1].mom()).mass());
    _dalitz->fill(m2Kphi[0], m2Kphi[1]);
    _dalitz->fill(m2Kphi[1], m2Kphi[0]);
  }
}


/// Normalise histograms etc., after the run
void finalize() {
  normalize(_h, 1.0, false);
  normalize(_dalitz);
}

/// @}


/// @name Histograms
/// @{
Histo1DPtr _h[3];
Histo2DPtr _dalitz;
const map<PdgId, unsigned int> mode = {{310, 2}, {333, 1}};
/// @}

};

RIVET_DECLARE_PLUGIN(BESIII_2023_I2693763);

} ```