Rivet analyses

Photon spectrum in Υ(1, 2, 3S) decays

Experiment: CLEOIII (CESR)

Inspire ID: 701217

Status: VALIDATED NOHEPDATA

Authors: - Peter Richardson

References: - Phys.Rev.D 74 (2006) 012003

Beams: * *

Beam energies: ANY

Run details: - Any process producing Upsilon mesons, original e+e- collisions

Measurement of the photon spectrum in Υ(1, 2, 3S) decays by CLEO. The spectrum was read from the figures in the paper and is not corrected for efficiency/resolution. The energy smearing given in the paper is applied to the photon energies

Source code:CLEOIII_2006_I701217.cc

// -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/UnstableParticles.hh"
#include "Rivet/Tools/Random.hh"

namespace Rivet {


  /// @brief Direct photon spectrum in upslion decay
  class CLEOIII_2006_I701217 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(CLEOIII_2006_I701217);


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

    /// Book histograms and initialise projections before the run
    void init() {
      // projections
      declare(UnstableParticles(Cuts::pid==553 ||
                Cuts::pid==100553 ||
                Cuts::pid==200553), "UFS");
      // histos
      for(unsigned int ix=0; ix<3; ++ix) {
        book(_h[ix], 1+ix, 1,1);
      }
    }


    /// Perform the per-event analysis
    void analyze(const Event& event) {
      // Find the Upsilons among the unstables
      for (const Particle& ups : apply<UnstableParticles>(event, "UFS").particles()) {
        unsigned int nhadron(0);
        Particles photons;
        for (const Particle & child : ups.children()) {
          if (PID::isHadron(child.pid())) {
            ++nhadron;
          }
          else if (child.pid()==PID::PHOTON) {
            photons.push_back(child);
          }
        }
        if (nhadron==0 || photons.empty()) continue;
        LorentzTransform boost;
        if (ups.p3().mod() > 1*MeV) {
          boost = LorentzTransform::mkFrameTransformFromBeta(ups.momentum().betaVec());
        }
        unsigned int iups = ups.pid()/100000;
        for (const Particle & gamma : photons) {
          double E = boost.transform(gamma.momentum()).E();
          double sigma = 0.01*E*(0.6*pow(E,-0.7309)+1.14-0.01*E);
            E = randnorm(E,sigma);
          _h[iups]->fill(2.*E/ups.mass());
        }
      }
    }


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

    /// @}


    /// @name Histograms
    /// @{
    Histo1DPtr _h[3];
    /// @}


  };


  RIVET_DECLARE_PLUGIN(CLEOIII_2006_I701217);

}