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

Test Observable. More...

#include <TopQuarkObservables.h>

+ Inheritance diagram for sigma_ttw_LO:

Detailed Description

Test Observable.

Definition at line 1397 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
 
 sigma_ttw_LO (const StandardModel &SM_i)
 sigma_ttw_LO 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

◆ sigma_ttw_LO()

sigma_ttw_LO::sigma_ttw_LO ( const StandardModel SM_i)

sigma_ttw_LO constructor.

Definition at line 4343 of file TopQuarkObservables.cpp.

4344: ThObservable(SM_i), mytopobs(static_cast<const NPSMEFTd6General&> (SM))
4345{
4346 setParametersForObservable(make_vector<std::string>() << "SM_sigma_ttw");
4347}
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
const TopQuarkObservables mytopobs

Member Function Documentation

◆ computeThValue()

double sigma_ttw_LO::computeThValue ( )
virtual
Returns
The value of Test_direct

Implements ThObservable.

Definition at line 4349 of file TopQuarkObservables.cpp.

4350{
4351
4352 bool flag_Quadratic= false; //Needs to be properly defined
4353
4354 double sigma_ttw_LO_madgraph = 0.516319; //pb?
4355 double sigma_ttw_SM = SM.getOptionalParameter("SM_sigma_ttw");
4356
4357
4358
4359 if(flag_Quadratic){
4360 return 0.;
4361 }
4362 else{
4363
4364 double total = sigma_ttw_SM +(-0.000325*ewgc("CHq1R",2,2)+0.000604*ewgc("CHq3R",2,2)-0.000146*ewgc("CHuR",2,2)
4365 +0.184757*ewgc("Cqq1R",0,2,2,0)+0.010580*ewgc("Cqq1R",1,2,2,1)+0.872452*ewgc("Cqq3R",0,2,2,0)
4366 +0.054539*ewgc("Cqq3R",1,2,2,1)+0.133233*ewgc("Cqu8R",0,0,2,2)+0.008296*ewgc("Cqu8R",1,1,2,2)
4367 +0.000098*ewgc("CuBR",2,2)-0.125985*ewgc("CuGR",2,2)-0.005842*ewgc("CuWR",2,2)
4368 +-0.031757*ewgc("CHl3R",0,0)+-0.031757*ewgc("CHl3R",1,1)+0.000243*ewgc("CHW")+-0.000192*ewgc("CHWB")
4369 +0.031794*ewgc("CllR",0,1,1,0)+-0.012797*ewgc("Cqq1R",0,0,2,2)+-0.001191*ewgc("Cqq1R",1,1,2,2)
4370 +0.098677*ewgc("Cqq3R",0,0,2,2)+0.004610*ewgc("Cqq3R",1,1,2,2)+0.003612*ewgc("Cqu1R",0,0,2,2)
4371 +0.000106*ewgc("Cqu1R",1,1,2,2))
4372 *(sigma_ttw_SM/sigma_ttw_LO_madgraph);
4373
4374 if (total < 0) return std::numeric_limits<double>::quiet_NaN();
4375
4376 return total;
4377
4378 }
4379
4380}
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
double ewgc(const std::string name) const

◆ ewgc() [1/3]

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

Definition at line 1412 of file TopQuarkObservables.h.

1413 {
1414 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name)*1000000;
1415 }
double getSMEFTCoeffEW(const std::string name) const
const NPSMEFTd6General & GetmyNPSMEFTd6General() const

◆ ewgc() [2/3]

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

Definition at line 1417 of file TopQuarkObservables.h.

1418 {
1419 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j)*1000000;
1420 }

◆ ewgc() [3/3]

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

Definition at line 1422 of file TopQuarkObservables.h.

1423 {
1424 return mytopobs.GetmyNPSMEFTd6General().getSMEFTCoeffEW(name, i, j, k, l)*1000000;
1425 }

Member Data Documentation

◆ mytopobs

const TopQuarkObservables sigma_ttw_LO::mytopobs
private

Definition at line 1429 of file TopQuarkObservables.h.


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