Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
PIChargedCurrentWilson.h
Go to the documentation of this file.
1#ifndef PICHARGEDCURRENTWILSON_H
2#define PICHARGEDCURRENTWILSON_H
3
4#include "Wilson.h"
5
6class C_V1_du : public WilsonCoefficient {
7public:
8 C_V1_du();
9
10 std::shared_ptr<WilsonCoefficient> clone() const override {
11 return std::make_shared<C_V1_du>(*this);
12 }
13
14 static double compute_LO(const ParamSrc& src);
15};
16
17class C_V2_du : public WilsonCoefficient {
18public:
20
21
22
23
24
25 std::shared_ptr<WilsonCoefficient> clone() const override {
26 return std::make_shared<C_V2_du>(*this);
27 }
28};
29
30class C_S1_du : public WilsonCoefficient {
31public:
33
34
35
36
37
38 std::shared_ptr<WilsonCoefficient> clone() const override {
39 return std::make_shared<C_S1_du>(*this);
40 }
41
42};
43
44class C_S2_du : public WilsonCoefficient {
45public:
47
48
49
50
51
52 std::shared_ptr<WilsonCoefficient> clone() const override {
53 return std::make_shared<C_S2_du>(*this);
54 }
55};
56
57class C_T_du : public WilsonCoefficient {
58public:
60
61
62
63
64
65 std::shared_ptr<WilsonCoefficient> clone() const override {
66 return std::make_shared<C_T_du>(*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 &src)
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