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

#include <TopQuarkObservables.h>

+ Inheritance diagram for BR_tugamma:

Detailed Description

Definition at line 2004 of file TopQuarkObservables.h.

Public Member Functions

 BR_tugamma (const StandardModel &SM_i)
 BR_tugamma: 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_tugamma()

BR_tugamma::BR_tugamma ( const StandardModel SM_i)

BR_tugamma: constructor.

Definition at line 4932 of file TopQuarkObservables.cpp.

4933: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4934{
4935 setParametersForObservable(make_vector<std::string>() << "Gammatop");
4936}
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_tugamma::computeThValue ( )
virtual
Returns
The value of BR_tugamma:

Implements ThObservable.

Definition at line 4938 of file TopQuarkObservables.cpp.

4939{
4940 bool flag_Quadratic = false; //Needs to be properly defined
4941
4942
4943 double alpha = mytopobs.GetmyNPSMEFTd6General().getAle();
4945 double v = mytopobs.GetmyNPSMEFTd6General().v();
4946 double ee = mytopobs.GetmyNPSMEFTd6General().getEeMz();
4947 double sbar = -mytopobs.GetmyNPSMEFTd6General().getXBZ_tree();
4948 double cbar = mytopobs.GetmyNPSMEFTd6General().getXWZ_tree();
4949 double Gammatop = SM.getOptionalParameter("Gammatop");
4950
4951 gslpp::complex lambdaL = sqrt(2.) / ee * v * mt * (sbar * (ewgc("CuWR",2,0) - gslpp::complex::i() * ewgc("CuWI",2,0)) + cbar * (ewgc("CuBR",2,0) - gslpp::complex::i() * ewgc("CuBI",2,0)));
4952 gslpp::complex lambdaR = sqrt(2.) / ee * v * mt * (sbar * (ewgc("CuWR",0,2) + gslpp::complex::i() * ewgc("CuWI",0,2)) + cbar * (ewgc("CuBR",0,2) + gslpp::complex::i() * ewgc("CuBI",0,2)));
4953 double abslambdaL2 = (lambdaL * lambdaL.conjugate()).abs();
4954 double abslambdaR2 = (lambdaR * lambdaR.conjugate()).abs();
4955
4956
4957 if(flag_Quadratic){
4958
4959 return 0.;
4960
4961 }
4962 else{
4963
4964 double total = alpha / 2 * (abslambdaL2 + abslambdaR2) * mt / Gammatop;
4965
4966 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4967
4968 return total;
4969
4970 }
4971
4972}
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 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_tugamma::ewgc ( const std::string  name) const
inline

Definition at line 2017 of file TopQuarkObservables.h.

2018 {
2019 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name);
2020 }

◆ ewgc() [2/3]

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

Definition at line 2022 of file TopQuarkObservables.h.

2023 {
2024 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j);
2025 }

◆ ewgc() [3/3]

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

Definition at line 2027 of file TopQuarkObservables.h.

2028 {
2029 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l);
2030 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables BR_tugamma::mytopobs
private

Definition at line 2035 of file TopQuarkObservables.h.


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