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

#include <TopQuarkObservables.h>

+ Inheritance diagram for BR_tuZ:

Detailed Description

Definition at line 1820 of file TopQuarkObservables.h.

Public Member Functions

 BR_tuZ (const StandardModel &SM_i)
 BR_tuZ: 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_tuZ()

BR_tuZ::BR_tuZ ( const StandardModel SM_i)

BR_tuZ: constructor.

Definition at line 4833 of file TopQuarkObservables.cpp.

4834: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4835{
4836 setParametersForObservable(make_vector<std::string>() << "Gammatop");
4837}
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_tuZ::computeThValue ( )
virtual
Returns
The value of BR_tuZ:

Implements ThObservable.

Definition at line 4839 of file TopQuarkObservables.cpp.

4840{
4841 bool flag_Quadratic = false; //Needs to be properly defined
4842
4843
4844 double alpha = mytopobs.GetmyNPSMEFTd6General().getAle();
4845 double sbar = -mytopobs.GetmyNPSMEFTd6General().getXBZ_tree();
4846 double cbar = mytopobs.GetmyNPSMEFTd6General().getXWZ_tree();
4847 double sbar2 = sbar * sbar;
4848 double cbar2 = cbar * cbar;
4849 double mZ = mytopobs.GetmyNPSMEFTd6General().getMz();
4851 double mZ2 = mZ * mZ;
4852 double mt2 = mt * mt;
4853 double mt3 = mt2 * mt;
4854 double v = mytopobs.GetmyNPSMEFTd6General().v();
4855 double v2 = v * v;
4856 double Gammatop = SM.getOptionalParameter("Gammatop");
4857
4858 gslpp::complex XL = 0.5 * v2 * (ewgc("CHq3R",0,2) + gslpp::complex::i() * ewgc("CHq3I",0,2) + ewgc("CHq3R",2,0) - gslpp::complex::i() * ewgc("CHq3I",2,0) - ewgc("CHq1R",0,2) - gslpp::complex::i() * ewgc("CHq1I",0,2) - ewgc("CHq1R",2,0) + gslpp::complex::i() * ewgc("CHq1I",2,0));
4859 double absXL2 = (XL * XL.conjugate()).abs();
4860 gslpp::complex XR = - 0.5 * v2 * (ewgc("CHuR",0,2) + gslpp::complex::i() * ewgc("CHuI",0,2) + ewgc("CHuR",2,0) - gslpp::complex::i() * ewgc("CHuI",2,0));
4861 double absXR2 = (XR * XR.conjugate()).abs();
4862 gslpp::complex kL = sqrt(2.) * v2 * (cbar * (ewgc("CuWR",2,0) - gslpp::complex::i() * ewgc("CuWI",2,0)) - sbar * (ewgc("CuBR",2,0) - gslpp::complex::i() * ewgc("CuBI",2,0)));
4863 double abskL2 = (kL * kL.conjugate()).abs();
4864 gslpp::complex kR = sqrt(2.) * v2 * (cbar * (ewgc("CuWR",0,2) + gslpp::complex::i() * ewgc("CuWI",0,2)) - sbar * (ewgc("CuBR",0,2) + gslpp::complex::i() * ewgc("CuBI",0,2)));
4865 double abskR2 = (kR * kR.conjugate()).abs();
4866
4867
4868 if(flag_Quadratic){
4869
4870 return 0.;
4871
4872 }
4873 else{
4874
4875 double Gammag = alpha / (32. * sbar2 * cbar2) * (absXL2 + absXR2) * mt3 / mZ2 * (1. - mZ2 / mt2) * (1. - mZ2 / mt2) * (1. + 2. * mZ2 / mt2);
4876 double Gammas = alpha / (16. * sbar2 * cbar2) * (abskL2 + abskR2) * mt * (1. - mZ2 / mt2) * (1. - mZ2 / mt2) * (2. + mZ2 / mt2);
4877 double Gammags = alpha / (32. * sbar2 * cbar2) * 12. * ((XL * kR.conjugate()).real() + (XR * kL.conjugate()).real()) * mt * (1. - mZ2 / mt2) * (1. - mZ2 / mt2);
4878 double total = (Gammag + Gammas + Gammags) / Gammatop;
4879
4880 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4881
4882 return total;
4883
4884 }
4885
4886}
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
const double getMz() const
A get method to access the mass of the boson .
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_tuZ::ewgc ( const std::string  name) const
inline

Definition at line 1833 of file TopQuarkObservables.h.

1834 {
1835 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name);
1836 }

◆ ewgc() [2/3]

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

Definition at line 1838 of file TopQuarkObservables.h.

1839 {
1840 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j);
1841 }

◆ ewgc() [3/3]

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

Definition at line 1843 of file TopQuarkObservables.h.

1844 {
1845 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l);
1846 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables BR_tuZ::mytopobs
private

Definition at line 1851 of file TopQuarkObservables.h.


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