Rivet analyses referenceSND_2014_I1275333Cross section for $e^+e^-\to\eta\gamma$ for energies between 1.07 and 2 GeVExperiment: SND (VEPP-2M) Inspire ID: 1275333 Status: VALIDATED Authors:
Beam energies: ANY Run details:
Cross section for $e^+e^-\to\eta\gamma$ for energies between 1.07 and 2 GeV. Source code: SND_2014_I1275333.cc 1// -*- C++ -*-
2#include "Rivet/Analysis.hh"
3#include "Rivet/Projections/FinalState.hh"
4#include "Rivet/Projections/UnstableParticles.hh"
5
6namespace Rivet {
7
8
9 /// @brief Cross section for e+e- > gamma eta
10 class SND_2014_I1275333 : public Analysis {
11 public:
12
13 /// Constructor
14 RIVET_DEFAULT_ANALYSIS_CTOR(SND_2014_I1275333);
15
16
17 /// @name Analysis methods
18 /// @{
19
20 /// Book histograms and initialise projections before the run
21 void init() {
22 // Initialise and register projections
23 declare(FinalState(), "FS");
24 declare(UnstableParticles(), "UFS");
25 book(_numEtaGamma, "TMP/EtaGamma", refData(1,1,1));
26 }
27
28 void findChildren(const Particle & p,map<long,int> & nRes, int &ncount) {
29 for (const Particle &child : p.children()) {
30 if(child.children().empty()) {
31 --nRes[child.pid()];
32 --ncount;
33 }
34 else
35 findChildren(child,nRes,ncount);
36 }
37 }
38
39 /// Perform the per-event analysis
40 void analyze(const Event& event) {
41
42 const FinalState& fs = apply<FinalState>(event, "FS");
43
44 map<long,int> nCount;
45 int ntotal(0);
46 for (const Particle& p : fs.particles()) {
47 nCount[p.pid()] += 1;
48 ++ntotal;
49 }
50
51 const FinalState& ufs = apply<FinalState>(event, "UFS");
52 for (const Particle& p : ufs.particles(Cuts::pid==221)) {
53 if(p.children().empty()) continue;
54 // find the eta
55 map<long,int> nRes = nCount;
56 int ncount = ntotal;
57 findChildren(p,nRes,ncount);
58 // eta gamma
59 if(ncount!=1) continue;
60 bool matched = true;
61 for(auto const & val : nRes) {
62 if(val.first==22) {
63 if(val.second !=1) {
64 matched = false;
65 break;
66 }
67 }
68 else if(val.second!=0) {
69 matched = false;
70 break;
71 }
72 }
73 if(matched)
74 _numEtaGamma->fill(sqrtS()/MeV);
75 }
76 }
77
78
79 /// Normalise histograms etc., after the run
80 void finalize() {
81 scale(_numEtaGamma, crossSection()/ sumOfWeights() /picobarn);
82 Estimate1DPtr tmp;
83 book(tmp,1,1,1);
84 barchart(_numEtaGamma,tmp);
85 }
86
87 /// @}
88
89
90 /// @name Histograms
91 /// @{
92 Histo1DPtr _numEtaGamma;
93 /// @}
94
95
96 };
97
98
99 RIVET_DECLARE_PLUGIN(SND_2014_I1275333);
100
101
102}
|