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

A class for the observable \(M_2'\) in \(M \to V l^+l^-\). More...

#include <MVllObservables.h>

+ Inheritance diagram for M_2Prime:

Detailed Description

A class for the observable \(M_2'\) in \(M \to V l^+l^-\).

Author
HEPfit Collaboration

This class is used to compute the observable \(M_2'\) in \(M \to V l^+l^-\) in terms of the helicity amplitudes \(H_{A,V}^0,\,H_{P,S}\) computed in the MVll class:

\[ M_2'= \frac {q^2/(2m_l^2)^2(|H_P|^2 + \beta|H_S|^2) + (|H_V^0|^2 - |H_A^0|^2)}{|H_V^0|^2 + |H_A^0|^2} \,. \]

Definition at line 762 of file MVllObservables.h.

Public Member Functions

double computeThValue ()
 The observable \(M_2'\) in \(M \to V l^+l^-\). More...
 
 M_2Prime (const StandardModel &SM_i, QCD::meson meson_i, QCD::meson vector_i, QCD::lepton lep_i)
 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

QCD::lepton lep
 
QCD::meson meson
 
QCD::meson vectorM
 

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

◆ M_2Prime()

M_2Prime::M_2Prime ( const StandardModel SM_i,
QCD::meson  meson_i,
QCD::meson  vector_i,
QCD::lepton  lep_i 
)

Constructor.

Parameters
[in]SM_ia reference to an object of type StandardModel
[in]meson_iinitial meson of the decay
[in]vector_ifinal vector meson of the decay
[in]lep_ifinal leptons of the decay

Definition at line 418 of file MVllObservables.cpp.

419: ThObservable(SM_i)
420{
421 lep = lep_i;
422 meson = meson_i;
423 vectorM = vector_i;
424
426}
MVll & getMVll(QCD::meson meson_i, QCD::meson vector_i, QCD::lepton lep_i) const
Returns the initial and final state dependent object for .
Definition: Flavour.cpp:209
QCD::meson meson
QCD::lepton lep
QCD::meson vectorM
std::vector< std::string > initializeMVllParameters()
A method for initializing the parameters necessary for MVll.
Definition: MVll.cpp:160
const Flavour & getFlavour() const
void setParametersForObservable(std::vector< std::string > parametersForObservable_i)
A set method to get the parameters for the specific observable.
Definition: ThObservable.h:109
ThObservable(const StandardModel &SM_i)
Constructor.
Definition: ThObservable.h:32
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121

Member Function Documentation

◆ computeThValue()

double M_2Prime::computeThValue ( )
virtual

The observable \(M_2'\) in \(M \to V l^+l^-\).

Returns
\(M_2'\)

Implements ThObservable.

Definition at line 428 of file MVllObservables.cpp.

429{
430 double q_min = getBinMin();
431
432 return ( q_min/(2.*SM.getFlavour().getMVll(meson, vectorM, lep).getMlep()*SM.getFlavour().getMVll(meson, vectorM, lep).getMlep())*( SM.getFlavour().getMVll(meson, vectorM, lep).H_P(q_min, 0).abs2() + SM.getFlavour().getMVll(meson, vectorM, lep).beta(q_min)*SM.getFlavour().getMVll(meson, vectorM, lep).beta(q_min)*SM.getFlavour().getMVll(meson, vectorM, lep).H_S(q_min, 0).abs2() ) + SM.getFlavour().getMVll(meson, vectorM, lep).H_V_0(q_min, 0).abs2() - SM.getFlavour().getMVll(meson, vectorM, lep).H_A_0(q_min, 0).abs2() )/
433 ( SM.getFlavour().getMVll(meson, vectorM, lep).H_V_0(q_min, 0).abs2() + SM.getFlavour().getMVll(meson, vectorM, lep).H_A_0(q_min, 0).abs2() );
434}
double getMlep()
The mass of the lepton l.
Definition: MVll.h:372
gslpp::complex H_S(double q2, bool bar)
The helicity amplitude .
Definition: MVll.cpp:2522
gslpp::complex H_V_0(double q2, bool bar)
The helicity amplitude .
Definition: MVll.cpp:2461
gslpp::complex H_A_0(double q2, bool bar)
The helicity amplitude .
Definition: MVll.cpp:2492
gslpp::complex H_P(double q2, bool bar)
The helicity amplitude .
Definition: MVll.cpp:2530
double beta(double q2)
The factor used in the angular coefficients .
Definition: MVll.cpp:2570
double getBinMin()
A get method to get the minimum value of the bin.
Definition: ThObservable.h:82

Member Data Documentation

◆ lep

QCD::lepton M_2Prime::lep
private

Final leptons type.

Definition at line 781 of file MVllObservables.h.

◆ meson

QCD::meson M_2Prime::meson
private

Initial meson type.

Definition at line 782 of file MVllObservables.h.

◆ vectorM

QCD::meson M_2Prime::vectorM
private

Final vector meson type.

Definition at line 783 of file MVllObservables.h.


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