a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
HeffDLij.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #ifndef HEFFDLIJ_H
9 #define HEFFDLIJ_H
10 
11 #include "StandardModel.h"
12 #include "StandardModelMatching.h"
13 #include "WilsonCoefficient.h"
14 
23 class HeffDLij {
24 public:
30  HeffDLij(const StandardModel & SM_i);
31 
35  virtual ~HeffDLij();
36 
43 
47  const StandardModel& GetModel() const {
48  return model;
49  }
50 
51 private :
56 
69 
70  //gslpp::vector<gslpp::complex> nlep, nlep2, nlepCC;
71 };
72 
73 #endif /* HEFFDLIJ_H */
74 
HeffDLij::coeffDLij_1
WilsonCoefficient coeffDLij_1
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:60
WilsonCoefficient
A class for the Wilson coefficients.
Definition: WilsonCoefficient.h:22
StandardModel.h
HeffDLij::~HeffDLij
virtual ~HeffDLij()
destructor of the class HeffDLij.
Definition: HeffDLij.cpp:15
HeffDLij::HeffDLij
HeffDLij(const StandardModel &SM_i)
The constructor of the class HeffDLij.
Definition: HeffDLij.cpp:10
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
HeffDLij::ComputeCoeffDLij
gslpp::vector< gslpp::complex > ** ComputeCoeffDLij(int li_lj)
Computes the Wilson coefficients for the process .
Definition: HeffDLij.cpp:18
HeffDLij::coeffDLij_2
WilsonCoefficient coeffDLij_2
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:64
HeffDLij::coeffDLij_3
WilsonCoefficient coeffDLij_3
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:68
StandardModelMatching.h
HeffDLij
A class for calculating all the Wilson coefficients for the process .
Definition: HeffDLij.h:23
HeffDLij::model
const StandardModel & model
Variable which stores the model information.
Definition: HeffDLij.h:55
WilsonCoefficient.h
gslpp::vector< gslpp::complex >
HeffDLij::GetModel
const StandardModel & GetModel() const
Calls the model analyzed to calculate Wilson coefficients for the process .
Definition: HeffDLij.h:47