Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
KChargedCurrentWilson.h
Go to the documentation of this file.
1#ifndef KCHARGEDCURRENTWILSON_H
2#define KCHARGEDCURRENTWILSON_H
3
4#include "Wilson.h"
5
6class C_V1_su : public WilsonCoefficient {
7public:
8 C_V1_su();
9
10 std::shared_ptr<WilsonCoefficient> clone() const override {
11 return std::make_shared<C_V1_su>(*this);
12 }
13
14 static double compute_LO(const ParamSrc&);
15};
16
17class C_V2_su : public WilsonCoefficient {
18public:
20
21
22
23
24
25 std::shared_ptr<WilsonCoefficient> clone() const override {
26 return std::make_shared<C_V2_su>(*this);
27 }
28};
29
30class C_S1_su : public WilsonCoefficient {
31public:
33
34
35
36
37
38 std::shared_ptr<WilsonCoefficient> clone() const override {
39 return std::make_shared<C_S1_su>(*this);
40 }
41
42};
43
44class C_S2_su : public WilsonCoefficient {
45public:
47
48
49
50
51
52 std::shared_ptr<WilsonCoefficient> clone() const override {
53 return std::make_shared<C_S2_su>(*this);
54 }
55};
56
57class C_T_su : public WilsonCoefficient {
58public:
60
61
62
63
64
65 std::shared_ptr<WilsonCoefficient> clone() const override {
66 return std::make_shared<C_T_su>(*this);
67 }
68};
69
70#endif
ScaleType
WGroup
Domain objects representing Wilson coefficients and their matching metadata.
std::shared_ptr< WilsonCoefficient > clone() const override
Virtual clone for polymorphic copy.
std::shared_ptr< WilsonCoefficient > clone() const override
Virtual clone for polymorphic copy.
std::shared_ptr< WilsonCoefficient > clone() const override
Virtual clone for polymorphic copy.
static double compute_LO(const ParamSrc &)
std::shared_ptr< WilsonCoefficient > clone() const override
Virtual clone for polymorphic copy.
std::shared_ptr< WilsonCoefficient > clone() const override
Virtual clone for polymorphic copy.
Mapper for WGroup <-> WGroupId <-> optional external string.
Lightweight view over a set of source parameters keyed by ParamId.
Abstract base class representing a Wilson coefficient and its matching information.
Definition Wilson.h:153