Rivet analyses referenceCMD3_2016_I1444990Cross section for $e^+e^-\to K^0_SK^0_L$ at energies between 1.004 and 1.06 GeVExperiment: CMD3 (VEPP-2M) Inspire ID: 1444990 Status: VALIDATED Authors:
Beam energies: ANY Run details:
1// -*- C++ -*-
2#include "Rivet/Analysis.hh"
3#include "Rivet/Projections/FinalState.hh"
4
5
6namespace Rivet {
7
8
9 /// @brief Add a short analysis description here
10 class CMD3_2016_I1444990 : public Analysis {
11 public:
12
13 /// Constructor
14 RIVET_DEFAULT_ANALYSIS_CTOR(CMD3_2016_I1444990);
15
16
17 /// @name Analysis methods
18 /// @{
19
20 /// Book histograms and initialise projections before the run
21 void init() {
22
23 declare(FinalState(), "FS");
24 book(_nK0K0, "TMP/K0K0", refData(1,1,6));
25
26 }
27
28
29 /// Perform the per-event analysis
30 void analyze(const Event& event) {
31
32 const FinalState& fs = apply<FinalState>(event, "FS");
33
34 map<long,int> nCount;
35 int ntotal(0);
36 for (const Particle& p : fs.particles()) {
37 nCount[p.pid()] += 1;
38 ++ntotal;
39 }
40 if(ntotal==2 &&
41 nCount[130]==1 && nCount[310]==1)
42 _nK0K0->fill(sqrtS()/MeV);
43 }
44
45
46 /// Normalise histograms etc., after the run
47 void finalize() {
48 scale(_nK0K0,crossSection()/ sumOfWeights() /nanobarn);
49 Estimate1DPtr tmp;
50 book(tmp,1,1,6);
51 barchart(_nK0K0,tmp);
52 }
53
54 /// @}
55
56
57 /// @name Histograms
58 /// @{
59 Histo1DPtr _nK0K0;
60 /// @}
61
62
63 };
64
65
66 RIVET_DECLARE_PLUGIN(CMD3_2016_I1444990);
67
68
69}
|