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

deltaRL_12_u. More...

#include <SFermiondeltas.h>

+ Inheritance diagram for deltaRL_12_u:

Detailed Description

deltaRL_12_u.

Definition at line 350 of file SFermiondeltas.h.

Public Member Functions

double computeThValue ()
 
 deltaRL_12_u (const StandardModel &SM_i)
 deltaRL_12_u constructor. 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

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

◆ deltaRL_12_u()

deltaRL_12_u::deltaRL_12_u ( const StandardModel SM_i)

deltaRL_12_u constructor.

Definition at line 190 of file SFermiondeltas.cpp.

191 : ThObservable(SM_i), mySUSY(static_cast<const SUSY&> (SM_i))
192 {}

Member Function Documentation

◆ computeThValue()

double deltaRL_12_u::computeThValue ( )
virtual
Returns
\(\delta_RL12u\)

Implements ThObservable.

Definition at line 194 of file SFermiondeltas.cpp.

195 {
196  gslpp::matrix<gslpp::complex> TUhat = mySUSY.getTUhat();
197  gslpp::matrix<gslpp::complex> msQhat2( mySUSY.getMsQhat2() );
198  gslpp::matrix<gslpp::complex> msUhat2( mySUSY.getMsUhat2() );
199  double Mu2average_21=sqrt(msQhat2(1,1)*msUhat2(0,0)).abs();
200  double v2 = mySUSY.v2();
201 
202  return TUhat(1,0).real()*v2/Mu2average_21; //deltaRL_12_u
203 }

Member Data Documentation

◆ mySUSY

const SUSY& deltaRL_12_u::mySUSY
private

Definition at line 364 of file SFermiondeltas.h.


The documentation for this class was generated from the following files:
gslpp::matrix< gslpp::complex >
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
gslpp::complex::abs
double abs() const
Definition: gslpp_complex.cpp:81
deltaRL_12_u::mySUSY
const SUSY & mySUSY
Definition: SFermiondeltas.h:364
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385