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

A class for the approximate scalar masses. More...

#include <LRSMquantities.h>

+ Inheritance diagram for MH0_app:

Detailed Description

A class for the approximate scalar masses.

Author
HEPfit Collaboration

Definition at line 293 of file LRSMquantities.h.

Public Member Functions

double computeThValue ()
 
 MH0_app (const StandardModel &SM_i, const int ind)
 
- 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...
 

Private Attributes

const int index
 
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

◆ MH0_app()

MH0_app::MH0_app ( const StandardModel SM_i,
const int  ind 
)

Definition at line 351 of file LRSMquantities.cpp.

352 : ThObservable(SM_i), index(ind), myLRSM(static_cast<const LeftRightSymmetricModel*> (&SM_i))
353 {
354 }

Member Function Documentation

◆ computeThValue()

double MH0_app::computeThValue ( )
virtual

Implements ThObservable.

Definition at line 356 of file LRSMquantities.cpp.

357 {
358  switch (index)
359  {
360  case 0:
361  return sqrt(myLRSM->getmH0sq1_app());
362  case 1:
363  return sqrt(myLRSM->getmH0sq2_app());
364  case 2:
365  return sqrt(myLRSM->getmH0sq3_app());
366  case 3:
367  return sqrt(myLRSM->getmH0sq4_app());
368  default:
369  throw std::runtime_error("MH0_app::computeThValue(): undefined index");
370  }
371 }

Member Data Documentation

◆ index

const int MH0_app::index
private

Definition at line 301 of file LRSMquantities.h.

◆ myLRSM

const LeftRightSymmetricModel* MH0_app::myLRSM
private

Definition at line 302 of file LRSMquantities.h.


The documentation for this class was generated from the following files:
LeftRightSymmetricModel::getmH0sq2_app
double getmH0sq2_app() const
Gets the approximate second scalar mass square.
Definition: LeftRightSymmetricModel.h:156
LeftRightSymmetricModel::getmH0sq3_app
double getmH0sq3_app() const
Gets the approximate third scalar mass square.
Definition: LeftRightSymmetricModel.h:165
MH0_app::index
const int index
Definition: LRSMquantities.h:301
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
MH0_app::myLRSM
const LeftRightSymmetricModel * myLRSM
Definition: LRSMquantities.h:302
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385
LeftRightSymmetricModel::getmH0sq1_app
double getmH0sq1_app() const
Gets the approximate first scalar mass square.
Definition: LeftRightSymmetricModel.h:147
LeftRightSymmetricModel::getmH0sq4_app
double getmH0sq4_app() const
Gets the approximate fourth scalar mass square.
Definition: LeftRightSymmetricModel.h:174