a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
LEP2sigmaBottom.cpp
Go to the documentation of this file.
1/*
2 * Copyright (C) 2012 HEPfit Collaboration
3 *
4 *
5 * For the licensing terms see doc/COPYING.
6 */
7
8
9#include "LEP2sigmaBottom.h"
10
11
13{
14 double sigma_bottom = SM.LEP2sigmaBottom(s);
15
16 return ( sigma_bottom*SM.GeVminus2_to_nb*1000.0 );
17}
18
19
21{
22 double sigma_bottom = SM.eeffsigmaBottom(pol_e, pol_p, s);
23
24 // Intrinsic SM theory uncertainty
25 double SM_intr_err = SM.getOptionalParameter("errSMint_xseebb");
26
27 return ( sigma_bottom * ( 1.0 + SM_intr_err ) );
28}
29
30
32{
33 double R_bottom = SM.eeffRbottom(pol_e, pol_p, s);
34
35 // Intrinsic SM theory uncertainty
36 double SM_intr_err = SM.getOptionalParameter("errSMint_Reebb");
37
38 return ( R_bottom * ( 1.0 + SM_intr_err ) );
39}
40
const double getOptionalParameter(std::string name) const
A method to get parameters that are specific to only one set of observables.
Definition: QCD.h:450
virtual const double eeffRbottom(const double pol_e, const double pol_p, const double s) const
virtual const double eeffsigmaBottom(const double pol_e, const double pol_p, const double s) const
static const double GeVminus2_to_nb
virtual const double LEP2sigmaBottom(const double s) const
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
double computeThValue()
const double pol_p
const double pol_e
Test Observable.