rivet is hosted by Hepforge, IPPP Durham

Rivet analyses reference

CMD2_2000_I531667

Cross section for $e^+e^-\to\pi^+\pi^+\pi^-\pi^+$ hear the $\phi$ mass
Experiment: CMD2 (VEPP-2M)
Inspire ID: 531667
Status: VALIDATED
Authors:
  • Peter Richardson
References:
  • Phys.Lett. B491 (2000) 81-89, 2000
Beams: e+ e-
Beam energies: ANY
Run details:
  • e+e- to hadrons

Measurement of the cross section for $e^+e^-\to\pi^+\pi^+\pi^-\pi^+$ hear the $\phi$ mass.

Source code: CMD2_2000_I531667.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_2000_I531667 : public Analysis {
10  public:
11
12    /// Constructor
13    RIVET_DEFAULT_ANALYSIS_CTOR(CMD2_2000_I531667);
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
25      // Book histograms
26      book(_npion, "TMP/pion");
27    }
28
29
30    /// Perform the per-event analysis
31    void analyze(const Event& event) {
32      const FinalState& fs = apply<FinalState>(event, "FS");
33      if(fs.particles().size()!=4) vetoEvent;
34      for (const Particle& p : fs.particles()) {
35	if(abs(p.pid())!=PID::PIPLUS) vetoEvent;
36      }
37      _npion->fill();
38    }
39
40
41    /// Normalise histograms etc., after the run
42    void finalize() {
43      double sigma = _npion->val();
44      double error = _npion->err();
45      sigma *= crossSection()/ sumOfWeights() /nanobarn;
46      error *= crossSection()/ sumOfWeights() /nanobarn; 
47      Scatter2D temphisto(refData(1, 1, 1));
48      Scatter2DPtr mult;
49      book(mult, 1, 1, 1);
50      for (size_t b = 0; b < temphisto.numPoints(); b++) {
51	const double x  = temphisto.point(b).x();
52	pair<double,double> ex = temphisto.point(b).xErrs();
53	pair<double,double> ex2 = ex;
54	if(ex2.first ==0.) ex2. first=0.0001;
55	if(ex2.second==0.) ex2.second=0.0001;
56	if (inRange(sqrtS()/GeV, x-ex2.first, x+ex2.second)) {
57	  mult->addPoint(x, sigma, ex, make_pair(error,error));
58	}
59	else {
60	  mult->addPoint(x, 0., ex, make_pair(0.,.0));
61	}
62      }
63    }
64
65    //@}
66
67
68    /// @name Histograms
69    //@{
70    CounterPtr _npion;
71    //@}
72
73
74  };
75
76
77  // The hook for the plugin system
78  RIVET_DECLARE_PLUGIN(CMD2_2000_I531667);
79
80
81}