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
| // -*- C++ -*-
#include "Rivet/Analysis.hh"
#include "Rivet/Projections/UnstableParticles.hh"
namespace Rivet {
/// @brief tau -> K eta
class CLEOII_1996_I415409 : public Analysis {
public:
/// Constructor
RIVET_DEFAULT_ANALYSIS_CTOR(CLEOII_1996_I415409);
/// @name Analysis methods
///@{
/// Book histograms and initialise projections before the run
void init() {
declare(UnstableParticles(), "UFS");
book(_hist, 1, 1, 1);
}
void findDecayProducts(const Particle & mother,
unsigned int & nstable,
Particles& eta, Particles& K) {
for(const Particle & p : mother.children()) {
long id = p.abspid();
if (id == PID::ETA ) {
eta.push_back(p);
++nstable;
}
else if (id == PID::KPLUS) {
K.push_back(p);
++nstable;
}
else if ( !p.children().empty() ) {
findDecayProducts(p, nstable, eta,K);
}
else
++nstable;
}
}
/// Perform the per-event analysis
void analyze(const Event& event) {
const UnstableParticles& ufs = apply<UnstableParticles>(event, "UFS");
for (const Particle& p : ufs.particles(Cuts::abspid==PID::TAU)) {
Particles eta, K;
unsigned int nstable = 0;
// find the decay products we want
findDecayProducts(p, nstable, eta, K);
if (nstable != 3) continue;
// K eta
if (K.size() == 1 && eta.size() == 1)
_hist->fill((eta[0].momentum()+K[0].momentum()).mass());
}
}
/// Normalise histograms etc., after the run
void finalize() {
normalize(_hist);
}
///@}
/// @name Histograms
///@{
Histo1DPtr _hist;
///@}
};
RIVET_DECLARE_PLUGIN(CLEOII_1996_I415409);
}
|