/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/Statistics/interface/ChiSquaredProbability.h
13 строк
512 B
Cms Build
Clang-Format
03 июн 2019, 06:44
03 июн 2019, 06:44
6a63925
Код
Авторство
О чём код?
#ifndef ChiSquaredProbability_H #define ChiSquaredProbability_H /** Returns the probability that an observation, correctly described by * a model with nrDOF, will give rise to a chi-squared larger than the one * observed; from this, one can interpret this probability as how likely * it is to observe as high (or higher) a chi-squared. * source: Numerical Recipes */ float ChiSquaredProbability(double chiSquared, double nrDOF); float LnChiSquaredProbability(double chiSquared, double nrDOF); #endif