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

CCBd13. More...

#include <CCBbounds.h>

+ Inheritance diagram for CCBd13:

Detailed Description

CCBd13.

Definition at line 250 of file CCBbounds.h.

Public Member Functions

 CCBd13 (const StandardModel &SM_i)
 CCBd13 constructor. More...
 
double computeThValue ()
 
- 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 SUSY & mySUSY
 

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

◆ CCBd13()

CCBd13::CCBd13 ( const StandardModel SM_i)

CCBd13 constructor.

Definition at line 255 of file CCBbounds.cpp.

256 : ThObservable(SM_i), mySUSY(static_cast<const SUSY&> (SM_i))
257 {}

Member Function Documentation

◆ computeThValue()

double CCBd13::computeThValue ( )
virtual
Returns
\(CCBd13\)

Implements ThObservable.

Definition at line 259 of file CCBbounds.cpp.

260 {
261  double mBOTTOM = mySUSY.getQuarks(QCD::BOTTOM).getMass();
262  double v1 = mySUSY.v1();
263  double mA = mySUSY.getMHptree();
264  double cosb = mySUSY.getCosb();
265  double MZ = mySUSY.getMz();
266  double sinb = mySUSY.getSinb();
267  double cos2b = cosb*cosb-sinb*sinb;
268  gslpp::complex MuH = mySUSY.getMuH();
269  gslpp::matrix<gslpp::complex> msQhat2( mySUSY.getMsQhat2() );
270  gslpp::matrix<gslpp::complex> msDhat2( mySUSY.getMsDhat2() );
271  gslpp::matrix<gslpp::complex> TDhat( mySUSY.getTDhat() );
272 
273  double lambdad33 = mBOTTOM / v1 * sqrt(2.);
274  double mHdsq = mA*mA * sinb*sinb - 0.5 * MZ*MZ * cos2b - MuH.abs2();
275 
276  return lambdad33*lambdad33-TDhat(0,2).abs2()/(msQhat2(0,0).abs()+msDhat2(2,2).abs()+mHdsq);
277 }

Member Data Documentation

◆ mySUSY

const SUSY& CCBd13::mySUSY
private

Definition at line 264 of file CCBbounds.h.


The documentation for this class was generated from the following files:
QCD::BOTTOM
Definition: QCD.h:329
gslpp::complex
A class for defining operations on and functions of complex numbers.
Definition: gslpp_complex.h:35
gslpp::matrix< gslpp::complex >
gslpp::complex::abs2
double abs2() const
Definition: gslpp_complex.cpp:86
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385
CCBd13::mySUSY
const SUSY & mySUSY
Definition: CCBbounds.h:264