1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
| // -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/UnstableParticles.hh"
namespace Rivet {
/// @brief phi -> pi0 pi0 gamma
class SND_2000_I527094 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(SND_2000_I527094);
/// @name Analysis methods
//@{
/// Book histograms and initialise projections before the run
void init() {
declare(UnstableParticles(), "UFS");
book(_h_pipi, 1, 1, 1);
book(_nPhi,"TMP/nPhi");
}
void findDecayProducts(const Particle & mother, unsigned int & nstable,
unsigned int & npi,
unsigned int & ngamma, FourMomentum & ptot) {
for(const Particle & p : mother.children()) {
int id = p.pid();
if (id == PID::PI0) {
++npi;
++nstable;
ptot += p.momentum();
}
else if (id == PID::GAMMA) {
++ngamma;
++nstable;
}
else if (id == PID::PIPLUS || id == PID::PIMINUS) {
++nstable;
}
else if ( !p.children().empty() ) {
findDecayProducts(p, nstable, npi, ngamma, ptot);
}
else
++nstable;
}
}
/// Perform the per-event analysis
void analyze(const Event& event) {
// Loop over phis
for(const Particle& phi : apply<UnstableParticles>(event, "UFS").particles(Cuts::abspid==PID::PHI)) {
_nPhi->fill();
unsigned int nstable(0),npi(0),ngamma(0);
FourMomentum p_tot(0,0,0,0);
findDecayProducts(phi, nstable, npi, ngamma, p_tot);
if(nstable!=3) continue;
if(npi==2 && ngamma==1 ) {
_h_pipi->fill(p_tot.mass()/MeV);
}
}
}
/// Normalise histograms etc., after the run
void finalize() {
scale( _h_pipi, 1./ *_nPhi);
}
//@}
/// @name Histograms
//@{
Histo1DPtr _h_pipi;
CounterPtr _nPhi;
//@}
};
// The hook for the plugin system
RIVET_DECLARE_PLUGIN(SND_2000_I527094);
}
|