rivet is hosted by Hepforge, IPPP Durham

Rivet analyses reference

CLEO_1986_I220652

Direct Photon Spectrum in $\Upsilon(1S)$ decays
Experiment: CLEO (CESR)
Inspire ID: 220652
Status: VALIDATED
Authors:
  • Peter Richardson
References:
  • Phys.Rev.Lett. 56 (1986) 1222
Beams: * *
Beam energies: ANY
Run details:
  • Any process producing Upsilon mesons, original e+e- collisions

Measurement of the direct photon spectrum in $\Upsilon(1S)$ decays by CLEO. The spectrum was read from the figures in the paper as it was not included in the original HEPDATA entry and is not corrected for efficiency/resolution. The energy smearing given in the paper is applied to the photon energies

Source code: CLEO_1986_I220652.cc
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// -*- 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 CLEO_1986_I220652 : public Analysis {
  public:

    /// Constructor
    RIVET_DEFAULT_ANALYSIS_CTOR(CLEO_1986_I220652);


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

    /// Book histograms and initialise projections before the run
    void init() {
      // projections
      declare(UnstableParticles(Cuts::pid==553), "UFS");
      // histos
      book(_h,1,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());
	for(const Particle & gamma:photons) {
	  double E = boost.transform(gamma.momentum()).E();
	  E = randnorm(E,0.21*sqrt(E));
	  _h->fill(2.*E/ups.mass());
	}
      }
    }


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

    /// @}


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


  };


  RIVET_DECLARE_PLUGIN(CLEO_1986_I220652);

}