a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
Heffmueconv.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 HEPfit Collaboration
3 *
4 *
5 * For the licensing terms see doc/COPYING.
6 */
7
8#include "Heffmueconv.h"
9
11 model(SM_i),
12 coeffmueconv(8, NDR , LO){
13}
14
16}
17
18gslpp::vector<gslpp::complex>** Heffmueconv::ComputeCoeffmueconv() {
19
20 const std::vector<WilsonCoefficient>& mcb8 = model.getMatching().CMmueconv();
21 orders ordmueconv = coeffmueconv.getOrder();
23 for (unsigned int i = 0; i < mcb8.size(); i++){
24 for (int j = LO; j <= ordmueconv; j++){
26 + *mcb8[i].getCoeff(orders(j)), orders(j));
27 }
28 }
29
30 return coeffmueconv.getCoeff();
31
32}
@ LO
Definition: OrderScheme.h:34
@ NDR
Definition: OrderScheme.h:21
virtual ~Heffmueconv()
destructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:15
WilsonCoefficient coeffmueconv
Variable which stores the Wilson coefficient for conversion in Nuclei.
Definition: Heffmueconv.h:59
gslpp::vector< gslpp::complex > ** ComputeCoeffmueconv()
Computes the Wilson coefficients for the process conversion in Nuclei.
Definition: Heffmueconv.cpp:18
const StandardModel & model
Variable which stores the model information.
Definition: Heffmueconv.h:54
Heffmueconv(const StandardModel &SM_i)
The constructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:10
A model class for the Standard Model.
virtual StandardModelMatching & getMatching() const
A get method to access the member reference of type StandardModelMatching.
gslpp::vector< gslpp::complex > ** getCoeff() const
void setCoeff(const gslpp::vector< gslpp::complex > &z, orders order_i)
orders getOrder() const
virtual void resetCoefficient()
orders
An enum type for orders in QCD.
Definition: OrderScheme.h:33