Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
BlnuDecay.h
Go to the documentation of this file.
1#ifndef BLNUDECAY_H
2#define BLNUDECAY_H
3
4#include "DecayParent.h"
5#include "DefaultConfig.h"
6#include "PlnuCalculator.h"
7
11
15class BlnuDecay : public DecayParentConfigurable<DecayConfig> {
16private:
17 BlnuDecayCache cache;
18
19protected:
20 scalar_t R();
21 double BR();
22
23public:
24 BlnuDecay(QCDOrder order, double matching_scale, double hadronic_scale, ObservablePortsConfig& ports) : DecayParentConfigurable(DecayMapper::to_id(Decays::B__l_nu), matching_scale, hadronic_scale, order, ports) {
26 this->max_order = QCDOrder::LO;
27 }
28
29 void load_params() override;
30 std::vector<ObservableValue> compute_observable(Observables obs) override;
31 std::vector<ObservableValue> compute_observable(ObservableId obs) override;
32
33};
34
35#endif // BLNUDECAY_H
Base class for observable/decay computation modules.
Observables
Definition GeneralEnum.h:4
QCDOrder
Decays
Decay parent for the B > l nu_l decays. Currently implements Bu > tau nu_tau branching ratio and the ...
Definition BlnuDecay.h:15
std::vector< ObservableValue > compute_observable(Observables obs) override
Compute an observable given a public observable enum.
Definition BlnuDecay.cpp:17
double BR()
Definition BlnuDecay.cpp:13
scalar_t R()
Definition BlnuDecay.cpp:9
void load_params() override
Load and cache parameters needed by this decay.
Definition BlnuDecay.cpp:3
BlnuDecay(QCDOrder order, double matching_scale, double hadronic_scale, ObservablePortsConfig &ports)
Definition BlnuDecay.h:24
Mapper for decay names, dynamic ids and observable membership.
Definition decay_ids.hpp:88
Typed configuration adapter for DecayParent using std::any.
WilsonBuildConfig w_config
Wilson build configuration used when enabling this decay (scales, order, groups).
ObservablePortsConfig & ports
Reference to the ports/configuration wiring this decay to the framework.
Definition DecayParent.h:93
QCDOrder max_order
Maximum QCD order supported by this decay module (default: LO).
Definition DecayParent.h:90
PlnuCalculator calc
Definition BlnuDecay.h:9
Dependency container (“ports”) for observable computations.
std::unordered_set< WGroupId > groups
Set of Wilson operator group identifiers to be included in the build.
Definition Configs.h:36