Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
DistFunc.h
Go to the documentation of this file.
1// @(#)root/mathcore:$Id$
2// Authors: L. Moneta, A. Zsenei 08/2005
3
4 /**********************************************************************
5 * *
6 * Copyright (c) 2004 ROOT Foundation, CERN/PH-SFT *
7 * *
8 * *
9 **********************************************************************/
10
11/**
12 Header file declaring all distributions, pdf, cdf and quantiles present in
13 MathCore and optionally MathMore.
14 The MathMore ones are included only if ROOT has been built with MathMore.
15*/
16
17#ifndef ROOT_Math_DistFunc
18#define ROOT_Math_DistFunc
19
20
21#include "RConfigure.h"
22
23
24
25
26// pdf functions from MathCore
28
29// all cdf are in MathCore now
31
32//quantiles functions from mathcore
34
35// include distributions from MathMore when is there
36#ifdef R__HAS_MATHMORE
37
38// // extra pdf functions from MathMore
40
41// no -more extra cdf in MathMore
42// #ifndef ROOT_Math_ProbFuncMathMore
43// #include "Math/ProbFuncMathMore.h"
44// #endif
45
46// inverse (quantiles) are all in mathmore
48
49#endif
50
51#endif // ROOT_Math_DistFunc