Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:22:03

0001 // @(#)root/mathcore:$Id$
0002 // Authors: L. Moneta, A. Zsenei   08/2005
0003 
0004  /**********************************************************************
0005   *                                                                    *
0006   * Copyright (c) 2004 ROOT Foundation,  CERN/PH-SFT                   *
0007   *                                                                    *
0008   *                                                                    *
0009   **********************************************************************/
0010 
0011 /**
0012     Header file declaring all distributions, pdf, cdf and quantiles present in
0013     MathCore and optionally MathMore.
0014     The MathMore ones are included only if ROOT has been built with MathMore.
0015 */
0016 
0017 #ifndef ROOT_Math_DistFunc
0018 #define ROOT_Math_DistFunc
0019 
0020 
0021 #include "RConfigure.h"
0022 
0023 
0024 
0025 
0026 // pdf functions from MathCore
0027 #include "Math/PdfFuncMathCore.h"
0028 
0029 // all cdf are in MathCore now
0030 #include "Math/ProbFuncMathCore.h"
0031 
0032 //quantiles functions from mathcore
0033 #include "Math/QuantFuncMathCore.h"
0034 
0035 // include distributions from MathMore when is there
0036 #ifdef R__HAS_MATHMORE
0037 
0038 // // extra pdf functions from MathMore
0039 #include "Math/PdfFuncMathMore.h"
0040 
0041 // no -more extra cdf in MathMore
0042 // #ifndef ROOT_Math_ProbFuncMathMore
0043 // #include "Math/ProbFuncMathMore.h"
0044 // #endif
0045 
0046 // inverse (quantiles) are all in mathmore
0047 #include "Math/QuantFuncMathMore.h"
0048 
0049 #endif
0050 
0051 #endif  // ROOT_Math_DistFunc