a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
alpha.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #include "alpha.h"
9 #include "StandardModel.h"
10 
11 Alpha::Alpha(const StandardModel& SM_i) : ThObservable(SM_i), AmpDB2(SM_i)
12 {}
13 
15 {
16  // alpha is really extracted as pi + 1/2 arg AmpDB2 - gamma
17  double alpha = (M_PI + AmpBd(FULLNLO).arg()/2. - SM.getCKM().computeGamma() - SM.getPhiBd())/M_PI*180.;
18  return(remainder(alpha,360.));
19 }
AmpDB2
Amplitude Class
Definition: AmpDB2.h:37
Alpha::Alpha
Alpha(const StandardModel &SM_i)
Constructor.
Definition: alpha.cpp:11
StandardModel.h
StandardModel
A model class for the Standard Model.
Definition: StandardModel.h:477
alpha.h
CKM::computeGamma
double computeGamma() const
The CKM angle .
Definition: CKM.cpp:87
gslpp::complex::arg
double arg() const
Definition: gslpp_complex.cpp:76
ThObservable::SM
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
StandardModel::getPhiBd
virtual double getPhiBd() const
Half the relative phase of the $B_d$ mixing amplitude w.r.t. the Standard Model one.
Definition: StandardModel.h:2479
ThObservable
A class for a model prediction of an observable.
Definition: ThObservable.h:25
AmpDB2::AmpBd
gslpp::complex AmpBd(orders order)
A method to compute .
Definition: AmpDB2.cpp:70
Alpha::computeThValue
double computeThValue()
Definition: alpha.cpp:14
FULLNLO
Definition: OrderScheme.h:37
StandardModel::getCKM
CKM getCKM() const
A get method to retrieve the member object of type CKM.
Definition: StandardModel.h:879