Rivet Analyses Reference
MC_KTSPLITTINGS
Monte Carlo validation observables for jet production
Experiment: ()
Status: VALIDATED
Authors:No references listed
Beams: * *
Beam energies: ANY
Run details:- Pure QCD jet production events at an arbitrary collider.
Monte Carlo validation observables for jet production
Source code:
MC_KTSPLITTINGS.cc
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
| // -*- C++ -*-
#include "Rivet/Analyses/MC_JetSplittings.hh"
#include "Rivet/Projections/FinalState.hh"
#include "Rivet/Projections/FastJets.hh"
namespace Rivet {
/// @brief MC validation analysis for jet events
class MC_KTSPLITTINGS : public MC_JetSplittings {
public:
MC_KTSPLITTINGS()
: MC_JetSplittings("MC_KTSPLITTINGS", 4, "Jets")
{ }
public:
void init() {
FastJets jetpro(FinalState(), FastJets::KT, 0.6);
declare(jetpro, "Jets");
MC_JetSplittings::init();
}
void analyze(const Event& event) {
MC_JetSplittings::analyze(event);
}
void finalize() {
MC_JetSplittings::finalize();
}
};
// The hook for the plugin system
RIVET_DECLARE_PLUGIN(MC_KTSPLITTINGS);
}
|