Documentation of MARTY
A Modern ARtificial Theoretical phYsicist
wilsonOperator.h
Go to the documentation of this file.
1 // This file is part of MARTY.
2 //
3 // MARTY is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // MARTY is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 // GNU General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with MARTY. If not, see <https://www.gnu.org/licenses/>.
15 
23 #ifndef MTY_WILSONOPERATOR_H_INCLUDED
24 #define MTY_WILSONOPERATOR_H_INCLUDED
25 
26 #include "wilson.h"
27 #include "diracology.h"
28 #include "polarization.h"
29 #include "builtinOperators.h"
30 
31 namespace mty {
32 
33  csl::Expr getWilsonCoefficient(
34  WilsonSet const &wilsons,
35  std::vector<Wilson> const &contributions
36  );
37 
38  csl::Expr getWilsonCoefficient(
39  WilsonSet const &wilsons,
40  std::vector<csl::Expr> const &contributions
41  );
42 
43  csl::Expr getWilsonCoefficient(
44  WilsonSet const &wilsons,
45  Wilson const &contributions
46  );
47 
48  csl::Expr getWilsonCoefficient(
49  WilsonSet const &wilsons,
50  csl::Expr const &contributions
51  );
52 
53  csl::Expr getWilsonCoefficient(
54  Model const &model,
55  WilsonSet const &wilsons,
56  DiracCoupling coupling
57  );
58 
59 } // End of namespace mty
60 
61 #endif /* ifndef MTY_WILSONOPERATOR_H_INCLUDED */
Namespace of MARTY.
Definition: 2HDM.h:31
Contains PolarizationField, class representing polarization vectors in equations. Allows to compute p...