|
Rivet analyses reference
MC_MUONS
Monte Carlo validation observables for muon production
Experiment: ()
Status: VALIDATED
Authors:
No references listed
Beams: * *
Beam energies: ANY
Any muons with $p_\perp > 0.5$ GeV are found and projected onto many different observables. To restrict attention to direct/prompt electrons only, use the DIRECT option. To use lepton dressing, use the DRESSED option; this only makes sense for prompt leptons, and is automatically activated if DIRECT=1 is used, hence the main use of DRESSED is to *disable* lepton dressing in DIRECT=1 mode.
Source code:
MC_MUONS.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
45
46
47
48
49
50
51
52 | // -*- C++ -*-
#include "Rivet/Analyses/MC_ParticleAnalysis.hh"
#include "Rivet/Projections/PromptFinalState.hh"
#include "Rivet/Projections/DressedLeptons.hh"
namespace Rivet {
/// @brief MC validation analysis for muons
class MC_MUONS : public MC_ParticleAnalysis {
public:
MC_MUONS()
: MC_ParticleAnalysis("MC_MUONS", 2, "muon")
{ }
void init() {
const bool direct = getOption<bool>("DIRECT", false);
const bool dressed = getOption<bool>("DRESSED", direct);
MSG_DEBUG("Direct-only: " << direct << ", dressed: " << dressed);
FinalState muons(Cuts::abspid == PID::MUON);
if (!direct) {
declare(muons, "Muons");
} else if (!dressed) {
declare(PromptFinalState(muons), "Muons");
} else {
DressedLeptons dleps(FinalState(Cuts::abspid == PID::PHOTON), muons, 0.1);
declare(dleps, "Muons");
}
MC_ParticleAnalysis::init();
}
void analyze(const Event& event) {
const Particles mus = apply<ParticleFinder>(event, "Muons").particlesByPt(Cuts::pT > 0.5*GeV);
MC_ParticleAnalysis::_analyze(event, mus);
}
void finalize() {
MC_ParticleAnalysis::finalize();
}
};
RIVET_DECLARE_PLUGIN(MC_MUONS);
}
|
|