ANIMA  4.0
animaGaussLaguerreQuadrature.cxx
Go to the documentation of this file.
2 #include <iostream>
3 
4 namespace anima
5 {
6 
8 {
9  m_DeltaValue = 0.0;
10  m_ScaleValue = 1.0;
11 }
12 
13 void GaussLaguerreQuadrature::SetInterestZone(double minVal, double maxVal)
14 {
15  // Fits [min,max] into [0.0,51]
16  double lastAbcissa = m_Abcissas[m_Abcissas.size() - 1];
17 
18  m_ScaleValue = (maxVal - minVal) / lastAbcissa;
19  m_DeltaValue = minVal;
20 }
21 
22 } // end namespace anima
void SetInterestZone(double minVal, double maxVal)
Specifies region on which the main part of the function is to be seen. If not specified, R^+ is the region.