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

CCBe33. More...

#include <CCBbounds.h>

+ Inheritance diagram for CCBe33:

Detailed Description

CCBe33.

Definition at line 335 of file CCBbounds.h.

Public Member Functions

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

◆ CCBe33()

CCBe33::CCBe33 ( const StandardModel SM_i)

CCBe33 constructor.

Definition at line 351 of file CCBbounds.cpp.

352 : ThObservable(SM_i), mySUSY(static_cast<const SUSY&> (SM_i))
353 {}

Member Function Documentation

◆ computeThValue()

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

Implements ThObservable.

Definition at line 355 of file CCBbounds.cpp.

356 {
357  double mTAU = mySUSY.getLeptons(StandardModel::TAU).getMass();
358  double v1 = mySUSY.v1();
359  double mA = mySUSY.getMHptree();
360  double cosb = mySUSY.getCosb();
361  double MZ = mySUSY.getMz();
362  double sinb = mySUSY.getSinb();
363  double cos2b = cosb*cosb-sinb*sinb;
364  gslpp::complex MuH = mySUSY.getMuH();
368 
369  double lambdal33 = mTAU / v1 * sqrt(2.);
370  double mHdsq = mA*mA * sinb*sinb - 0.5 * MZ*MZ * cos2b - MuH.abs2();
371 
372  return lambdal33*lambdal33-TEhat(2,2).abs2()/(msLhat2(2,2).abs()+msEhat2(2,2).abs()+mHdsq);
373 }

Member Data Documentation

◆ mySUSY

const SUSY& CCBe33::mySUSY
private

Definition at line 349 of file CCBbounds.h.


The documentation for this class was generated from the following files:
QCD::TAU
Definition: QCD.h:316
SUSY::getMsLhat2
gslpp::matrix< gslpp::complex > getMsLhat2() const
Definition: SUSY.h:404
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
gslpp::complex
A class for defining operations on and functions of complex numbers.
Definition: gslpp_complex.h:35
CCBe33::mySUSY
const SUSY & mySUSY
Definition: CCBbounds.h:349
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
SUSY::v1
double v1() const
Definition: SUSY.cpp:356
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::getTEhat
gslpp::matrix< gslpp::complex > getTEhat() const
Gets the trilinear-coupling matrix for charged sleptons.
Definition: SUSY.h:432
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::getMsEhat2
gslpp::matrix< gslpp::complex > getMsEhat2() const
Definition: SUSY.h:414
SUSY::getCosb
double getCosb() const
Gets .
Definition: SUSY.h:195
StandardModel::getLeptons
Particle getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
Definition: StandardModel.h:712