Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-19 09:10:07

0001 #ifndef MODEL_SM_Model_H
0002 #define MODEL_SM_Model_H
0003 
0004 #include "MODEL/Main/Model_Base.H"
0005 
0006 
0007 namespace MODEL {
0008 
0009   class Standard_Model: public Model_Base {
0010   private:
0011 
0012     int  m_ckmorder, m_dec_g4;
0013 
0014     void FixEWParameters();
0015     void FixCKM();
0016 
0017     void ParticleInit();
0018 
0019     void InitQEDVertices();
0020     void InitQCDVertices();
0021     void InitEWVertices();
0022 
0023   public :
0024 
0025     Standard_Model();
0026     bool ModelInit();
0027     void InitVertices();
0028 
0029   };
0030 
0031 }
0032 
0033 #endif