npstat is hosted by Hepforge, IPPP Durham
NPStat  5.10.0
definiteIntegrals.hh
Go to the documentation of this file.
1 #ifndef NPSTAT_DEFINITEINTEGRALS_HH_
2 #define NPSTAT_DEFINITEINTEGRALS_HH_
3 
4 /*!
5 // \file definiteIntegrals.hh
6 //
7 // \brief Formulae for various definite integrals based on exact expressions
8 //
9 // Author: I. Volobouev
10 //
11 // June 2013
12 */
13 
14 namespace npstat {
15  /**
16  // Integrate[(a x + b)/Sqrt[x (1-x)], {x, xmin, xmax}]
17  // for the case both xmin and xmax are inside the [0, 1] interval
18  */
19  double definiteIntegral_1(double a, double b, double xmin, double xmax);
20 }
21 
22 #endif // NPSTAT_DEFINITEINTEGRALS_HH_
Definition: AbsArrayProjector.hh:14
double definiteIntegral_1(double a, double b, double xmin, double xmax)