a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
LEP2sigmaHadron.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 "LEP2sigmaHadron.h"
10
11
13{
14 double sigmaH = SM.LEP2sigmaHadron(s);
15
16 // Intrinsic SM theory uncertainty
17 double SM_intr_err = SM.getOptionalParameter("errSMint_xseejjLEP2");
18
19 #ifdef LEP2TEST
21 #endif
22
23// return ( sigmaH*SM.GeVminus2_to_nb*1000.0 );
24
25 // Approximate formulae returns result in pb
26 return ( sigmaH * ( 1.0 + SM_intr_err ) );
27}
28
29
31{
32 double sigmaH = SM.eeffsigmaHadron(pol_e, pol_p, s);
33
34 // Intrinsic SM theory uncertainty
35 double SM_intr_err = SM.getOptionalParameter("errSMint_xseejj");
36
37 return ( sigmaH * ( 1.0 + SM_intr_err ) );
38}
39
const double sqrt_s
const LEP2test myTEST
double sigmaHadronTEST(const double sqrt_s_i) const
Definition: LEP2test.h:44
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 LEP2sigmaHadron(const double s) const
virtual const double eeffsigmaHadron(const double pol_e, const double pol_p, const double s) const
static const double GeVminus2_to_nb
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
const double pol_p
const double pol_e
Test Observable.