a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
ArgD.h
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#ifndef ARGD_H
9#define ARGD_H
10
11#include "ThObservable.h"
12#include "gslpp.h"
13#include "AmpDD2.h"
14#include "std_make_vector.h"
15
16class ArgD : public ThObservable, AmpDD2 {
21public:
26 ArgD(const StandardModel& SM_i) : ThObservable(SM_i), AmpDD2(SM_i)
27 {
28 setParametersForObservable(make_vector<std::string>() << "SM_M12D");
29 };
35 double computeThValue() {
36 return((AmpDD(FULLNLO) + SM.getOptionalParameter("SM_M12D")).arg() / M_PI * 180. );
37 };
38};
39
40#endif /* ARGD_H */
@ FULLNLO
Definition: OrderScheme.h:38
Definition: AmpDD2.h:21
Definition: ArgD.h:16
double computeThValue()
a method returning the argument of the complex amplitude for the dispersive part of the mixing
Definition: ArgD.h:35
ArgD(const StandardModel &SM_i)
a class for the argument of the complex amplitude of D^{0} oscillations
Definition: ArgD.h:26
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
A model class for the Standard Model.
A class for a model prediction of an observable.
Definition: ThObservable.h:25
void setParametersForObservable(std::vector< std::string > parametersForObservable_i)
A set method to get the parameters for the specific observable.
Definition: ThObservable.h:109
const StandardModel & SM
A reference to an object of StandardMode class.
Definition: ThObservable.h:121
gslpp::complex AmpDD(orders order)
a method returning the complex amplitude for the mixing
Definition: AmpDD2.cpp:18