yoda is hosted by Hepforge, IPPP Durham
YODA - Yet more Objects for Data Analysis 2.0.0
Estimate.h File Reference
#include "YODA/Exceptions.h"
#include "YODA/Dbn.h"
#include "YODA/Transformation.h"
#include "YODA/Utils/MathUtils.h"
#include "YODA/Utils/StringUtils.h"
#include <cmath>
#include <map>
#include <string>
#include <regex>
#include <utility>

Go to the source code of this file.

Classes

class  YODA::Estimate
 A point estimate (base class for the Estimate) More...
 

Namespaces

namespace  YODA
 Anonymous namespace to limit visibility.
 

Functions

Global operators for Estimate objects
Estimate YODA::operator+ (Estimate lhs, const Estimate &rhs)
 Add two Estimate objects.
 
Estimate YODA::operator+ (Estimate lhs, Estimate &&rhs)
 Add two Estimate objects.
 
Estimate YODA::operator- (Estimate lhs, const Estimate &rhs)
 Subtract two Estimate objects.
 
Estimate YODA::operator- (Estimate lhs, Estimate &&rhs)
 Subtract two Estimate objects.
 
Estimate YODA::divide (const Estimate &numer, const Estimate &denom, const std::string &pat_uncorr="^stat|^uncor")
 Divide two Estimate objects.
 
Estimate YODA::operator/ (const Estimate &numer, const Estimate &denom)
 Divide two Estimate objects.
 
Estimate YODA::operator/ (Estimate &&numer, const Estimate &denom)
 Divide two Estimate objects.
 
Estimate YODA::operator/ (const Estimate &numer, Estimate &&denom)
 Divide two Estimate objects.
 
Estimate YODA::operator/ (Estimate &&numer, Estimate &&denom)
 Divide two Estimate objects.
 
Estimate YODA::efficiency (const Estimate &accepted, const Estimate &total, const std::string &pat_uncorr="^stat|^uncor")
 Divide two Estimate objects using binomial statistics.