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

#include <TopQuarkObservables.h>

+ Inheritance diagram for FL_LO:

Detailed Description

Definition at line 1534 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
 
 FL_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

◆ FL_LO()

FL_LO::FL_LO ( const StandardModel SM_i)

FL constructor.

Definition at line 4506 of file TopQuarkObservables.cpp.

4507: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4508{
4509 setParametersForObservable(make_vector<std::string>() << "SM_FL");
4510}
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 FL_LO::computeThValue ( )
virtual
Returns
The value of Test_direct

Implements ThObservable.

Definition at line 4512 of file TopQuarkObservables.cpp.

4513{
4514
4515
4516
4517 bool flag_Quadratic= false;//Needs to be properly defined
4518
4519 double width_total_madgraph = 1.4724;
4520 double width_transleft_madgraph = 0.446800;
4521 double FL_madgraph = width_transleft_madgraph/width_total_madgraph;
4522
4523 double FL_SM = SM.getOptionalParameter("SM_FL");
4524
4525
4526
4527 if(flag_Quadratic){
4528 return 0.;
4529 }
4530 else{
4531
4532
4533 //The dependence with CHq3R vanish when dividing by the total width so we have not included it in the final result
4534 //The dependences with CdWR and CHudR vanish in the limit mb->0
4535 //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);
4536 //double width_transleft_NP = +0.001108*ewgc("CdWR",2,2)+0.054172*ewgc("CHq3R",2,2)+0.000840*ewgc("CHudR",2,2)+-0.164114*ewgc("CuWR",2,2);
4537
4538 double width_total_NP = 0.009300*ewgc("CdWR",2,2)+0.002502*ewgc("CHudR",2,2)-0.246222*ewgc("CuWR",2,2)
4539 +-0.089460*ewgc("CHl3R",0,0)+-0.089460*ewgc("CHl3R",1,1)+0.089460*ewgc("CllR",0,1,1,0);
4540 double width_transleft_NP = +0.001108*ewgc("CdWR",2,2)+0.000840*ewgc("CHudR",2,2)+-0.164114*ewgc("CuWR",2,2)
4541 -0.027124*ewgc("CHl3R",0,0)+-0.027124*ewgc("CHl3R",1,1)+0.027124*ewgc("CllR",0,1,1,0);
4542
4543 double FL_NP = (width_transleft_NP - width_total_NP*width_transleft_madgraph/width_total_madgraph)/width_total_madgraph;
4544
4545 double total = FL_SM + (FL_NP)*(FL_SM/FL_madgraph);
4546
4547 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4548
4549 return total;
4550
4551
4552 }
4553
4554
4555}
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 FL_LO::ewgc ( const std::string  name) const
inline

Definition at line 1549 of file TopQuarkObservables.h.

1550 {
1551 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name)*1000000;
1552 }
double getSMEFTCoeffEW(const std::string name) const
const NPSMEFTd6General & GetmyNPSMEFTd6General() const

◆ ewgc() [2/3]

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

Definition at line 1554 of file TopQuarkObservables.h.

1555 {
1556 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j)*1000000;
1557 }

◆ ewgc() [3/3]

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

Definition at line 1559 of file TopQuarkObservables.h.

1560 {
1561 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l)*1000000;
1562 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables FL_LO::mytopobs
private

Definition at line 1567 of file TopQuarkObservables.h.


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