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

#include <LRSMquantities.h>

+ Inheritance diagram for MH06_LRSM:

Detailed Description

Definition at line 228 of file LRSMquantities.h.

Public Member Functions

double computeThValue ()
 
 MH06_LRSM (const StandardModel &SM_i)
 MH06_LRSM 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...
 

Public Attributes

const LeftRightSymmetricModelmyLRSM
 

Additional Inherited Members

- 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

◆ MH06_LRSM()

MH06_LRSM::MH06_LRSM ( const StandardModel SM_i)

MH06_LRSM constructor.

Definition at line 288 of file LRSMquantities.cpp.

289 : ThObservable(SM_i), myLRSM(static_cast<const LeftRightSymmetricModel*> (&SM_i))
290 {
291 }

Member Function Documentation

◆ computeThValue()

double MH06_LRSM::computeThValue ( )
virtual
Returns
\(m_{H^0_6}\)

Implements ThObservable.

Definition at line 293 of file LRSMquantities.cpp.

294 {
295  double Ale = myLRSM->getAle();
296  double cW2 = myLRSM->c02();
297  double g2 = sqrt(4.0 * M_PI * Ale / (1 - cW2));
298  double g2_2 = g2*g2;
299  double vev = myLRSM->v();
300  double mH1psq = myLRSM->getmH1p_2();
301  double mH2psq = myLRSM->getmH2p_2();
302  double xi = myLRSM->getxi_LRSM();
303  double kappasq = 0.5 * vev * vev * (1.0 - xi * xi);
304  double mWR = myLRSM->getmWR();
305  double mWR2 = mWR*mWR;
306 
307  return sqrt((g2_2 * kappasq * (mH1psq - mH2psq) + 2.0 * mH1psq * mWR2) / (g2_2 * kappasq + 2.0 * mWR2));
308 }

Member Data Documentation

◆ myLRSM

const LeftRightSymmetricModel* MH06_LRSM::myLRSM

Definition at line 241 of file LRSMquantities.h.


The documentation for this class was generated from the following files:
LeftRightSymmetricModel::getmH1p_2
double getmH1p_2() const
Definition: LeftRightSymmetricModel.h:187
StandardModel::v
virtual double v() const
The Higgs vacuum expectation value.
Definition: StandardModel.cpp:943
LeftRightSymmetricModel::getxi_LRSM
double getxi_LRSM() const
Definition: LeftRightSymmetricModel.h:208
MH06_LRSM::myLRSM
const LeftRightSymmetricModel * myLRSM
Definition: LRSMquantities.h:241
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
LeftRightSymmetricModel::getmWR
double getmWR() const
Definition: LeftRightSymmetricModel.h:215
StandardModel::c02
double c02() const
The square of the cosine of the weak mixing angle defined without weak radiative corrections.
Definition: StandardModel.cpp:965
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385
LeftRightSymmetricModel::getmH2p_2
double getmH2p_2() const
Definition: LeftRightSymmetricModel.h:194
StandardModel::getAle
double getAle() const
A get method to retrieve the fine-structure constant .
Definition: StandardModel.h:748