a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
AFBlepton.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 "AFBlepton.h"
9#include "StandardModel.h"
10
12{
13 double AFBe = SM.AFB(SM.getLeptons(SM.ELECTRON));
14 double AFBmu = SM.AFB(SM.getLeptons(SM.MU));
15 double AFBtau = SM.AFB(SM.getLeptons(SM.TAU));
16
17 return (AFBe + AFBmu + AFBtau)/3.;
18}
19
21{
22 return SM.AFB(SM.getLeptons(SM.ELECTRON));
23}
24
26{
27 return SM.AFB(SM.getLeptons(SM.MU));
28}
29
31{
32 return SM.AFB(SM.getLeptons(SM.TAU));
33}
34
35
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:20
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:11
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:25
An observable class for the forward-backward asymmetry in at the pole.
Definition: AFBlepton.h:160
double computeThValue()
The forward-backward asymmetry for at the pole, .
Definition: AFBlepton.cpp:30
@ MU
Definition: QCD.h:314
@ ELECTRON
Definition: QCD.h:312
@ TAU
Definition: QCD.h:316
const Particle & getLeptons(const QCD::lepton p) const
A get method to retrieve the member object of a lepton.
virtual const double AFB(const Particle f) const
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121