a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Loading...
Searching...
No Matches
EvolDB1Mll.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2012 HEPfit Collaboration
3 *
4 *
5 * For the licensing terms see doc/COPYING.
6 */
7
8#ifndef EVOLDB1MLL_H
9#define EVOLDB1MLL_H
10
11class StandardModel;
12#include "RGEvolutor.h"
13
14class EvolDB1Mll : public RGEvolutor {
25 public:
37 virtual ~EvolDB1Mll();
45 gslpp::matrix<double> AnomalousDimension_M(orders order, unsigned int n_u, unsigned int n_d) const;
54 gslpp::matrix<double>& Df1EvolMll(double mu, double M, orders order, schemes scheme = NDR);
62 gslpp::matrix<double> ToRescaleBasis(orders order, unsigned int n_u, unsigned int n_d) const;
68 gslpp::matrix<double> ToEffectiveBasis(gslpp::matrix<double> mat)const;
69
70 private:
75 int nu,nd;
82 double a[4][13], b[4][13][13][13], c[4][13][13][13], d[4][13][13][13];
91 void Df1EvolMll(double mu, double M, double nf, schemes scheme);
92 gslpp::matrix<gslpp::complex> v, vi, js, h, gg, s_s, jssv, jss, jv, vij;
93 gslpp::vector<gslpp::complex> e;
94 unsigned int dim;
95 double alsMZ_cache = 0.;
96 double Mz_cache = 0.;
97 };
98
99
100#endif /* EVOLDB1MLL_H */
101
orders
Definition OrderScheme.h:33
schemes
Definition OrderScheme.h:20
@ NDR
Definition OrderScheme.h:21
gslpp::vector< gslpp::complex > e
Definition EvolDB1Mll.h:93
gslpp::matrix< gslpp::complex > js
Definition EvolDB1Mll.h:92
double Mz_cache
Definition EvolDB1Mll.h:96
double b[4][13][13][13]
Definition EvolDB1Mll.h:82
double c[4][13][13][13]
Definition EvolDB1Mll.h:82
gslpp::matrix< gslpp::complex > s_s
Definition EvolDB1Mll.h:92
gslpp::matrix< gslpp::complex > jss
Definition EvolDB1Mll.h:92
gslpp::matrix< gslpp::complex > vi
Definition EvolDB1Mll.h:92
double alsMZ_cache
Definition EvolDB1Mll.h:95
double d[4][13][13][13]
Definition EvolDB1Mll.h:82
gslpp::matrix< gslpp::complex > jv
Definition EvolDB1Mll.h:92
virtual ~EvolDB1Mll()
EvolDF1bsg destructor.
gslpp::matrix< gslpp::complex > vij
Definition EvolDB1Mll.h:92
gslpp::matrix< gslpp::complex > gg
Definition EvolDB1Mll.h:92
gslpp::matrix< gslpp::complex > h
Definition EvolDB1Mll.h:92
double a[4][13]
Definition EvolDB1Mll.h:82
gslpp::matrix< gslpp::complex > v
Definition EvolDB1Mll.h:92
gslpp::matrix< gslpp::complex > jssv
Definition EvolDB1Mll.h:92
gslpp::matrix< double > ToEffectiveBasis(gslpp::matrix< double > mat) const
a method returning the anomalous dimension for the evolution of the effective Wilson coefficients
gslpp::matrix< double > ToRescaleBasis(orders order, unsigned int n_u, unsigned int n_d) const
a method returning the anomalous dimension in the Chetyrkin, Misiak and Munz operator basis
gslpp::matrix< double > & Df1EvolMll(double mu, double M, orders order, schemes scheme=NDR)
a method returning the evolutor related to the high scale and the low scale
unsigned int dim
Definition EvolDB1Mll.h:94
gslpp::matrix< double > AnomalousDimension_M(orders order, unsigned int n_u, unsigned int n_d) const
a method returning the anomalous dimension matrix given in the Misiak basis
const StandardModel & model
Definition EvolDB1Mll.h:83
A class for the RG evolutor of the Wilson coefficients.
Definition RGEvolutor.h:24
A model class for the Standard Model.