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

A class for the gg -> 4l. More...

#include <myObservables.h>

+ Inheritance diagram for myObservables:

Detailed Description

A class for the gg -> 4l.

Examples
myObservables.cpp, and myObservables.h.

Definition at line 19 of file Doxygen/examples-src/myModel/src/myObservables.h.

Public Member Functions

 myObservables (const StandardModel &SM_i)
 
 myObservables (const StandardModel &SM_i)
 
void updateParameters ()
 
void updateParameters ()
 
virtual ~myObservables ()
 
virtual ~myObservables ()
 
- Public Member Functions inherited from ThObservable
virtual double computeThValue ()=0
 A member to be overloaded by the respective theory observable. class that calculates the value of the observable. More...
 
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...
 

Protected Attributes

double c1
 
double c2
 
double c3
 
double c4
 
double fact
 
double kfact
 
double sw2
 
- 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...
 

Private Attributes

const myModelmy_model
 

Constructor & Destructor Documentation

◆ myObservables() [1/2]

myObservables::myObservables ( const StandardModel SM_i)
Examples
myObservables.cpp, and myObservables.h.

Definition at line 11 of file Doxygen/examples-src/myModel/src/myObservables.cpp.

12 : ThObservable(SM_i), my_model(static_cast<const myModel*> (&SM_i))
13 {
14  fact = 2. * 3000 * pow(0.95, 4.);
15  kfact = 1.85;
16 }

◆ ~myObservables() [1/2]

myObservables::~myObservables ( )
virtual

◆ myObservables() [2/2]

myObservables::myObservables ( const StandardModel SM_i)

◆ ~myObservables() [2/2]

virtual myObservables::~myObservables ( )
virtual

Member Function Documentation

◆ updateParameters() [1/2]

void myObservables::updateParameters ( )
Examples
myObservables.cpp, and myObservables.h.

Definition at line 21 of file Doxygen/examples-src/myModel/src/myObservables.cpp.

22 {
23  c1 = my_model->getc1();
24  if (my_model->get_condition_flag() == true) {
25  c2 = 1. - c1;
26  } else {
27  c2 = my_model->getc2();
28  }
29  c3 = my_model->getc3();
30  c4 = my_model->getc4();
31  sw2 = my_model->sW2();
32 }

◆ updateParameters() [2/2]

void myObservables::updateParameters ( )

Member Data Documentation

◆ c1

double myObservables::c1
protected

◆ c2

double myObservables::c2
protected

◆ c3

double myObservables::c3
protected

◆ c4

double myObservables::c4
protected

◆ fact

double myObservables::fact
protected

◆ kfact

double myObservables::kfact
protected

◆ my_model

const myModel * myObservables::my_model
private

◆ sw2

double myObservables::sw2
protected

The documentation for this class was generated from the following files:
myObservables::c2
double c2
Definition: Doxygen/examples-src/myModel/src/myObservables.h:29
myModel::getc2
double getc2() const
Definition: Doxygen/examples-src/myModel/src/myModel.h:61
ThObservable::ThObservable
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
StandardModel::sW2
virtual double sW2(const double Mw_i) const
The square of the sine of the weak mixing angle in the on-shell scheme, denoted as .
Definition: StandardModel.cpp:1000
myObservables::sw2
double sw2
Definition: Doxygen/examples-src/myModel/src/myObservables.h:32
myModel::get_condition_flag
bool get_condition_flag() const
Definition: Doxygen/examples-src/myModel/src/myModel.h:88
gslpp::pow
complex pow(const complex &z1, const complex &z2)
Definition: gslpp_complex.cpp:395
myObservables::fact
double fact
Definition: Doxygen/examples-src/myModel/src/myObservables.h:33
myObservables::c3
double c3
Definition: Doxygen/examples-src/myModel/src/myObservables.h:30
myObservables::kfact
double kfact
Definition: Doxygen/examples-src/myModel/src/myObservables.h:34
myObservables::c4
double c4
Definition: Doxygen/examples-src/myModel/src/myObservables.h:31
myModel::getc1
double getc1() const
Definition: Doxygen/examples-src/myModel/src/myModel.h:52
myObservables::c1
double c1
Definition: Doxygen/examples-src/myModel/src/myObservables.h:28
myModel::getc4
double getc4() const
Definition: Doxygen/examples-src/myModel/src/myModel.h:79
myObservables::my_model
const myModel * my_model
Definition: Doxygen/examples-src/myModel/src/myObservables.h:37
myModel::getc3
double getc3() const
Definition: Doxygen/examples-src/myModel/src/myModel.h:70