a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
CMFVMatching.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 HEPfit Collaboration
3  *
4  * For the licensing terms see doc/COPYING.
5  */
6 
7 #include "CMFVMatching.h"
8 #include "CMFV.h"
9 #include <stdexcept>
10 
12  StandardModelMatching(CMFV_i),
13  myCMFV(CMFV_i) {};
14 
15 double CMFVMatching::S0(double x1, double x2) const {
16  if (x1 > .02 && x2 > .02)
17  return (myCMFV.getFtt() + StandardModelMatching::S0(x1, x2));
18  return StandardModelMatching::S0(x1,x2);
19 }
CMFVMatching::myCMFV
const CMFV & myCMFV
Definition: CMFVMatching.h:30
CMFV::getFtt
double getFtt() const
Definition: CMFV.h:64
CMFV
Model for CMFV contributions to flavour.
Definition: CMFV.h:30
StandardModelMatching
A class for the matching in the Standard Model.
Definition: StandardModelMatching.h:26
CMFV.h
CMFVMatching.h
CMFVMatching::S0
double S0(double, double) const
Definition: CMFVMatching.cpp:15
CMFVMatching::CMFVMatching
CMFVMatching(const CMFV &CMFV_i)
Definition: CMFVMatching.cpp:11