Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:10:20

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 the quantile distributions present in both
0013     MathCore and optionally MathMore.
0014     The MathMore ones are included only if ROOT has been built with MathMore.
0015 */
0016 
0017 
0018 #ifndef ROOT_Math_QuantFunc
0019 #define ROOT_Math_QuantFunc
0020 
0021 
0022 #include "RConfigure.h"
0023 
0024 
0025 
0026 #include "Math/QuantFuncMathCore.h"
0027 
0028 // include distributions from MathMore when is there
0029 #ifdef R__HAS_MATHMORE
0030 
0031 // extra quantiles in MathMore
0032 #include "Math/QuantFuncMathMore.h"
0033 
0034 #endif
0035 
0036 #endif  // ROOT_Math_QuantFunc