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

#include <TopQuarkObservables.h>

+ Inheritance diagram for FR_LO:

Detailed Description

Definition at line 1585 of file TopQuarkObservables.h.

Public Member Functions

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
 
 FR_LO (const StandardModel &SM_i)
 FL constructor. More...
 
- 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

◆ FR_LO()

FR_LO::FR_LO ( const StandardModel SM_i)

FL constructor.

Definition at line 4561 of file TopQuarkObservables.cpp.

4562: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4563{
4564 setParametersForObservable(make_vector<std::string>() << "SM_FR");
4565}
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 FR_LO::computeThValue ( )
virtual
Returns
The value of Test_direct

Implements ThObservable.

Definition at line 4567 of file TopQuarkObservables.cpp.

4568{
4569
4570
4571
4572 bool flag_Quadratic= false;//Needs to be properly defined
4573
4574 double width_total_madgraph = 1.4724;
4575 double width_transright_madgraph = 0.000430;
4576 double FR_madgraph = width_transright_madgraph/width_total_madgraph;
4577
4578 double FR_SM = SM.getOptionalParameter("SM_FR");
4579
4580
4581
4582 if(flag_Quadratic){
4583 return 0.;
4584 }
4585 else{
4586
4587
4588 //The dependence with CHq3R vanish when dividing by the total width so we have not included it in the final result
4589 //The dependences with CdWR and CHudR vanish in the limit mb->0
4590 //double width_total_NP = 0.009300*ewgc("CdWR",2,2)+0.178518*ewgc("CHq3R",2,2)+0.002502*ewgc("CHudR",2,2)+-0.246222*ewgc("CuWR",2,2);
4591 //double width_transright_NP = 0.005088*ewgc("CdWR",2,2)+0.000052*ewgc("CHq3R",2,2)+0.000840*ewgc("CHudR",2,2)+-0.000034*ewgc("CuWR",2,2);
4592
4593 double width_total_NP = 0.009300*ewgc("CdWR",2,2)+0.002502*ewgc("CHudR",2,2)-0.246222*ewgc("CuWR",2,2)
4594 +-0.089460*ewgc("CHl3R",0,0)+-0.089460*ewgc("CHl3R",1,1)+0.089460*ewgc("CllR",0,1,1,0);
4595 double width_transright_NP = 0.005088*ewgc("CdWR",2,2)+0.000840*ewgc("CHudR",2,2)+-0.000034*ewgc("CuWR",2,2);
4596
4597 double FR_NP = (width_transright_NP - width_total_NP*width_transright_madgraph/width_total_madgraph)/width_total_madgraph;
4598
4599 double total = FR_SM + (FR_NP)*(FR_SM/FR_madgraph);
4600
4601 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4602
4603 return total;
4604
4605 }
4606
4607
4608}
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

◆ ewgc() [1/3]

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

Definition at line 1600 of file TopQuarkObservables.h.

1601 {
1602 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name)*1000000;
1603 }
double getSMEFTCoeffEW(const std::string name) const
const NPSMEFTd6General & GetmyNPSMEFTd6General() const

◆ ewgc() [2/3]

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

Definition at line 1605 of file TopQuarkObservables.h.

1606 {
1607 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j)*1000000;
1608 }

◆ ewgc() [3/3]

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

Definition at line 1610 of file TopQuarkObservables.h.

1611 {
1612 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l)*1000000;
1613 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables FR_LO::mytopobs
private

Definition at line 1618 of file TopQuarkObservables.h.


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