cepgen
is hosted by
Hepforge
,
IPPP Durham
CepGen
1.2.5
Central exclusive processes event generator
Loading...
Searching...
No Matches
BoostGaussLegendreAnalyticalIntegrator.cpp
Go to the documentation of this file.
1
/*
2
* CepGen: a central exclusive processes event generator
3
* Copyright (C) 2022-2024 Laurent Forthomme
4
*
5
* This program is free software: you can redistribute it and/or modify
6
* it under the terms of the GNU General Public License as published by
7
* the Free Software Foundation, either version 3 of the License, or
8
* any later version.
9
*
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
14
*
15
* You should have received a copy of the GNU General Public License
16
* along with this program. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
#include <boost/math/quadrature/gauss.hpp>
20
21
#include "
CepGen/Integration/AnalyticIntegrator.h
"
22
#include "
CepGen/Modules/AnalyticIntegratorFactory.h
"
23
#include "
CepGen/Utils/FunctionsWrappers.h
"
24
25
namespace
cepgen
{
27
template
<
size_t
N>
28
class
BoostGaussLegendreAnalyticalIntegrator
final :
public
AnalyticIntegrator
{
29
public
:
30
explicit
BoostGaussLegendreAnalyticalIntegrator
(
const
ParametersList
& params) :
AnalyticIntegrator
(params) {}
31
32
static
ParametersDescription
description
() {
33
auto
desc =
AnalyticIntegrator::description
();
34
desc.setDescription(
"Boost Gauss-Legendre integration algorithm"
);
35
return
desc;
36
}
37
38
double
integrate
(
const
utils::Function1D
& func,
void
* =
nullptr
,
const
Limits
& lim = {})
const
override
{
39
return
boost::math::quadrature::gauss<double, N>::integrate(
40
func, lim.hasMin() ? lim.min() :
range_
.min(), lim.hasMax() ? lim.max() :
range_
.max());
41
}
42
};
43
}
// namespace cepgen
44
typedef
cepgen::BoostGaussLegendreAnalyticalIntegrator<7>
BGLIntegrator7
;
45
typedef
cepgen::BoostGaussLegendreAnalyticalIntegrator<15>
BGLIntegrator15
;
46
typedef
cepgen::BoostGaussLegendreAnalyticalIntegrator<20>
BGLIntegrator20
;
47
typedef
cepgen::BoostGaussLegendreAnalyticalIntegrator<25>
BGLIntegrator25
;
48
typedef
cepgen::BoostGaussLegendreAnalyticalIntegrator<30>
BGLIntegrator30
;
49
REGISTER_ANALYTIC_INTEGRATOR
(
"boost_gl7"
,
BGLIntegrator7
);
50
REGISTER_ANALYTIC_INTEGRATOR
(
"boost_gl15"
,
BGLIntegrator15
);
51
REGISTER_ANALYTIC_INTEGRATOR
(
"boost_gl20"
,
BGLIntegrator20
);
52
REGISTER_ANALYTIC_INTEGRATOR
(
"boost_gl25"
,
BGLIntegrator25
);
53
REGISTER_ANALYTIC_INTEGRATOR
(
"boost_gl30"
,
BGLIntegrator30
);
AnalyticIntegratorFactory.h
REGISTER_ANALYTIC_INTEGRATOR
#define REGISTER_ANALYTIC_INTEGRATOR(name, obj)
Add a generic analytical integrator object builder definition.
Definition
AnalyticIntegratorFactory.h:25
AnalyticIntegrator.h
BGLIntegrator30
cepgen::BoostGaussLegendreAnalyticalIntegrator< 30 > BGLIntegrator30
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:48
BGLIntegrator7
cepgen::BoostGaussLegendreAnalyticalIntegrator< 7 > BGLIntegrator7
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:44
BGLIntegrator25
cepgen::BoostGaussLegendreAnalyticalIntegrator< 25 > BGLIntegrator25
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:47
BGLIntegrator20
cepgen::BoostGaussLegendreAnalyticalIntegrator< 20 > BGLIntegrator20
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:46
BGLIntegrator15
cepgen::BoostGaussLegendreAnalyticalIntegrator< 15 > BGLIntegrator15
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:45
FunctionsWrappers.h
cepgen::AnalyticIntegrator
Analytic (functional) integration algorithm.
Definition
AnalyticIntegrator.h:32
cepgen::AnalyticIntegrator::range_
const Limits range_
Definition
AnalyticIntegrator.h:57
cepgen::AnalyticIntegrator::description
static ParametersDescription description()
Definition
AnalyticIntegrator.cpp:33
cepgen::BoostGaussLegendreAnalyticalIntegrator
Gauss-Legendre integration algorithm.
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:28
cepgen::BoostGaussLegendreAnalyticalIntegrator::BoostGaussLegendreAnalyticalIntegrator
BoostGaussLegendreAnalyticalIntegrator(const ParametersList ¶ms)
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:30
cepgen::BoostGaussLegendreAnalyticalIntegrator::description
static ParametersDescription description()
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:32
cepgen::BoostGaussLegendreAnalyticalIntegrator::integrate
double integrate(const utils::Function1D &func, void *=nullptr, const Limits &lim={}) const override
Evaluate the integral of a function at a given value.
Definition
BoostGaussLegendreAnalyticalIntegrator.cpp:38
cepgen::Limits
Validity interval for a variable.
Definition
Limits.h:28
cepgen::ParametersDescription
A description object for parameters collection.
Definition
ParametersDescription.h:26
cepgen::ParametersList
Definition
ParametersList.h:52
cepgen::utils::Function1D
Wrapper to a 1-dimensional function with optional parameters.
Definition
FunctionsWrappers.h:29
cepgen
Common namespace for this Monte Carlo generator.
Definition
CommandLineHandler.cpp:36
CepGenAddOns
BoostWrapper
BoostGaussLegendreAnalyticalIntegrator.cpp
Generated on Mon Jul 29 2024 for CepGen by
1.9.7