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

NLO over LO ratio for the Z2-odd 10 eigenvalue (corresponding to unitarityNLO14). More...

#include <unitarity.h>

+ Inheritance diagram for unitarityRp19:

Detailed Description

NLO over LO ratio for the Z2-odd 10 eigenvalue (corresponding to unitarityNLO14).

Definition at line 1474 of file unitarity.h.

Public Member Functions

double computeThValue ()
 
 unitarityRp19 (const StandardModel &SM_i)
 unitarityRp19 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 THDMmyTHDM
 

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

◆ unitarityRp19()

unitarityRp19::unitarityRp19 ( const StandardModel SM_i)

unitarityRp19 constructor.

Definition at line 2991 of file unitarity.cpp.

2992: ThObservable(SM_i),myTHDM(static_cast<const THDM&> (SM_i))
2993{}
A base class for symmetric Two-Higgs-Doublet models.
Definition: THDM.h:120
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
const THDM & myTHDM
Definition: unitarity.h:1487

Member Function Documentation

◆ computeThValue()

double unitarityRp19::computeThValue ( )
virtual
Returns
\(|a^{\text{odd,NLO}}_{10}/a^{\text{odd,LO}}_{10}|\)

Implements ThObservable.

Definition at line 2995 of file unitarity.cpp.

2996{
2997 double YtQ = myTHDM.getMyTHDMCache()->Ytop_at_Q;
2998 double Yb1Q = myTHDM.getMyTHDMCache()->Ybottom1_at_Q;
2999 double Yb2Q = myTHDM.getMyTHDMCache()->Ybottom2_at_Q;
3000 double Ytau1Q = myTHDM.getMyTHDMCache()->Ytau1_at_Q;
3001 double Ytau2Q = myTHDM.getMyTHDMCache()->Ytau2_at_Q;
3002 double la1Q = myTHDM.getMyTHDMCache()->lambda1_at_Q;
3003 double la2Q = myTHDM.getMyTHDMCache()->lambda2_at_Q;
3004 double la3Q = myTHDM.getMyTHDMCache()->lambda3_at_Q;
3005 double la4Q = myTHDM.getMyTHDMCache()->lambda4_at_Q;
3006 double la5Q = myTHDM.getMyTHDMCache()->lambda5_at_Q;
3007 double WFRc2 = myTHDM.getMyTHDMCache()->WFRcomb2;
3008 double Rpeps = myTHDM.getMyTHDMCache()->Rpeps;
3009
3010 double betalambda3 = 3.0*la1Q*la3Q + 3.0*la2Q*la3Q + 2.0*la3Q*la3Q + la1Q*la4Q + la2Q*la4Q + la4Q*la4Q + la5Q*la5Q
3011 + 3.0*la3Q*Yb1Q*Yb1Q + 3.0*la3Q*Yb2Q*Yb2Q + la3Q*Ytau1Q*Ytau1Q + la3Q*Ytau2Q*Ytau2Q + 3.0*la3Q*YtQ*YtQ
3012 - 6.0*Yb1Q*Yb1Q*(Yb2Q*Yb2Q + YtQ*YtQ) - 2.0*Ytau1Q*Ytau1Q*Ytau2Q*Ytau2Q;
3013 double betalambda4 = la1Q*la4Q + la2Q*la4Q + 4.0*la3Q*la4Q + 2.0*la4Q*la4Q + 4.0*la5Q*la5Q
3014 + 3.0*la4Q*Yb1Q*Yb1Q + 3.0*la4Q*Yb2Q*Yb2Q + la4Q*Ytau1Q*Ytau1Q + la4Q*Ytau2Q*Ytau2Q + 3.0*la4Q*YtQ*YtQ
3015 - 2.0*Ytau1Q*Ytau1Q*Ytau2Q*Ytau2Q - 6.0*Yb1Q*Yb1Q*(Yb2Q*Yb2Q - YtQ*YtQ);
3016
3017 double uniNLO14a = -(la3Q-la4Q)/(16.0*M_PI);
3018 double uniNLO14b = 3.0*(betalambda3-betalambda4)/(256.0*M_PI*M_PI*M_PI);
3019 gslpp::complex uniNLO14c = (gslpp::complex::i()*M_PI-1.0)*(la3Q-la4Q)*(la3Q-la4Q)/(256.0*M_PI*M_PI*M_PI);
3020 gslpp::complex uniNLO14d = -(la3Q-la5Q)/(512.0*M_PI*M_PI*M_PI) * WFRc2;
3021
3022 double Rp=0.01;
3023 if(fabs(uniNLO14a)>Rpeps)
3024 {
3025 Rp = (uniNLO14b+uniNLO14c+uniNLO14d).abs()/fabs(uniNLO14a);
3026 }
3027
3028 return Rp;
3029}
THDMcache * getMyTHDMCache() const
A method get the THDMCache.
Definition: THDM.h:213
double Rpeps
Definition: THDMcache.h:3412
double Ytau1_at_Q
Definition: THDMcache.h:3398
double Ybottom2_at_Q
Definition: THDMcache.h:3397
double lambda2_at_Q
Definition: THDMcache.h:3404
double Ytop_at_Q
Definition: THDMcache.h:3395
double lambda1_at_Q
Definition: THDMcache.h:3403
double lambda3_at_Q
Definition: THDMcache.h:3405
double lambda4_at_Q
Definition: THDMcache.h:3406
double Ytau2_at_Q
Definition: THDMcache.h:3399
double lambda5_at_Q
Definition: THDMcache.h:3407
double Ybottom1_at_Q
Definition: THDMcache.h:3396
double WFRcomb2
Definition: THDMcache.h:3409

Member Data Documentation

◆ myTHDM

const THDM& unitarityRp19::myTHDM
private

Definition at line 1487 of file unitarity.h.


The documentation for this class was generated from the following files: