a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
unitarity7 Class Reference

Eigenvalue of the \(\Phi \Phi \to \Phi \Phi\) scattering matrix. More...

#include <unitarity.h>

+ Inheritance diagram for unitarity7:

Detailed Description

Eigenvalue of the \(\Phi \Phi \to \Phi \Phi\) scattering matrix.

\(\Lambda^{odd}_{21}\).

Definition at line 181 of file unitarity.h.

Public Member Functions

double computeThValue ()
 
 unitarity7 (const StandardModel &SM_i)
 Constructor for \(\Lambda^{odd}_{21}\) from equations (9) in [129]. More...
 
- Public Member Functions inherited from unitarity
 unitarity (const StandardModel &SM_i)
 Constructor. More...
 
- Public Member Functions inherited from ThObservable
double getBinMax ()
 A get method to get the maximum value of the bin. More...
 
double getBinMin ()
 A get method to get the minimum value of the bin. More...
 
const StandardModelgetModel ()
 A get method to get the model. More...
 
const std::vector< std::string > getParametersForObservable ()
 A get method to get the parameters for the specific observable. More...
 
void setBinMax (double max)
 A set method to set the maximum value of the bin. More...
 
void setBinMin (double min)
 A set method to set the minimum value of the bin. More...
 
void setParametersForObservable (std::vector< std::string > parametersForObservable_i)
 A set method to get the parameters for the specific observable. More...
 
 ThObservable (const StandardModel &SM_i)
 Constructor. More...
 
 ThObservable (const ThObservable &orig)
 The copy constructor. More...
 
virtual ~ThObservable ()
 The default destructor. More...
 

Additional Inherited Members

- Public Attributes inherited from unitarity
const THDMmyTHDM
 
- Protected Attributes inherited from ThObservable
double max
 the bin maximum. More...
 
double min
 The bin minimum. More...
 
std::vector< std::string > parametersForObservable
 a vector of parameter namesfor the specific observable More...
 
const StandardModelSM
 A reference to an object of StandardMode class. More...
 

Constructor & Destructor Documentation

◆ unitarity7()

unitarity7::unitarity7 ( const StandardModel SM_i)

Constructor for \(\Lambda^{odd}_{21}\) from equations (9) in [129].

Definition at line 181 of file unitarity.cpp.

182 : unitarity(SM_i)
183 {}

Member Function Documentation

◆ computeThValue()

double unitarity7::computeThValue ( )
virtual
Returns
\(\Lambda^{odd}_{21}=\lambda_3+\lambda_4\)

Corresponds to \(f_1=f_2\) from equation (2.5) in [12]

Reimplemented from unitarity.

Definition at line 185 of file unitarity.cpp.

186 {
187  double mHl2=myTHDM->getmHl2();
188  double mA2=myTHDM->getmA2();
189  double mHh2=myTHDM->getmHh2();
190  double vev=myTHDM->v();
191  double sina=myTHDM->getsina();
192  double cosa=myTHDM->getcosa();
193  double sinb=myTHDM->getsinb();
194  double cosb=myTHDM->getcosb();
195 
196  return (mA2 +((mHh2-mHl2)*cosa*sina)/(cosb*sinb))/(vev*vev);
197 }

The documentation for this class was generated from the following files:
THDM::getsinb
double getsinb() const
A method get .
Definition: THDM.h:291
StandardModel::v
virtual double v() const
The Higgs vacuum expectation value.
Definition: StandardModel.cpp:917
unitarity::unitarity
unitarity(const StandardModel &SM_i)
Constructor.
Definition: unitarity.cpp:12
THDM::getmA2
double getmA2() const
A method get the squared mass of the pseudoscalar Higgs A.
Definition: THDM.h:423
unitarity::myTHDM
const THDM * myTHDM
Definition: unitarity.h:45
THDM::getsina
double getsina() const
A method get .
Definition: THDM.h:331
THDM::getmHh2
double getmHh2() const
A method get the squared mass of the "non-125 GeV" neutral scalar Higgs.
Definition: THDM.h:365
THDM::getcosa
double getcosa() const
A method get .
Definition: THDM.h:323
THDM::getmHl2
double getmHl2() const
A method get the squared mass of the lighter neutral scalar Higgs.
Definition: THDM.h:339
THDM::getcosb
double getcosb() const
A method get .
Definition: THDM.h:299