a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
xi.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2022 HEPfit Collaboration
3 *
4 *
5 * For the licensing terms see doc/COPYING.
6 */
7
8#include "xi.h"
9#include "StandardModel.h"
10
11xi::xi(const StandardModel& SM_i) : ThObservable(SM_i)
12{
15};
16
18{
20}
const gslpp::vector< double > & getBpars() const
A get method for the vector of the bag parameters.
Definition: BParameter.h:176
const double & getDecayconst() const
A get method for the decay constant of the meson.
Definition: Meson.h:360
@ B_D
Definition: QCD.h:344
@ B_S
Definition: QCD.h:346
const Meson & getMesons(const QCD::meson m) const
A get method to access a meson as an object of the type Meson.
Definition: QCD.h:526
void initializeBParameter(std::string name_i) const
A method to initialize B Parameter and the corresponding meson.
Definition: QCD.cpp:211
const BParameter & getBBs() const
For getting the bag parameters corresponding to the operator basis in process in the meson system.
Definition: QCD.h:640
const BParameter & getBBd() const
For getting the bag parameters corresponding to the operator basis in process in the meson system.
Definition: QCD.h:629
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
virtual double computeThValue()
Definition: xi.cpp:17
xi(const StandardModel &SM_i)
Constructor.
Definition: xi.cpp:11