Hyperiso 1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
PIChargedCurrentWilsonSUSY.h
Go to the documentation of this file.
1#ifndef PICHARGEDCURRENTWILSON_SUSY_H
2#define PICHARGEDCURRENTWILSON_SUSY_H
3
4#include "Wilson.h"
5
7public:
8 C_V1_du_SUSY() : WilsonCoefficient("C_V1_du_SUSY", GroupMapper::str(WGroup::CC_du) + "_MATCH") {}
9
10
11
12
13
14 std::shared_ptr<WilsonCoefficient> clone() const override {
15 return std::make_shared<C_V1_du_SUSY>(*this);
16 }
17
18};
19
21public:
22 C_V2_du_SUSY() : WilsonCoefficient("C_V2_du_SUSY", GroupMapper::str(WGroup::CC_du) + "_MATCH") {}
23
24
25
26
27
28 std::shared_ptr<WilsonCoefficient> clone() const override {
29 return std::make_shared<C_V2_du_SUSY>(*this);
30 }
31
32};
33
35public:
37
38
39
40 static double compute_LO(const ParamSrc& src);
41
42 std::shared_ptr<WilsonCoefficient> clone() const override {
43 return std::make_shared<C_S1_du_SUSY>(*this);
44 }
45
46};
47
49public:
51
52
53
54 static double compute_LO(const ParamSrc& src);
55
56 std::shared_ptr<WilsonCoefficient> clone() const override {
57 return std::make_shared<C_S2_du_SUSY>(*this);
58 }
59
60};
61
63public:
64 C_T_du_SUSY() : WilsonCoefficient("C_T_du_SUSY", GroupMapper::str(WGroup::CC_du) + "_MATCH") {}
65
66
67
68
69
70 std::shared_ptr<WilsonCoefficient> clone() const override {
71 return std::make_shared<C_T_du_SUSY>(*this);
72 }
73
74};
75
76#endif
WGroup
Domain objects representing Wilson coefficients and their matching metadata.
static double compute_LO(const ParamSrc &src)
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.
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