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

#include <TopQuarkObservables.h>

+ Inheritance diagram for BR_tcgamma:

Detailed Description

Definition at line 1958 of file TopQuarkObservables.h.

Public Member Functions

 BR_tcgamma (const StandardModel &SM_i)
 BR_tcgamma: 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_tcgamma()

BR_tcgamma::BR_tcgamma ( const StandardModel SM_i)

BR_tcgamma: constructor.

Definition at line 4889 of file TopQuarkObservables.cpp.

4890: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4891{
4892 setParametersForObservable(make_vector<std::string>() << "Gammatop");
4893}
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_tcgamma::computeThValue ( )
virtual
Returns
The value of BR_tcgamma:

Implements ThObservable.

Definition at line 4895 of file TopQuarkObservables.cpp.

4896{
4897 bool flag_Quadratic = false; //Needs to be properly defined
4898
4899
4900 double alpha = mytopobs.GetmyNPSMEFTd6General().getAle();
4902 double v = mytopobs.GetmyNPSMEFTd6General().v();
4903 double ee = mytopobs.GetmyNPSMEFTd6General().getEeMz();
4904 double sbar = -mytopobs.GetmyNPSMEFTd6General().getXBZ_tree();
4905 double cbar = mytopobs.GetmyNPSMEFTd6General().getXWZ_tree();
4906 double Gammatop = SM.getOptionalParameter("Gammatop");
4907
4908 gslpp::complex lambdaL = sqrt(2.) / ee * v * mt * (sbar * (ewgc("CuWR",2,1) - gslpp::complex::i() * ewgc("CuWI",2,1)) + cbar * (ewgc("CuBR",2,1) - gslpp::complex::i() * ewgc("CuBI",2,1)));
4909 gslpp::complex lambdaR = sqrt(2.) / ee * v * mt * (sbar * (ewgc("CuWR",1,2) + gslpp::complex::i() * ewgc("CuWI",1,2)) + cbar * (ewgc("CuBR",1,2) + gslpp::complex::i() * ewgc("CuBI",1,2)));
4910 double abslambdaL2 = (lambdaL * lambdaL.conjugate()).abs();
4911 double abslambdaR2 = (lambdaR * lambdaR.conjugate()).abs();
4912
4913
4914 if(flag_Quadratic){
4915
4916 return 0.;
4917
4918 }
4919 else{
4920
4921 double total = alpha / 2 * (abslambdaL2 + abslambdaR2) * mt / Gammatop;
4922
4923 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4924
4925 return total;
4926
4927 }
4928
4929}
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_tcgamma::ewgc ( const std::string  name) const
inline

Definition at line 1971 of file TopQuarkObservables.h.

1972 {
1973 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name);
1974 }

◆ ewgc() [2/3]

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

Definition at line 1976 of file TopQuarkObservables.h.

1977 {
1978 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j);
1979 }

◆ ewgc() [3/3]

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

Definition at line 1981 of file TopQuarkObservables.h.

1982 {
1983 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l);
1984 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables BR_tcgamma::mytopobs
private

Definition at line 1989 of file TopQuarkObservables.h.


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