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"
13#include "WilsonCoefficient.h"
14
23class HeffDLij {
24public:
30 HeffDLij(const StandardModel & SM_i);
31
35 virtual ~HeffDLij();
36
42 gslpp::vector<gslpp::complex>** ComputeCoeffDLij(int li_lj);
43
47 const StandardModel& GetModel() const {
48 return model;
49 }
50
51private :
56
69
70 //gslpp::vector<gslpp::complex> nlep, nlep2, nlepCC;
71};
72
73#endif /* HEFFDLIJ_H */
74
A class for calculating all the Wilson coefficients for the process .
Definition: HeffDLij.h:23
virtual ~HeffDLij()
destructor of the class HeffDLij.
Definition: HeffDLij.cpp:15
const StandardModel & model
Variable which stores the model information.
Definition: HeffDLij.h:55
WilsonCoefficient coeffDLij_3
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:68
WilsonCoefficient coeffDLij_1
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:60
WilsonCoefficient coeffDLij_2
Variable which stores the Wilson coefficient for .
Definition: HeffDLij.h:64
gslpp::vector< gslpp::complex > ** ComputeCoeffDLij(int li_lj)
Computes the Wilson coefficients for the process .
Definition: HeffDLij.cpp:18
HeffDLij(const StandardModel &SM_i)
The constructor of the class HeffDLij.
Definition: HeffDLij.cpp:10
const StandardModel & GetModel() const
Calls the model analyzed to calculate Wilson coefficients for the process .
Definition: HeffDLij.h:47
A model class for the Standard Model.
A class for the Wilson coefficients.