Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4VGaussianQuadrature.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 //
27 // $Id: G4VGaussianQuadrature.hh 67970 2013-03-13 10:10:06Z gcosmo $
28 //
29 // Class description:
30 //
31 // Base Class for realisation of numerical methodes for integration of functions
32 // with signature double f(double) by Gaussian quadrature methods
33 // Roots of ortogonal polynoms and corresponding weights are calculated based on
34 // iteration method (by bisection Newton algorithm). Constant values for initial
35 // approximations were derived from the book: M. Abramowitz, I. Stegun, Handbook
36 // of mathematical functions, DOVER Publications INC, New York 1965 ; chapters 9,
37 // 10, and 22 .
38 //
39 // ---------------------------- Member data: ----------------------------------
40 //
41 // fFunction - pointer to the function to be integrated
42 // fNumber - the number of points in fAbscissa and fWeight arrays
43 // fAbscissa - array of abscissas, where function will be evaluated
44 // fWeight - array of corresponding weights
45 //
46 //
47 // ----------------------------------------------------------------------
48 //
49 // Auxiliary function which returns the value of std::log(gamma-function(x))
50 //
51 // G4double
52 // GammaLogarithm(G4double xx)
53 
54 // ------------------------------------------------------------------------------
55 //
56 // History:
57 // 18.04.97 V.Grichine ( Vladimir.Grichine@cern.ch )
58 
59 #ifndef G4VGAUSSIANQUADRATURE_HH
60 #define G4VGAUSSIANQUADRATURE_HH
61 
62 #include "globals.hh"
63 
64 typedef G4double (*function)(G4double) ;
65 
67 {
68  public:
69 
70  explicit G4VGaussianQuadrature( function pFunction ) ;
71  // Base constructor
72 
73  virtual ~G4VGaussianQuadrature() ;
74  // Virtual destructor
75 
76  G4double GetAbscissa(G4int index) const ;
77  G4double GetWeight(G4int index) const ;
78  G4int GetNumber() const;
79  // Access functions
80 
81  protected:
82 
84 
85  // Data members common for GaussianQuadrature family
86  //
87  function fFunction ;
91 
92  private:
93 
96 };
97 
98 #endif
G4double GetWeight(G4int index) const
G4VGaussianQuadrature(function pFunction)
int G4int
Definition: G4Types.hh:78
G4double GetAbscissa(G4int index) const
G4double GammaLogarithm(G4double xx)
double G4double
Definition: G4Types.hh:76