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

A class for the Wilson coefficient \(C_7\). More...

#include <WilsonCoefficientObservables.h>

+ Inheritance diagram for WC_C7g:

Detailed Description

A class for the Wilson coefficient \(C_7\).

Author
HEPfit Collaboration

This class is used to compute the Wilson coefficient \(C_7(\mu)\) at a specific scale \(\mu\).

Definition at line 24 of file WilsonCoefficientObservables.h.

Public Member Functions

double computeThValue ()
 The Wilson coefficient \(C_7(\mu)\). More...
 
 WC_C7g (const StandardModel &SM_i, unsigned int part_i)
 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

gslpp::vector< gslpp::complex > ** allcoeff
 
double mu
 
const StandardModelmySM
 
unsigned int part
 

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

◆ WC_C7g()

WC_C7g::WC_C7g ( const StandardModel SM_i,
unsigned int  part_i 
)

Constructor.

Parameters
[in]SM_ia reference to an object of type StandardModel
[in]part_ian unsigned integer used as toggle for real, imaginary, absolute or argument value.

Definition at line 16 of file WilsonCoefficientObservables.cpp.

17: ThObservable(SM_i), mySM(SM_i)
18{
19 part = part_i;
20 mu = mySM.getMub();
21}
const double getMub() const
A get method to access the threshold between five- and four-flavour theory in GeV.
Definition: QCD.h:582
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
const StandardModel & mySM

Member Function Documentation

◆ computeThValue()

double WC_C7g::computeThValue ( )
virtual

The Wilson coefficient \(C_7(\mu)\).

Returns
\(C_7(\mu) \)

Implements ThObservable.

Definition at line 23 of file WilsonCoefficientObservables.cpp.

24{
25 mu = getBinMin();
26 allcoeff = mySM.getFlavour().ComputeCoeffBMll(mu, QCD::MU); /*QCD::MU does not matter here but necessary.*/
27
28 if (part == 0) return ((*(allcoeff[LO]))(6) + (*(allcoeff[NLO]))(6)).real();
29 if (part == 1) return ((*(allcoeff[LO]))(6) + (*(allcoeff[NLO]))(6)).imag();
30 if (part == 2) return ((*(allcoeff[LO]))(6) + (*(allcoeff[NLO]))(6)).abs();
31 if (part == 3) return ((*(allcoeff[LO]))(6) + (*(allcoeff[NLO]))(6)).arg();
32 else throw std::runtime_error("WC_C7g: part specification can only be 0, 1 or 2");
33}
@ LO
Definition: OrderScheme.h:34
@ NLO
Definition: OrderScheme.h:35
gslpp::vector< gslpp::complex > ** ComputeCoeffBMll(double mu, QCD::lepton lepton, bool noSM=false, schemes scheme=NDR) const
Computes the Wilson coefficient for the process .
Definition: Flavour.cpp:194
@ MU
Definition: QCD.h:314
const Flavour & getFlavour() const
double getBinMin()
A get method to get the minimum value of the bin.
Definition: ThObservable.h:82
gslpp::vector< gslpp::complex > ** allcoeff

Member Data Documentation

◆ allcoeff

gslpp::vector<gslpp::complex>** WC_C7g::allcoeff
private

vector that contains the Wilson coeffients

Definition at line 43 of file WilsonCoefficientObservables.h.

◆ mu

double WC_C7g::mu
private

The scale for the Wilson coefficient.

Definition at line 42 of file WilsonCoefficientObservables.h.

◆ mySM

const StandardModel& WC_C7g::mySM
private

Definition at line 41 of file WilsonCoefficientObservables.h.

◆ part

unsigned int WC_C7g::part
private

toggle for real, imaginary, absolute or argument value

Definition at line 44 of file WilsonCoefficientObservables.h.


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