Documentation of MARTY
A Modern ARtificial Theoretical phYsicist
mssm.h
1 #ifndef DEFINITION_MSSM_H_INCLUDED
2 #define DEFINITION_MSSM_H_INCLUDED
3 
4 #include "marty.h"
5 
6 namespace mty {
7 
8 std::unique_ptr<mty::Model> build_mssm();
9 
10 inline mty::Model &get_mssm()
11 {
12  static std::unique_ptr<mty::Model> model = build_mssm();
13  return *model;
14 }
15 
16 } // End of namespace mty
17 
18 #endif
Namespace of MARTY.
Definition: 2HDM.h:31
Contains all objects in the theory. In particular QuantumField objects, Gauge, Flavor, Particle...
Definition: model.h:55