a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
LEP2sigmaCharm.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#include "LEP2sigmaCharm.h"
9
10
12{
13 double sigma_charm = SM.LEP2sigmaCharm(s);
14
15 return ( sigma_charm*SM.GeVminus2_to_nb*1000.0 );
16}
17
19{
20 //double sigma_charm = SM.eeffsigmaCharm(pol_e, pol_p, s);
21 double coscut = 0.9;
22 double sigma_charm = SM.eeffsigma(SM.getQuarks(SM.CHARM), pol_e, pol_p, s, -coscut, coscut);
23
24 // Intrinsic SM theory uncertainty
25 double SM_intr_err = SM.getOptionalParameter("errSMint_xseejj");
26
27 return ( sigma_charm * ( 1.0 + SM_intr_err ) );
28}
29
30
32{
33 double R_charm = SM.eeffRcharm(pol_e, pol_p, s);
34
35 // Intrinsic SM theory uncertainty
36 double SM_intr_err = SM.getOptionalParameter("errSMint_Reejj");
37
38 return ( R_charm * ( 1.0 + SM_intr_err ) );
39}
40
double computeThValue()
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
@ CHARM
Definition: QCD.h:326
const Particle & getQuarks(const QCD::quark q) const
A get method to access a quark as an object of the type Particle.
Definition: QCD.h:536
virtual const double LEP2sigmaCharm(const double s) const
virtual const double eeffsigma(const Particle f, const double pol_e, const double pol_p, const double s, const double cosmin, const double cosmax) const
virtual const double eeffRcharm(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
double computeThValue()
const double pol_p
const double pol_e
double computeThValue()
Test Observable.