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

CCBu11. More...

#include <CCBbounds.h>

+ Inheritance diagram for CCBu11:

Detailed Description

CCBu11.

Definition at line 27 of file CCBbounds.h.

Public Member Functions

 CCBu11 (const StandardModel &SM_i)
 CCBu11 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 SUSYmySUSY
 

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

◆ CCBu11()

CCBu11::CCBu11 ( const StandardModel SM_i)

CCBu11 constructor.

Definition at line 10 of file CCBbounds.cpp.

11 : ThObservable(SM_i), mySUSY(static_cast<const SUSY&> (SM_i))
12 {}

Member Function Documentation

◆ computeThValue()

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

Implements ThObservable.

Definition at line 14 of file CCBbounds.cpp.

15 {
16  //Is the SCKM trilinear coupling the same as the Aij?
17  //Other question in the SUSYMatching...
18  //Are the mass parameters assigned correctly?
19  //
20 
21  double mUP = mySUSY.getQuarks(QCD::UP).getMass();
22  double v2 = mySUSY.v2();
23  double mA = mySUSY.getMHptree();
24  double cosb = mySUSY.getCosb();
25  double MZ = mySUSY.getMz();
26  double sinb = mySUSY.getSinb();
27  double cos2b = cosb*cosb-sinb*sinb;
32 
33  double lambdau11 = mUP / v2 * sqrt(2.);
34  double mHusq = mA*mA * cosb*cosb + 0.5 * MZ*MZ * cos2b - MuH.abs2();
35 
36  return (lambdau11*lambdau11*(msQhat2(0,0).abs()+msUhat2(0,0).abs()+mHusq)-TUhat(0,0).abs2()) / fabs(msQhat2(0,0).abs()+msUhat2(0,0).abs()+mHusq);
37 }

Member Data Documentation

◆ mySUSY

const SUSY& CCBu11::mySUSY
private

Definition at line 41 of file CCBbounds.h.


The documentation for this class was generated from the following files:
SUSY::getMsUhat2
gslpp::matrix< gslpp::complex > getMsUhat2() const
Definition: SUSY.h:317
SUSY::getMHptree
double getMHptree() const
Gets the charged-Higgs mass at tree-level.
Definition: SUSY.h:136
SUSY::getSinb
double getSinb() const
Gets .
Definition: SUSY.h:186
QCD::UP
Definition: QCD.h:324
gslpp::complex
A class for defining operations on and functions of complex numbers.
Definition: gslpp_complex.h:35
gslpp::matrix< gslpp::complex >
SUSY::getMsQhat2
gslpp::matrix< gslpp::complex > getMsQhat2() const
Definition: SUSY.h:312
gslpp::complex::abs2
double abs2() const
Definition: gslpp_complex.cpp:86
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
Particle::getMass
const double & getMass() const
A get method to access the particle mass.
Definition: Particle.h:61
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385
SUSY::v2
double v2() const
Definition: SUSY.cpp:361
QCD::getQuarks
Particle getQuarks(const QCD::quark q) const
A get method to access a quark as an object of the type Particle.
Definition: QCD.h:534
SUSY::getMuH
gslpp::complex getMuH() const
Gets the parameter in the superpotential.
Definition: SUSY.h:145
StandardModel::getMz
double getMz() const
A get method to access the mass of the boson .
Definition: StandardModel.h:721
SUSY::getCosb
double getCosb() const
Gets .
Definition: SUSY.h:195
SUSY::getTUhat
gslpp::matrix< gslpp::complex > getTUhat() const
Gets the trilinear-coupling matrix for up-type squarks.
Definition: SUSY.h:331
CCBu11::mySUSY
const SUSY & mySUSY
Definition: CCBbounds.h:41