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

#include <LRSMquantities.h>

+ Inheritance diagram for mu1_2_LRSM:

Detailed Description

Definition at line 81 of file LRSMquantities.h.

Public Member Functions

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

◆ mu1_2_LRSM()

mu1_2_LRSM::mu1_2_LRSM ( const StandardModel SM_i)

mu1_2_LRSM constructor.

Definition at line 125 of file LRSMquantities.cpp.

126 : ThObservable(SM_i), myLRSM(static_cast<const LeftRightSymmetricModel*> (&SM_i))
127 {
128 }

Member Function Documentation

◆ computeThValue()

double mu1_2_LRSM::computeThValue ( )
virtual
Returns
\(\mu_1^2\)

Implements ThObservable.

Definition at line 130 of file LRSMquantities.cpp.

131 {
132  double Ale = myLRSM->getAle();
133  double cW2 = myLRSM->c02();
134  double g2 = sqrt(4.0 * M_PI * Ale / (1 - cW2));
135  double g2_2 = g2*g2;
136  double vev = myLRSM->v();
137  double xi = myLRSM->getxi_LRSM();
138  double kappasq = 0.5 * vev * vev * (1.0 - xi * xi);
139  double mWR = myLRSM->getmWR();
140  double mWR2 = mWR*mWR;
141  double lambda1 = myLRSM->getlambda1_LRSM();
142  double alpha1 = myLRSM->getalpha1_LRSM();
143  // bool CPviolation=myLRSM->getCPVflag();
144 
145  // double mu1_2=0.0;
146  // if(CPviolation)
147  // {
148  // }
149  // else
150  // {
151  // }
152  return (mWR2 * alpha1) / g2_2 + 2.0 * kappasq*lambda1;
153 }

Member Data Documentation

◆ myLRSM

const LeftRightSymmetricModel* mu1_2_LRSM::myLRSM

Definition at line 94 of file LRSMquantities.h.


The documentation for this class was generated from the following files:
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
LeftRightSymmetricModel::getlambda1_LRSM
double getlambda1_LRSM() const
Definition: LeftRightSymmetricModel.h:222
LeftRightSymmetricModel::getalpha1_LRSM
double getalpha1_LRSM() const
Definition: LeftRightSymmetricModel.h:264
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
lambda1
An observable class for the quartic Higgs potential coupling .
Definition: THDMquantities.h:382
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
mu1_2_LRSM::myLRSM
const LeftRightSymmetricModel * myLRSM
Definition: LRSMquantities.h:94
StandardModel::getAle
double getAle() const
A get method to retrieve the fine-structure constant .
Definition: StandardModel.h:748