Rivet analyses


title: BABAR_2015_I1334693

Exclusive semileptonic D0 to piminus decays.

Experiment: BABAR (PEP-II)

Inspire ID: 1334693

Status: VALIDATED

Authors: - Holger Schulz

References: none listed

Beams: * *

Beam energies: ANY

Run details: - Events with D-decays, either particle guns or collisions.

Implementation of Lorentz invariant q2 distributions ("form factor") for semileptonic D0 decays

Source code:BABAR_2015_I1334693.cc

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

include "Rivet/Analysis.hh"

include "Rivet/Projections/UnstableParticles.hh"

namespace Rivet {

/// @brief Add a short analysis description here class BABAR_2015_I1334693 : public Analysis { public:

/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(BABAR_2015_I1334693);


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

/// Book histograms and initialise projections before the run
void init() {

  // Initialise and register projections
  declare(UnstableParticles(), "UFS");

  // Book histograms
  book(_h_q2, 1, 1, 1);
}


// Calculate the Q2 using mother and daugher meson
double q2(const Particle& B, int mesonID) {
  FourMomentum q = B.mom() - select(B.children(), Cuts::pid == mesonID)[0];
  return q * q;
}

// Check for explicit decay into pdgids
bool isSemileptonicDecay(const Particle& mother, vector<int> ids) {
  // Trivial check to ignore any other decays but the one in question modulo photons
  const Particles children = mother.children(Cuts::pid != PID::PHOTON);
  if (children.size() != ids.size()) return false;
  // Check for the explicit decay
  return all(ids, [&](int i) { return count(children, hasPID(i)) == 1; });
}

/// Perform the per-event analysis
void analyze(const Event& event) {
  // Loop over D0 mesons
  for (const Particle& p : apply<UnstableParticles>(event, "UFS").particles(Cuts::pid == PID::D0)) {
    if (isSemileptonicDecay(p, {PID::PIMINUS, PID::POSITRON, PID::NU_E})) {
      _h_q2->fill(q2(p, PID::PIMINUS));
    }
  }
}


/// Normalise histograms etc., after the run
void finalize() {

  normalize(_h_q2, 375.4 * 0.3); // normalize to data
}

/// @}

private:

/// @name Histograms
/// @{
Histo1DPtr _h_q2;
/// @}

};

RIVET_DECLARE_PLUGIN(BABAR_2015_I1334693);

} ```