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

Another observable class for the requirement of perturbative unitarity at next-to-leading order. More...

#include <THDMWunitarity.h>

+ Inheritance diagram for THDMWunitarityNLOp:

Detailed Description

Another observable class for the requirement of perturbative unitarity at next-to-leading order.

Author
HEPfit Collaboration

Definition at line 89 of file THDMWunitarity.h.

Public Member Functions

double computeThValue ()
 
 THDMWunitarityNLOp (const StandardModel &SM_i, unsigned int index_i)
 THDMWunitarityNLOp constructor. More...
 
virtual ~THDMWunitarityNLOp ()
 Destructor. 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

unsigned int index
 
const THDMWmyTHDMW
 

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

◆ THDMWunitarityNLOp()

THDMWunitarityNLOp::THDMWunitarityNLOp ( const StandardModel SM_i,
unsigned int  index_i 
)

THDMWunitarityNLOp constructor.

Definition at line 50 of file THDMWunitarity.cpp.

51 : ThObservable(SM_i),myTHDMW(static_cast<const THDMW&> (SM_i))
52 {
53  index = index_i;
54 }

◆ ~THDMWunitarityNLOp()

THDMWunitarityNLOp::~THDMWunitarityNLOp ( )
virtual

Destructor.

Definition at line 56 of file THDMWunitarity.cpp.

57 {}

Member Function Documentation

◆ computeThValue()

double THDMWunitarityNLOp::computeThValue ( )
virtual
Returns
Real part of the NLO unitarity eigenvalues

Implements ThObservable.

Definition at line 59 of file THDMWunitarity.cpp.

60 {
61  if( index > 10 ) {
62  throw std::runtime_error("Index out of range in THDMWunitarityNLOp");
63  }
64 
67 
68  return ( a0 + a1.real() ).abs();
69 }

Member Data Documentation

◆ index

unsigned int THDMWunitarityNLOp::index
private

Definition at line 108 of file THDMWunitarity.h.

◆ myTHDMW

const THDMW& THDMWunitarityNLOp::myTHDMW
private

Definition at line 107 of file THDMWunitarity.h.


The documentation for this class was generated from the following files:
gslpp::complex
A class for defining operations on and functions of complex numbers.
Definition: gslpp_complex.h:35
THDMWcache::NLOunitarityeigenvalues
gslpp::vector< gslpp::complex > NLOunitarityeigenvalues
Definition: THDMWcache.h:142
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
THDMWunitarityNLOp::myTHDMW
const THDMW & myTHDMW
Definition: THDMWunitarity.h:107
THDMWunitarityNLOp::index
unsigned int index
Definition: THDMWunitarity.h:108
THDMW::getMyTHDMWCache
THDMWcache * getMyTHDMWCache() const
A method get the THDMWCache.
Definition: THDMW.h:318
THDMWcache::unitarityeigenvalues
gslpp::vector< gslpp::complex > unitarityeigenvalues
Definition: THDMWcache.h:141
gslpp::complex::real
const double & real() const
Definition: gslpp_complex.cpp:53