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

#include <TopQuarkObservables.h>

+ Inheritance diagram for BR_tuH:

Detailed Description

Definition at line 1912 of file TopQuarkObservables.h.

Public Member Functions

 BR_tuH (const StandardModel &SM_i)
 BR_tuH: constructor. More...
 
double computeThValue ()
 
double ewgc (const std::string name) const
 
double ewgc (const std::string name, int i, int j) const
 
double ewgc (const std::string name, int i, int j, int k, int l) const
 
- 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 TopQuarkObservables mytopobs
 

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

◆ BR_tuH()

BR_tuH::BR_tuH ( const StandardModel SM_i)

BR_tuH: constructor.

Definition at line 5021 of file TopQuarkObservables.cpp.

5022: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
5023{
5024 setParametersForObservable(make_vector<std::string>() << "Gammatop");
5025}
const TopQuarkObservables mytopobs
A model class for new physics in the form of the dimension-six effective Lagrangian.
void setParametersForObservable(std::vector< std::string > parametersForObservable_i)
A set method to get the parameters for the specific observable.
Definition: ThObservable.h:109
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121

Member Function Documentation

◆ computeThValue()

double BR_tuH::computeThValue ( )
virtual
Returns
The value of BR_tuH:

Implements ThObservable.

Definition at line 5027 of file TopQuarkObservables.cpp.

5028{
5029 bool flag_Quadratic = false; //Needs to be properly defined
5030
5031
5032 double alpha = mytopobs.GetmyNPSMEFTd6General().getAle();
5033 double sbar = -mytopobs.GetmyNPSMEFTd6General().getXBZ_tree();
5034 double sbar2 = sbar * sbar;
5036 double mt2 = mt * mt;
5037 double mH = mytopobs.GetmyNPSMEFTd6General().getMHl();
5038 double mH2 = mH * mH;
5039 double v = mytopobs.GetmyNPSMEFTd6General().v();
5040 double v2 = v * v;
5041 double Gammatop = SM.getOptionalParameter("Gammatop");
5042
5043 gslpp::complex gL = 1.5 * v2 * (ewgc("CuHR",2,0) - gslpp::complex::i() * ewgc("CuHI",2,0));
5044 gslpp::complex gR = 1.5 * v2 * (ewgc("CuHR",0,2) + gslpp::complex::i() * ewgc("CuHI",0,2));
5045 double absgL2 = (gL * gL.conjugate()).abs();
5046 double absgR2 = (gR * gR.conjugate()).abs();
5047
5048
5049 if(flag_Quadratic){
5050
5051 return 0.;
5052
5053 }
5054 else{
5055
5056 double total = alpha / (32. * sbar2) * mt * (absgL2 + absgR2) * (1. - mH2 / mt2) * (1. - mH2 / mt2) / Gammatop;
5057
5058 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
5059
5060 return total;
5061
5062 }
5063
5064}
double ewgc(const std::string name) const
const double getOptionalParameter(std::string name) const
A method to get parameters that are specific to only one set of observables.
Definition: QCD.h:450
const double getMtpole() const
A get method to access the pole mass of the top quark.
Definition: QCD.h:600
virtual const double getMHl() const
A get method to retrieve the Higgs mass .
const double v() const
The Higgs vacuum expectation value.
const double getAle() const
A get method to retrieve the fine-structure constant .
const NPSMEFTd6General & GetmyNPSMEFTd6General() const

◆ ewgc() [1/3]

double BR_tuH::ewgc ( const std::string  name) const
inline

Definition at line 1925 of file TopQuarkObservables.h.

1926 {
1927 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name);
1928 }

◆ ewgc() [2/3]

double BR_tuH::ewgc ( const std::string  name,
int  i,
int  j 
) const
inline

Definition at line 1930 of file TopQuarkObservables.h.

1931 {
1932 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j);
1933 }

◆ ewgc() [3/3]

double BR_tuH::ewgc ( const std::string  name,
int  i,
int  j,
int  k,
int  l 
) const
inline

Definition at line 1935 of file TopQuarkObservables.h.

1936 {
1937 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l);
1938 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables BR_tuH::mytopobs
private

Definition at line 1943 of file TopQuarkObservables.h.


The documentation for this class was generated from the following files: