a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
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
@ 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.
Definition: EvolDB1Mll.cpp:80
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
Definition: EvolDB1Mll.cpp:307
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
Definition: EvolDB1Mll.cpp:228
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
Definition: EvolDB1Mll.cpp:344
unsigned int dim
Definition: EvolDB1Mll.h:94
EvolDB1Mll(unsigned int dim, schemes scheme, orders order, const StandardModel &model)
EvolDF1bsg constructor.
Definition: EvolDB1Mll.cpp:12
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
Definition: EvolDB1Mll.cpp:83
const StandardModel & model
Definition: EvolDB1Mll.h:83
A class for the RG evolutor of the Wilson coefficients.
Definition: RGEvolutor.h:24
double M
Definition: RGEvolutor.h:142
A model class for the Standard Model.
orders
An enum type for orders in QCD.
Definition: OrderScheme.h:33
schemes
An enum type for regularization schemes.
Definition: OrderScheme.h:20