| 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,v 1.7 2006/06/29 18:59:58 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: HEAD $
|
|---|
| 29 | //
|
|---|
| 30 | // Class description:
|
|---|
| 31 | //
|
|---|
| 32 | // Base Class for realisation of numerical methodes for integration of functions
|
|---|
| 33 | // with signature double f(double) by Gaussian quadrature methods
|
|---|
| 34 | // Roots of ortogonal polynoms and corresponding weights are calculated based on
|
|---|
| 35 | // iteration method (by bisection Newton algorithm). Constant values for initial
|
|---|
| 36 | // approximations were derived from the book: M. Abramowitz, I. Stegun, Handbook
|
|---|
| 37 | // of mathematical functions, DOVER Publications INC, New York 1965 ; chapters 9,
|
|---|
| 38 | // 10, and 22 .
|
|---|
| 39 | //
|
|---|
| 40 | // ---------------------------- Member data: ----------------------------------
|
|---|
| 41 | //
|
|---|
| 42 | // fFunction - pointer to the function to be integrated
|
|---|
| 43 | // fNumber - the number of points in fAbscissa and fWeight arrays
|
|---|
| 44 | // fAbscissa - array of abscissas, where function will be evaluated
|
|---|
| 45 | // fWeight - array of corresponding weights
|
|---|
| 46 | //
|
|---|
| 47 | //
|
|---|
| 48 | // ----------------------------------------------------------------------
|
|---|
| 49 | //
|
|---|
| 50 | // Auxiliary function which returns the value of std::log(gamma-function(x))
|
|---|
| 51 | //
|
|---|
| 52 | // G4double
|
|---|
| 53 | // GammaLogarithm(G4double xx)
|
|---|
| 54 |
|
|---|
| 55 | // ------------------------------------------------------------------------------
|
|---|
| 56 | //
|
|---|
| 57 | // History:
|
|---|
| 58 | // 18.04.97 V.Grichine ( Vladimir.Grichine@cern.ch )
|
|---|
| 59 |
|
|---|
| 60 | #ifndef G4VGAUSSIANQUADRATURE_HH
|
|---|
| 61 | #define G4VGAUSSIANQUADRATURE_HH
|
|---|
| 62 |
|
|---|
| 63 | #include "globals.hh"
|
|---|
| 64 |
|
|---|
| 65 | typedef G4double (*function)(G4double) ;
|
|---|
| 66 |
|
|---|
| 67 | class G4VGaussianQuadrature
|
|---|
| 68 | {
|
|---|
| 69 | public:
|
|---|
| 70 |
|
|---|
| 71 | explicit G4VGaussianQuadrature( function pFunction ) ;
|
|---|
| 72 | // Base constructor
|
|---|
| 73 |
|
|---|
| 74 | virtual ~G4VGaussianQuadrature() ;
|
|---|
| 75 | // Virtual destructor
|
|---|
| 76 |
|
|---|
| 77 | G4double GetAbscissa(G4int index) const ;
|
|---|
| 78 | G4double GetWeight(G4int index) const ;
|
|---|
| 79 | G4int GetNumber() const;
|
|---|
| 80 | // Access functions
|
|---|
| 81 |
|
|---|
| 82 | protected:
|
|---|
| 83 |
|
|---|
| 84 | G4double GammaLogarithm(G4double xx) ;
|
|---|
| 85 |
|
|---|
| 86 | // Data members common for GaussianQuadrature family
|
|---|
| 87 | //
|
|---|
| 88 | function fFunction ;
|
|---|
| 89 | G4double* fAbscissa ;
|
|---|
| 90 | G4double* fWeight ;
|
|---|
| 91 | G4int fNumber ;
|
|---|
| 92 |
|
|---|
| 93 | private:
|
|---|
| 94 |
|
|---|
| 95 | G4VGaussianQuadrature(const G4VGaussianQuadrature&);
|
|---|
| 96 | G4VGaussianQuadrature& operator=(const G4VGaussianQuadrature&);
|
|---|
| 97 | };
|
|---|
| 98 |
|
|---|
| 99 | #endif
|
|---|