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

A class for the CKM elements \(V_{ij} \). More...

#include <VCKM.h>

+ Inheritance diagram for VCKM:

Detailed Description

A class for the CKM elements \(V_{ij} \).

Author
HEPfit Collaboration

This class is used to compute the CKM element \(V_{ij} \).

Definition at line 21 of file VCKM.h.

Public Member Functions

double computeThValue ()
 
 VCKM (const StandardModel &SM_i, unsigned int obsFlag_1, unsigned int obsFlag_2, unsigned int obsFlag_3=0)
 Constructor. More...
 
virtual ~VCKM ()
 Destructor. 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

unsigned int obs_1
 
unsigned int obs_2
 
unsigned int obs_3
 

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

◆ VCKM()

VCKM::VCKM ( const StandardModel SM_i,
unsigned int  obsFlag_1,
unsigned int  obsFlag_2,
unsigned int  obsFlag_3 = 0 
)

Constructor.

Parameters
[in]SM_ia reference to an object of type StandardModel
[in]obsFlag_1the first index of the CKM element
[in]obsFlag_2the second index of the CKM element

Definition at line 11 of file VCKM.cpp.

12: ThObservable(SM_i)
13{
14 if (obsFlag_1 > 0 && obsFlag_1 < 4 && obsFlag_2 > 0 && obsFlag_2 < 4 && obsFlag_3 < 2) {
15 obs_1 = obsFlag_1;
16 obs_2 = obsFlag_2;
17 obs_3 = obsFlag_3;
18 }
19 else throw std::runtime_error("obsFlag_1,2 in CKM(myFlavour, obsFlag_1, obsFlag_2, obsFlag_3) called from ThFactory::ThFactory() can only be 1 - 3 corresponding to the CKM matrix; obsFlag_3 can only be 0 - 1 corresponding to abs or arg ");
20}
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
unsigned int obs_2
Definition: VCKM.h:43
unsigned int obs_3
Definition: VCKM.h:44
unsigned int obs_1
Definition: VCKM.h:42

◆ ~VCKM()

VCKM::~VCKM ( )
virtual

Destructor.

Definition at line 22 of file VCKM.cpp.

23{}

Member Function Documentation

◆ computeThValue()

double VCKM::computeThValue ( )
virtual
Returns
The CKM element \(V_{ij} \)

Implements ThObservable.

Definition at line 25 of file VCKM.cpp.

26{
27 if (obs_3 == 0) {
28 if (obs_1 == 1 && obs_2 == 1) return(SM.getCKM().getV_ud().abs());
29 if (obs_1 == 1 && obs_2 == 2) return(SM.getCKM().getV_us().abs());
30 if (obs_1 == 1 && obs_2 == 3) return(SM.getCKM().getV_ub().abs());
31 if (obs_1 == 2 && obs_2 == 1) return(SM.getCKM().getV_cd().abs());
32 if (obs_1 == 2 && obs_2 == 2) return(SM.getCKM().getV_cs().abs());
33 if (obs_1 == 2 && obs_2 == 3) return(SM.getCKM().getV_cb().abs());
34 if (obs_1 == 3 && obs_2 == 1) return(SM.getCKM().getV_td().abs());
35 if (obs_1 == 3 && obs_2 == 2) return(SM.getCKM().getV_ts().abs());
36 if (obs_1 == 3 && obs_2 == 3) return(SM.getCKM().getV_tb().abs());
37 else throw std::runtime_error("obsFlag in CKM(myFlavour, obsFlag_1, obsFlag_1) called from ThFactory::ThFactory() can only be 1 - 3 corresponding to the CKM matrix");
38 }
39 else {
40 if (obs_1 == 1 && obs_2 == 1) return(SM.getCKM().getV_ud().arg());
41 if (obs_1 == 1 && obs_2 == 2) return(SM.getCKM().getV_us().arg());
42 if (obs_1 == 1 && obs_2 == 3) return(SM.getCKM().getV_ub().arg());
43 if (obs_1 == 2 && obs_2 == 1) return(SM.getCKM().getV_cd().arg());
44 if (obs_1 == 2 && obs_2 == 2) return(SM.getCKM().getV_cs().arg());
45 if (obs_1 == 2 && obs_2 == 3) return(SM.getCKM().getV_cb().arg());
46 if (obs_1 == 3 && obs_2 == 1) return(SM.getCKM().getV_td().arg());
47 if (obs_1 == 3 && obs_2 == 2) return(SM.getCKM().getV_ts().arg());
48 if (obs_1 == 3 && obs_2 == 3) return(SM.getCKM().getV_tb().arg());
49 else throw std::runtime_error("obsFlag in CKM(myFlavour, obsFlag_1, obsFlag_1) called from ThFactory::ThFactory() can only be 1 - 3 corresponding to the CKM matrix");
50 }
51}
const gslpp::complex getV_ud() const
A member for returning the value of the CKM element .
Definition: CKM.h:202
const gslpp::complex getV_us() const
A member for returning the value of the CKM element .
Definition: CKM.h:211
const gslpp::complex getV_cs() const
A member for returning the value of the CKM element .
Definition: CKM.h:238
const gslpp::complex getV_cb() const
A member for returning the value of the CKM element .
Definition: CKM.h:247
const gslpp::complex getV_cd() const
A member for returning the value of the CKM element .
Definition: CKM.h:229
const gslpp::complex getV_td() const
A member for returning the value of the CKM element .
Definition: CKM.h:256
const gslpp::complex getV_tb() const
A member for returning the value of the CKM element .
Definition: CKM.h:274
const gslpp::complex getV_ub() const
A member for returning the value of the CKM element .
Definition: CKM.h:220
const gslpp::complex getV_ts() const
A member for returning the value of the CKM element .
Definition: CKM.h:265
const CKM & getCKM() const
A get method to retrieve the member object of type CKM.
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121

Member Data Documentation

◆ obs_1

unsigned int VCKM::obs_1
private

Definition at line 42 of file VCKM.h.

◆ obs_2

unsigned int VCKM::obs_2
private

Definition at line 43 of file VCKM.h.

◆ obs_3

unsigned int VCKM::obs_3
private

Definition at line 44 of file VCKM.h.


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