File indexing completed on 2025-04-19 09:10:07
0001 #ifndef MODEL_Main_Effective_Higgs_Coupling_H
0002 #define MODEL_Main_Effective_Higgs_Coupling_H
0003
0004 #include "ATOOLS/Math/MyComplex.H"
0005
0006 namespace MODEL {
0007
0008
0009 class Effective_Higgs_Coupling {
0010 double m_mhiggs;
0011 Complex f(double);
0012 public:
0013
0014
0015 Effective_Higgs_Coupling(const double mhiggs);
0016
0017 Complex GetFermionContribution(double mass,bool pseudoscalar=false);
0018 Complex GetVectorContribution(double mass);
0019 Complex GetScalarContribution(double mass);
0020 };
0021
0022 }
0023
0024
0025
0026 #endif