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

A class for the matching in the CMFV. More...

#include <CMFVMatching.h>

+ Inheritance diagram for CMFVMatching:

Detailed Description

A class for the matching in the CMFV.

Author
HEPfit Collaboration


Definition at line 23 of file CMFVMatching.h.

Public Member Functions

 CMFVMatching (const CMFV &CMFV_i)
 
double S0 (double, double) const
 
- Public Member Functions inherited from StandardModelMatching
virtual std::vector< WilsonCoefficient > & CMdbd2 ()
 \( \Delta B = 2 \), \( B_{d} \) More...
 
virtual std::vector< WilsonCoefficient > & CMdbs2 ()
 \( \Delta B = 2 \), \( B_{s} \) More...
 
virtual std::vector< WilsonCoefficient > & CMdd2 ()
 \( \Delta C = 2 \), More...
 
 StandardModelMatching (const StandardModel &SM_i)
 
void updateSMParameters ()
 Updates to new Standard Model parameter sets. More...
 
virtual ~StandardModelMatching ()
 
- Public Member Functions inherited from ModelMatching
virtual std::vector< WilsonCoefficient > & CMBMll (QCD::lepton lepton)=0
 
virtual std::vector< WilsonCoefficient > & CMbnlep (const int a)=0
 
virtual std::vector< WilsonCoefficient > & CMbnlepCC (const int a)=0
 
virtual std::vector< WilsonCoefficient > & CMbsg ()=0
 
virtual std::vector< WilsonCoefficient > & CMd1 ()=0
 
virtual std::vector< WilsonCoefficient > & CMd1Buras ()=0
 
virtual std::vector< WilsonCoefficientNew > & CMDF1 (std::string blocks, unsigned int nops)=0
 
virtual std::vector< WilsonCoefficient > & CMprimeBMll (QCD::lepton lepton)=0
 
virtual std::vector< WilsonCoefficient > & CMprimebsg ()=0
 
virtual ~ModelMatching ()
 

Private Attributes

const CMFVmyCMFV
 

Constructor & Destructor Documentation

◆ CMFVMatching()

CMFVMatching::CMFVMatching ( const CMFV CMFV_i)

Definition at line 11 of file CMFVMatching.cpp.

11  :
12  StandardModelMatching(CMFV_i),
13  myCMFV(CMFV_i) {};

Member Function Documentation

◆ S0()

double CMFVMatching::S0 ( double  x1,
double  x2 
) const

Definition at line 15 of file CMFVMatching.cpp.

15  {
16  if (x1 > .02 && x2 > .02)
17  return (myCMFV.getFtt() + StandardModelMatching::S0(x1, x2));
18  return StandardModelMatching::S0(x1,x2);
19 }

Member Data Documentation

◆ myCMFV

const CMFV& CMFVMatching::myCMFV
private

Definition at line 30 of file CMFVMatching.h.


The documentation for this class was generated from the following files:
CMFVMatching::myCMFV
const CMFV & myCMFV
Definition: CMFVMatching.h:30
CMFV::getFtt
double getFtt() const
Definition: CMFV.h:64
StandardModelMatching::StandardModelMatching
StandardModelMatching(const StandardModel &SM_i)
Definition: StandardModelMatching.cpp:16