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

deltaRL_13_u. More...

#include <SFermiondeltas.h>

+ Inheritance diagram for deltaRL_13_u:

Detailed Description

deltaRL_13_u.

Definition at line 372 of file SFermiondeltas.h.

Public Member Functions

double computeThValue ()
 
 deltaRL_13_u (const StandardModel &SM_i)
 deltaRL_13_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_13_u()

deltaRL_13_u::deltaRL_13_u ( const StandardModel SM_i)

deltaRL_13_u constructor.

Definition at line 205 of file SFermiondeltas.cpp.

206 : ThObservable(SM_i), mySUSY(static_cast<const SUSY&> (SM_i))
207 {}

Member Function Documentation

◆ computeThValue()

double deltaRL_13_u::computeThValue ( )
virtual
Returns
\(\delta_RL13u\)

Implements ThObservable.

Definition at line 209 of file SFermiondeltas.cpp.

210 {
211  gslpp::matrix<gslpp::complex> TUhat = mySUSY.getTUhat();
212  gslpp::matrix<gslpp::complex> msQhat2( mySUSY.getMsQhat2() );
213  gslpp::matrix<gslpp::complex> msUhat2( mySUSY.getMsUhat2() );
214  double Mu2average_31=sqrt(msQhat2(2,2)*msUhat2(0,0)).abs();
215  double v2 = mySUSY.v2();
216 
217  return TUhat(2,0).real()*v2/Mu2average_31; //deltaRL_13_u
218 }

Member Data Documentation

◆ mySUSY

const SUSY& deltaRL_13_u::mySUSY
private

Definition at line 386 of file SFermiondeltas.h.


The documentation for this class was generated from the following files:
deltaRL_13_u::mySUSY
const SUSY & mySUSY
Definition: SFermiondeltas.h:386
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
gslpp::sqrt
complex sqrt(const complex &z)
Definition: gslpp_complex.cpp:385