Rivet analyses referenceSND_2020_I1800477Cross section for $e^+e^-\to\eta\pi^0\gamma$ between 1.05 and 2 GeVExperiment: SND (VEPP-2000) Inspire ID: 1800477 Status: VALIDATED Authors:
Beam energies: ANY Run details:
Cross section for $e^+e^-\to\eta\pi^0\gamma$ between 1.05 and 2 GeV by SND. The $\omega\eta$ and radiative subprocesses are also measured. Source code: SND_2020_I1800477.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 e+e- > eta pi0 gamma
10 class SND_2020_I1800477 : public Analysis {
11 public:
12
13 /// Constructor
14 RIVET_DEFAULT_ANALYSIS_CTOR(SND_2020_I1800477);
15
16
17 /// @name Analysis methods
18 /// @{
19
20 /// Book histograms and initialise projections before the run
21 void init() {
22
23 // Initialise and register projections
24 declare(FinalState(), "FS");
25 declare(UnstableParticles(), "UFS");
26 book(_c_omega, "/TMP/omega", refData(1,1,1));
27 book(_c_total, "/TMP/total", refData(3,1,1));
28 }
29
30 void findChildren(const Particle & p,map<long,int> & nRes, int &ncount) {
31 for( const Particle &child : p.children()) {
32 if(child.children().empty()) {
33 --nRes[child.pid()];
34 --ncount;
35 }
36 else
37 findChildren(child,nRes,ncount);
38 }
39 }
40
41 /// Perform the per-event analysis
42 void analyze(const Event& event) {
43
44 const FinalState& fs = apply<FinalState>(event, "FS");
45
46 map<long,int> nCount;
47 int ntotal(0);
48 for (const Particle& p : fs.particles()) {
49 nCount[p.pid()] += 1;
50 ++ntotal;
51 }
52 const FinalState& ufs = apply<FinalState>(event, "UFS");
53 for (const Particle& p : ufs.particles()) {
54 if(p.children().empty()) continue;
55 // find the eta
56 if(p.pid()!=221) continue;
57 map<long,int> nRes = nCount;
58 int ncount = ntotal;
59 findChildren(p,nRes,ncount);
60 // check eta pi0 gamma FS
61 if(ncount!=2) continue;
62 bool matched=true;
63 for(auto const & val : nRes) {
64 if(abs(val.first)==22 || val.first==111 ) {
65 if(val.second !=1) {
66 matched = false;
67 break;
68 }
69 }
70 else if(val.second!=0) {
71 matched = false;
72 break;
73 }
74 }
75 if(!matched) continue;
76 _c_total->fill(sqrtS());
77 // check if from omega
78 for (const Particle& p2 : ufs.particles()) {
79 if(p2.pid()!=223) continue;
80 map<long,int> nResB = nRes;
81 int ncountB = ncount;
82 findChildren(p2,nResB,ncountB);
83 if(ncountB!=0) continue;
84 bool matched2 = true;
85 for(auto const & val : nResB) {
86 if(val.second!=0) {
87 matched2 = false;
88 break;
89 }
90 }
91 if(matched2)
92 _c_omega->fill(sqrtS());
93 }
94 }
95 }
96
97
98 /// Normalise histograms etc., after the run
99 void finalize() {
100 double fact = crossSection()/picobarn/sumOfWeights();
101 scale(_c_total,fact);
102 Estimate1DPtr mult;
103 book(mult, 1, 1, 1);
104 barchart(_c_total,mult);
105 scale(_c_omega,fact);
106 book(mult, 3, 1, 1);
107 barchart(_c_omega,mult);
108 }
109
110 /// @}
111
112
113 /// @name Histograms
114 /// @{
115 Histo1DPtr _c_total,_c_omega;
116 /// @}
117
118
119 };
120
121
122 RIVET_DECLARE_PLUGIN(SND_2020_I1800477);
123
124}
|