Heffmueconv.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 HEPfit Collaboration
3  * All rights reserved.
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 
19 
20  std::vector<WilsonCoefficient>& mcb8 = model.getMyMatching() -> 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 }
const StandardModel & model
Variable which stores the model information.
Definition: Heffmueconv.h:54
virtual ~Heffmueconv()
destructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:15
virtual StandardModelMatching * getMyMatching() const
A get method to access the member pointer of type StandardModelMatching.
virtual void resetCoefficient()
orders
An enum type for orders in QCD.
Definition: OrderScheme.h:31
gslpp::vector< gslpp::complex > ** getCoeff() const
A model class for the Standard Model.
void setCoeff(const gslpp::vector< gslpp::complex > &z, orders order_i)
Heffmueconv(const StandardModel &SM_i)
The constructor of the class Heffmueconv.
Definition: Heffmueconv.cpp:10
Definition: OrderScheme.h:33
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
orders getOrder() const