rivet is hosted by Hepforge, IPPP Durham

Rivet analyses reference

CMD2_2004_I630009

Cross section for $e^+e^-\to\pi^0\pi^0\gamma$ at energies between 0.6 and 0.97 GeV.
Experiment: CMD2 (VEPP-2M)
Inspire ID: 630009
Status: VALIDATED
Authors:
  • Peter Richardson
References:
  • Phys.Lett. B580 (2004) 119-128, 2004
Beams: e+ e-
Beam energies: (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.4, 0.4); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5); (0.5, 0.5) GeV
Run details:
  • e+e- to hadrons

Measurement of the cross section for $e^+e^-\to\pi^0\pi^0\gamma$ at energies between 0.6 and 0.97 GeV. Beam energy must be specified as analysis option "ENERGY" when rivet-merging samples.

Source code: CMD2_2004_I630009.cc
 1// -*- C++ -*-
 2#include "Rivet/Analysis.hh"
 3#include "Rivet/Projections/FinalState.hh"
 4
 5namespace Rivet {
 6
 7
 8  /// @brief Add a short analysis description here
 9  class CMD2_2004_I630009 : public Analysis {
10  public:
11
12    /// Constructor
13    RIVET_DEFAULT_ANALYSIS_CTOR(CMD2_2004_I630009);
14
15
16    /// @name Analysis methods
17    /// @{
18
19    /// Book histograms and initialise projections before the run
20    void init() {
21
22      // Initialise and register projections
23      declare(FinalState(), "FS");
24      book(_numPiPiGamma, 1, 1, 1);
25    }
26
27
28    /// Perform the per-event analysis
29    void analyze(const Event& event) {
30
31      const FinalState& fs = apply<FinalState>(event, "FS");
32
33      map<long,int> nCount;
34      int ntotal(0);
35      for (const Particle& p : fs.particles()) {
36	nCount[p.pid()] += 1;
37	++ntotal;
38      }
39      // three particles (pi0 pi0 gamma)
40      if(ntotal!=3) vetoEvent;
41      if(nCount[111]==2 && nCount[22]==1)
42	_numPiPiGamma->fill(round(sqrtS()/MeV));
43    }
44
45
46    /// Normalise histograms etc., after the run
47    void finalize() {
48      scale(_numPiPiGamma, crossSection()/ sumOfWeights() /picobarn);
49    }
50
51    /// @}
52
53
54    /// @name Histograms
55    /// @{
56    BinnedHistoPtr<int> _numPiPiGamma;
57    /// @}
58
59
60  };
61
62
63  RIVET_DECLARE_PLUGIN(CMD2_2004_I630009);
64
65
66}